blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
171
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
8
| license_type
stringclasses 2
values | repo_name
stringlengths 6
82
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 13
values | visit_date
timestamp[ns] | revision_date
timestamp[ns] | committer_date
timestamp[ns] | github_id
int64 1.59k
594M
⌀ | star_events_count
int64 0
77.1k
| fork_events_count
int64 0
33.7k
| gha_license_id
stringclasses 12
values | gha_event_created_at
timestamp[ns] | gha_created_at
timestamp[ns] | gha_language
stringclasses 46
values | src_encoding
stringclasses 14
values | language
stringclasses 2
values | is_vendor
bool 2
classes | is_generated
bool 1
class | length_bytes
int64 4
7.87M
| extension
stringclasses 101
values | filename
stringlengths 2
149
| content
stringlengths 4
7.87M
| has_macro_def
bool 2
classes |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b86a1d33c7c954fbf79f75a285132580e5406e33 | 7e15b782f874bcc4192c668a12db901081a9248e | /eopl/ch1/ex-1.12.rkt | d4e73a59ad53a7b9728367211d46fea7a73c042f | []
| no_license | Javran/Thinking-dumps | 5e392fe4a5c0580dc9b0c40ab9e5a09dad381863 | bfb0639c81078602e4b57d9dd89abd17fce0491f | refs/heads/master | 2021-05-22T11:29:02.579363 | 2021-04-20T18:04:20 | 2021-04-20T18:04:20 | 7,418,999 | 19 | 4 | null | null | null | null | UTF-8 | Racket | false | false | 554 | rkt | ex-1.12.rkt | #lang eopl
(require "../common.rkt")
(define (subst new old slist)
(if (null? slist)
'()
(cons
#| inline code of
(subst-in-s-exp new old (car slist))
|#
(let ((sexp (car slist)))
(if (symbol? sexp)
(if (eqv? sexp old)
new
sexp)
(subst new old sexp)))
(subst new old (cdr slist)))))
#|
(define (subst-in-s-exp new old sexp)
(if (symbol? sexp)
(if (eqv? sexp old)
new
sexp)
(subst new old sexp)))
|#
(out (subst 'a 'b '((b c) (b () d))))
| false |
0c094e3ee4c343faf425ca6f444778a86f96a2cd | 67c87680aa55f10aeaaaa3d755573313ab4af46d | /3/22.rkt | 83744cc9673f9d393fd03dbc179d1619f70dd59c | []
| no_license | noahlt/sicp | 5f6cdac4b291cbbd86f946dcc71fa654e2f5ef0a | b210886218c1f45de2a03df75c578d2889f460fc | refs/heads/master | 2020-12-30T09:58:01.580566 | 2016-01-31T17:34:38 | 2016-01-31T17:34:38 | 8,126,410 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,645 | rkt | 22.rkt | #lang r5rs
(define (make-queue)
(let ((front-ptr '())
(rear-ptr '()))
(define (empty-queue?)
(null? front-ptr))
(define (insert-queue x)
(let ((new-tail (cons x '())))
(cond ((empty-queue?)
(set! front-ptr new-tail)
(set! rear-ptr new-tail)
dispatch)
(else
(set-cdr! rear-ptr new-tail)
(set! rear-ptr new-tail)))))
(define (delete-queue)
(if (not (empty-queue?))
(begin (set! front-ptr (cdr front-ptr))
dispatch)
'error))
(define (print-queue)
(display "queue: ")
(display front-ptr)
(display "\n"))
(define (dispatch m)
(cond ((eq? m 'empty-queue?) (empty-queue?))
((eq? m 'front-queue)
(if (empty-queue?)
'()
(car front-ptr)))
((eq? m 'insert-queue!) insert-queue)
((eq? m 'delete-queue!) (delete-queue))
((eq? m 'print-queue) (print-queue))
(else 'error)))
dispatch))
(define q (make-queue))
(q 'print-queue)
(display "empty queue? ")
(display (q 'empty-queue?))
(display "\n")
((q 'insert-queue!) 'a)
(q 'print-queue)
(display "empty queue? ")
(display (q 'empty-queue?))
(display "\n")
((q 'insert-queue!) 'b)
(q 'print-queue)
((q 'insert-queue!) 'c)
(q 'print-queue)
(display (q 'front-queue))
(display "\n")
(q 'delete-queue!)
(q 'print-queue)
(q 'delete-queue!)
(q 'print-queue)
(q 'delete-queue!)
(q 'print-queue)
(q 'delete-queue!)
(q 'print-queue)
(display (q 'front-queue))
(display "\n")
(q 'print-queue) | false |
7c297a61375be7ed943a730d37f1ce88c27174f9 | 4d3a7c20c201dddb361e7f6685a1340a51bf54d3 | /rkt/new-lam-example.rkt | 1068fe8f35c2f90c65f8a603909889954acf5b84 | []
| no_license | williamberman/tapl | ec0ecfcec7d8b2dc051988916b3bd6d5c6fe44dd | d07a99284f49b486a3b492b92061940f19e4d713 | refs/heads/master | 2021-01-07T00:35:05.362536 | 2020-06-19T03:16:01 | 2020-06-19T03:16:01 | 241,753,416 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 147 | rkt | new-lam-example.rkt | #lang s-exp "new-lam.rkt"
(define foo (lambda (x :: integer?) (+ x 1)))
(foo 1)
;; (if 1 "first" "second")
(let ([foo 1]) foo)
;; (foo "bar")
| false |
681f8034d5ced0614b0e176c0d7faa1537326c00 | 5218145b7e35c508915616897fa045ebccba55c6 | /test.rkt | 1568f94ebe074f87a1b8bbb58c80831c2aa7644c | []
| no_license | OnRoadZy/ConvertNumberAndChinese | 285866074fdb0f60543379eda40164a859b51752 | 1e409ca6e3796f5d18af154f1237286dab3e00bf | refs/heads/master | 2020-03-19T08:12:03.628641 | 2018-06-07T15:48:57 | 2018-06-07T15:48:57 | 136,184,057 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,663 | rkt | test.rkt | #lang racket
(require "number-chinese.rkt"
"chinese-number.rkt")
(define ch-test-list
'(("零" "一" "二" "三" "四" "五" "六" "七" "八" "九" "一十" "一十一" "一百一十" "一百一十一" "一百" "一百零二" "一千零二十" "一千零一" "一千零一十五" "一千" "一万" "二万零一十" "二万零一" "一十万" "一百万" "一千万" "一亿" "一十亿" "一十亿一千" "一十亿零一百" "二十万零一十" "二百万零一百零五" "二千万一千零七" "二十亿零一十万零一百九十" "一十亿四千零一万" "二亿零一万二千三百零一" "二十亿零五百零一万零一十" "四十亿零九百零六万零二百" "四十二亿九千四百九十六万七千二百九十五" "一千二百三十四兆五千零六万七千八百九十亿零一百二十三万四千零六十九" "五十八兆四千三百六十万二千八百九十亿零二百四十八万一千二百三十四兆五千零六万七千八百九十亿零一百二十三万四千零六十九")
("零" "壹" "贰" "叁" "肆" "伍" "陆" "柒" "捌" "玖" "壹拾" "壹拾壹" "壹佰壹拾" "壹佰壹拾壹" "壹佰" "壹佰零贰" "壹仟零贰拾" "壹仟零壹" "壹仟零壹拾伍" "壹仟" "壹万" "贰万零壹拾" "贰万零壹" "壹拾万" "壹佰万" "壹仟万" "壹亿" "壹拾亿" "壹拾亿壹仟" "壹拾亿零壹佰" "贰拾万零壹拾" "贰佰万零壹佰零伍" "贰仟万壹仟零柒" "贰拾亿零壹拾万零壹佰玖拾" "壹拾亿肆仟零壹万" "贰亿零壹万贰仟叁佰零壹" "贰拾亿零伍佰零壹万零壹拾" "肆拾亿零玖佰零陆万零贰佰" "肆拾贰亿玖仟肆佰玖拾陆万柒仟贰佰玖拾伍" "壹仟贰佰叁拾肆兆伍仟零陆万柒仟捌佰玖拾亿零壹佰贰拾叁万肆仟零陆拾玖" "伍拾捌兆肆仟叁佰陆拾万贰仟捌佰玖拾亿零贰佰肆拾捌万壹仟贰佰叁拾肆兆伍仟零陆万柒仟捌佰玖拾亿零壹佰贰拾叁万肆仟零陆拾玖")
(0 1 2 3 4 5 6 7 8 9 10 11 110 111 100 102 1020 1001 1015 1000 10000 20010 20001 100000 1000000 10000000 100000000 1000000000 1000001000 1000000100 200010 2000105 20001007 2000100190 1040010000 200012301 2005010010 4009060200 4294967295 12345006789001234069 5843602890024812345006789001234069)))
;测试数字转中文:
(display ;打印简体转换。
(for/list [(num (list-ref ch-test-list 2))
(ch (list-ref ch-test-list 0))]
(if (equal? (number->chinese num) ch)
(format "~a->~a\n" num ch)
(format "错误!~a预期生成~a,实际生成~a\n"
num ch (number->chinese num)))))
(display ;打印大写转换。
(for/list [(num (list-ref ch-test-list 2))
(ch-t (list-ref ch-test-list 1))]
(if (equal? (number->chinese num #:style 'capitalization) ch-t)
(format "~a->~a\n" num ch-t)
(format "错误!~a预期生成~a,实际生成~a\n"
num ch-t (number->chinese num #:style 'capitalization)))))
;测试中文转数字:
(display ;打印简体转换。
(for/list [(ch (list-ref ch-test-list 0))
(num (list-ref ch-test-list 2))]
(if (= (chinese->number ch) num)
(format "~a->~a\n" ch num)
(format "错误!~a预期结果为~a,实际结果为~a。\n"
ch num (chinese->number ch)))))
(display ;打印大写转换。
(for/list [(ch-t (list-ref ch-test-list 1))
(num (list-ref ch-test-list 2))]
(if (= (chinese->number ch-t #:style 'capitalization) num)
(format "~a->~a\n" ch-t num)
(format "错误!~a预期结果为~a,实际结果为~a。\n"
ch-t num (chinese->number ch-t #:style 'capitalization))))) | false |
359dba2b623632ffdd7337dcc16925d40626a5c8 | a21b2a4572add013b66da1a0bff4940e83aae1f5 | /ar.rkt | d6218e3eb8084b709db822c45b4775d978f599af | [
"Artistic-2.0"
]
| permissive | awwx/arc-macro | a48d78c2b71fbeeb8e575d4f36a75f8ad981da59 | f3ebcaa2bb1eb17edc3a4f795d70a110303ef0ed | refs/heads/master | 2021-01-10T13:20:45.141543 | 2015-12-20T23:59:38 | 2015-12-21T00:00:49 | 48,290,205 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 15,426 | rkt | ar.rkt | ; Demo Arc runtime using the precompiled Arc compiler.
#lang racket
(display "ar.rkt\n")
(provide (all-defined-out))
(define-namespace-anchor anchor)
(define namespace (namespace-anchor->namespace anchor))
(define-syntax p
(syntax-rules ()
((_ x)
(begin (write 'x)
(display ": ")
(let ((r x))
(write r)
(newline)
r)))))
(define-syntax test
(syntax-rules ()
((_ expr expected)
(let ((actual expr))
(if (equal? actual expected)
(begin (display "OK ")
(write 'expr)
(display " => ")
(write actual)
(newline))
(begin (display "FAIL ")
(write 'expr)
(display " => ")
(write actual)
(newline)
(display " not ")
(write expected)
(newline)
(exit 1)))))))
(define (read-square-brackets ch port src line col pos)
`(square-bracket ,@(read/recursive port #\[ #f)))
(define bracket-readtable
(make-readtable #f #\[ 'terminating-macro read-square-brackets))
(current-readtable bracket-readtable)
(define (table)
(make-hasheqv))
(define (arc-car x)
(cond ((eq? x 'nil)
'nil)
((mpair? x)
(mcar x))
(else
(err "Can't take car of" x))))
(define (arc-cdr x)
(cond ((eq? x 'nil)
'nil)
((mpair? x)
(mcdr x))
(else
(err "Can't take cdr of" x))))
(define (arc-cons a b)
(mcons a b))
(define (tnil x)
(if x 't 'nil))
(define (ar-is2 a b)
(tnil (or (eqv? a b)
(and (string? a) (string? b) (string=? a b)))))
(define (toarc x)
(cond ((pair? x)
(mcons (toarc (car x)) (toarc (cdr x))))
((eq? x '())
'nil)
(else x)))
(test (toarc 3) 3)
(test (toarc '()) 'nil)
(test (toarc '(a b)) (mcons 'a (mcons 'b 'nil)))
(define (arc-read in . rest)
(let ((eof (if (pair? rest) (car rest) 'nil))
(port (if (string? in) (open-input-string in) in)))
(let ((x (read port)))
(if (eof-object? x)
eof
(toarc x)))))
(test (arc-read "(a b c)") (toarc '(a b c)))
(test (arc-read "[a b c]") (toarc '(square-bracket a b c)))
(define (arclist x)
(if (eq? x '())
'nil
(mcons (car x) (arclist (cdr x)))))
(define (alist . args)
(arclist args))
(define (racketlist x)
(cond ((eq? x 'nil)
'())
((mpair? x)
(cons (mcar x) (racketlist (mcdr x))))
(else
x)))
(define (denil x)
(cond ((mpair? x)
(cons (denil-car (mcar x))
(denil-cdr (mcdr x))))
(else
x)))
(define (denil-car x)
(if (eq? x 'nil)
'nil
(denil x)))
(define (denil-cdr x)
(if (eq? x 'nil)
'()
(denil x)))
(define (fromarc x)
(cond ((eq? x 'nil)
'())
((mpair? x)
(cons (fromarc (mcar x))
(fromarc (mcdr x))))
(else
x)))
(define (toracket x)
(cond ((eq? x 'nil)
'())
((and (mpair? x) (eq? (mcar x) 'arc--XwSDNhnd2nCJ))
(mcadr x))
((mpair? x)
(cons (toracket (mcar x))
(toracket (mcdr x))))
(else
x)))
(define (ar-assert x)
(if (eq? x 'nil)
(begin (display "assertion failed\n")
(exit 1))
(begin (display "ok ")
(write x)
(newline))))
(define (ar-+ a b)
(+ a b))
(define (exint? x) (and (integer? x) (exact? x)))
(define (ar-type x)
(cond ((tagged? x) (tagged-type x))
((mpair? x) 'cons)
((symbol? x) 'sym)
((procedure? x) 'fn)
((char? x) 'char)
((string? x) 'string)
((exint? x) 'int)
((number? x) 'num)
((hash? x) 'table)
((output-port? x) 'output)
((input-port? x) 'input)
((tcp-listener? x) 'socket)
((exn? x) 'exception)
((thread? x) 'thread)
(else (error "type: unknown type" x))))
(define err error)
(define (iround x) (inexact->exact (round x)))
(define (ar-coerce x type . args)
(cond
((tagged? x) (error "Can't coerce annotated object"))
((eqv? type (ar-type x)) x)
((char? x) (case type
((int) (char->integer x))
((string) (string x))
((sym) (string->symbol (string x)))
(else (err "Can't coerce" x type))))
((exint? x) (case type
((num) x)
((char) (integer->char x))
((string) (apply number->string x args))
(else (err "Can't coerce" x type))))
((number? x) (case type
((int) (iround x))
((char) (integer->char (iround x)))
((string) (apply number->string x args))
(else (err "Can't coerce" x type))))
((string? x) (case type
((sym) (string->symbol x))
((cons) (arclist (string->list x)))
((num) (or (apply string->number x args)
(err "Can't coerce" x type)))
((int) (let ((n (apply string->number x args)))
(if n
(iround n)
(err "Can't coerce" x type))))
(else (err "Can't coerce" x type))))
((mpair? x) (case type
((string) (apply string-append
(map (lambda (y) (ar-coerce y 'string))
(racketlist x))))
(else (err "Can't coerce" x type))))
((eqv? x 'nil) (case type
((string) "")
(else (err "Can't coerce" x type))))
((symbol? x) (case type
((string) (symbol->string x))
(else (err "Can't coerce" x type))))
(else x)))
(define (disp-to-string x)
(let ((o (open-output-string)))
(display x o)
(close-output-port o)
(get-output-string o)))
(define (ar-details c)
(disp-to-string (exn-message c)))
(define (ar-len x)
(cond ((string? x) (string-length x))
((hash? x) (hash-count x))
(else (length (racketlist x)))))
(define (ar-maptable f table)
(hash-for-each table f)
table)
(define (ar-on-err errfn f)
((call-with-current-continuation
(lambda (k)
(lambda ()
(with-handlers
((exn:fail? (lambda (c)
(k (lambda () (errfn c))))))
(f)))))))
(test (ar-on-err
(lambda (c) (ar-details c))
(lambda () (err "foo")))
"foo")
(define (ar-protect during after)
(dynamic-wind (lambda () 't) during after))
(define (ar-scar x v)
(set-mcar! x v)
v)
(define (ar-scdr x v)
(set-mcdr! x v)
v)
(define (ar-disp x port)
(display (fromarc x) port))
(define (ar-write x port)
(write (fromarc x) port))
(define (ar-writec c . args)
(write-char c
(if (pair? args)
(car args)
(current-output-port)))
c)
(define (ar-readb port)
(let ((c (read-byte port)))
(if (eof-object? c) 'nil c)))
(define (mcadr x) (mcar (mcdr x)))
(define (mcddr x) (mcdr (mcdr x)))
(define (mcdddr x) (mcdr (mcddr x)))
(define (mcaddr x) (mcar (mcddr x)))
(define (mcadddr x) (mcar (mcdddr x)))
(struct tagged (type rep) #:prefab)
(define arc-annotate tagged)
(define (ar-funcall f . args)
(arc-apply f (arclist args)))
(define (apply-args x)
(cond ((and (pair? x) (null? (cdr x)))
(racketlist (car x)))
((pair? x)
(cons (car x) (apply-args (cdr x))))
((null? x)
'())
(else
x)))
(define (arc-apply f . rest)
(let ((args (apply-args rest)))
(cond ((procedure? f)
(apply f args))
((hash? f)
(call-table f args))
((string? f)
(call-string f args))
((mpair? f)
(call-list f (car args)))
(else
(error "not callable" (xhash f))))))
(define (call-table table args)
(hash-ref table
(car args)
(if (null? (cdr args)) 'nil (cadr args))))
(define (call-string f args)
(string-ref f (car args)))
(define (call-list lst k)
(unless (>= k 0)
(error "call-list: invalid index:" k))
(if (= k 0)
(mcar lst)
(call-list (mcdr lst) (- k 1))))
(define (sref x k v)
(cond ((hash? x)
(hash-set! x k v))
((string? x)
(string-set! x k v))
((mpair? x)
(set-list x k v))
(else
(error "Can't set reference" x))))
(define (has g k)
(unless (hash? g)
(err "not a table" g))
(tnil (hash-has-key? g k)))
(define (set-list x k v)
(unless (>= k 0)
(error "set-list: invalid index" k))
(if (= k 0)
(set-mcar! x v)
(set-list (mcdr x) (- k 1) v)))
(define rand-chars
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
(define (rand-char)
(string-ref rand-chars (random (string-length rand-chars))))
(define (rand-string n)
(let ((s (make-string n)))
(for ((i n))
(string-set! s i (rand-char)))
s))
(define (uniq . rest)
(ar-coerce
(string-append
(if (pair? rest)
(string-append (ar-coerce (car rest) 'string) "--")
"")
(rand-string 12))
'sym))
(define (arc-close p)
(cond ((input-port? p) (close-input-port p))
((output-port? p) (close-output-port p))
(else (error "Can't close" p))))
(define (ar->2 x y)
(tnil (cond ((and (number? x) (number? y)) (> x y))
((and (string? x) (string? y)) (string>? x y))
((and (symbol? x) (symbol? y)) (string>? (symbol->string x)
(symbol->string y)))
((and (char? x) (char? y)) (char>? x y))
(else (> x y)))))
(define (ar-<2 x y)
(tnil (cond ((and (number? x) (number? y)) (< x y))
((and (string? x) (string? y)) (string<? x y))
((and (symbol? x) (symbol? y)) (string<? (symbol->string x)
(symbol->string y)))
((and (char? x) (char? y)) (char<? x y))
(else (< x y)))))
(define (arc-map f xs)
(if (eq? xs 'nil)
'nil
(mcons (f (mcar xs)) (arc-map f (mcdr xs)))))
(define (map-arclist->list f xs)
(if (eq? xs 'nil)
'()
(cons (f (mcar xs))
(map-arclist->list f (mcdr xs)))))
(define (deserialize x globals)
(cond ((and (mpair? x) (eq? (mcar x) '$))
(case (mcadr x)
(($) '$)
((globals) globals)
((global) (hash-ref globals (mcaddr x)
(lambda ()
(error "deserialize: global not found:" x))))
((tagged) (arc-annotate
(mcaddr x)
(deserialize (mcadddr x) globals)))
(else (error "deserialize: invalid $:" x))))
((mpair? x)
(mcons (deserialize (mcar x) globals)
(deserialize (mcdr x) globals)))
((hash? x)
(error "deserialize: oops, got a table:" x))
(else
x)))
(define (ar-racket-eval expr)
(eval (toracket expr) namespace))
(define (xhash x)
(cond ((eq? x rx)
'$rx)
((mpair? x)
(mcons (xhash (mcar x))
(xhash (mcdr x))))
((pair? x)
(cons (xhash (car x))
(xhash (cdr x))))
(else
x)))
(define (runtime)
(make-hasheqv
`((annotate . ,arc-annotate)
(ar-arclist . ,arclist)
(ar-disp . ,ar-disp)
(ar-racket-eval . ,ar-racket-eval)
(ar-funcall . ,ar-funcall)
(ar-read . ,arc-read)
(ar-readb . ,ar-readb)
(ar-set . ,set)
(ar-string-append . ,string-append)
(ar-toarc . ,toarc)
(ar-toarclist . ,arclist)
(ar-write . ,ar-write)
(ar->2 . ,ar->2)
(ar-<2 . ,ar-<2)
(apply . ,arc-apply)
(assert . ,ar-assert)
; bogus atomic
(atomic-invoke . ,(lambda (f) (f)))
(call-w/stdout . ,(lambda (port thunk)
(parameterize ((current-output-port port))
(thunk))))
(call-w/stdin . ,(lambda (port thunk)
(parameterize ((current-input-port port))
(thunk))))
(car . ,arc-car)
(cdr . ,arc-cdr)
(close . ,arc-close)
(coerce . ,ar-coerce)
(cons . ,arc-cons)
(details . ,ar-details)
(dir . ,(lambda (name)
(toarc (map path->string (directory-list name)))))
(dir-exists . ,(lambda (name)
(if (directory-exists? name) name 'nil)))
(disp . ,display)
(err . ,err)
(infile . ,open-input-file)
(has . ,has)
(is . ,ar-is2)
(len . ,ar-len)
(maptable . ,ar-maptable)
(mod . ,modulo)
(namefn . ,(lambda (name f) (procedure-rename f name)))
(newstring . ,make-string)
(on-err . ,ar-on-err)
(outfile . ,open-output-file)
(protect . ,ar-protect)
(quit . ,exit)
(rep . ,tagged-rep)
(scar . ,ar-scar)
(scdr . ,ar-scdr)
(sread . ,arc-read)
(sref . ,sref)
(stderr . ,current-error-port)
(stdin . ,current-input-port)
(stdout . ,current-error-port)
(t . ,'t)
(table . ,table)
(tagged . ,(lambda (x) (tnil (tagged? x))))
(type . ,ar-type)
(uniq . ,uniq)
(xhash . ,xhash)
(write . ,write)
(writec . ,ar-writec)
(+ . ,+)
(- . ,-)
(* . ,*)
(/ . ,/))))
(define rx (runtime))
(define (load-precompiled filename)
(let ((port (open-input-file filename))
(eof (list 'eof)))
(define (loop)
(let ((e (arc-read port eof)))
(unless (eq? e eof)
(let ((d (deserialize e rx)))
(ar-racket-eval d)
(loop)))))
(loop)
(close-input-port port)))
(define (rxeval s)
((hash-ref rx 'eval) (toarc s)))
((lambda ()
(load-precompiled "/tmp/arc.precompiled")
(display "arc.precompiled loaded\n")
(rxeval '(load 'arc/arc3
'arc/iso-table
'arc/iso-tagged
'common-tests
'runtime-tests
'more-tests))
(void)))
| true |
605695b6cd4b86bd8b7c46ef99dcf245a5a09933 | 2b1821134bb02ec32f71ddbc63980d6e9c169b65 | /lisp/racket/SPD/1a/cflag.rkt | 9f58c8ef6e15b98148af4b7a49f73f4730298b5b | []
| no_license | mdssjc/study | a52f8fd6eb1f97db0ad523131f45d5caf914f01b | 2ca51a968e254a01900bffdec76f1ead2acc8912 | refs/heads/master | 2023-04-04T18:24:06.091047 | 2023-03-17T00:55:50 | 2023-03-17T00:55:50 | 39,316,435 | 3 | 1 | null | 2023-03-04T00:50:33 | 2015-07-18T23:53:39 | Java | UTF-8 | Racket | false | false | 902 | rkt | cflag.rkt | ;; The first three lines of this file were inserted by DrRacket. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-beginner-reader.ss" "lang")((modname cflag-starter) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f () #f)))
;; cflag.rkt
;; BSL P8
;; Write expression to produce background image of Canadian flag.
(require 2htdp/image)
;; PROBLEM:
;;
;; The background for the Canadian Flag (without the maple leaf) is this:
;;
;; [Red | White | Red]
;;
;; Write an expression to produce that background. (If you want to get
;; the details right, officially the overall flag has proportions 1:2,
;; and the band widths are in the ratio 1:2:1.)
(beside (rectangle 20 40 "solid" "red")
(rectangle 40 40 "solid" "white")
(rectangle 20 40 "solid" "red"))
| false |
bf29a95fd9dca66869cd139d2bb63b20b71d9f3d | 9dc77b822eb96cd03ec549a3a71e81f640350276 | /type/wrapper/private/definition-macro.rkt | 85d8395a5014b2843a62da97c0ce3cb8e287544d | [
"Apache-2.0"
]
| permissive | jackfirth/rebellion | 42eadaee1d0270ad0007055cad1e0d6f9d14b5d2 | 69dce215e231e62889389bc40be11f5b4387b304 | refs/heads/master | 2023-03-09T19:44:29.168895 | 2023-02-23T05:39:33 | 2023-02-23T05:39:33 | 155,018,201 | 88 | 21 | Apache-2.0 | 2023-09-07T03:44:59 | 2018-10-27T23:18:52 | Racket | UTF-8 | Racket | false | false | 3,915 | rkt | definition-macro.rkt | #lang racket/base
(provide define-wrapper-type)
(require (for-syntax racket/base
rebellion/type/private/naming
(submod rebellion/type/wrapper/binding
private-constructor)
rebellion/type/wrapper/base
syntax/transformer)
racket/match
rebellion/type/wrapper/base
rebellion/type/wrapper/descriptor
syntax/parse/define)
(module+ test
(require (submod "..")
racket/format
rackunit
rebellion/private/static-name))
;@------------------------------------------------------------------------------
(define-simple-macro
(define-wrapper-type id:id
(~alt
(~optional (~and #:omit-root-binding omit-root-binding-kw))
(~optional
(~seq #:descriptor-name descriptor:id)
#:defaults ([descriptor (default-descriptor-identifier #'id)])
#:name "#:descriptor-name option")
(~optional
(~seq #:predicate-name predicate:id)
#:defaults ([predicate (default-predicate-identifier #'id)])
#:name "#:predicate-name option")
(~optional
(~seq #:constructor-name constructor:id)
#:defaults ([constructor (default-constructor-identifier #'id)])
#:name "#:constructor-name option")
(~optional
(~seq #:accessor-name accessor:id)
#:defaults ([accessor (default-unwrapping-accessor-identifier #'id)])
#:name "#:accessor-name option")
(~optional
(~seq #:pattern-name pattern:id)
#:defaults ([pattern (default-pattern-identifier #'id)])
#:name "#:pattern-name option")
(~optional
(~seq #:inspector inspector:expr)
#:name "#:inspector option"
#:defaults ([inspector #'(current-inspector)]))
(~optional
(~seq #:property-maker prop-maker:expr)
#:defaults ([prop-maker #'default-wrapper-properties])
#:name "#:property-maker option"))
...)
#:with root-binding
(if (attribute omit-root-binding-kw)
#'(begin)
#'(define-syntax id
(wrapper-binding
#:type
(wrapper-type
'id
#:constructor-name 'constructor
#:predicate-name 'predicate
#:accessor-name 'accessor)
#:descriptor #'descriptor
#:predicate #'predicate
#:constructor #'constructor
#:accessor #'accessor
#:pattern #'pattern
#:macro (make-variable-like-transformer #'constructor))))
(begin
(define descriptor
(make-wrapper-implementation
(wrapper-type
'id
#:predicate-name 'predicate
#:constructor-name 'constructor
#:accessor-name 'accessor)
#:inspector inspector
#:property-maker prop-maker))
(define predicate (wrapper-descriptor-predicate descriptor))
(define constructor (wrapper-descriptor-constructor descriptor))
(define accessor (wrapper-descriptor-accessor descriptor))
(define-match-expander pattern
(syntax-parser
[(_ value-pattern)
#'(? predicate (app accessor value-pattern))]))
root-binding))
(module+ test
(test-case (name-string define-wrapper-type)
(define-wrapper-type seconds)
(check-equal? (seconds 10) (seconds 10))
(check-not-equal? (seconds 10) (seconds 25))
(check-equal? (constructor:seconds 10) (seconds 10))
(check-equal? (seconds-value (seconds 10)) 10)
(check-pred seconds? (seconds 10))
(check-equal? (~v (seconds 10)) "(seconds 10)")
(check-match (seconds 10) (seconds (? number?)))
(check-match (seconds 10) (pattern:seconds (? number?)))
(test-case "should allow omitting the root binding"
(define-wrapper-type minutes #:omit-root-binding)
(define (minutes x) (constructor:minutes x))
(check-match (minutes 30) (pattern:minutes (? number?))))))
| true |
5121efb5763895c4588b3d9038b24ce42f431ae1 | e6fff39c4978a6478b142df031f10b291e3a6b50 | /ml/pda.rkt | 18f72746f9ec679fbeb1607150b22cfb1894a4b9 | []
| no_license | danking/PDA-Flow-Analysis-Performance-Measurements | 2a2e170617ca4723b7370c180489f82fffe545fc | b812fc71076b2c739ecc152845965d37797dd6e0 | refs/heads/master | 2021-01-01T19:35:05.912430 | 2014-06-05T15:48:09 | 2014-06-05T15:48:09 | 3,672,728 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 349,523 | rkt | pda.rkt | #lang racket
(require "../../pda-to-pda-risc/macro-glue.rkt")
(provide (all-defined-out))
(define pda-risc
(pda->pda-risc
(TOKENS
SEMICOLON
ID
TYVAR
INT
INT0
WORD
REAL
STRING
CHAR
ABSTYPE
BAR
CASE
DATATYPE
DOTDOTDOT
END
EQUALOP
EQTYPE
EXCEPTION
DOT
FN
FUN
FUNCTOR
HASH
IF
IN
INCLUDE
INFIX
INFIXR
LAZY
LET
LOCAL
NONFIX
OF
OP
OPEN
OVERLOAD
REC
SHARING
SIG
SIGNATURE
STRUCT
STRUCTURE
THEN
TYPE
VAL
WHERE
WHILE
WILD
WITH
ASTERISK
COLONGT
COMMA
LBRACE
LBRACKET
LPAREN
RBRACE
RBRACKET
RPAREN
FUNSIG
VECTORSTART
BEGINQ
ENDQ
OBJL
AQID
WITHTYPE
AND
ARROW
DARROW
DO
ELSE
RAISE
HANDLE
ORELSE
ANDALSO
AS
COLON
EOF)
(EOS EOF)
(START s0)
(RULE r1 *start (_ _) #f)
(RULE r2 *start (_ _) #f)
(RULE r3 int (INT) #f)
(RULE r4 int (INT0) #f)
(RULE r5 id (ID) #f)
(RULE r6 id (ASTERISK) #f)
(RULE r7 ident (ID) #f)
(RULE r8 ident (ASTERISK) #f)
(RULE r9 ident (EQUALOP) #f)
(RULE r10 op_op (OP) #f)
(RULE r11 op_op () #f)
(RULE r12 qid (ID DOT qid) #f)
(RULE r13 qid (ident) #f)
(RULE r14 selector (id) #f)
(RULE r15 selector (INT) #f)
(RULE r16 tycon (ID DOT tycon) #f)
(RULE r17 tycon (ID) #f)
(RULE r18 tlabel (selector COLON ty) #f)
(RULE r19 tlabels (tlabel COMMA tlabels) #f)
(RULE r20 tlabels (tlabel) #f)
(RULE r21 ty_prime (TYVAR) #f)
(RULE r22 ty_prime (LBRACE tlabels RBRACE) #f)
(RULE r23 ty_prime (LBRACE RBRACE) #f)
(RULE r24 ty_prime (LPAREN ty0_pc RPAREN tycon) #f)
(RULE r25 ty_prime (LPAREN ty RPAREN) #f)
(RULE r26 ty_prime (ty_prime tycon) #f)
(RULE r27 ty_prime (tycon) #f)
(RULE r28 tuple_ty (ty_prime ASTERISK tuple_ty) #f)
(RULE r29 tuple_ty (ty_prime-1 ASTERISK ty_prime-2) #f)
(RULE r30 ty (tuple_ty) #f)
(RULE r31 ty (ty-1 ARROW ty-2) #f)
(RULE r32 ty (ty_prime) #f)
(RULE r33 ty0_pc (ty-1 COMMA ty-2) #f)
(RULE r34 ty0_pc (ty COMMA ty0_pc) #f)
(RULE r35 match (rule) #f)
(RULE r36 match (rule BAR match) #f)
(RULE r37 rule (pat DARROW exp) #f)
(RULE r38 elabel (selector EQUALOP exp) #f)
(RULE r39 elabels (elabel COMMA elabels) #f)
(RULE r40 elabels (elabel) #f)
(RULE r41 exp_ps (exp) #f)
(RULE r42 exp_ps (exp SEMICOLON exp_ps) #f)
(RULE r43 exp (exp HANDLE match) #f)
(RULE r44 exp (exp-1 ORELSE exp-2) #f)
(RULE r45 exp (exp-1 ANDALSO exp-2) #f)
(RULE r46 exp (exp COLON ty) #f)
(RULE r47 exp (app_exp) #f)
(RULE r48 exp (FN match) #f)
(RULE r49 exp (CASE exp OF match) #f)
(RULE r50 exp (WHILE exp-1 DO exp-2) #f)
(RULE r51 exp (IF exp-1 THEN exp-2 ELSE exp-3) #f)
(RULE r52 exp (RAISE exp) #f)
(RULE r53 app_exp (aexp) #f)
(RULE r54 app_exp (ident) #f)
(RULE r55 app_exp (aexp app_exp) #f)
(RULE r56 app_exp (ident app_exp) #f)
(RULE r57 aexp (OP ident) #f)
(RULE r58 aexp (ID DOT qid) #f)
(RULE r59 aexp (int) #f)
(RULE r60 aexp (WORD) #f)
(RULE r61 aexp (REAL) #f)
(RULE r62 aexp (STRING) #f)
(RULE r63 aexp (CHAR) #f)
(RULE r64 aexp (HASH selector) #f)
(RULE r65 aexp (LBRACE elabels RBRACE) #f)
(RULE r66 aexp (LBRACE RBRACE) #f)
(RULE r67 aexp (LPAREN RPAREN) #f)
(RULE r68 aexp (LPAREN exp_ps RPAREN) #f)
(RULE r69 aexp (LPAREN exp_2c RPAREN) #f)
(RULE r70 aexp (LBRACKET exp_list RBRACKET) #f)
(RULE r71 aexp (LBRACKET RBRACKET) #f)
(RULE r72 aexp (VECTORSTART exp_list RBRACKET) #f)
(RULE r73 aexp (VECTORSTART RBRACKET) #f)
(RULE r74 aexp (LET ldecs IN exp_ps END) #f)
(RULE r75 aexp (AQID) #f)
(RULE r76 aexp (quote) #f)
(RULE r77 quote (BEGINQ ENDQ) #f)
(RULE r78 quote (BEGINQ ot_list ENDQ) #f)
(RULE r79 ot_list (OBJL aexp) #f)
(RULE r80 ot_list (OBJL aexp ot_list) #f)
(RULE r81 exp_2c (exp COMMA exp_2c) #f)
(RULE r82 exp_2c (exp-1 COMMA exp-2) #f)
(RULE r83 exp_list (exp) #f)
(RULE r84 exp_list (exp COMMA exp_list) #f)
(RULE r85 pat (pat-1 AS pat-2) #f)
(RULE r86 pat (pat COLON ty) #f)
(RULE r87 pat (apats) #f)
(RULE r88 apat (apat_prime) #f)
(RULE r89 apat (LPAREN pat RPAREN) #f)
(RULE r90 apat (id) #f)
(RULE r91 apat (LPAREN RPAREN) #f)
(RULE r92 apat (LPAREN pat COMMA pat_list RPAREN) #f)
(RULE r93 apat (LPAREN pat BAR or_pat_list RPAREN) #f)
(RULE r94 apat_prime (OP ident) #f)
(RULE r95 apat_prime (ID DOT qid) #f)
(RULE r96 apat_prime (int) #f)
(RULE r97 apat_prime (WORD) #f)
(RULE r98 apat_prime (STRING) #f)
(RULE r99 apat_prime (CHAR) #f)
(RULE r100 apat_prime (WILD) #f)
(RULE r101 apat_prime (LBRACKET RBRACKET) #f)
(RULE r102 apat_prime (LBRACKET pat_list RBRACKET) #f)
(RULE r103 apat_prime (VECTORSTART RBRACKET) #f)
(RULE r104 apat_prime (VECTORSTART pat_list RBRACKET) #f)
(RULE r105 apat_prime (LBRACE RBRACE) #f)
(RULE r106 apat_prime (LBRACE plabels RBRACE) #f)
(RULE r107 plabel (selector EQUALOP pat) #f)
(RULE r108 plabel (ID) #f)
(RULE r109 plabel (ID AS pat) #f)
(RULE r110 plabel (ID COLON ty) #f)
(RULE r111 plabel (ID COLON ty AS pat) #f)
(RULE r112 plabels (plabel COMMA plabels) #f)
(RULE r113 plabels (plabel) #f)
(RULE r114 plabels (DOTDOTDOT) #f)
(RULE r115 pat_list (pat) #f)
(RULE r116 pat_list (pat COMMA pat_list) #f)
(RULE r117 or_pat_list (pat) #f)
(RULE r118 or_pat_list (pat BAR or_pat_list) #f)
(RULE r119 vb (vb-1 AND vb-2) #f)
(RULE r120 vb (LAZY pat EQUALOP exp) #f)
(RULE r121 vb (pat EQUALOP exp) #f)
(RULE r122 constraint () #f)
(RULE r123 constraint (COLON ty) #f)
(RULE r124 rvb (id constraint EQUALOP exp) #f)
(RULE r125 rvb (OP id constraint EQUALOP exp) #f)
(RULE r126 rvb (rvb-1 AND rvb-2) #f)
(RULE r127 rvb (LAZY id constraint EQUALOP exp) #f)
(RULE r128 rvb (LAZY OP id constraint EQUALOP exp) #f)
(RULE r129 fb_prime (clause) #f)
(RULE r130 fb_prime (clause BAR fb_prime) #f)
(RULE r131 fb (fb_prime) #f)
(RULE r132 fb (LAZY fb_prime) #f)
(RULE r133 fb (fb_prime AND fb) #f)
(RULE r134 fb (LAZY fb_prime AND fb) #f)
(RULE r135 apats (apat) #f)
(RULE r136 apats (apat apats) #f)
(RULE r137 clause (apats constraint EQUALOP exp) #f)
(RULE r138 tb (tyvars ID EQUALOP ty) #f)
(RULE r139 tb (tb-1 AND tb-2) #f)
(RULE r140 tyvars (TYVAR) #f)
(RULE r141 tyvars (LPAREN tyvar_pc RPAREN) #f)
(RULE r142 tyvars () #f)
(RULE r143 tyvarseq (TYVAR) #f)
(RULE r144 tyvarseq (LPAREN tyvar_pc RPAREN) #f)
(RULE r145 tyvar_pc (TYVAR) #f)
(RULE r146 tyvar_pc (TYVAR COMMA tyvar_pc) #f)
(RULE r147 dtrepl (ID EQUALOP DATATYPE tycon) #f)
(RULE r148 dbs (db) #f)
(RULE r149 dbs (db AND dbs) #f)
(RULE r150 db (ID EQUALOP constrs) #f)
(RULE r151 db (tyvarseq ID EQUALOP constrs) #f)
(RULE r152 db (LAZY tyvars ID EQUALOP constrs) #f)
(RULE r153 constrs (constr) #f)
(RULE r154 constrs (constr BAR constrs) #f)
(RULE r155 constr (op_op ident) #f)
(RULE r156 constr (op_op ident OF ty) #f)
(RULE r157 eb (op_op ident) #f)
(RULE r158 eb (op_op ident OF ty) #f)
(RULE r159 eb (op_op ident EQUALOP qid) #f)
(RULE r160 eb (eb-1 AND eb-2) #f)
(RULE r161 qid_p (qid) #f)
(RULE r162 qid_p (qid qid_p) #f)
(RULE r163 fixity (INFIX) #f)
(RULE r164 fixity (INFIX int) #f)
(RULE r165 fixity (INFIXR) #f)
(RULE r166 fixity (INFIXR int) #f)
(RULE r167 fixity (NONFIX) #f)
(RULE r168 ldec (VAL vb) #f)
(RULE r169 ldec (VAL tyvarseq vb) #f)
(RULE r170 ldec (VAL REC rvb) #f)
(RULE r171 ldec (VAL REC tyvarseq rvb) #f)
(RULE r172 ldec (FUN fb) #f)
(RULE r173 ldec (FUN tyvarseq fb) #f)
(RULE r174 ldec (TYPE tb) #f)
(RULE r175 ldec (DATATYPE dtrepl) #f)
(RULE r176 ldec (DATATYPE dbs) #f)
(RULE r177 ldec (DATATYPE dbs WITHTYPE tb) #f)
(RULE r178 ldec (ABSTYPE dbs WITH ldecs END) #f)
(RULE r179 ldec (ABSTYPE dbs WITHTYPE tb WITH ldecs END) #f)
(RULE r180 ldec (EXCEPTION eb) #f)
(RULE r181 ldec (OPEN qid_p) #f)
(RULE r182 ldec (fixity ops) #f)
(RULE r183 ldec (OVERLOAD ident COLON ty AS exp_pa) #f)
(RULE r184 exp_pa (exp) #f)
(RULE r185 exp_pa (exp AND exp_pa) #f)
(RULE r186 ldecs () #f)
(RULE r187 ldecs (ldec ldecs) #f)
(RULE r188 ldecs (SEMICOLON ldecs) #f)
(RULE r189 ldecs (LOCAL ldecs-1 IN ldecs-2 END ldecs-3) #f)
(RULE r190 ops (ident) #f)
(RULE r191 ops (ident ops) #f)
(RULE r192 spec_s () #f)
(RULE r193 spec_s (spec spec_s) #f)
(RULE r194 spec_s (SEMICOLON spec_s) #f)
(RULE r195 spec (STRUCTURE strspec) #f)
(RULE r196 spec (FUNCTOR fctspec) #f)
(RULE r197 spec (DATATYPE dtrepl) #f)
(RULE r198 spec (DATATYPE dbs) #f)
(RULE r199 spec (DATATYPE dbs WITHTYPE tb) #f)
(RULE r200 spec (TYPE tyspec) #f)
(RULE r201 spec (EQTYPE tyspec) #f)
(RULE r202 spec (VAL valspec) #f)
(RULE r203 spec (EXCEPTION exnspec) #f)
(RULE r204 spec (SHARING sharespec) #f)
(RULE r205 spec (INCLUDE sign) #f)
(RULE r206 spec (INCLUDE ident idents) #f)
(RULE r207 idents (ident) #f)
(RULE r208 idents (ident idents) #f)
(RULE r209 strspec (strspec-1 AND strspec-2) #f)
(RULE r210 strspec (ident COLON sign) #f)
(RULE r211 strspec (ident COLON sign EQUALOP qid) #f)
(RULE r212 fctspec (fctspec-1 AND fctspec-2) #f)
(RULE r213 fctspec (ident fsig) #f)
(RULE r214 tyspec (tyspec-1 AND tyspec-2) #f)
(RULE r215 tyspec (tyvars ID) #f)
(RULE r216 tyspec (tyvars ID EQUALOP ty) #f)
(RULE r217 valspec (valspec-1 AND valspec-2) #f)
(RULE r218 valspec (op_op ident COLON ty) #f)
(RULE r219 exnspec (exnspec-1 AND exnspec-2) #f)
(RULE r220 exnspec (ident) #f)
(RULE r221 exnspec (ident OF ty) #f)
(RULE r222 sharespec (sharespec-1 AND sharespec-2) #f)
(RULE r223 sharespec (TYPE patheqn) #f)
(RULE r224 sharespec (patheqn) #f)
(RULE r225 patheqn (qid-1 EQUALOP qid-2) #f)
(RULE r226 patheqn (qid EQUALOP patheqn) #f)
(RULE r227 whspec (whspec-1 AND whspec-2) #f)
(RULE r228 whspec (TYPE tyvars qid EQUALOP ty) #f)
(RULE r229 whspec (qid-1 EQUALOP qid-2) #f)
(RULE r230 sign (ident) #f)
(RULE r231 sign (SIG spec_s END) #f)
(RULE r232 sign (sign WHERE whspec) #f)
(RULE r233 sigconstraint_op () #f)
(RULE r234 sigconstraint_op (COLON sign) #f)
(RULE r235 sigconstraint_op (COLONGT sign) #f)
(RULE r236 fsigconstraint_op () #f)
(RULE r237 fsigconstraint_op (COLON ident) #f)
(RULE r238 fsigconstraint_op (COLONGT ident) #f)
(RULE r239 sigb (sigb-1 AND sigb-2) #f)
(RULE r240 sigb (ident EQUALOP sign) #f)
(RULE r241 fsigb (fsigb-1 AND fsigb-2) #f)
(RULE r242 fsigb (ident fparamList EQUALOP sign) #f)
(RULE r243 fsig (COLON ident) #f)
(RULE r244 fsig (fparamList COLON sign) #f)
(RULE r245 str (qid) #f)
(RULE r246 str (STRUCT strdecs END) #f)
(RULE r247 str (qid arg_fct) #f)
(RULE r248 str (LET strdecs IN str END) #f)
(RULE r249 str (str COLON sign) #f)
(RULE r250 str (str COLONGT sign) #f)
(RULE r251 arg_fct (LPAREN strdecs RPAREN arg_fct) #f)
(RULE r252 arg_fct (LPAREN str RPAREN arg_fct) #f)
(RULE r253 arg_fct (LPAREN str RPAREN) #f)
(RULE r254 arg_fct (LPAREN strdecs RPAREN) #f)
(RULE r255 strdecs (strdec strdecs) #f)
(RULE r256 strdecs (SEMICOLON strdecs) #f)
(RULE r257 strdecs () #f)
(RULE r258 sdecs (sdec sdecs) #f)
(RULE r259 sdecs (SEMICOLON sdecs) #f)
(RULE r260 sdecs () #f)
(RULE r261 sdecs_prime (sdec sdecs_prime) #f)
(RULE r262 sdecs_prime (sdec) #f)
(RULE r263 strdec (STRUCTURE strb) #f)
(RULE r264 strdec (FUNCTOR fctb) #f)
(RULE r265 strdec (LOCAL strdecs-1 IN strdecs-2 END) #f)
(RULE r266 strdec (ldec) #f)
(RULE r267 sdec (STRUCTURE strb) #f)
(RULE r268 sdec (SIGNATURE sigb) #f)
(RULE r269 sdec (FUNSIG fsigb) #f)
(RULE r270 sdec (FUNCTOR fctb) #f)
(RULE r271 sdec (LOCAL sdecs-1 IN sdecs-2 END) #f)
(RULE r272 sdec (ldec) #f)
(RULE r273 strb (ident sigconstraint_op EQUALOP str) #f)
(RULE r274 strb (strb-1 AND strb-2) #f)
(RULE r275 fparam (ID COLON sign) #f)
(RULE r276 fparam (spec_s) #f)
(RULE r277 fparamList (LPAREN fparam RPAREN) #f)
(RULE r278 fparamList (LPAREN fparam RPAREN fparamList) #f)
(RULE r279 fctb (ident fparamList sigconstraint_op EQUALOP str) #f)
(RULE r280 fctb (ident fsigconstraint_op EQUALOP fct_exp) #f)
(RULE r281 fctb (fctb-1 AND fctb-2) #f)
(RULE r282 fct_exp (qid) #f)
(RULE r283 fct_exp (qid arg_fct) #f)
(RULE r284 fct_exp (LET strdecs IN fct_exp END) #f)
(RULE r285 interdec (sdecs_prime) #f)
(RULE r286 interdec (exp) #f)
(STATE
s0
(COMMENT interdec "=>" "." exp)
(COMMENT interdec "=>" "." sdecs_prime)
(COMMENT sdec "=>" "." ldec)
(COMMENT sdec "=>" "." LOCAL sdecs IN sdecs END)
(COMMENT sdec "=>" "." FUNCTOR fctb)
(COMMENT sdec "=>" "." FUNSIG fsigb)
(COMMENT sdec "=>" "." SIGNATURE sigb)
(COMMENT sdec "=>" "." STRUCTURE strb)
(COMMENT sdecs_prime "=>" "." sdec)
(COMMENT sdecs_prime "=>" "." sdec sdecs_prime)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(COMMENT *start "=>" "." interdec SEMICOLON)
(COMMENT *start "=>" "." interdec EOF)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (ABSTYPE) s19)
(SHIFT (CASE) s20)
(SHIFT (DATATYPE) s21)
(SHIFT (EQUALOP) s22)
(SHIFT (EXCEPTION) s23)
(SHIFT (FN) s24)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s26)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LET) s31)
(SHIFT (LOCAL) s32)
(SHIFT (NONFIX) s33)
(SHIFT (OP) s34)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (SIGNATURE) s37)
(SHIFT (STRUCTURE) s38)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (FUNSIG) s46)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s3)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6)
(GOTO fixity s7)
(GOTO ldec s8)
(GOTO sdecs_prime s9)
(GOTO sdec s10)
(GOTO interdec s11))
(STATE s1 (COMMENT aexp "=>" int ".") (REDUCE () r59))
(STATE
s2
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" ident "." app_exp)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" ident ".")
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(REDUCE (SEMICOLON) r54)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(REDUCE (ABSTYPE) r54)
(REDUCE (BAR) r54)
(REDUCE (DATATYPE) r54)
(REDUCE (END) r54)
(SHIFT (EQUALOP) s22)
(REDUCE (EXCEPTION) r54)
(REDUCE (FUN) r54)
(REDUCE (FUNCTOR) r54)
(SHIFT (HASH) s27)
(REDUCE (IN) r54)
(REDUCE (INFIX) r54)
(REDUCE (INFIXR) r54)
(SHIFT (LET) s31)
(REDUCE (LOCAL) r54)
(REDUCE (NONFIX) r54)
(REDUCE (OF) r54)
(SHIFT (OP) s34)
(REDUCE (OPEN) r54)
(REDUCE (OVERLOAD) r54)
(REDUCE (SIGNATURE) r54)
(REDUCE (STRUCTURE) r54)
(REDUCE (THEN) r54)
(REDUCE (TYPE) r54)
(REDUCE (VAL) r54)
(SHIFT (ASTERISK) s42)
(REDUCE (COMMA) r54)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(REDUCE (RBRACE) r54)
(REDUCE (RBRACKET) r54)
(REDUCE (RPAREN) r54)
(REDUCE (FUNSIG) r54)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(REDUCE (AND) r54)
(REDUCE (DO) r54)
(REDUCE (ELSE) r54)
(REDUCE (HANDLE) r54)
(REDUCE (ORELSE) r54)
(REDUCE (ANDALSO) r54)
(REDUCE (COLON) r54)
(REDUCE (EOF) r54)
(GOTO int s1)
(GOTO ident s2)
(GOTO app_exp s563)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s3
(COMMENT interdec "=>" exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r286)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55)
(REDUCE (EOF) r286))
(STATE s4 (COMMENT exp "=>" app_exp ".") (REDUCE () r47))
(STATE
s5
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" aexp "." app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" aexp ".")
(COMMENT app_exp "=>" "." aexp)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(REDUCE (SEMICOLON) r53)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(REDUCE (ABSTYPE) r53)
(REDUCE (BAR) r53)
(REDUCE (DATATYPE) r53)
(REDUCE (END) r53)
(SHIFT (EQUALOP) s22)
(REDUCE (EXCEPTION) r53)
(REDUCE (FUN) r53)
(REDUCE (FUNCTOR) r53)
(SHIFT (HASH) s27)
(REDUCE (IN) r53)
(REDUCE (INFIX) r53)
(REDUCE (INFIXR) r53)
(SHIFT (LET) s31)
(REDUCE (LOCAL) r53)
(REDUCE (NONFIX) r53)
(REDUCE (OF) r53)
(SHIFT (OP) s34)
(REDUCE (OPEN) r53)
(REDUCE (OVERLOAD) r53)
(REDUCE (SIGNATURE) r53)
(REDUCE (STRUCTURE) r53)
(REDUCE (THEN) r53)
(REDUCE (TYPE) r53)
(REDUCE (VAL) r53)
(SHIFT (ASTERISK) s42)
(REDUCE (COMMA) r53)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(REDUCE (RBRACE) r53)
(REDUCE (RBRACKET) r53)
(REDUCE (RPAREN) r53)
(REDUCE (FUNSIG) r53)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(REDUCE (AND) r53)
(REDUCE (DO) r53)
(REDUCE (ELSE) r53)
(REDUCE (HANDLE) r53)
(REDUCE (ORELSE) r53)
(REDUCE (ANDALSO) r53)
(REDUCE (COLON) r53)
(REDUCE (EOF) r53)
(GOTO int s1)
(GOTO ident s2)
(GOTO app_exp s562)
(GOTO aexp s5)
(GOTO quote s6))
(STATE s6 (COMMENT aexp "=>" quote ".") (REDUCE () r76))
(STATE
s7
(COMMENT ops "=>" "." ident ops)
(COMMENT ops "=>" "." ident)
(COMMENT ldec "=>" fixity "." ops)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s559)
(GOTO ops s560))
(STATE s8 (COMMENT sdec "=>" ldec ".") (REDUCE () r272))
(STATE s9 (COMMENT interdec "=>" sdecs_prime ".") (REDUCE () r285))
(STATE
s10
(COMMENT sdec "=>" "." ldec)
(COMMENT sdec "=>" "." LOCAL sdecs IN sdecs END)
(COMMENT sdec "=>" "." FUNCTOR fctb)
(COMMENT sdec "=>" "." FUNSIG fsigb)
(COMMENT sdec "=>" "." SIGNATURE sigb)
(COMMENT sdec "=>" "." STRUCTURE strb)
(COMMENT sdecs_prime "=>" sdec ".")
(COMMENT sdecs_prime "=>" "." sdec)
(COMMENT sdecs_prime "=>" sdec "." sdecs_prime)
(COMMENT sdecs_prime "=>" "." sdec sdecs_prime)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(REDUCE (SEMICOLON) r262)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s26)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s32)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (SIGNATURE) s37)
(SHIFT (STRUCTURE) s38)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(SHIFT (FUNSIG) s46)
(REDUCE (EOF) r262)
(GOTO fixity s7)
(GOTO ldec s8)
(GOTO sdecs_prime s558)
(GOTO sdec s10))
(STATE
s11
(COMMENT *start "=>" interdec "." SEMICOLON)
(COMMENT *start "=>" interdec "." EOF)
(ACCEPT (SEMICOLON))
(ACCEPT (EOF)))
(STATE
s12
(COMMENT aexp "=>" ID "." DOT qid)
(COMMENT ident "=>" ID ".")
(REDUCE (SEMICOLON) r7)
(REDUCE (ID) r7)
(REDUCE (INT) r7)
(REDUCE (INT0) r7)
(REDUCE (WORD) r7)
(REDUCE (REAL) r7)
(REDUCE (STRING) r7)
(REDUCE (CHAR) r7)
(REDUCE (ABSTYPE) r7)
(REDUCE (BAR) r7)
(REDUCE (DATATYPE) r7)
(REDUCE (END) r7)
(REDUCE (EQUALOP) r7)
(REDUCE (EXCEPTION) r7)
(SHIFT (DOT) s173)
(REDUCE (FUN) r7)
(REDUCE (FUNCTOR) r7)
(REDUCE (HASH) r7)
(REDUCE (IN) r7)
(REDUCE (INFIX) r7)
(REDUCE (INFIXR) r7)
(REDUCE (LET) r7)
(REDUCE (LOCAL) r7)
(REDUCE (NONFIX) r7)
(REDUCE (OF) r7)
(REDUCE (OP) r7)
(REDUCE (OPEN) r7)
(REDUCE (OVERLOAD) r7)
(REDUCE (SIGNATURE) r7)
(REDUCE (STRUCTURE) r7)
(REDUCE (THEN) r7)
(REDUCE (TYPE) r7)
(REDUCE (VAL) r7)
(REDUCE (ASTERISK) r7)
(REDUCE (COMMA) r7)
(REDUCE (LBRACE) r7)
(REDUCE (LBRACKET) r7)
(REDUCE (LPAREN) r7)
(REDUCE (RBRACE) r7)
(REDUCE (RBRACKET) r7)
(REDUCE (RPAREN) r7)
(REDUCE (FUNSIG) r7)
(REDUCE (VECTORSTART) r7)
(REDUCE (BEGINQ) r7)
(REDUCE (AQID) r7)
(REDUCE (AND) r7)
(REDUCE (DO) r7)
(REDUCE (ELSE) r7)
(REDUCE (HANDLE) r7)
(REDUCE (ORELSE) r7)
(REDUCE (ANDALSO) r7)
(REDUCE (COLON) r7)
(REDUCE (EOF) r7))
(STATE s13 (COMMENT int "=>" INT ".") (REDUCE () r3))
(STATE s14 (COMMENT int "=>" INT0 ".") (REDUCE () r4))
(STATE s15 (COMMENT aexp "=>" WORD ".") (REDUCE () r60))
(STATE s16 (COMMENT aexp "=>" REAL ".") (REDUCE () r61))
(STATE s17 (COMMENT aexp "=>" STRING ".") (REDUCE () r62))
(STATE s18 (COMMENT aexp "=>" CHAR ".") (REDUCE () r63))
(STATE
s19
(COMMENT ldec "=>" ABSTYPE "." dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" ABSTYPE "." dbs WITH ldecs END)
(COMMENT db "=>" "." LAZY tyvars ID EQUALOP constrs)
(COMMENT db "=>" "." tyvarseq ID EQUALOP constrs)
(COMMENT db "=>" "." ID EQUALOP constrs)
(COMMENT dbs "=>" "." db AND dbs)
(COMMENT dbs "=>" "." db)
(COMMENT tyvarseq "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvarseq "=>" "." TYVAR)
(SHIFT (ID) s308)
(SHIFT (TYVAR) s286)
(SHIFT (LAZY) s287)
(SHIFT (LPAREN) s288)
(GOTO tyvarseq s281)
(GOTO dbs s547)
(GOTO db s284))
(STATE
s20
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" CASE "." exp OF match)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s544)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s21
(COMMENT ldec "=>" DATATYPE "." dbs WITHTYPE tb)
(COMMENT ldec "=>" DATATYPE "." dbs)
(COMMENT ldec "=>" DATATYPE "." dtrepl)
(COMMENT db "=>" "." LAZY tyvars ID EQUALOP constrs)
(COMMENT db "=>" "." tyvarseq ID EQUALOP constrs)
(COMMENT db "=>" "." ID EQUALOP constrs)
(COMMENT dbs "=>" "." db AND dbs)
(COMMENT dbs "=>" "." db)
(COMMENT dtrepl "=>" "." ID EQUALOP DATATYPE tycon)
(COMMENT tyvarseq "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvarseq "=>" "." TYVAR)
(SHIFT (ID) s285)
(SHIFT (TYVAR) s286)
(SHIFT (LAZY) s287)
(SHIFT (LPAREN) s288)
(GOTO tyvarseq s281)
(GOTO dtrepl s540)
(GOTO dbs s541)
(GOTO db s284))
(STATE s22 (COMMENT ident "=>" EQUALOP ".") (REDUCE () r9))
(STATE
s23
(COMMENT ldec "=>" EXCEPTION "." eb)
(COMMENT eb "=>" "." eb AND eb)
(COMMENT eb "=>" "." op_op ident EQUALOP qid)
(COMMENT eb "=>" "." op_op ident OF ty)
(COMMENT eb "=>" "." op_op ident)
(COMMENT op_op "=>" ".")
(COMMENT op_op "=>" "." OP)
(REDUCE (ID) r11)
(REDUCE (EQUALOP) r11)
(SHIFT (OP) s205)
(REDUCE (ASTERISK) r11)
(GOTO op_op s531)
(GOTO eb s532))
(STATE
s24
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT exp "=>" FN "." match)
(COMMENT rule "=>" "." pat DARROW exp)
(COMMENT match "=>" "." rule BAR match)
(COMMENT match "=>" "." rule)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO match s530)
(GOTO rule s98)
(GOTO pat s99)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE
s25
(COMMENT ldec "=>" FUN "." tyvarseq fb)
(COMMENT ldec "=>" FUN "." fb)
(COMMENT tyvarseq "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvarseq "=>" "." TYVAR)
(COMMENT clause "=>" "." apats constraint EQUALOP exp)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT fb "=>" "." LAZY fb_prime AND fb)
(COMMENT fb "=>" "." fb_prime AND fb)
(COMMENT fb "=>" "." LAZY fb_prime)
(COMMENT fb "=>" "." fb_prime)
(COMMENT fb_prime "=>" "." clause BAR fb_prime)
(COMMENT fb_prime "=>" "." clause)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (TYVAR) s286)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (LAZY) s518)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s361)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO fb_prime s513)
(GOTO fb s514)
(GOTO apats s515)
(GOTO clause s516)
(GOTO tyvarseq s517))
(STATE
s26
(COMMENT fctb "=>" "." fctb AND fctb)
(COMMENT fctb "=>" "." ident fsigconstraint_op EQUALOP fct_exp)
(COMMENT fctb "=>" "." ident fparamList sigconstraint_op EQUALOP str)
(COMMENT sdec "=>" FUNCTOR "." fctb)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s423)
(GOTO fctb s512))
(STATE
s27
(COMMENT aexp "=>" HASH "." selector)
(COMMENT selector "=>" "." INT)
(COMMENT selector "=>" "." id)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (INT) s79)
(SHIFT (ASTERISK) s80)
(GOTO id s74)
(GOTO selector s511))
(STATE
s28
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" IF "." exp THEN exp ELSE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s506)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s29
(COMMENT fixity "=>" INFIX "." int)
(COMMENT fixity "=>" INFIX ".")
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(REDUCE (ID) r163)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(REDUCE (EQUALOP) r163)
(REDUCE (ASTERISK) r163)
(GOTO int s505))
(STATE
s30
(COMMENT fixity "=>" INFIXR "." int)
(COMMENT fixity "=>" INFIXR ".")
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(REDUCE (ID) r165)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(REDUCE (EQUALOP) r165)
(REDUCE (ASTERISK) r165)
(GOTO int s504))
(STATE
s31
(COMMENT ldecs "=>" "." LOCAL ldecs IN ldecs END ldecs)
(COMMENT ldecs "=>" "." SEMICOLON ldecs)
(COMMENT ldecs "=>" "." ldec ldecs)
(COMMENT ldecs "=>" ".")
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(COMMENT aexp "=>" LET "." ldecs IN exp_ps END)
(SHIFT (SEMICOLON) s492)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(REDUCE (IN) r186)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s493)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s490)
(GOTO ldecs s491))
(STATE
s32
(COMMENT sdec "=>" "." ldec)
(COMMENT sdec "=>" LOCAL "." sdecs IN sdecs END)
(COMMENT sdec "=>" "." LOCAL sdecs IN sdecs END)
(COMMENT sdec "=>" "." FUNCTOR fctb)
(COMMENT sdec "=>" "." FUNSIG fsigb)
(COMMENT sdec "=>" "." SIGNATURE sigb)
(COMMENT sdec "=>" "." STRUCTURE strb)
(COMMENT sdecs "=>" ".")
(COMMENT sdecs "=>" "." SEMICOLON sdecs)
(COMMENT sdecs "=>" "." sdec sdecs)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s484)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s26)
(REDUCE (IN) r260)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s32)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (SIGNATURE) s37)
(SHIFT (STRUCTURE) s38)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(SHIFT (FUNSIG) s46)
(GOTO fixity s7)
(GOTO ldec s8)
(GOTO sdecs s482)
(GOTO sdec s483))
(STATE s33 (COMMENT fixity "=>" NONFIX ".") (REDUCE () r167))
(STATE
s34
(COMMENT aexp "=>" OP "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s481))
(STATE
s35
(COMMENT ldec "=>" OPEN "." qid_p)
(COMMENT qid_p "=>" "." qid qid_p)
(COMMENT qid_p "=>" "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s478)
(GOTO qid_p s479))
(STATE
s36
(COMMENT ldec "=>" OVERLOAD "." ident COLON ty AS exp_pa)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s470))
(STATE
s37
(COMMENT sdec "=>" SIGNATURE "." sigb)
(COMMENT sigb "=>" "." ident EQUALOP sign)
(COMMENT sigb "=>" "." sigb AND sigb)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s464)
(GOTO sigb s465))
(STATE
s38
(COMMENT strb "=>" "." strb AND strb)
(COMMENT strb "=>" "." ident sigconstraint_op EQUALOP str)
(COMMENT sdec "=>" STRUCTURE "." strb)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s397)
(GOTO strb s398))
(STATE
s39
(COMMENT ldec "=>" TYPE "." tb)
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(COMMENT tb "=>" "." tb AND tb)
(COMMENT tb "=>" "." tyvars ID EQUALOP ty)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(SHIFT (LPAREN) s214)
(GOTO tb s396)
(GOTO tyvars s312))
(STATE
s40
(COMMENT ldec "=>" VAL "." REC tyvarseq rvb)
(COMMENT ldec "=>" VAL "." REC rvb)
(COMMENT ldec "=>" VAL "." tyvarseq vb)
(COMMENT ldec "=>" VAL "." vb)
(COMMENT tyvarseq "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvarseq "=>" "." TYVAR)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT vb "=>" "." pat EQUALOP exp)
(COMMENT vb "=>" "." LAZY pat EQUALOP exp)
(COMMENT vb "=>" "." vb AND vb)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (TYVAR) s286)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (LAZY) s359)
(SHIFT (OP) s107)
(SHIFT (REC) s360)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s361)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s356)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO vb s357)
(GOTO apats s102)
(GOTO tyvarseq s358))
(STATE
s41
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" WHILE "." exp DO exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s353)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE s42 (COMMENT ident "=>" ASTERISK ".") (REDUCE () r8))
(STATE
s43
(COMMENT aexp "=>" LBRACE "." RBRACE)
(COMMENT aexp "=>" LBRACE "." elabels RBRACE)
(COMMENT elabels "=>" "." elabel)
(COMMENT elabels "=>" "." elabel COMMA elabels)
(COMMENT elabel "=>" "." selector EQUALOP exp)
(COMMENT selector "=>" "." INT)
(COMMENT selector "=>" "." id)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (INT) s79)
(SHIFT (ASTERISK) s80)
(SHIFT (RBRACE) s347)
(GOTO id s74)
(GOTO selector s344)
(GOTO elabel s345)
(GOTO elabels s346))
(STATE
s44
(COMMENT exp_list "=>" "." exp COMMA exp_list)
(COMMENT exp_list "=>" "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" LBRACKET "." RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" LBRACKET "." exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (RBRACKET) s342)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s177)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6)
(GOTO exp_list s341))
(STATE
s45
(COMMENT exp_2c "=>" "." exp COMMA exp)
(COMMENT exp_2c "=>" "." exp COMMA exp_2c)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" LPAREN "." exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" LPAREN "." exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" LPAREN "." RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT exp_ps "=>" "." exp SEMICOLON exp_ps)
(COMMENT exp_ps "=>" "." exp)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (RPAREN) s332)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp_ps s329)
(GOTO exp s330)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6)
(GOTO exp_2c s331))
(STATE
s46
(COMMENT sdec "=>" FUNSIG "." fsigb)
(COMMENT fsigb "=>" "." ident fparamList EQUALOP sign)
(COMMENT fsigb "=>" "." fsigb AND fsigb)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s183)
(GOTO fsigb s184))
(STATE
s47
(COMMENT exp_list "=>" "." exp COMMA exp_list)
(COMMENT exp_list "=>" "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" VECTORSTART "." RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" VECTORSTART "." exp_list RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (RBRACKET) s179)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s177)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6)
(GOTO exp_list s178))
(STATE
s48
(COMMENT ot_list "=>" "." OBJL aexp ot_list)
(COMMENT ot_list "=>" "." OBJL aexp)
(COMMENT quote "=>" BEGINQ "." ot_list ENDQ)
(COMMENT quote "=>" BEGINQ "." ENDQ)
(SHIFT (ENDQ) s169)
(SHIFT (OBJL) s170)
(GOTO ot_list s168))
(STATE s49 (COMMENT aexp "=>" AQID ".") (REDUCE () r75))
(STATE
s50
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" RAISE "." exp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s51)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s51
(COMMENT exp "=>" RAISE exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r52)
(REDUCE (ABSTYPE) r52)
(REDUCE (BAR) r52)
(REDUCE (DATATYPE) r52)
(REDUCE (END) r52)
(REDUCE (EXCEPTION) r52)
(REDUCE (FUN) r52)
(REDUCE (FUNCTOR) r52)
(REDUCE (IN) r52)
(REDUCE (INFIX) r52)
(REDUCE (INFIXR) r52)
(REDUCE (LOCAL) r52)
(REDUCE (NONFIX) r52)
(REDUCE (OF) r52)
(REDUCE (OPEN) r52)
(REDUCE (OVERLOAD) r52)
(REDUCE (SIGNATURE) r52)
(REDUCE (STRUCTURE) r52)
(REDUCE (THEN) r52)
(REDUCE (TYPE) r52)
(REDUCE (VAL) r52)
(REDUCE (COMMA) r52)
(REDUCE (RBRACE) r52)
(REDUCE (RBRACKET) r52)
(REDUCE (RPAREN) r52)
(REDUCE (FUNSIG) r52)
(REDUCE (AND) r52)
(REDUCE (DO) r52)
(REDUCE (ELSE) r52)
(REDUCE (HANDLE) r52)
(REDUCE (ORELSE) r52)
(REDUCE (ANDALSO) r52)
(REDUCE (COLON) r52)
(REDUCE (EOF) r52))
(STATE
s52
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT exp "=>" exp HANDLE "." match)
(COMMENT rule "=>" "." pat DARROW exp)
(COMMENT match "=>" "." rule BAR match)
(COMMENT match "=>" "." rule)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO match s97)
(GOTO rule s98)
(GOTO pat s99)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE
s53
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" exp ORELSE "." exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s94)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s54
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" exp ANDALSO "." exp)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s93)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s55
(COMMENT exp "=>" exp COLON "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s59))
(STATE s56 (COMMENT ty_prime "=>" tycon ".") (REDUCE () r27))
(STATE
s57
(COMMENT ty "=>" ty_prime ".")
(COMMENT tuple_ty "=>" ty_prime "." ASTERISK ty_prime)
(COMMENT tuple_ty "=>" ty_prime "." ASTERISK tuple_ty)
(COMMENT ty_prime "=>" ty_prime "." tycon)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(REDUCE (SEMICOLON) r32)
(SHIFT (ID) s60)
(REDUCE (ABSTYPE) r32)
(REDUCE (BAR) r32)
(REDUCE (DATATYPE) r32)
(REDUCE (END) r32)
(REDUCE (EQUALOP) r32)
(REDUCE (EQTYPE) r32)
(REDUCE (EXCEPTION) r32)
(REDUCE (FUN) r32)
(REDUCE (FUNCTOR) r32)
(REDUCE (IN) r32)
(REDUCE (INCLUDE) r32)
(REDUCE (INFIX) r32)
(REDUCE (INFIXR) r32)
(REDUCE (LOCAL) r32)
(REDUCE (NONFIX) r32)
(REDUCE (OF) r32)
(REDUCE (OPEN) r32)
(REDUCE (OVERLOAD) r32)
(REDUCE (SHARING) r32)
(REDUCE (SIGNATURE) r32)
(REDUCE (STRUCTURE) r32)
(REDUCE (THEN) r32)
(REDUCE (TYPE) r32)
(REDUCE (VAL) r32)
(REDUCE (WHERE) r32)
(REDUCE (WITH) r32)
(SHIFT (ASTERISK) s90)
(REDUCE (COLONGT) r32)
(REDUCE (COMMA) r32)
(REDUCE (RBRACE) r32)
(REDUCE (RBRACKET) r32)
(REDUCE (RPAREN) r32)
(REDUCE (FUNSIG) r32)
(REDUCE (WITHTYPE) r32)
(REDUCE (AND) r32)
(REDUCE (ARROW) r32)
(REDUCE (DARROW) r32)
(REDUCE (DO) r32)
(REDUCE (ELSE) r32)
(REDUCE (HANDLE) r32)
(REDUCE (ORELSE) r32)
(REDUCE (ANDALSO) r32)
(REDUCE (AS) r32)
(REDUCE (COLON) r32)
(REDUCE (EOF) r32)
(GOTO tycon s89))
(STATE s58 (COMMENT ty "=>" tuple_ty ".") (REDUCE () r30))
(STATE
s59
(COMMENT exp "=>" exp COLON ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (SEMICOLON) r46)
(REDUCE (ABSTYPE) r46)
(REDUCE (BAR) r46)
(REDUCE (DATATYPE) r46)
(REDUCE (END) r46)
(REDUCE (EXCEPTION) r46)
(REDUCE (FUN) r46)
(REDUCE (FUNCTOR) r46)
(REDUCE (IN) r46)
(REDUCE (INFIX) r46)
(REDUCE (INFIXR) r46)
(REDUCE (LOCAL) r46)
(REDUCE (NONFIX) r46)
(REDUCE (OF) r46)
(REDUCE (OPEN) r46)
(REDUCE (OVERLOAD) r46)
(REDUCE (SIGNATURE) r46)
(REDUCE (STRUCTURE) r46)
(REDUCE (THEN) r46)
(REDUCE (TYPE) r46)
(REDUCE (VAL) r46)
(REDUCE (COMMA) r46)
(REDUCE (RBRACE) r46)
(REDUCE (RBRACKET) r46)
(REDUCE (RPAREN) r46)
(REDUCE (FUNSIG) r46)
(REDUCE (AND) r46)
(SHIFT (ARROW) s70)
(REDUCE (DO) r46)
(REDUCE (ELSE) r46)
(REDUCE (HANDLE) r46)
(REDUCE (ORELSE) r46)
(REDUCE (ANDALSO) r46)
(REDUCE (COLON) r46)
(REDUCE (EOF) r46))
(STATE
s60
(COMMENT tycon "=>" ID ".")
(COMMENT tycon "=>" ID "." DOT tycon)
(REDUCE (SEMICOLON) r17)
(REDUCE (ID) r17)
(REDUCE (ABSTYPE) r17)
(REDUCE (BAR) r17)
(REDUCE (DATATYPE) r17)
(REDUCE (END) r17)
(REDUCE (EQUALOP) r17)
(REDUCE (EQTYPE) r17)
(REDUCE (EXCEPTION) r17)
(SHIFT (DOT) s87)
(REDUCE (FUN) r17)
(REDUCE (FUNCTOR) r17)
(REDUCE (IN) r17)
(REDUCE (INCLUDE) r17)
(REDUCE (INFIX) r17)
(REDUCE (INFIXR) r17)
(REDUCE (LOCAL) r17)
(REDUCE (NONFIX) r17)
(REDUCE (OF) r17)
(REDUCE (OPEN) r17)
(REDUCE (OVERLOAD) r17)
(REDUCE (SHARING) r17)
(REDUCE (SIGNATURE) r17)
(REDUCE (STRUCTURE) r17)
(REDUCE (THEN) r17)
(REDUCE (TYPE) r17)
(REDUCE (VAL) r17)
(REDUCE (WHERE) r17)
(REDUCE (WITH) r17)
(REDUCE (ASTERISK) r17)
(REDUCE (COLONGT) r17)
(REDUCE (COMMA) r17)
(REDUCE (RBRACE) r17)
(REDUCE (RBRACKET) r17)
(REDUCE (RPAREN) r17)
(REDUCE (FUNSIG) r17)
(REDUCE (WITHTYPE) r17)
(REDUCE (AND) r17)
(REDUCE (ARROW) r17)
(REDUCE (DARROW) r17)
(REDUCE (DO) r17)
(REDUCE (ELSE) r17)
(REDUCE (HANDLE) r17)
(REDUCE (ORELSE) r17)
(REDUCE (ANDALSO) r17)
(REDUCE (AS) r17)
(REDUCE (COLON) r17)
(REDUCE (EOF) r17))
(STATE s61 (COMMENT ty_prime "=>" TYVAR ".") (REDUCE () r21))
(STATE
s62
(COMMENT ty_prime "=>" LBRACE "." RBRACE)
(COMMENT ty_prime "=>" LBRACE "." tlabels RBRACE)
(COMMENT tlabels "=>" "." tlabel)
(COMMENT tlabels "=>" "." tlabel COMMA tlabels)
(COMMENT tlabel "=>" "." selector COLON ty)
(COMMENT selector "=>" "." INT)
(COMMENT selector "=>" "." id)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (INT) s79)
(SHIFT (ASTERISK) s80)
(SHIFT (RBRACE) s81)
(GOTO id s74)
(GOTO selector s75)
(GOTO tlabel s76)
(GOTO tlabels s77))
(STATE
s63
(COMMENT ty0_pc "=>" "." ty COMMA ty0_pc)
(COMMENT ty0_pc "=>" "." ty COMMA ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" LPAREN "." ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" LPAREN "." ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s64)
(GOTO ty0_pc s65))
(STATE
s64
(COMMENT ty0_pc "=>" ty "." COMMA ty0_pc)
(COMMENT ty0_pc "=>" ty "." COMMA ty)
(COMMENT ty "=>" ty "." ARROW ty)
(COMMENT ty_prime "=>" LPAREN ty "." RPAREN)
(SHIFT (COMMA) s68)
(SHIFT (RPAREN) s69)
(SHIFT (ARROW) s70))
(STATE
s65
(COMMENT ty_prime "=>" LPAREN ty0_pc "." RPAREN tycon)
(SHIFT (RPAREN) s66))
(STATE
s66
(COMMENT ty_prime "=>" LPAREN ty0_pc RPAREN "." tycon)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(GOTO tycon s67))
(STATE
s67
(COMMENT ty_prime "=>" LPAREN ty0_pc RPAREN tycon ".")
(REDUCE () r24))
(STATE
s68
(COMMENT ty0_pc "=>" ty COMMA "." ty0_pc)
(COMMENT ty0_pc "=>" "." ty COMMA ty0_pc)
(COMMENT ty0_pc "=>" ty COMMA "." ty)
(COMMENT ty0_pc "=>" "." ty COMMA ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s72)
(GOTO ty0_pc s73))
(STATE s69 (COMMENT ty_prime "=>" LPAREN ty RPAREN ".") (REDUCE () r25))
(STATE
s70
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" ty ARROW "." ty)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s71))
(STATE
s71
(COMMENT ty "=>" ty ARROW ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (SEMICOLON) r31)
(REDUCE (ABSTYPE) r31)
(REDUCE (BAR) r31)
(REDUCE (DATATYPE) r31)
(REDUCE (END) r31)
(REDUCE (EQUALOP) r31)
(REDUCE (EQTYPE) r31)
(REDUCE (EXCEPTION) r31)
(REDUCE (FUN) r31)
(REDUCE (FUNCTOR) r31)
(REDUCE (IN) r31)
(REDUCE (INCLUDE) r31)
(REDUCE (INFIX) r31)
(REDUCE (INFIXR) r31)
(REDUCE (LOCAL) r31)
(REDUCE (NONFIX) r31)
(REDUCE (OF) r31)
(REDUCE (OPEN) r31)
(REDUCE (OVERLOAD) r31)
(REDUCE (SHARING) r31)
(REDUCE (SIGNATURE) r31)
(REDUCE (STRUCTURE) r31)
(REDUCE (THEN) r31)
(REDUCE (TYPE) r31)
(REDUCE (VAL) r31)
(REDUCE (WHERE) r31)
(REDUCE (WITH) r31)
(REDUCE (COLONGT) r31)
(REDUCE (COMMA) r31)
(REDUCE (RBRACE) r31)
(REDUCE (RBRACKET) r31)
(REDUCE (RPAREN) r31)
(REDUCE (FUNSIG) r31)
(REDUCE (WITHTYPE) r31)
(REDUCE (AND) r31)
(SHIFT (ARROW) s70)
(REDUCE (DARROW) r31)
(REDUCE (DO) r31)
(REDUCE (ELSE) r31)
(REDUCE (HANDLE) r31)
(REDUCE (ORELSE) r31)
(REDUCE (ANDALSO) r31)
(REDUCE (AS) r31)
(REDUCE (COLON) r31)
(REDUCE (EOF) r31))
(STATE
s72
(COMMENT ty0_pc "=>" ty "." COMMA ty0_pc)
(COMMENT ty0_pc "=>" ty COMMA ty ".")
(COMMENT ty0_pc "=>" ty "." COMMA ty)
(COMMENT ty "=>" ty "." ARROW ty)
(SHIFT (COMMA) s68)
(REDUCE (RPAREN) r33)
(SHIFT (ARROW) s70))
(STATE s73 (COMMENT ty0_pc "=>" ty COMMA ty0_pc ".") (REDUCE () r34))
(STATE s74 (COMMENT selector "=>" id ".") (REDUCE () r14))
(STATE s75 (COMMENT tlabel "=>" selector "." COLON ty) (SHIFT (COLON) s85))
(STATE
s76
(COMMENT tlabels "=>" tlabel ".")
(COMMENT tlabels "=>" tlabel "." COMMA tlabels)
(SHIFT (COMMA) s83)
(REDUCE (RBRACE) r20))
(STATE
s77
(COMMENT ty_prime "=>" LBRACE tlabels "." RBRACE)
(SHIFT (RBRACE) s82))
(STATE s78 (COMMENT id "=>" ID ".") (REDUCE () r5))
(STATE s79 (COMMENT selector "=>" INT ".") (REDUCE () r15))
(STATE s80 (COMMENT id "=>" ASTERISK ".") (REDUCE () r6))
(STATE s81 (COMMENT ty_prime "=>" LBRACE RBRACE ".") (REDUCE () r23))
(STATE
s82
(COMMENT ty_prime "=>" LBRACE tlabels RBRACE ".")
(REDUCE () r22))
(STATE
s83
(COMMENT tlabels "=>" "." tlabel)
(COMMENT tlabels "=>" tlabel COMMA "." tlabels)
(COMMENT tlabels "=>" "." tlabel COMMA tlabels)
(COMMENT tlabel "=>" "." selector COLON ty)
(COMMENT selector "=>" "." INT)
(COMMENT selector "=>" "." id)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (INT) s79)
(SHIFT (ASTERISK) s80)
(GOTO id s74)
(GOTO selector s75)
(GOTO tlabel s76)
(GOTO tlabels s84))
(STATE s84 (COMMENT tlabels "=>" tlabel COMMA tlabels ".") (REDUCE () r19))
(STATE
s85
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tlabel "=>" selector COLON "." ty)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s86))
(STATE
s86
(COMMENT ty "=>" ty "." ARROW ty)
(COMMENT tlabel "=>" selector COLON ty ".")
(REDUCE (COMMA) r18)
(REDUCE (RBRACE) r18)
(SHIFT (ARROW) s70))
(STATE
s87
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" ID DOT "." tycon)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(GOTO tycon s88))
(STATE s88 (COMMENT tycon "=>" ID DOT tycon ".") (REDUCE () r16))
(STATE s89 (COMMENT ty_prime "=>" ty_prime tycon ".") (REDUCE () r26))
(STATE
s90
(COMMENT tuple_ty "=>" ty_prime ASTERISK "." ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" ty_prime ASTERISK "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s91)
(GOTO tuple_ty s92))
(STATE
s91
(COMMENT tuple_ty "=>" ty_prime ASTERISK ty_prime ".")
(COMMENT tuple_ty "=>" ty_prime "." ASTERISK ty_prime)
(COMMENT tuple_ty "=>" ty_prime "." ASTERISK tuple_ty)
(COMMENT ty_prime "=>" ty_prime "." tycon)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(REDUCE (SEMICOLON) r29)
(SHIFT (ID) s60)
(REDUCE (ABSTYPE) r29)
(REDUCE (BAR) r29)
(REDUCE (DATATYPE) r29)
(REDUCE (END) r29)
(REDUCE (EQUALOP) r29)
(REDUCE (EQTYPE) r29)
(REDUCE (EXCEPTION) r29)
(REDUCE (FUN) r29)
(REDUCE (FUNCTOR) r29)
(REDUCE (IN) r29)
(REDUCE (INCLUDE) r29)
(REDUCE (INFIX) r29)
(REDUCE (INFIXR) r29)
(REDUCE (LOCAL) r29)
(REDUCE (NONFIX) r29)
(REDUCE (OF) r29)
(REDUCE (OPEN) r29)
(REDUCE (OVERLOAD) r29)
(REDUCE (SHARING) r29)
(REDUCE (SIGNATURE) r29)
(REDUCE (STRUCTURE) r29)
(REDUCE (THEN) r29)
(REDUCE (TYPE) r29)
(REDUCE (VAL) r29)
(REDUCE (WHERE) r29)
(REDUCE (WITH) r29)
(SHIFT (ASTERISK) s90)
(REDUCE (COLONGT) r29)
(REDUCE (COMMA) r29)
(REDUCE (RBRACE) r29)
(REDUCE (RBRACKET) r29)
(REDUCE (RPAREN) r29)
(REDUCE (FUNSIG) r29)
(REDUCE (WITHTYPE) r29)
(REDUCE (AND) r29)
(REDUCE (ARROW) r29)
(REDUCE (DARROW) r29)
(REDUCE (DO) r29)
(REDUCE (ELSE) r29)
(REDUCE (HANDLE) r29)
(REDUCE (ORELSE) r29)
(REDUCE (ANDALSO) r29)
(REDUCE (AS) r29)
(REDUCE (COLON) r29)
(REDUCE (EOF) r29)
(GOTO tycon s89))
(STATE
s92
(COMMENT tuple_ty "=>" ty_prime ASTERISK tuple_ty ".")
(REDUCE () r28))
(STATE
s93
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp ANDALSO exp ".")
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r45)
(REDUCE (ABSTYPE) r45)
(REDUCE (BAR) r45)
(REDUCE (DATATYPE) r45)
(REDUCE (END) r45)
(REDUCE (EXCEPTION) r45)
(REDUCE (FUN) r45)
(REDUCE (FUNCTOR) r45)
(REDUCE (IN) r45)
(REDUCE (INFIX) r45)
(REDUCE (INFIXR) r45)
(REDUCE (LOCAL) r45)
(REDUCE (NONFIX) r45)
(REDUCE (OF) r45)
(REDUCE (OPEN) r45)
(REDUCE (OVERLOAD) r45)
(REDUCE (SIGNATURE) r45)
(REDUCE (STRUCTURE) r45)
(REDUCE (THEN) r45)
(REDUCE (TYPE) r45)
(REDUCE (VAL) r45)
(REDUCE (COMMA) r45)
(REDUCE (RBRACE) r45)
(REDUCE (RBRACKET) r45)
(REDUCE (RPAREN) r45)
(REDUCE (FUNSIG) r45)
(REDUCE (AND) r45)
(REDUCE (DO) r45)
(REDUCE (ELSE) r45)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(REDUCE (COLON) r45)
(REDUCE (EOF) r45))
(STATE
s94
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp ORELSE exp ".")
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r44)
(REDUCE (ABSTYPE) r44)
(REDUCE (BAR) r44)
(REDUCE (DATATYPE) r44)
(REDUCE (END) r44)
(REDUCE (EXCEPTION) r44)
(REDUCE (FUN) r44)
(REDUCE (FUNCTOR) r44)
(REDUCE (IN) r44)
(REDUCE (INFIX) r44)
(REDUCE (INFIXR) r44)
(REDUCE (LOCAL) r44)
(REDUCE (NONFIX) r44)
(REDUCE (OF) r44)
(REDUCE (OPEN) r44)
(REDUCE (OVERLOAD) r44)
(REDUCE (SIGNATURE) r44)
(REDUCE (STRUCTURE) r44)
(REDUCE (THEN) r44)
(REDUCE (TYPE) r44)
(REDUCE (VAL) r44)
(REDUCE (COMMA) r44)
(REDUCE (RBRACE) r44)
(REDUCE (RBRACKET) r44)
(REDUCE (RPAREN) r44)
(REDUCE (FUNSIG) r44)
(REDUCE (AND) r44)
(REDUCE (DO) r44)
(REDUCE (ELSE) r44)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(REDUCE (ANDALSO) r44)
(REDUCE (COLON) r44)
(REDUCE (EOF) r44))
(STATE s95 (COMMENT apat_prime "=>" int ".") (REDUCE () r96))
(STATE s96 (COMMENT apat "=>" id ".") (REDUCE () r90))
(STATE s97 (COMMENT exp "=>" exp HANDLE match ".") (REDUCE () r43))
(STATE
s98
(COMMENT match "=>" rule "." BAR match)
(COMMENT match "=>" rule ".")
(REDUCE (SEMICOLON) r35)
(REDUCE (ABSTYPE) r35)
(COMMENT (REDUCE (BAR) r35))
(SHIFT (BAR) s166)
(REDUCE (DATATYPE) r35)
(REDUCE (END) r35)
(REDUCE (EXCEPTION) r35)
(REDUCE (FUN) r35)
(REDUCE (FUNCTOR) r35)
(REDUCE (IN) r35)
(REDUCE (INFIX) r35)
(REDUCE (INFIXR) r35)
(REDUCE (LOCAL) r35)
(REDUCE (NONFIX) r35)
(REDUCE (OF) r35)
(REDUCE (OPEN) r35)
(REDUCE (OVERLOAD) r35)
(REDUCE (SIGNATURE) r35)
(REDUCE (STRUCTURE) r35)
(REDUCE (THEN) r35)
(REDUCE (TYPE) r35)
(REDUCE (VAL) r35)
(REDUCE (COMMA) r35)
(REDUCE (RBRACE) r35)
(REDUCE (RBRACKET) r35)
(REDUCE (RPAREN) r35)
(REDUCE (FUNSIG) r35)
(REDUCE (AND) r35)
(REDUCE (DO) r35)
(REDUCE (ELSE) r35)
(REDUCE (HANDLE) r35)
(REDUCE (ORELSE) r35)
(REDUCE (ANDALSO) r35)
(REDUCE (COLON) r35)
(REDUCE (EOF) r35))
(STATE
s99
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat "." AS pat)
(COMMENT rule "=>" pat "." DARROW exp)
(SHIFT (DARROW) s164)
(SHIFT (AS) s118)
(SHIFT (COLON) s119))
(STATE
s100
(COMMENT apats "=>" apat "." apats)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" apat ".")
(COMMENT apats "=>" "." apat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(REDUCE (BAR) r135)
(REDUCE (EQUALOP) r135)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(REDUCE (COMMA) r135)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(REDUCE (RBRACE) r135)
(REDUCE (RBRACKET) r135)
(REDUCE (RPAREN) r135)
(SHIFT (VECTORSTART) s112)
(REDUCE (DARROW) r135)
(REDUCE (AS) r135)
(REDUCE (COLON) r135)
(GOTO int s95)
(GOTO id s96)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s163))
(STATE s101 (COMMENT apat "=>" apat_prime ".") (REDUCE () r88))
(STATE s102 (COMMENT pat "=>" apats ".") (REDUCE () r87))
(STATE
s103
(COMMENT apat_prime "=>" ID "." DOT qid)
(COMMENT id "=>" ID ".")
(REDUCE (ID) r5)
(REDUCE (INT) r5)
(REDUCE (INT0) r5)
(REDUCE (WORD) r5)
(REDUCE (STRING) r5)
(REDUCE (CHAR) r5)
(REDUCE (BAR) r5)
(REDUCE (EQUALOP) r5)
(SHIFT (DOT) s157)
(REDUCE (OP) r5)
(REDUCE (WILD) r5)
(REDUCE (ASTERISK) r5)
(REDUCE (COMMA) r5)
(REDUCE (LBRACE) r5)
(REDUCE (LBRACKET) r5)
(REDUCE (LPAREN) r5)
(REDUCE (RBRACE) r5)
(REDUCE (RBRACKET) r5)
(REDUCE (RPAREN) r5)
(REDUCE (VECTORSTART) r5)
(REDUCE (DARROW) r5)
(REDUCE (AS) r5)
(REDUCE (COLON) r5))
(STATE s104 (COMMENT apat_prime "=>" WORD ".") (REDUCE () r97))
(STATE s105 (COMMENT apat_prime "=>" STRING ".") (REDUCE () r98))
(STATE s106 (COMMENT apat_prime "=>" CHAR ".") (REDUCE () r99))
(STATE
s107
(COMMENT apat_prime "=>" OP "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s155))
(STATE s108 (COMMENT apat_prime "=>" WILD ".") (REDUCE () r100))
(STATE
s109
(COMMENT plabels "=>" "." DOTDOTDOT)
(COMMENT plabels "=>" "." plabel)
(COMMENT plabels "=>" "." plabel COMMA plabels)
(COMMENT plabel "=>" "." ID COLON ty AS pat)
(COMMENT plabel "=>" "." ID COLON ty)
(COMMENT plabel "=>" "." ID AS pat)
(COMMENT plabel "=>" "." ID)
(COMMENT plabel "=>" "." selector EQUALOP pat)
(COMMENT apat_prime "=>" LBRACE "." plabels RBRACE)
(COMMENT apat_prime "=>" LBRACE "." RBRACE)
(COMMENT selector "=>" "." INT)
(COMMENT selector "=>" "." id)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s141)
(SHIFT (INT) s79)
(SHIFT (DOTDOTDOT) s142)
(SHIFT (ASTERISK) s80)
(SHIFT (RBRACE) s143)
(GOTO id s74)
(GOTO selector s138)
(GOTO plabel s139)
(GOTO plabels s140))
(STATE
s110
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT pat_list "=>" "." pat COMMA pat_list)
(COMMENT pat_list "=>" "." pat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" LBRACKET "." pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" LBRACKET "." RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (RBRACKET) s136)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s113)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO pat_list s135)
(GOTO apats s102))
(STATE
s111
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" LPAREN "." pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" LPAREN "." pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" LPAREN "." RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" LPAREN "." pat RPAREN)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (RPAREN) s124)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s123)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE
s112
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT pat_list "=>" "." pat COMMA pat_list)
(COMMENT pat_list "=>" "." pat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" VECTORSTART "." pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" VECTORSTART "." RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (RBRACKET) s115)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s113)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO pat_list s114)
(GOTO apats s102))
(STATE
s113
(COMMENT pat_list "=>" pat "." COMMA pat_list)
(COMMENT pat_list "=>" pat ".")
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat "." AS pat)
(SHIFT (COMMA) s117)
(REDUCE (RBRACKET) r115)
(REDUCE (RPAREN) r115)
(SHIFT (AS) s118)
(SHIFT (COLON) s119))
(STATE
s114
(COMMENT apat_prime "=>" VECTORSTART pat_list "." RBRACKET)
(SHIFT (RBRACKET) s116))
(STATE
s115
(COMMENT apat_prime "=>" VECTORSTART RBRACKET ".")
(REDUCE () r103))
(STATE
s116
(COMMENT apat_prime "=>" VECTORSTART pat_list RBRACKET ".")
(REDUCE () r104))
(STATE
s117
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT pat_list "=>" pat COMMA "." pat_list)
(COMMENT pat_list "=>" "." pat COMMA pat_list)
(COMMENT pat_list "=>" "." pat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s113)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO pat_list s122)
(GOTO apats s102))
(STATE
s118
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" pat AS "." pat)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s121)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE
s119
(COMMENT pat "=>" pat COLON "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s120))
(STATE
s120
(COMMENT pat "=>" pat COLON ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (BAR) r86)
(REDUCE (EQUALOP) r86)
(REDUCE (COMMA) r86)
(REDUCE (RBRACE) r86)
(REDUCE (RBRACKET) r86)
(REDUCE (RPAREN) r86)
(SHIFT (ARROW) s70)
(REDUCE (DARROW) r86)
(REDUCE (AS) r86)
(REDUCE (COLON) r86))
(STATE
s121
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat AS pat ".")
(COMMENT pat "=>" pat "." AS pat)
(REDUCE (BAR) r85)
(REDUCE (EQUALOP) r85)
(REDUCE (COMMA) r85)
(REDUCE (RBRACE) r85)
(REDUCE (RBRACKET) r85)
(REDUCE (RPAREN) r85)
(REDUCE (DARROW) r85)
(SHIFT (AS) s118)
(REDUCE (COLON) r85))
(STATE s122 (COMMENT pat_list "=>" pat COMMA pat_list ".") (REDUCE () r116))
(STATE
s123
(COMMENT apat "=>" LPAREN pat "." BAR or_pat_list RPAREN)
(COMMENT apat "=>" LPAREN pat "." COMMA pat_list RPAREN)
(COMMENT apat "=>" LPAREN pat "." RPAREN)
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat "." AS pat)
(SHIFT (BAR) s125)
(SHIFT (COMMA) s126)
(SHIFT (RPAREN) s127)
(SHIFT (AS) s118)
(SHIFT (COLON) s119))
(STATE s124 (COMMENT apat "=>" LPAREN RPAREN ".") (REDUCE () r91))
(STATE
s125
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT or_pat_list "=>" "." pat BAR or_pat_list)
(COMMENT or_pat_list "=>" "." pat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" LPAREN pat BAR "." or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s130)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO or_pat_list s131)
(GOTO apats s102))
(STATE
s126
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT pat_list "=>" "." pat COMMA pat_list)
(COMMENT pat_list "=>" "." pat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" LPAREN pat COMMA "." pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s113)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO pat_list s128)
(GOTO apats s102))
(STATE s127 (COMMENT apat "=>" LPAREN pat RPAREN ".") (REDUCE () r89))
(STATE
s128
(COMMENT apat "=>" LPAREN pat COMMA pat_list "." RPAREN)
(SHIFT (RPAREN) s129))
(STATE
s129
(COMMENT apat "=>" LPAREN pat COMMA pat_list RPAREN ".")
(REDUCE () r92))
(STATE
s130
(COMMENT or_pat_list "=>" pat "." BAR or_pat_list)
(COMMENT or_pat_list "=>" pat ".")
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat "." AS pat)
(SHIFT (BAR) s133)
(REDUCE (RPAREN) r117)
(SHIFT (AS) s118)
(SHIFT (COLON) s119))
(STATE
s131
(COMMENT apat "=>" LPAREN pat BAR or_pat_list "." RPAREN)
(SHIFT (RPAREN) s132))
(STATE
s132
(COMMENT apat "=>" LPAREN pat BAR or_pat_list RPAREN ".")
(REDUCE () r93))
(STATE
s133
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT or_pat_list "=>" pat BAR "." or_pat_list)
(COMMENT or_pat_list "=>" "." pat BAR or_pat_list)
(COMMENT or_pat_list "=>" "." pat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s130)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO or_pat_list s134)
(GOTO apats s102))
(STATE
s134
(COMMENT or_pat_list "=>" pat BAR or_pat_list ".")
(REDUCE () r118))
(STATE
s135
(COMMENT apat_prime "=>" LBRACKET pat_list "." RBRACKET)
(SHIFT (RBRACKET) s137))
(STATE
s136
(COMMENT apat_prime "=>" LBRACKET RBRACKET ".")
(REDUCE () r101))
(STATE
s137
(COMMENT apat_prime "=>" LBRACKET pat_list RBRACKET ".")
(REDUCE () r102))
(STATE
s138
(COMMENT plabel "=>" selector "." EQUALOP pat)
(SHIFT (EQUALOP) s153))
(STATE
s139
(COMMENT plabels "=>" plabel ".")
(COMMENT plabels "=>" plabel "." COMMA plabels)
(SHIFT (COMMA) s151)
(REDUCE (RBRACE) r113))
(STATE
s140
(COMMENT apat_prime "=>" LBRACE plabels "." RBRACE)
(SHIFT (RBRACE) s150))
(STATE
s141
(COMMENT plabel "=>" ID "." COLON ty AS pat)
(COMMENT plabel "=>" ID "." COLON ty)
(COMMENT plabel "=>" ID "." AS pat)
(COMMENT plabel "=>" ID ".")
(COMMENT id "=>" ID ".")
(REDUCE (EQUALOP) r5)
(REDUCE (COMMA) r108)
(REDUCE (RBRACE) r108)
(SHIFT (AS) s144)
(SHIFT (COLON) s145))
(STATE s142 (COMMENT plabels "=>" DOTDOTDOT ".") (REDUCE () r114))
(STATE s143 (COMMENT apat_prime "=>" LBRACE RBRACE ".") (REDUCE () r105))
(STATE
s144
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT plabel "=>" ID AS "." pat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s149)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE
s145
(COMMENT plabel "=>" ID COLON "." ty AS pat)
(COMMENT plabel "=>" ID COLON "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s146))
(STATE
s146
(COMMENT plabel "=>" ID COLON ty "." AS pat)
(COMMENT plabel "=>" ID COLON ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (COMMA) r110)
(REDUCE (RBRACE) r110)
(SHIFT (ARROW) s70)
(SHIFT (AS) s147))
(STATE
s147
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT plabel "=>" ID COLON ty AS "." pat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s148)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE
s148
(COMMENT plabel "=>" ID COLON ty AS pat ".")
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat "." AS pat)
(REDUCE (COMMA) r111)
(REDUCE (RBRACE) r111)
(SHIFT (AS) s118)
(SHIFT (COLON) s119))
(STATE
s149
(COMMENT plabel "=>" ID AS pat ".")
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat "." AS pat)
(REDUCE (COMMA) r109)
(REDUCE (RBRACE) r109)
(SHIFT (AS) s118)
(SHIFT (COLON) s119))
(STATE
s150
(COMMENT apat_prime "=>" LBRACE plabels RBRACE ".")
(REDUCE () r106))
(STATE
s151
(COMMENT plabels "=>" "." DOTDOTDOT)
(COMMENT plabels "=>" "." plabel)
(COMMENT plabels "=>" plabel COMMA "." plabels)
(COMMENT plabels "=>" "." plabel COMMA plabels)
(COMMENT plabel "=>" "." ID COLON ty AS pat)
(COMMENT plabel "=>" "." ID COLON ty)
(COMMENT plabel "=>" "." ID AS pat)
(COMMENT plabel "=>" "." ID)
(COMMENT plabel "=>" "." selector EQUALOP pat)
(COMMENT selector "=>" "." INT)
(COMMENT selector "=>" "." id)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s141)
(SHIFT (INT) s79)
(SHIFT (DOTDOTDOT) s142)
(SHIFT (ASTERISK) s80)
(GOTO id s74)
(GOTO selector s138)
(GOTO plabel s139)
(GOTO plabels s152))
(STATE
s152
(COMMENT plabels "=>" plabel COMMA plabels ".")
(REDUCE () r112))
(STATE
s153
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT plabel "=>" selector EQUALOP "." pat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s154)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE
s154
(COMMENT plabel "=>" selector EQUALOP pat ".")
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat "." AS pat)
(REDUCE (COMMA) r107)
(REDUCE (RBRACE) r107)
(SHIFT (AS) s118)
(SHIFT (COLON) s119))
(STATE s155 (COMMENT apat_prime "=>" OP ident ".") (REDUCE () r94))
(STATE s156 (COMMENT ident "=>" ID ".") (REDUCE () r7))
(STATE
s157
(COMMENT apat_prime "=>" ID DOT "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s159))
(STATE s158 (COMMENT qid "=>" ident ".") (REDUCE () r13))
(STATE s159 (COMMENT apat_prime "=>" ID DOT qid ".") (REDUCE () r95))
(STATE
s160
(COMMENT qid "=>" ID "." DOT qid)
(COMMENT ident "=>" ID ".")
(REDUCE (SEMICOLON) r7)
(REDUCE (ID) r7)
(REDUCE (INT) r7)
(REDUCE (INT0) r7)
(REDUCE (WORD) r7)
(REDUCE (REAL) r7)
(REDUCE (STRING) r7)
(REDUCE (CHAR) r7)
(REDUCE (ABSTYPE) r7)
(REDUCE (BAR) r7)
(REDUCE (DATATYPE) r7)
(REDUCE (END) r7)
(REDUCE (EQUALOP) r7)
(REDUCE (EQTYPE) r7)
(REDUCE (EXCEPTION) r7)
(SHIFT (DOT) s161)
(REDUCE (FUN) r7)
(REDUCE (FUNCTOR) r7)
(REDUCE (HASH) r7)
(REDUCE (IN) r7)
(REDUCE (INCLUDE) r7)
(REDUCE (INFIX) r7)
(REDUCE (INFIXR) r7)
(REDUCE (LET) r7)
(REDUCE (LOCAL) r7)
(REDUCE (NONFIX) r7)
(REDUCE (OF) r7)
(REDUCE (OP) r7)
(REDUCE (OPEN) r7)
(REDUCE (OVERLOAD) r7)
(REDUCE (SHARING) r7)
(REDUCE (SIGNATURE) r7)
(REDUCE (STRUCTURE) r7)
(REDUCE (THEN) r7)
(REDUCE (TYPE) r7)
(REDUCE (VAL) r7)
(REDUCE (WHERE) r7)
(REDUCE (WILD) r7)
(REDUCE (ASTERISK) r7)
(REDUCE (COLONGT) r7)
(REDUCE (COMMA) r7)
(REDUCE (LBRACE) r7)
(REDUCE (LBRACKET) r7)
(REDUCE (LPAREN) r7)
(REDUCE (RBRACE) r7)
(REDUCE (RBRACKET) r7)
(REDUCE (RPAREN) r7)
(REDUCE (FUNSIG) r7)
(REDUCE (VECTORSTART) r7)
(REDUCE (BEGINQ) r7)
(REDUCE (ENDQ) r7)
(REDUCE (OBJL) r7)
(REDUCE (AQID) r7)
(REDUCE (AND) r7)
(REDUCE (DARROW) r7)
(REDUCE (DO) r7)
(REDUCE (ELSE) r7)
(REDUCE (HANDLE) r7)
(REDUCE (ORELSE) r7)
(REDUCE (ANDALSO) r7)
(REDUCE (AS) r7)
(REDUCE (COLON) r7)
(REDUCE (EOF) r7))
(STATE
s161
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" ID DOT "." qid)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s162))
(STATE s162 (COMMENT qid "=>" ID DOT qid ".") (REDUCE () r12))
(STATE s163 (COMMENT apats "=>" apat apats ".") (REDUCE () r136))
(STATE
s164
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT rule "=>" pat DARROW "." exp)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s165)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s165
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(COMMENT rule "=>" pat DARROW exp ".")
(REDUCE (SEMICOLON) r37)
(REDUCE (ABSTYPE) r37)
(REDUCE (BAR) r37)
(REDUCE (DATATYPE) r37)
(REDUCE (END) r37)
(REDUCE (EXCEPTION) r37)
(REDUCE (FUN) r37)
(REDUCE (FUNCTOR) r37)
(REDUCE (IN) r37)
(REDUCE (INFIX) r37)
(REDUCE (INFIXR) r37)
(REDUCE (LOCAL) r37)
(REDUCE (NONFIX) r37)
(REDUCE (OF) r37)
(REDUCE (OPEN) r37)
(REDUCE (OVERLOAD) r37)
(REDUCE (SIGNATURE) r37)
(REDUCE (STRUCTURE) r37)
(REDUCE (THEN) r37)
(REDUCE (TYPE) r37)
(REDUCE (VAL) r37)
(REDUCE (COMMA) r37)
(REDUCE (RBRACE) r37)
(REDUCE (RBRACKET) r37)
(REDUCE (RPAREN) r37)
(REDUCE (FUNSIG) r37)
(REDUCE (AND) r37)
(REDUCE (DO) r37)
(REDUCE (ELSE) r37)
(REDUCE (HANDLE) r37)
(REDUCE (ORELSE) r37)
(REDUCE (ANDALSO) r37)
(REDUCE (COLON) r37)
(REDUCE (EOF) r37))
(STATE
s166
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT rule "=>" "." pat DARROW exp)
(COMMENT match "=>" rule BAR "." match)
(COMMENT match "=>" "." rule BAR match)
(COMMENT match "=>" "." rule)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO match s167)
(GOTO rule s98)
(GOTO pat s99)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE s167 (COMMENT match "=>" rule BAR match ".") (REDUCE () r36))
(STATE
s168
(COMMENT quote "=>" BEGINQ ot_list "." ENDQ)
(SHIFT (ENDQ) s176))
(STATE s169 (COMMENT quote "=>" BEGINQ ENDQ ".") (REDUCE () r77))
(STATE
s170
(COMMENT ot_list "=>" OBJL "." aexp ot_list)
(COMMENT ot_list "=>" OBJL "." aexp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s172)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (HASH) s27)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(GOTO int s1)
(GOTO aexp s171)
(GOTO quote s6))
(STATE
s171
(COMMENT ot_list "=>" OBJL aexp "." ot_list)
(COMMENT ot_list "=>" "." OBJL aexp ot_list)
(COMMENT ot_list "=>" OBJL aexp ".")
(COMMENT ot_list "=>" "." OBJL aexp)
(REDUCE (ENDQ) r79)
(SHIFT (OBJL) s170)
(GOTO ot_list s175))
(STATE s172 (COMMENT aexp "=>" ID "." DOT qid) (SHIFT (DOT) s173))
(STATE
s173
(COMMENT aexp "=>" ID DOT "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s174))
(STATE s174 (COMMENT aexp "=>" ID DOT qid ".") (REDUCE () r58))
(STATE s175 (COMMENT ot_list "=>" OBJL aexp ot_list ".") (REDUCE () r80))
(STATE s176 (COMMENT quote "=>" BEGINQ ot_list ENDQ ".") (REDUCE () r78))
(STATE
s177
(COMMENT exp_list "=>" exp "." COMMA exp_list)
(COMMENT exp_list "=>" exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(SHIFT (COMMA) s181)
(REDUCE (RBRACKET) r83)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55))
(STATE
s178
(COMMENT aexp "=>" VECTORSTART exp_list "." RBRACKET)
(SHIFT (RBRACKET) s180))
(STATE s179 (COMMENT aexp "=>" VECTORSTART RBRACKET ".") (REDUCE () r73))
(STATE
s180
(COMMENT aexp "=>" VECTORSTART exp_list RBRACKET ".")
(REDUCE () r72))
(STATE
s181
(COMMENT exp_list "=>" exp COMMA "." exp_list)
(COMMENT exp_list "=>" "." exp COMMA exp_list)
(COMMENT exp_list "=>" "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s177)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6)
(GOTO exp_list s182))
(STATE s182 (COMMENT exp_list "=>" exp COMMA exp_list ".") (REDUCE () r84))
(STATE
s183
(COMMENT fparamList "=>" "." LPAREN fparam RPAREN fparamList)
(COMMENT fparamList "=>" "." LPAREN fparam RPAREN)
(COMMENT fsigb "=>" ident "." fparamList EQUALOP sign)
(SHIFT (LPAREN) s188)
(GOTO fparamList s187))
(STATE
s184
(COMMENT sdec "=>" FUNSIG fsigb ".")
(COMMENT fsigb "=>" fsigb "." AND fsigb)
(REDUCE (SEMICOLON) r269)
(REDUCE (ABSTYPE) r269)
(REDUCE (DATATYPE) r269)
(REDUCE (END) r269)
(REDUCE (EXCEPTION) r269)
(REDUCE (FUN) r269)
(REDUCE (FUNCTOR) r269)
(REDUCE (IN) r269)
(REDUCE (INFIX) r269)
(REDUCE (INFIXR) r269)
(REDUCE (LOCAL) r269)
(REDUCE (NONFIX) r269)
(REDUCE (OPEN) r269)
(REDUCE (OVERLOAD) r269)
(REDUCE (SIGNATURE) r269)
(REDUCE (STRUCTURE) r269)
(REDUCE (TYPE) r269)
(REDUCE (VAL) r269)
(REDUCE (FUNSIG) r269)
(SHIFT (AND) s185)
(REDUCE (EOF) r269))
(STATE
s185
(COMMENT fsigb "=>" "." ident fparamList EQUALOP sign)
(COMMENT fsigb "=>" fsigb AND "." fsigb)
(COMMENT fsigb "=>" "." fsigb AND fsigb)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s183)
(GOTO fsigb s186))
(STATE
s186
(COMMENT fsigb "=>" fsigb AND fsigb ".")
(COMMENT fsigb "=>" fsigb "." AND fsigb)
(REDUCE (SEMICOLON) r241)
(REDUCE (ABSTYPE) r241)
(REDUCE (DATATYPE) r241)
(REDUCE (END) r241)
(REDUCE (EXCEPTION) r241)
(REDUCE (FUN) r241)
(REDUCE (FUNCTOR) r241)
(REDUCE (IN) r241)
(REDUCE (INFIX) r241)
(REDUCE (INFIXR) r241)
(REDUCE (LOCAL) r241)
(REDUCE (NONFIX) r241)
(REDUCE (OPEN) r241)
(REDUCE (OVERLOAD) r241)
(REDUCE (SIGNATURE) r241)
(REDUCE (STRUCTURE) r241)
(REDUCE (TYPE) r241)
(REDUCE (VAL) r241)
(REDUCE (FUNSIG) r241)
(SHIFT (AND) s185)
(REDUCE (EOF) r241))
(STATE
s187
(COMMENT fsigb "=>" ident fparamList "." EQUALOP sign)
(SHIFT (EQUALOP) s327))
(STATE
s188
(COMMENT fparamList "=>" LPAREN "." fparam RPAREN fparamList)
(COMMENT fparamList "=>" LPAREN "." fparam RPAREN)
(COMMENT fparam "=>" "." spec_s)
(COMMENT fparam "=>" "." ID COLON sign)
(COMMENT spec "=>" "." INCLUDE ident idents)
(COMMENT spec "=>" "." INCLUDE sign)
(COMMENT spec "=>" "." SHARING sharespec)
(COMMENT spec "=>" "." EXCEPTION exnspec)
(COMMENT spec "=>" "." VAL valspec)
(COMMENT spec "=>" "." EQTYPE tyspec)
(COMMENT spec "=>" "." TYPE tyspec)
(COMMENT spec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT spec "=>" "." DATATYPE dbs)
(COMMENT spec "=>" "." DATATYPE dtrepl)
(COMMENT spec "=>" "." FUNCTOR fctspec)
(COMMENT spec "=>" "." STRUCTURE strspec)
(COMMENT spec_s "=>" "." SEMICOLON spec_s)
(COMMENT spec_s "=>" "." spec spec_s)
(COMMENT spec_s "=>" ".")
(SHIFT (SEMICOLON) s192)
(SHIFT (ID) s193)
(SHIFT (DATATYPE) s194)
(SHIFT (EQTYPE) s195)
(SHIFT (EXCEPTION) s196)
(SHIFT (FUNCTOR) s197)
(SHIFT (INCLUDE) s198)
(SHIFT (SHARING) s199)
(SHIFT (STRUCTURE) s200)
(SHIFT (TYPE) s201)
(SHIFT (VAL) s202)
(REDUCE (RPAREN) r192)
(GOTO spec_s s189)
(GOTO spec s190)
(GOTO fparam s191))
(STATE s189 (COMMENT fparam "=>" spec_s ".") (REDUCE () r276))
(STATE
s190
(COMMENT spec "=>" "." INCLUDE ident idents)
(COMMENT spec "=>" "." INCLUDE sign)
(COMMENT spec "=>" "." SHARING sharespec)
(COMMENT spec "=>" "." EXCEPTION exnspec)
(COMMENT spec "=>" "." VAL valspec)
(COMMENT spec "=>" "." EQTYPE tyspec)
(COMMENT spec "=>" "." TYPE tyspec)
(COMMENT spec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT spec "=>" "." DATATYPE dbs)
(COMMENT spec "=>" "." DATATYPE dtrepl)
(COMMENT spec "=>" "." FUNCTOR fctspec)
(COMMENT spec "=>" "." STRUCTURE strspec)
(COMMENT spec_s "=>" "." SEMICOLON spec_s)
(COMMENT spec_s "=>" spec "." spec_s)
(COMMENT spec_s "=>" "." spec spec_s)
(COMMENT spec_s "=>" ".")
(SHIFT (SEMICOLON) s192)
(SHIFT (DATATYPE) s194)
(REDUCE (END) r192)
(SHIFT (EQTYPE) s195)
(SHIFT (EXCEPTION) s196)
(SHIFT (FUNCTOR) s197)
(SHIFT (INCLUDE) s198)
(SHIFT (SHARING) s199)
(SHIFT (STRUCTURE) s200)
(SHIFT (TYPE) s201)
(SHIFT (VAL) s202)
(REDUCE (RPAREN) r192)
(GOTO spec_s s326)
(GOTO spec s190))
(STATE
s191
(COMMENT fparamList "=>" LPAREN fparam "." RPAREN fparamList)
(COMMENT fparamList "=>" LPAREN fparam "." RPAREN)
(SHIFT (RPAREN) s324))
(STATE
s192
(COMMENT spec "=>" "." INCLUDE ident idents)
(COMMENT spec "=>" "." INCLUDE sign)
(COMMENT spec "=>" "." SHARING sharespec)
(COMMENT spec "=>" "." EXCEPTION exnspec)
(COMMENT spec "=>" "." VAL valspec)
(COMMENT spec "=>" "." EQTYPE tyspec)
(COMMENT spec "=>" "." TYPE tyspec)
(COMMENT spec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT spec "=>" "." DATATYPE dbs)
(COMMENT spec "=>" "." DATATYPE dtrepl)
(COMMENT spec "=>" "." FUNCTOR fctspec)
(COMMENT spec "=>" "." STRUCTURE strspec)
(COMMENT spec_s "=>" SEMICOLON "." spec_s)
(COMMENT spec_s "=>" "." SEMICOLON spec_s)
(COMMENT spec_s "=>" "." spec spec_s)
(COMMENT spec_s "=>" ".")
(SHIFT (SEMICOLON) s192)
(SHIFT (DATATYPE) s194)
(REDUCE (END) r192)
(SHIFT (EQTYPE) s195)
(SHIFT (EXCEPTION) s196)
(SHIFT (FUNCTOR) s197)
(SHIFT (INCLUDE) s198)
(SHIFT (SHARING) s199)
(SHIFT (STRUCTURE) s200)
(SHIFT (TYPE) s201)
(SHIFT (VAL) s202)
(REDUCE (RPAREN) r192)
(GOTO spec_s s323)
(GOTO spec s190))
(STATE s193 (COMMENT fparam "=>" ID "." COLON sign) (SHIFT (COLON) s321))
(STATE
s194
(COMMENT spec "=>" DATATYPE "." dbs WITHTYPE tb)
(COMMENT spec "=>" DATATYPE "." dbs)
(COMMENT spec "=>" DATATYPE "." dtrepl)
(COMMENT db "=>" "." LAZY tyvars ID EQUALOP constrs)
(COMMENT db "=>" "." tyvarseq ID EQUALOP constrs)
(COMMENT db "=>" "." ID EQUALOP constrs)
(COMMENT dbs "=>" "." db AND dbs)
(COMMENT dbs "=>" "." db)
(COMMENT dtrepl "=>" "." ID EQUALOP DATATYPE tycon)
(COMMENT tyvarseq "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvarseq "=>" "." TYVAR)
(SHIFT (ID) s285)
(SHIFT (TYVAR) s286)
(SHIFT (LAZY) s287)
(SHIFT (LPAREN) s288)
(GOTO tyvarseq s281)
(GOTO dtrepl s282)
(GOTO dbs s283)
(GOTO db s284))
(STATE
s195
(COMMENT tyspec "=>" "." tyvars ID EQUALOP ty)
(COMMENT tyspec "=>" "." tyvars ID)
(COMMENT tyspec "=>" "." tyspec AND tyspec)
(COMMENT spec "=>" EQTYPE "." tyspec)
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(SHIFT (LPAREN) s214)
(GOTO tyvars s211)
(GOTO tyspec s280))
(STATE
s196
(COMMENT exnspec "=>" "." ident OF ty)
(COMMENT exnspec "=>" "." ident)
(COMMENT exnspec "=>" "." exnspec AND exnspec)
(COMMENT spec "=>" EXCEPTION "." exnspec)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s274)
(GOTO exnspec s275))
(STATE
s197
(COMMENT fctspec "=>" "." ident fsig)
(COMMENT fctspec "=>" "." fctspec AND fctspec)
(COMMENT spec "=>" FUNCTOR "." fctspec)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s264)
(GOTO fctspec s265))
(STATE
s198
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT spec "=>" INCLUDE "." ident idents)
(COMMENT spec "=>" INCLUDE "." sign)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s259)
(GOTO sign s260))
(STATE
s199
(COMMENT patheqn "=>" "." qid EQUALOP patheqn)
(COMMENT patheqn "=>" "." qid EQUALOP qid)
(COMMENT sharespec "=>" "." patheqn)
(COMMENT sharespec "=>" "." TYPE patheqn)
(COMMENT sharespec "=>" "." sharespec AND sharespec)
(COMMENT spec "=>" SHARING "." sharespec)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (TYPE) s252)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s249)
(GOTO sharespec s250)
(GOTO patheqn s251))
(STATE
s200
(COMMENT strspec "=>" "." ident COLON sign EQUALOP qid)
(COMMENT strspec "=>" "." ident COLON sign)
(COMMENT strspec "=>" "." strspec AND strspec)
(COMMENT spec "=>" STRUCTURE "." strspec)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s225)
(GOTO strspec s226))
(STATE
s201
(COMMENT tyspec "=>" "." tyvars ID EQUALOP ty)
(COMMENT tyspec "=>" "." tyvars ID)
(COMMENT tyspec "=>" "." tyspec AND tyspec)
(COMMENT spec "=>" TYPE "." tyspec)
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(SHIFT (LPAREN) s214)
(GOTO tyvars s211)
(GOTO tyspec s212))
(STATE
s202
(COMMENT valspec "=>" "." op_op ident COLON ty)
(COMMENT valspec "=>" "." valspec AND valspec)
(COMMENT spec "=>" VAL "." valspec)
(COMMENT op_op "=>" ".")
(COMMENT op_op "=>" "." OP)
(REDUCE (ID) r11)
(REDUCE (EQUALOP) r11)
(SHIFT (OP) s205)
(REDUCE (ASTERISK) r11)
(GOTO op_op s203)
(GOTO valspec s204))
(STATE
s203
(COMMENT valspec "=>" op_op "." ident COLON ty)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s208))
(STATE
s204
(COMMENT valspec "=>" valspec "." AND valspec)
(COMMENT spec "=>" VAL valspec ".")
(REDUCE (SEMICOLON) r202)
(REDUCE (DATATYPE) r202)
(REDUCE (END) r202)
(REDUCE (EQTYPE) r202)
(REDUCE (EXCEPTION) r202)
(REDUCE (FUNCTOR) r202)
(REDUCE (INCLUDE) r202)
(REDUCE (SHARING) r202)
(REDUCE (STRUCTURE) r202)
(REDUCE (TYPE) r202)
(REDUCE (VAL) r202)
(REDUCE (RPAREN) r202)
(SHIFT (AND) s206))
(STATE s205 (COMMENT op_op "=>" OP ".") (REDUCE () r10))
(STATE
s206
(COMMENT valspec "=>" "." op_op ident COLON ty)
(COMMENT valspec "=>" valspec AND "." valspec)
(COMMENT valspec "=>" "." valspec AND valspec)
(COMMENT op_op "=>" ".")
(COMMENT op_op "=>" "." OP)
(REDUCE (ID) r11)
(REDUCE (EQUALOP) r11)
(SHIFT (OP) s205)
(REDUCE (ASTERISK) r11)
(GOTO op_op s203)
(GOTO valspec s207))
(STATE
s207
(COMMENT valspec "=>" valspec AND valspec ".")
(COMMENT valspec "=>" valspec "." AND valspec)
(REDUCE (SEMICOLON) r217)
(REDUCE (DATATYPE) r217)
(REDUCE (END) r217)
(REDUCE (EQTYPE) r217)
(REDUCE (EXCEPTION) r217)
(REDUCE (FUNCTOR) r217)
(REDUCE (INCLUDE) r217)
(REDUCE (SHARING) r217)
(REDUCE (STRUCTURE) r217)
(REDUCE (TYPE) r217)
(REDUCE (VAL) r217)
(REDUCE (RPAREN) r217)
(SHIFT (AND) s206))
(STATE
s208
(COMMENT valspec "=>" op_op ident "." COLON ty)
(SHIFT (COLON) s209))
(STATE
s209
(COMMENT valspec "=>" op_op ident COLON "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s210))
(STATE
s210
(COMMENT valspec "=>" op_op ident COLON ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (SEMICOLON) r218)
(REDUCE (DATATYPE) r218)
(REDUCE (END) r218)
(REDUCE (EQTYPE) r218)
(REDUCE (EXCEPTION) r218)
(REDUCE (FUNCTOR) r218)
(REDUCE (INCLUDE) r218)
(REDUCE (SHARING) r218)
(REDUCE (STRUCTURE) r218)
(REDUCE (TYPE) r218)
(REDUCE (VAL) r218)
(REDUCE (RPAREN) r218)
(REDUCE (AND) r218)
(SHIFT (ARROW) s70))
(STATE
s211
(COMMENT tyspec "=>" tyvars "." ID EQUALOP ty)
(COMMENT tyspec "=>" tyvars "." ID)
(SHIFT (ID) s222))
(STATE
s212
(COMMENT tyspec "=>" tyspec "." AND tyspec)
(COMMENT spec "=>" TYPE tyspec ".")
(REDUCE (SEMICOLON) r200)
(REDUCE (DATATYPE) r200)
(REDUCE (END) r200)
(REDUCE (EQTYPE) r200)
(REDUCE (EXCEPTION) r200)
(REDUCE (FUNCTOR) r200)
(REDUCE (INCLUDE) r200)
(REDUCE (SHARING) r200)
(REDUCE (STRUCTURE) r200)
(REDUCE (TYPE) r200)
(REDUCE (VAL) r200)
(REDUCE (RPAREN) r200)
(SHIFT (AND) s220))
(STATE s213 (COMMENT tyvars "=>" TYVAR ".") (REDUCE () r140))
(STATE
s214
(COMMENT tyvar_pc "=>" "." TYVAR COMMA tyvar_pc)
(COMMENT tyvar_pc "=>" "." TYVAR)
(COMMENT tyvars "=>" LPAREN "." tyvar_pc RPAREN)
(SHIFT (TYVAR) s216)
(GOTO tyvar_pc s215))
(STATE
s215
(COMMENT tyvars "=>" LPAREN tyvar_pc "." RPAREN)
(SHIFT (RPAREN) s219))
(STATE
s216
(COMMENT tyvar_pc "=>" TYVAR "." COMMA tyvar_pc)
(COMMENT tyvar_pc "=>" TYVAR ".")
(SHIFT (COMMA) s217)
(REDUCE (RPAREN) r145))
(STATE
s217
(COMMENT tyvar_pc "=>" TYVAR COMMA "." tyvar_pc)
(COMMENT tyvar_pc "=>" "." TYVAR COMMA tyvar_pc)
(COMMENT tyvar_pc "=>" "." TYVAR)
(SHIFT (TYVAR) s216)
(GOTO tyvar_pc s218))
(STATE
s218
(COMMENT tyvar_pc "=>" TYVAR COMMA tyvar_pc ".")
(REDUCE () r146))
(STATE
s219
(COMMENT tyvars "=>" LPAREN tyvar_pc RPAREN ".")
(REDUCE () r141))
(STATE
s220
(COMMENT tyspec "=>" "." tyvars ID EQUALOP ty)
(COMMENT tyspec "=>" "." tyvars ID)
(COMMENT tyspec "=>" tyspec AND "." tyspec)
(COMMENT tyspec "=>" "." tyspec AND tyspec)
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(SHIFT (LPAREN) s214)
(GOTO tyvars s211)
(GOTO tyspec s221))
(STATE
s221
(COMMENT tyspec "=>" tyspec AND tyspec ".")
(COMMENT tyspec "=>" tyspec "." AND tyspec)
(REDUCE (SEMICOLON) r214)
(REDUCE (DATATYPE) r214)
(REDUCE (END) r214)
(REDUCE (EQTYPE) r214)
(REDUCE (EXCEPTION) r214)
(REDUCE (FUNCTOR) r214)
(REDUCE (INCLUDE) r214)
(REDUCE (SHARING) r214)
(REDUCE (STRUCTURE) r214)
(REDUCE (TYPE) r214)
(REDUCE (VAL) r214)
(REDUCE (RPAREN) r214)
(SHIFT (AND) s220))
(STATE
s222
(COMMENT tyspec "=>" tyvars ID "." EQUALOP ty)
(COMMENT tyspec "=>" tyvars ID ".")
(REDUCE (SEMICOLON) r215)
(REDUCE (DATATYPE) r215)
(REDUCE (END) r215)
(SHIFT (EQUALOP) s223)
(REDUCE (EQTYPE) r215)
(REDUCE (EXCEPTION) r215)
(REDUCE (FUNCTOR) r215)
(REDUCE (INCLUDE) r215)
(REDUCE (SHARING) r215)
(REDUCE (STRUCTURE) r215)
(REDUCE (TYPE) r215)
(REDUCE (VAL) r215)
(REDUCE (RPAREN) r215)
(REDUCE (AND) r215))
(STATE
s223
(COMMENT tyspec "=>" tyvars ID EQUALOP "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s224))
(STATE
s224
(COMMENT tyspec "=>" tyvars ID EQUALOP ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (SEMICOLON) r216)
(REDUCE (DATATYPE) r216)
(REDUCE (END) r216)
(REDUCE (EQTYPE) r216)
(REDUCE (EXCEPTION) r216)
(REDUCE (FUNCTOR) r216)
(REDUCE (INCLUDE) r216)
(REDUCE (SHARING) r216)
(REDUCE (STRUCTURE) r216)
(REDUCE (TYPE) r216)
(REDUCE (VAL) r216)
(REDUCE (RPAREN) r216)
(REDUCE (AND) r216)
(SHIFT (ARROW) s70))
(STATE
s225
(COMMENT strspec "=>" ident "." COLON sign EQUALOP qid)
(COMMENT strspec "=>" ident "." COLON sign)
(SHIFT (COLON) s229))
(STATE
s226
(COMMENT strspec "=>" strspec "." AND strspec)
(COMMENT spec "=>" STRUCTURE strspec ".")
(REDUCE (SEMICOLON) r195)
(REDUCE (DATATYPE) r195)
(REDUCE (END) r195)
(REDUCE (EQTYPE) r195)
(REDUCE (EXCEPTION) r195)
(REDUCE (FUNCTOR) r195)
(REDUCE (INCLUDE) r195)
(REDUCE (SHARING) r195)
(REDUCE (STRUCTURE) r195)
(REDUCE (TYPE) r195)
(REDUCE (VAL) r195)
(REDUCE (RPAREN) r195)
(SHIFT (AND) s227))
(STATE
s227
(COMMENT strspec "=>" "." ident COLON sign EQUALOP qid)
(COMMENT strspec "=>" "." ident COLON sign)
(COMMENT strspec "=>" strspec AND "." strspec)
(COMMENT strspec "=>" "." strspec AND strspec)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s225)
(GOTO strspec s228))
(STATE
s228
(COMMENT strspec "=>" strspec AND strspec ".")
(COMMENT strspec "=>" strspec "." AND strspec)
(REDUCE (SEMICOLON) r209)
(REDUCE (DATATYPE) r209)
(REDUCE (END) r209)
(REDUCE (EQTYPE) r209)
(REDUCE (EXCEPTION) r209)
(REDUCE (FUNCTOR) r209)
(REDUCE (INCLUDE) r209)
(REDUCE (SHARING) r209)
(REDUCE (STRUCTURE) r209)
(REDUCE (TYPE) r209)
(REDUCE (VAL) r209)
(REDUCE (RPAREN) r209)
(SHIFT (AND) s227))
(STATE
s229
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT strspec "=>" ident COLON "." sign EQUALOP qid)
(COMMENT strspec "=>" ident COLON "." sign)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s230)
(GOTO sign s231))
(STATE s230 (COMMENT sign "=>" ident ".") (REDUCE () r230))
(STATE
s231
(COMMENT sign "=>" sign "." WHERE whspec)
(COMMENT strspec "=>" ident COLON sign "." EQUALOP qid)
(COMMENT strspec "=>" ident COLON sign ".")
(REDUCE (SEMICOLON) r210)
(REDUCE (DATATYPE) r210)
(REDUCE (END) r210)
(SHIFT (EQUALOP) s235)
(REDUCE (EQTYPE) r210)
(REDUCE (EXCEPTION) r210)
(REDUCE (FUNCTOR) r210)
(REDUCE (INCLUDE) r210)
(REDUCE (SHARING) r210)
(REDUCE (STRUCTURE) r210)
(REDUCE (TYPE) r210)
(REDUCE (VAL) r210)
(SHIFT (WHERE) s236)
(REDUCE (RPAREN) r210)
(REDUCE (AND) r210))
(STATE
s232
(COMMENT sign "=>" SIG "." spec_s END)
(COMMENT spec "=>" "." INCLUDE ident idents)
(COMMENT spec "=>" "." INCLUDE sign)
(COMMENT spec "=>" "." SHARING sharespec)
(COMMENT spec "=>" "." EXCEPTION exnspec)
(COMMENT spec "=>" "." VAL valspec)
(COMMENT spec "=>" "." EQTYPE tyspec)
(COMMENT spec "=>" "." TYPE tyspec)
(COMMENT spec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT spec "=>" "." DATATYPE dbs)
(COMMENT spec "=>" "." DATATYPE dtrepl)
(COMMENT spec "=>" "." FUNCTOR fctspec)
(COMMENT spec "=>" "." STRUCTURE strspec)
(COMMENT spec_s "=>" "." SEMICOLON spec_s)
(COMMENT spec_s "=>" "." spec spec_s)
(COMMENT spec_s "=>" ".")
(SHIFT (SEMICOLON) s192)
(SHIFT (DATATYPE) s194)
(REDUCE (END) r192)
(SHIFT (EQTYPE) s195)
(SHIFT (EXCEPTION) s196)
(SHIFT (FUNCTOR) s197)
(SHIFT (INCLUDE) s198)
(SHIFT (SHARING) s199)
(SHIFT (STRUCTURE) s200)
(SHIFT (TYPE) s201)
(SHIFT (VAL) s202)
(GOTO spec_s s233)
(GOTO spec s190))
(STATE s233 (COMMENT sign "=>" SIG spec_s "." END) (SHIFT (END) s234))
(STATE s234 (COMMENT sign "=>" SIG spec_s END ".") (REDUCE () r231))
(STATE
s235
(COMMENT strspec "=>" ident COLON sign EQUALOP "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s248))
(STATE
s236
(COMMENT sign "=>" sign WHERE "." whspec)
(COMMENT whspec "=>" "." qid EQUALOP qid)
(COMMENT whspec "=>" "." TYPE tyvars qid EQUALOP ty)
(COMMENT whspec "=>" "." whspec AND whspec)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (TYPE) s239)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s237)
(GOTO whspec s238))
(STATE
s237
(COMMENT whspec "=>" qid "." EQUALOP qid)
(SHIFT (EQUALOP) s246))
(STATE
s238
(COMMENT sign "=>" sign WHERE whspec ".")
(COMMENT whspec "=>" whspec "." AND whspec)
(REDUCE (SEMICOLON) r232)
(REDUCE (ABSTYPE) r232)
(REDUCE (DATATYPE) r232)
(REDUCE (END) r232)
(REDUCE (EQUALOP) r232)
(REDUCE (EQTYPE) r232)
(REDUCE (EXCEPTION) r232)
(REDUCE (FUN) r232)
(REDUCE (FUNCTOR) r232)
(REDUCE (IN) r232)
(REDUCE (INCLUDE) r232)
(REDUCE (INFIX) r232)
(REDUCE (INFIXR) r232)
(REDUCE (LOCAL) r232)
(REDUCE (NONFIX) r232)
(REDUCE (OPEN) r232)
(REDUCE (OVERLOAD) r232)
(REDUCE (SHARING) r232)
(REDUCE (SIGNATURE) r232)
(REDUCE (STRUCTURE) r232)
(REDUCE (TYPE) r232)
(REDUCE (VAL) r232)
(REDUCE (WHERE) r232)
(REDUCE (COLONGT) r232)
(REDUCE (RPAREN) r232)
(REDUCE (FUNSIG) r232)
(SHIFT (AND) s244)
(REDUCE (COLON) r232)
(REDUCE (EOF) r232))
(STATE
s239
(COMMENT whspec "=>" TYPE "." tyvars qid EQUALOP ty)
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(REDUCE (EQUALOP) r142)
(REDUCE (ASTERISK) r142)
(SHIFT (LPAREN) s214)
(GOTO tyvars s240))
(STATE
s240
(COMMENT whspec "=>" TYPE tyvars "." qid EQUALOP ty)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s241))
(STATE
s241
(COMMENT whspec "=>" TYPE tyvars qid "." EQUALOP ty)
(SHIFT (EQUALOP) s242))
(STATE
s242
(COMMENT whspec "=>" TYPE tyvars qid EQUALOP "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s243))
(STATE
s243
(COMMENT whspec "=>" TYPE tyvars qid EQUALOP ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (SEMICOLON) r228)
(REDUCE (ABSTYPE) r228)
(REDUCE (DATATYPE) r228)
(REDUCE (END) r228)
(REDUCE (EQUALOP) r228)
(REDUCE (EQTYPE) r228)
(REDUCE (EXCEPTION) r228)
(REDUCE (FUN) r228)
(REDUCE (FUNCTOR) r228)
(REDUCE (IN) r228)
(REDUCE (INCLUDE) r228)
(REDUCE (INFIX) r228)
(REDUCE (INFIXR) r228)
(REDUCE (LOCAL) r228)
(REDUCE (NONFIX) r228)
(REDUCE (OPEN) r228)
(REDUCE (OVERLOAD) r228)
(REDUCE (SHARING) r228)
(REDUCE (SIGNATURE) r228)
(REDUCE (STRUCTURE) r228)
(REDUCE (TYPE) r228)
(REDUCE (VAL) r228)
(REDUCE (WHERE) r228)
(REDUCE (COLONGT) r228)
(REDUCE (RPAREN) r228)
(REDUCE (FUNSIG) r228)
(REDUCE (AND) r228)
(SHIFT (ARROW) s70)
(REDUCE (COLON) r228)
(REDUCE (EOF) r228))
(STATE
s244
(COMMENT whspec "=>" "." qid EQUALOP qid)
(COMMENT whspec "=>" "." TYPE tyvars qid EQUALOP ty)
(COMMENT whspec "=>" whspec AND "." whspec)
(COMMENT whspec "=>" "." whspec AND whspec)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (TYPE) s239)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s237)
(GOTO whspec s245))
(STATE
s245
(COMMENT whspec "=>" whspec AND whspec ".")
(COMMENT whspec "=>" whspec "." AND whspec)
(REDUCE (SEMICOLON) r227)
(REDUCE (ABSTYPE) r227)
(REDUCE (DATATYPE) r227)
(REDUCE (END) r227)
(REDUCE (EQUALOP) r227)
(REDUCE (EQTYPE) r227)
(REDUCE (EXCEPTION) r227)
(REDUCE (FUN) r227)
(REDUCE (FUNCTOR) r227)
(REDUCE (IN) r227)
(REDUCE (INCLUDE) r227)
(REDUCE (INFIX) r227)
(REDUCE (INFIXR) r227)
(REDUCE (LOCAL) r227)
(REDUCE (NONFIX) r227)
(REDUCE (OPEN) r227)
(REDUCE (OVERLOAD) r227)
(REDUCE (SHARING) r227)
(REDUCE (SIGNATURE) r227)
(REDUCE (STRUCTURE) r227)
(REDUCE (TYPE) r227)
(REDUCE (VAL) r227)
(REDUCE (WHERE) r227)
(REDUCE (COLONGT) r227)
(REDUCE (RPAREN) r227)
(REDUCE (FUNSIG) r227)
(SHIFT (AND) s244)
(REDUCE (COLON) r227)
(REDUCE (EOF) r227))
(STATE
s246
(COMMENT whspec "=>" qid EQUALOP "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s247))
(STATE s247 (COMMENT whspec "=>" qid EQUALOP qid ".") (REDUCE () r229))
(STATE
s248
(COMMENT strspec "=>" ident COLON sign EQUALOP qid ".")
(REDUCE () r211))
(STATE
s249
(COMMENT patheqn "=>" qid "." EQUALOP patheqn)
(COMMENT patheqn "=>" qid "." EQUALOP qid)
(SHIFT (EQUALOP) s256))
(STATE
s250
(COMMENT sharespec "=>" sharespec "." AND sharespec)
(COMMENT spec "=>" SHARING sharespec ".")
(REDUCE (SEMICOLON) r204)
(REDUCE (DATATYPE) r204)
(REDUCE (END) r204)
(REDUCE (EQTYPE) r204)
(REDUCE (EXCEPTION) r204)
(REDUCE (FUNCTOR) r204)
(REDUCE (INCLUDE) r204)
(REDUCE (SHARING) r204)
(REDUCE (STRUCTURE) r204)
(REDUCE (TYPE) r204)
(REDUCE (VAL) r204)
(REDUCE (RPAREN) r204)
(SHIFT (AND) s254))
(STATE s251 (COMMENT sharespec "=>" patheqn ".") (REDUCE () r224))
(STATE
s252
(COMMENT patheqn "=>" "." qid EQUALOP patheqn)
(COMMENT patheqn "=>" "." qid EQUALOP qid)
(COMMENT sharespec "=>" TYPE "." patheqn)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s249)
(GOTO patheqn s253))
(STATE s253 (COMMENT sharespec "=>" TYPE patheqn ".") (REDUCE () r223))
(STATE
s254
(COMMENT patheqn "=>" "." qid EQUALOP patheqn)
(COMMENT patheqn "=>" "." qid EQUALOP qid)
(COMMENT sharespec "=>" "." patheqn)
(COMMENT sharespec "=>" "." TYPE patheqn)
(COMMENT sharespec "=>" sharespec AND "." sharespec)
(COMMENT sharespec "=>" "." sharespec AND sharespec)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (TYPE) s252)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s249)
(GOTO sharespec s255)
(GOTO patheqn s251))
(STATE
s255
(COMMENT sharespec "=>" sharespec AND sharespec ".")
(COMMENT sharespec "=>" sharespec "." AND sharespec)
(REDUCE (SEMICOLON) r222)
(REDUCE (DATATYPE) r222)
(REDUCE (END) r222)
(REDUCE (EQTYPE) r222)
(REDUCE (EXCEPTION) r222)
(REDUCE (FUNCTOR) r222)
(REDUCE (INCLUDE) r222)
(REDUCE (SHARING) r222)
(REDUCE (STRUCTURE) r222)
(REDUCE (TYPE) r222)
(REDUCE (VAL) r222)
(REDUCE (RPAREN) r222)
(SHIFT (AND) s254))
(STATE
s256
(COMMENT patheqn "=>" qid EQUALOP "." patheqn)
(COMMENT patheqn "=>" "." qid EQUALOP patheqn)
(COMMENT patheqn "=>" qid EQUALOP "." qid)
(COMMENT patheqn "=>" "." qid EQUALOP qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s257)
(GOTO patheqn s258))
(STATE
s257
(COMMENT patheqn "=>" qid "." EQUALOP patheqn)
(COMMENT patheqn "=>" qid EQUALOP qid ".")
(COMMENT patheqn "=>" qid "." EQUALOP qid)
(REDUCE (SEMICOLON) r225)
(REDUCE (DATATYPE) r225)
(REDUCE (END) r225)
(SHIFT (EQUALOP) s256)
(REDUCE (EQTYPE) r225)
(REDUCE (EXCEPTION) r225)
(REDUCE (FUNCTOR) r225)
(REDUCE (INCLUDE) r225)
(REDUCE (SHARING) r225)
(REDUCE (STRUCTURE) r225)
(REDUCE (TYPE) r225)
(REDUCE (VAL) r225)
(REDUCE (RPAREN) r225)
(REDUCE (AND) r225))
(STATE s258 (COMMENT patheqn "=>" qid EQUALOP patheqn ".") (REDUCE () r226))
(STATE
s259
(COMMENT sign "=>" ident ".")
(COMMENT idents "=>" "." ident idents)
(COMMENT idents "=>" "." ident)
(COMMENT spec "=>" INCLUDE ident "." idents)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(REDUCE (SEMICOLON) r230)
(SHIFT (ID) s156)
(REDUCE (DATATYPE) r230)
(REDUCE (END) r230)
(SHIFT (EQUALOP) s22)
(REDUCE (EQTYPE) r230)
(REDUCE (EXCEPTION) r230)
(REDUCE (FUNCTOR) r230)
(REDUCE (INCLUDE) r230)
(REDUCE (SHARING) r230)
(REDUCE (STRUCTURE) r230)
(REDUCE (TYPE) r230)
(REDUCE (VAL) r230)
(REDUCE (WHERE) r230)
(SHIFT (ASTERISK) s42)
(REDUCE (RPAREN) r230)
(GOTO ident s261)
(GOTO idents s262))
(STATE
s260
(COMMENT sign "=>" sign "." WHERE whspec)
(COMMENT spec "=>" INCLUDE sign ".")
(REDUCE (SEMICOLON) r205)
(REDUCE (DATATYPE) r205)
(REDUCE (END) r205)
(REDUCE (EQTYPE) r205)
(REDUCE (EXCEPTION) r205)
(REDUCE (FUNCTOR) r205)
(REDUCE (INCLUDE) r205)
(REDUCE (SHARING) r205)
(REDUCE (STRUCTURE) r205)
(REDUCE (TYPE) r205)
(REDUCE (VAL) r205)
(SHIFT (WHERE) s236)
(REDUCE (RPAREN) r205))
(STATE
s261
(COMMENT idents "=>" ident "." idents)
(COMMENT idents "=>" "." ident idents)
(COMMENT idents "=>" ident ".")
(COMMENT idents "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(REDUCE (SEMICOLON) r207)
(SHIFT (ID) s156)
(REDUCE (DATATYPE) r207)
(REDUCE (END) r207)
(SHIFT (EQUALOP) s22)
(REDUCE (EQTYPE) r207)
(REDUCE (EXCEPTION) r207)
(REDUCE (FUNCTOR) r207)
(REDUCE (INCLUDE) r207)
(REDUCE (SHARING) r207)
(REDUCE (STRUCTURE) r207)
(REDUCE (TYPE) r207)
(REDUCE (VAL) r207)
(SHIFT (ASTERISK) s42)
(REDUCE (RPAREN) r207)
(GOTO ident s261)
(GOTO idents s263))
(STATE s262 (COMMENT spec "=>" INCLUDE ident idents ".") (REDUCE () r206))
(STATE s263 (COMMENT idents "=>" ident idents ".") (REDUCE () r208))
(STATE
s264
(COMMENT fparamList "=>" "." LPAREN fparam RPAREN fparamList)
(COMMENT fparamList "=>" "." LPAREN fparam RPAREN)
(COMMENT fsig "=>" "." fparamList COLON sign)
(COMMENT fsig "=>" "." COLON ident)
(COMMENT fctspec "=>" ident "." fsig)
(SHIFT (LPAREN) s188)
(SHIFT (COLON) s270)
(GOTO fsig s268)
(GOTO fparamList s269))
(STATE
s265
(COMMENT fctspec "=>" fctspec "." AND fctspec)
(COMMENT spec "=>" FUNCTOR fctspec ".")
(REDUCE (SEMICOLON) r196)
(REDUCE (DATATYPE) r196)
(REDUCE (END) r196)
(REDUCE (EQTYPE) r196)
(REDUCE (EXCEPTION) r196)
(REDUCE (FUNCTOR) r196)
(REDUCE (INCLUDE) r196)
(REDUCE (SHARING) r196)
(REDUCE (STRUCTURE) r196)
(REDUCE (TYPE) r196)
(REDUCE (VAL) r196)
(REDUCE (RPAREN) r196)
(SHIFT (AND) s266))
(STATE
s266
(COMMENT fctspec "=>" "." ident fsig)
(COMMENT fctspec "=>" fctspec AND "." fctspec)
(COMMENT fctspec "=>" "." fctspec AND fctspec)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s264)
(GOTO fctspec s267))
(STATE
s267
(COMMENT fctspec "=>" fctspec AND fctspec ".")
(COMMENT fctspec "=>" fctspec "." AND fctspec)
(REDUCE (SEMICOLON) r212)
(REDUCE (DATATYPE) r212)
(REDUCE (END) r212)
(REDUCE (EQTYPE) r212)
(REDUCE (EXCEPTION) r212)
(REDUCE (FUNCTOR) r212)
(REDUCE (INCLUDE) r212)
(REDUCE (SHARING) r212)
(REDUCE (STRUCTURE) r212)
(REDUCE (TYPE) r212)
(REDUCE (VAL) r212)
(REDUCE (RPAREN) r212)
(SHIFT (AND) s266))
(STATE s268 (COMMENT fctspec "=>" ident fsig ".") (REDUCE () r213))
(STATE
s269
(COMMENT fsig "=>" fparamList "." COLON sign)
(SHIFT (COLON) s272))
(STATE
s270
(COMMENT fsig "=>" COLON "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s271))
(STATE s271 (COMMENT fsig "=>" COLON ident ".") (REDUCE () r243))
(STATE
s272
(COMMENT fsig "=>" fparamList COLON "." sign)
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s230)
(GOTO sign s273))
(STATE
s273
(COMMENT fsig "=>" fparamList COLON sign ".")
(COMMENT sign "=>" sign "." WHERE whspec)
(REDUCE (SEMICOLON) r244)
(REDUCE (DATATYPE) r244)
(REDUCE (END) r244)
(REDUCE (EQTYPE) r244)
(REDUCE (EXCEPTION) r244)
(REDUCE (FUNCTOR) r244)
(REDUCE (INCLUDE) r244)
(REDUCE (SHARING) r244)
(REDUCE (STRUCTURE) r244)
(REDUCE (TYPE) r244)
(REDUCE (VAL) r244)
(SHIFT (WHERE) s236)
(REDUCE (RPAREN) r244)
(REDUCE (AND) r244))
(STATE
s274
(COMMENT exnspec "=>" ident "." OF ty)
(COMMENT exnspec "=>" ident ".")
(REDUCE (SEMICOLON) r220)
(REDUCE (DATATYPE) r220)
(REDUCE (END) r220)
(REDUCE (EQTYPE) r220)
(REDUCE (EXCEPTION) r220)
(REDUCE (FUNCTOR) r220)
(REDUCE (INCLUDE) r220)
(SHIFT (OF) s278)
(REDUCE (SHARING) r220)
(REDUCE (STRUCTURE) r220)
(REDUCE (TYPE) r220)
(REDUCE (VAL) r220)
(REDUCE (RPAREN) r220)
(REDUCE (AND) r220))
(STATE
s275
(COMMENT exnspec "=>" exnspec "." AND exnspec)
(COMMENT spec "=>" EXCEPTION exnspec ".")
(REDUCE (SEMICOLON) r203)
(REDUCE (DATATYPE) r203)
(REDUCE (END) r203)
(REDUCE (EQTYPE) r203)
(REDUCE (EXCEPTION) r203)
(REDUCE (FUNCTOR) r203)
(REDUCE (INCLUDE) r203)
(REDUCE (SHARING) r203)
(REDUCE (STRUCTURE) r203)
(REDUCE (TYPE) r203)
(REDUCE (VAL) r203)
(REDUCE (RPAREN) r203)
(SHIFT (AND) s276))
(STATE
s276
(COMMENT exnspec "=>" "." ident OF ty)
(COMMENT exnspec "=>" "." ident)
(COMMENT exnspec "=>" exnspec AND "." exnspec)
(COMMENT exnspec "=>" "." exnspec AND exnspec)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s274)
(GOTO exnspec s277))
(STATE
s277
(COMMENT exnspec "=>" exnspec AND exnspec ".")
(COMMENT exnspec "=>" exnspec "." AND exnspec)
(REDUCE (SEMICOLON) r219)
(REDUCE (DATATYPE) r219)
(REDUCE (END) r219)
(REDUCE (EQTYPE) r219)
(REDUCE (EXCEPTION) r219)
(REDUCE (FUNCTOR) r219)
(REDUCE (INCLUDE) r219)
(REDUCE (SHARING) r219)
(REDUCE (STRUCTURE) r219)
(REDUCE (TYPE) r219)
(REDUCE (VAL) r219)
(REDUCE (RPAREN) r219)
(SHIFT (AND) s276))
(STATE
s278
(COMMENT exnspec "=>" ident OF "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s279))
(STATE
s279
(COMMENT exnspec "=>" ident OF ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (SEMICOLON) r221)
(REDUCE (DATATYPE) r221)
(REDUCE (END) r221)
(REDUCE (EQTYPE) r221)
(REDUCE (EXCEPTION) r221)
(REDUCE (FUNCTOR) r221)
(REDUCE (INCLUDE) r221)
(REDUCE (SHARING) r221)
(REDUCE (STRUCTURE) r221)
(REDUCE (TYPE) r221)
(REDUCE (VAL) r221)
(REDUCE (RPAREN) r221)
(REDUCE (AND) r221)
(SHIFT (ARROW) s70))
(STATE
s280
(COMMENT tyspec "=>" tyspec "." AND tyspec)
(COMMENT spec "=>" EQTYPE tyspec ".")
(REDUCE (SEMICOLON) r201)
(REDUCE (DATATYPE) r201)
(REDUCE (END) r201)
(REDUCE (EQTYPE) r201)
(REDUCE (EXCEPTION) r201)
(REDUCE (FUNCTOR) r201)
(REDUCE (INCLUDE) r201)
(REDUCE (SHARING) r201)
(REDUCE (STRUCTURE) r201)
(REDUCE (TYPE) r201)
(REDUCE (VAL) r201)
(REDUCE (RPAREN) r201)
(SHIFT (AND) s220))
(STATE
s281
(COMMENT db "=>" tyvarseq "." ID EQUALOP constrs)
(SHIFT (ID) s318))
(STATE s282 (COMMENT spec "=>" DATATYPE dtrepl ".") (REDUCE () r197))
(STATE
s283
(COMMENT spec "=>" DATATYPE dbs "." WITHTYPE tb)
(COMMENT spec "=>" DATATYPE dbs ".")
(REDUCE (SEMICOLON) r198)
(REDUCE (DATATYPE) r198)
(REDUCE (END) r198)
(REDUCE (EQTYPE) r198)
(REDUCE (EXCEPTION) r198)
(REDUCE (FUNCTOR) r198)
(REDUCE (INCLUDE) r198)
(REDUCE (SHARING) r198)
(REDUCE (STRUCTURE) r198)
(REDUCE (TYPE) r198)
(REDUCE (VAL) r198)
(REDUCE (RPAREN) r198)
(SHIFT (WITHTYPE) s310))
(STATE
s284
(COMMENT dbs "=>" db "." AND dbs)
(COMMENT dbs "=>" db ".")
(REDUCE (SEMICOLON) r148)
(REDUCE (ABSTYPE) r148)
(REDUCE (DATATYPE) r148)
(REDUCE (END) r148)
(REDUCE (EQTYPE) r148)
(REDUCE (EXCEPTION) r148)
(REDUCE (FUN) r148)
(REDUCE (FUNCTOR) r148)
(REDUCE (IN) r148)
(REDUCE (INCLUDE) r148)
(REDUCE (INFIX) r148)
(REDUCE (INFIXR) r148)
(REDUCE (LOCAL) r148)
(REDUCE (NONFIX) r148)
(REDUCE (OPEN) r148)
(REDUCE (OVERLOAD) r148)
(REDUCE (SHARING) r148)
(REDUCE (SIGNATURE) r148)
(REDUCE (STRUCTURE) r148)
(REDUCE (TYPE) r148)
(REDUCE (VAL) r148)
(REDUCE (WITH) r148)
(REDUCE (RPAREN) r148)
(REDUCE (FUNSIG) r148)
(REDUCE (WITHTYPE) r148)
(SHIFT (AND) s306)
(REDUCE (EOF) r148))
(STATE
s285
(COMMENT db "=>" ID "." EQUALOP constrs)
(COMMENT dtrepl "=>" ID "." EQUALOP DATATYPE tycon)
(SHIFT (EQUALOP) s302))
(STATE s286 (COMMENT tyvarseq "=>" TYVAR ".") (REDUCE () r143))
(STATE
s287
(COMMENT db "=>" LAZY "." tyvars ID EQUALOP constrs)
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(SHIFT (LPAREN) s214)
(GOTO tyvars s291))
(STATE
s288
(COMMENT tyvar_pc "=>" "." TYVAR COMMA tyvar_pc)
(COMMENT tyvar_pc "=>" "." TYVAR)
(COMMENT tyvarseq "=>" LPAREN "." tyvar_pc RPAREN)
(SHIFT (TYVAR) s216)
(GOTO tyvar_pc s289))
(STATE
s289
(COMMENT tyvarseq "=>" LPAREN tyvar_pc "." RPAREN)
(SHIFT (RPAREN) s290))
(STATE
s290
(COMMENT tyvarseq "=>" LPAREN tyvar_pc RPAREN ".")
(REDUCE () r144))
(STATE
s291
(COMMENT db "=>" LAZY tyvars "." ID EQUALOP constrs)
(SHIFT (ID) s292))
(STATE
s292
(COMMENT db "=>" LAZY tyvars ID "." EQUALOP constrs)
(SHIFT (EQUALOP) s293))
(STATE
s293
(COMMENT constr "=>" "." op_op ident OF ty)
(COMMENT constr "=>" "." op_op ident)
(COMMENT constrs "=>" "." constr BAR constrs)
(COMMENT constrs "=>" "." constr)
(COMMENT db "=>" LAZY tyvars ID EQUALOP "." constrs)
(COMMENT op_op "=>" ".")
(COMMENT op_op "=>" "." OP)
(REDUCE (ID) r11)
(REDUCE (EQUALOP) r11)
(SHIFT (OP) s205)
(REDUCE (ASTERISK) r11)
(GOTO op_op s294)
(GOTO constrs s295)
(GOTO constr s296))
(STATE
s294
(COMMENT constr "=>" op_op "." ident OF ty)
(COMMENT constr "=>" op_op "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s299))
(STATE
s295
(COMMENT db "=>" LAZY tyvars ID EQUALOP constrs ".")
(REDUCE () r152))
(STATE
s296
(COMMENT constrs "=>" constr "." BAR constrs)
(COMMENT constrs "=>" constr ".")
(REDUCE (SEMICOLON) r153)
(REDUCE (ABSTYPE) r153)
(SHIFT (BAR) s297)
(REDUCE (DATATYPE) r153)
(REDUCE (END) r153)
(REDUCE (EQTYPE) r153)
(REDUCE (EXCEPTION) r153)
(REDUCE (FUN) r153)
(REDUCE (FUNCTOR) r153)
(REDUCE (IN) r153)
(REDUCE (INCLUDE) r153)
(REDUCE (INFIX) r153)
(REDUCE (INFIXR) r153)
(REDUCE (LOCAL) r153)
(REDUCE (NONFIX) r153)
(REDUCE (OPEN) r153)
(REDUCE (OVERLOAD) r153)
(REDUCE (SHARING) r153)
(REDUCE (SIGNATURE) r153)
(REDUCE (STRUCTURE) r153)
(REDUCE (TYPE) r153)
(REDUCE (VAL) r153)
(REDUCE (WITH) r153)
(REDUCE (RPAREN) r153)
(REDUCE (FUNSIG) r153)
(REDUCE (WITHTYPE) r153)
(REDUCE (AND) r153)
(REDUCE (EOF) r153))
(STATE
s297
(COMMENT constr "=>" "." op_op ident OF ty)
(COMMENT constr "=>" "." op_op ident)
(COMMENT constrs "=>" constr BAR "." constrs)
(COMMENT constrs "=>" "." constr BAR constrs)
(COMMENT constrs "=>" "." constr)
(COMMENT op_op "=>" ".")
(COMMENT op_op "=>" "." OP)
(REDUCE (ID) r11)
(REDUCE (EQUALOP) r11)
(SHIFT (OP) s205)
(REDUCE (ASTERISK) r11)
(GOTO op_op s294)
(GOTO constrs s298)
(GOTO constr s296))
(STATE s298 (COMMENT constrs "=>" constr BAR constrs ".") (REDUCE () r154))
(STATE
s299
(COMMENT constr "=>" op_op ident "." OF ty)
(COMMENT constr "=>" op_op ident ".")
(REDUCE (SEMICOLON) r155)
(REDUCE (ABSTYPE) r155)
(REDUCE (BAR) r155)
(REDUCE (DATATYPE) r155)
(REDUCE (END) r155)
(REDUCE (EQTYPE) r155)
(REDUCE (EXCEPTION) r155)
(REDUCE (FUN) r155)
(REDUCE (FUNCTOR) r155)
(REDUCE (IN) r155)
(REDUCE (INCLUDE) r155)
(REDUCE (INFIX) r155)
(REDUCE (INFIXR) r155)
(REDUCE (LOCAL) r155)
(REDUCE (NONFIX) r155)
(SHIFT (OF) s300)
(REDUCE (OPEN) r155)
(REDUCE (OVERLOAD) r155)
(REDUCE (SHARING) r155)
(REDUCE (SIGNATURE) r155)
(REDUCE (STRUCTURE) r155)
(REDUCE (TYPE) r155)
(REDUCE (VAL) r155)
(REDUCE (WITH) r155)
(REDUCE (RPAREN) r155)
(REDUCE (FUNSIG) r155)
(REDUCE (WITHTYPE) r155)
(REDUCE (AND) r155)
(REDUCE (EOF) r155))
(STATE
s300
(COMMENT constr "=>" op_op ident OF "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s301))
(STATE
s301
(COMMENT constr "=>" op_op ident OF ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (SEMICOLON) r156)
(REDUCE (ABSTYPE) r156)
(REDUCE (BAR) r156)
(REDUCE (DATATYPE) r156)
(REDUCE (END) r156)
(REDUCE (EQTYPE) r156)
(REDUCE (EXCEPTION) r156)
(REDUCE (FUN) r156)
(REDUCE (FUNCTOR) r156)
(REDUCE (IN) r156)
(REDUCE (INCLUDE) r156)
(REDUCE (INFIX) r156)
(REDUCE (INFIXR) r156)
(REDUCE (LOCAL) r156)
(REDUCE (NONFIX) r156)
(REDUCE (OPEN) r156)
(REDUCE (OVERLOAD) r156)
(REDUCE (SHARING) r156)
(REDUCE (SIGNATURE) r156)
(REDUCE (STRUCTURE) r156)
(REDUCE (TYPE) r156)
(REDUCE (VAL) r156)
(REDUCE (WITH) r156)
(REDUCE (RPAREN) r156)
(REDUCE (FUNSIG) r156)
(REDUCE (WITHTYPE) r156)
(REDUCE (AND) r156)
(SHIFT (ARROW) s70)
(REDUCE (EOF) r156))
(STATE
s302
(COMMENT constr "=>" "." op_op ident OF ty)
(COMMENT constr "=>" "." op_op ident)
(COMMENT constrs "=>" "." constr BAR constrs)
(COMMENT constrs "=>" "." constr)
(COMMENT db "=>" ID EQUALOP "." constrs)
(COMMENT dtrepl "=>" ID EQUALOP "." DATATYPE tycon)
(COMMENT op_op "=>" ".")
(COMMENT op_op "=>" "." OP)
(REDUCE (ID) r11)
(SHIFT (DATATYPE) s304)
(REDUCE (EQUALOP) r11)
(SHIFT (OP) s205)
(REDUCE (ASTERISK) r11)
(GOTO op_op s294)
(GOTO constrs s303)
(GOTO constr s296))
(STATE s303 (COMMENT db "=>" ID EQUALOP constrs ".") (REDUCE () r150))
(STATE
s304
(COMMENT dtrepl "=>" ID EQUALOP DATATYPE "." tycon)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(GOTO tycon s305))
(STATE
s305
(COMMENT dtrepl "=>" ID EQUALOP DATATYPE tycon ".")
(REDUCE () r147))
(STATE
s306
(COMMENT db "=>" "." LAZY tyvars ID EQUALOP constrs)
(COMMENT db "=>" "." tyvarseq ID EQUALOP constrs)
(COMMENT db "=>" "." ID EQUALOP constrs)
(COMMENT dbs "=>" db AND "." dbs)
(COMMENT dbs "=>" "." db AND dbs)
(COMMENT dbs "=>" "." db)
(COMMENT tyvarseq "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvarseq "=>" "." TYVAR)
(SHIFT (ID) s308)
(SHIFT (TYVAR) s286)
(SHIFT (LAZY) s287)
(SHIFT (LPAREN) s288)
(GOTO tyvarseq s281)
(GOTO dbs s307)
(GOTO db s284))
(STATE s307 (COMMENT dbs "=>" db AND dbs ".") (REDUCE () r149))
(STATE s308 (COMMENT db "=>" ID "." EQUALOP constrs) (SHIFT (EQUALOP) s309))
(STATE
s309
(COMMENT constr "=>" "." op_op ident OF ty)
(COMMENT constr "=>" "." op_op ident)
(COMMENT constrs "=>" "." constr BAR constrs)
(COMMENT constrs "=>" "." constr)
(COMMENT db "=>" ID EQUALOP "." constrs)
(COMMENT op_op "=>" ".")
(COMMENT op_op "=>" "." OP)
(REDUCE (ID) r11)
(REDUCE (EQUALOP) r11)
(SHIFT (OP) s205)
(REDUCE (ASTERISK) r11)
(GOTO op_op s294)
(GOTO constrs s303)
(GOTO constr s296))
(STATE
s310
(COMMENT spec "=>" DATATYPE dbs WITHTYPE "." tb)
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(COMMENT tb "=>" "." tb AND tb)
(COMMENT tb "=>" "." tyvars ID EQUALOP ty)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(SHIFT (LPAREN) s214)
(GOTO tb s311)
(GOTO tyvars s312))
(STATE
s311
(COMMENT spec "=>" DATATYPE dbs WITHTYPE tb ".")
(COMMENT tb "=>" tb "." AND tb)
(REDUCE (SEMICOLON) r199)
(REDUCE (DATATYPE) r199)
(REDUCE (END) r199)
(REDUCE (EQTYPE) r199)
(REDUCE (EXCEPTION) r199)
(REDUCE (FUNCTOR) r199)
(REDUCE (INCLUDE) r199)
(REDUCE (SHARING) r199)
(REDUCE (STRUCTURE) r199)
(REDUCE (TYPE) r199)
(REDUCE (VAL) r199)
(REDUCE (RPAREN) r199)
(SHIFT (AND) s316))
(STATE s312 (COMMENT tb "=>" tyvars "." ID EQUALOP ty) (SHIFT (ID) s313))
(STATE
s313
(COMMENT tb "=>" tyvars ID "." EQUALOP ty)
(SHIFT (EQUALOP) s314))
(STATE
s314
(COMMENT tb "=>" tyvars ID EQUALOP "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s315))
(STATE
s315
(COMMENT tb "=>" tyvars ID EQUALOP ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (SEMICOLON) r138)
(REDUCE (ABSTYPE) r138)
(REDUCE (DATATYPE) r138)
(REDUCE (END) r138)
(REDUCE (EQTYPE) r138)
(REDUCE (EXCEPTION) r138)
(REDUCE (FUN) r138)
(REDUCE (FUNCTOR) r138)
(REDUCE (IN) r138)
(REDUCE (INCLUDE) r138)
(REDUCE (INFIX) r138)
(REDUCE (INFIXR) r138)
(REDUCE (LOCAL) r138)
(REDUCE (NONFIX) r138)
(REDUCE (OPEN) r138)
(REDUCE (OVERLOAD) r138)
(REDUCE (SHARING) r138)
(REDUCE (SIGNATURE) r138)
(REDUCE (STRUCTURE) r138)
(REDUCE (TYPE) r138)
(REDUCE (VAL) r138)
(REDUCE (WITH) r138)
(REDUCE (RPAREN) r138)
(REDUCE (FUNSIG) r138)
(REDUCE (AND) r138)
(SHIFT (ARROW) s70)
(REDUCE (EOF) r138))
(STATE
s316
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(COMMENT tb "=>" tb AND "." tb)
(COMMENT tb "=>" "." tb AND tb)
(COMMENT tb "=>" "." tyvars ID EQUALOP ty)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(SHIFT (LPAREN) s214)
(GOTO tb s317)
(GOTO tyvars s312))
(STATE
s317
(COMMENT tb "=>" tb AND tb ".")
(COMMENT tb "=>" tb "." AND tb)
(REDUCE (SEMICOLON) r139)
(REDUCE (ABSTYPE) r139)
(REDUCE (DATATYPE) r139)
(REDUCE (END) r139)
(REDUCE (EQTYPE) r139)
(REDUCE (EXCEPTION) r139)
(REDUCE (FUN) r139)
(REDUCE (FUNCTOR) r139)
(REDUCE (IN) r139)
(REDUCE (INCLUDE) r139)
(REDUCE (INFIX) r139)
(REDUCE (INFIXR) r139)
(REDUCE (LOCAL) r139)
(REDUCE (NONFIX) r139)
(REDUCE (OPEN) r139)
(REDUCE (OVERLOAD) r139)
(REDUCE (SHARING) r139)
(REDUCE (SIGNATURE) r139)
(REDUCE (STRUCTURE) r139)
(REDUCE (TYPE) r139)
(REDUCE (VAL) r139)
(REDUCE (WITH) r139)
(REDUCE (RPAREN) r139)
(REDUCE (FUNSIG) r139)
(SHIFT (AND) s316)
(REDUCE (EOF) r139))
(STATE
s318
(COMMENT db "=>" tyvarseq ID "." EQUALOP constrs)
(SHIFT (EQUALOP) s319))
(STATE
s319
(COMMENT constr "=>" "." op_op ident OF ty)
(COMMENT constr "=>" "." op_op ident)
(COMMENT constrs "=>" "." constr BAR constrs)
(COMMENT constrs "=>" "." constr)
(COMMENT db "=>" tyvarseq ID EQUALOP "." constrs)
(COMMENT op_op "=>" ".")
(COMMENT op_op "=>" "." OP)
(REDUCE (ID) r11)
(REDUCE (EQUALOP) r11)
(SHIFT (OP) s205)
(REDUCE (ASTERISK) r11)
(GOTO op_op s294)
(GOTO constrs s320)
(GOTO constr s296))
(STATE
s320
(COMMENT db "=>" tyvarseq ID EQUALOP constrs ".")
(REDUCE () r151))
(STATE
s321
(COMMENT fparam "=>" ID COLON "." sign)
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s230)
(GOTO sign s322))
(STATE
s322
(COMMENT fparam "=>" ID COLON sign ".")
(COMMENT sign "=>" sign "." WHERE whspec)
(SHIFT (WHERE) s236)
(REDUCE (RPAREN) r275))
(STATE s323 (COMMENT spec_s "=>" SEMICOLON spec_s ".") (REDUCE () r194))
(STATE
s324
(COMMENT fparamList "=>" LPAREN fparam RPAREN "." fparamList)
(COMMENT fparamList "=>" "." LPAREN fparam RPAREN fparamList)
(COMMENT fparamList "=>" LPAREN fparam RPAREN ".")
(COMMENT fparamList "=>" "." LPAREN fparam RPAREN)
(REDUCE (EQUALOP) r277)
(REDUCE (COLONGT) r277)
(SHIFT (LPAREN) s188)
(REDUCE (COLON) r277)
(GOTO fparamList s325))
(STATE
s325
(COMMENT fparamList "=>" LPAREN fparam RPAREN fparamList ".")
(REDUCE () r278))
(STATE s326 (COMMENT spec_s "=>" spec spec_s ".") (REDUCE () r193))
(STATE
s327
(COMMENT fsigb "=>" ident fparamList EQUALOP "." sign)
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s230)
(GOTO sign s328))
(STATE
s328
(COMMENT fsigb "=>" ident fparamList EQUALOP sign ".")
(COMMENT sign "=>" sign "." WHERE whspec)
(REDUCE (SEMICOLON) r242)
(REDUCE (ABSTYPE) r242)
(REDUCE (DATATYPE) r242)
(REDUCE (END) r242)
(REDUCE (EXCEPTION) r242)
(REDUCE (FUN) r242)
(REDUCE (FUNCTOR) r242)
(REDUCE (IN) r242)
(REDUCE (INFIX) r242)
(REDUCE (INFIXR) r242)
(REDUCE (LOCAL) r242)
(REDUCE (NONFIX) r242)
(REDUCE (OPEN) r242)
(REDUCE (OVERLOAD) r242)
(REDUCE (SIGNATURE) r242)
(REDUCE (STRUCTURE) r242)
(REDUCE (TYPE) r242)
(REDUCE (VAL) r242)
(SHIFT (WHERE) s236)
(REDUCE (FUNSIG) r242)
(REDUCE (AND) r242)
(REDUCE (EOF) r242))
(STATE
s329
(COMMENT aexp "=>" LPAREN exp_ps "." RPAREN)
(SHIFT (RPAREN) s340))
(STATE
s330
(COMMENT exp_2c "=>" exp "." COMMA exp)
(COMMENT exp_2c "=>" exp "." COMMA exp_2c)
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(COMMENT exp_ps "=>" exp "." SEMICOLON exp_ps)
(COMMENT exp_ps "=>" exp ".")
(SHIFT (SEMICOLON) s334)
(SHIFT (COMMA) s335)
(REDUCE (RPAREN) r41)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55))
(STATE
s331
(COMMENT aexp "=>" LPAREN exp_2c "." RPAREN)
(SHIFT (RPAREN) s333))
(STATE s332 (COMMENT aexp "=>" LPAREN RPAREN ".") (REDUCE () r67))
(STATE s333 (COMMENT aexp "=>" LPAREN exp_2c RPAREN ".") (REDUCE () r69))
(STATE
s334
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT exp_ps "=>" exp SEMICOLON "." exp_ps)
(COMMENT exp_ps "=>" "." exp SEMICOLON exp_ps)
(COMMENT exp_ps "=>" "." exp)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp_ps s338)
(GOTO exp s339)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s335
(COMMENT exp_2c "=>" exp COMMA "." exp)
(COMMENT exp_2c "=>" "." exp COMMA exp)
(COMMENT exp_2c "=>" exp COMMA "." exp_2c)
(COMMENT exp_2c "=>" "." exp COMMA exp_2c)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s336)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6)
(GOTO exp_2c s337))
(STATE
s336
(COMMENT exp_2c "=>" exp COMMA exp ".")
(COMMENT exp_2c "=>" exp "." COMMA exp)
(COMMENT exp_2c "=>" exp "." COMMA exp_2c)
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(SHIFT (COMMA) s335)
(REDUCE (RPAREN) r82)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55))
(STATE s337 (COMMENT exp_2c "=>" exp COMMA exp_2c ".") (REDUCE () r81))
(STATE s338 (COMMENT exp_ps "=>" exp SEMICOLON exp_ps ".") (REDUCE () r42))
(STATE
s339
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(COMMENT exp_ps "=>" exp "." SEMICOLON exp_ps)
(COMMENT exp_ps "=>" exp ".")
(SHIFT (SEMICOLON) s334)
(REDUCE (END) r41)
(REDUCE (RPAREN) r41)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55))
(STATE s340 (COMMENT aexp "=>" LPAREN exp_ps RPAREN ".") (REDUCE () r68))
(STATE
s341
(COMMENT aexp "=>" LBRACKET exp_list "." RBRACKET)
(SHIFT (RBRACKET) s343))
(STATE s342 (COMMENT aexp "=>" LBRACKET RBRACKET ".") (REDUCE () r71))
(STATE
s343
(COMMENT aexp "=>" LBRACKET exp_list RBRACKET ".")
(REDUCE () r70))
(STATE
s344
(COMMENT elabel "=>" selector "." EQUALOP exp)
(SHIFT (EQUALOP) s351))
(STATE
s345
(COMMENT elabels "=>" elabel ".")
(COMMENT elabels "=>" elabel "." COMMA elabels)
(SHIFT (COMMA) s349)
(REDUCE (RBRACE) r40))
(STATE
s346
(COMMENT aexp "=>" LBRACE elabels "." RBRACE)
(SHIFT (RBRACE) s348))
(STATE s347 (COMMENT aexp "=>" LBRACE RBRACE ".") (REDUCE () r66))
(STATE s348 (COMMENT aexp "=>" LBRACE elabels RBRACE ".") (REDUCE () r65))
(STATE
s349
(COMMENT elabels "=>" "." elabel)
(COMMENT elabels "=>" elabel COMMA "." elabels)
(COMMENT elabels "=>" "." elabel COMMA elabels)
(COMMENT elabel "=>" "." selector EQUALOP exp)
(COMMENT selector "=>" "." INT)
(COMMENT selector "=>" "." id)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (INT) s79)
(SHIFT (ASTERISK) s80)
(GOTO id s74)
(GOTO selector s344)
(GOTO elabel s345)
(GOTO elabels s350))
(STATE s350 (COMMENT elabels "=>" elabel COMMA elabels ".") (REDUCE () r39))
(STATE
s351
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT elabel "=>" selector EQUALOP "." exp)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s352)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s352
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(COMMENT elabel "=>" selector EQUALOP exp ".")
(REDUCE (COMMA) r38)
(REDUCE (RBRACE) r38)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55))
(STATE
s353
(COMMENT exp "=>" WHILE exp "." DO exp)
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(SHIFT (DO) s354)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55))
(STATE
s354
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" WHILE exp DO "." exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s355)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s355
(COMMENT exp "=>" WHILE exp DO exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r50)
(REDUCE (ABSTYPE) r50)
(REDUCE (BAR) r50)
(REDUCE (DATATYPE) r50)
(REDUCE (END) r50)
(REDUCE (EXCEPTION) r50)
(REDUCE (FUN) r50)
(REDUCE (FUNCTOR) r50)
(REDUCE (IN) r50)
(REDUCE (INFIX) r50)
(REDUCE (INFIXR) r50)
(REDUCE (LOCAL) r50)
(REDUCE (NONFIX) r50)
(REDUCE (OF) r50)
(REDUCE (OPEN) r50)
(REDUCE (OVERLOAD) r50)
(REDUCE (SIGNATURE) r50)
(REDUCE (STRUCTURE) r50)
(REDUCE (THEN) r50)
(REDUCE (TYPE) r50)
(REDUCE (VAL) r50)
(REDUCE (COMMA) r50)
(REDUCE (RBRACE) r50)
(REDUCE (RBRACKET) r50)
(REDUCE (RPAREN) r50)
(REDUCE (FUNSIG) r50)
(REDUCE (AND) r50)
(REDUCE (DO) r50)
(REDUCE (ELSE) r50)
(REDUCE (HANDLE) r50)
(REDUCE (ORELSE) r50)
(REDUCE (ANDALSO) r50)
(REDUCE (COLON) r50)
(REDUCE (EOF) r50))
(STATE
s356
(COMMENT vb "=>" pat "." EQUALOP exp)
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat "." AS pat)
(SHIFT (EQUALOP) s394)
(SHIFT (AS) s118)
(SHIFT (COLON) s119))
(STATE
s357
(COMMENT ldec "=>" VAL vb ".")
(COMMENT vb "=>" vb "." AND vb)
(REDUCE (SEMICOLON) r168)
(REDUCE (ABSTYPE) r168)
(REDUCE (DATATYPE) r168)
(REDUCE (END) r168)
(REDUCE (EXCEPTION) r168)
(REDUCE (FUN) r168)
(REDUCE (FUNCTOR) r168)
(REDUCE (IN) r168)
(REDUCE (INFIX) r168)
(REDUCE (INFIXR) r168)
(REDUCE (LOCAL) r168)
(REDUCE (NONFIX) r168)
(REDUCE (OPEN) r168)
(REDUCE (OVERLOAD) r168)
(REDUCE (SIGNATURE) r168)
(REDUCE (STRUCTURE) r168)
(REDUCE (TYPE) r168)
(REDUCE (VAL) r168)
(REDUCE (RPAREN) r168)
(REDUCE (FUNSIG) r168)
(SHIFT (AND) s392)
(REDUCE (EOF) r168))
(STATE
s358
(COMMENT ldec "=>" VAL tyvarseq "." vb)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT vb "=>" "." pat EQUALOP exp)
(COMMENT vb "=>" "." LAZY pat EQUALOP exp)
(COMMENT vb "=>" "." vb AND vb)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (LAZY) s359)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s356)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO vb s391)
(GOTO apats s102))
(STATE
s359
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT vb "=>" LAZY "." pat EQUALOP exp)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s388)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE
s360
(COMMENT ldec "=>" VAL REC "." tyvarseq rvb)
(COMMENT ldec "=>" VAL REC "." rvb)
(COMMENT tyvarseq "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvarseq "=>" "." TYVAR)
(COMMENT rvb "=>" "." LAZY OP id constraint EQUALOP exp)
(COMMENT rvb "=>" "." LAZY id constraint EQUALOP exp)
(COMMENT rvb "=>" "." rvb AND rvb)
(COMMENT rvb "=>" "." OP id constraint EQUALOP exp)
(COMMENT rvb "=>" "." id constraint EQUALOP exp)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (TYVAR) s286)
(SHIFT (LAZY) s365)
(SHIFT (OP) s366)
(SHIFT (ASTERISK) s80)
(SHIFT (LPAREN) s288)
(GOTO id s362)
(GOTO rvb s363)
(GOTO tyvarseq s364))
(STATE
s361
(COMMENT tyvar_pc "=>" "." TYVAR COMMA tyvar_pc)
(COMMENT tyvar_pc "=>" "." TYVAR)
(COMMENT tyvarseq "=>" LPAREN "." tyvar_pc RPAREN)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" LPAREN "." pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" LPAREN "." pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" LPAREN "." RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" LPAREN "." pat RPAREN)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (TYVAR) s216)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (RPAREN) s124)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s123)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102)
(GOTO tyvar_pc s289))
(STATE
s362
(COMMENT rvb "=>" id "." constraint EQUALOP exp)
(COMMENT constraint "=>" "." COLON ty)
(COMMENT constraint "=>" ".")
(REDUCE (EQUALOP) r122)
(SHIFT (COLON) s369)
(GOTO constraint s385))
(STATE
s363
(COMMENT ldec "=>" VAL REC rvb ".")
(COMMENT rvb "=>" rvb "." AND rvb)
(REDUCE (SEMICOLON) r170)
(REDUCE (ABSTYPE) r170)
(REDUCE (DATATYPE) r170)
(REDUCE (END) r170)
(REDUCE (EXCEPTION) r170)
(REDUCE (FUN) r170)
(REDUCE (FUNCTOR) r170)
(REDUCE (IN) r170)
(REDUCE (INFIX) r170)
(REDUCE (INFIXR) r170)
(REDUCE (LOCAL) r170)
(REDUCE (NONFIX) r170)
(REDUCE (OPEN) r170)
(REDUCE (OVERLOAD) r170)
(REDUCE (SIGNATURE) r170)
(REDUCE (STRUCTURE) r170)
(REDUCE (TYPE) r170)
(REDUCE (VAL) r170)
(REDUCE (RPAREN) r170)
(REDUCE (FUNSIG) r170)
(SHIFT (AND) s383)
(REDUCE (EOF) r170))
(STATE
s364
(COMMENT ldec "=>" VAL REC tyvarseq "." rvb)
(COMMENT rvb "=>" "." LAZY OP id constraint EQUALOP exp)
(COMMENT rvb "=>" "." LAZY id constraint EQUALOP exp)
(COMMENT rvb "=>" "." rvb AND rvb)
(COMMENT rvb "=>" "." OP id constraint EQUALOP exp)
(COMMENT rvb "=>" "." id constraint EQUALOP exp)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (LAZY) s365)
(SHIFT (OP) s366)
(SHIFT (ASTERISK) s80)
(GOTO id s362)
(GOTO rvb s382))
(STATE
s365
(COMMENT rvb "=>" LAZY "." OP id constraint EQUALOP exp)
(COMMENT rvb "=>" LAZY "." id constraint EQUALOP exp)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (OP) s374)
(SHIFT (ASTERISK) s80)
(GOTO id s373))
(STATE
s366
(COMMENT rvb "=>" OP "." id constraint EQUALOP exp)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (ASTERISK) s80)
(GOTO id s367))
(STATE
s367
(COMMENT rvb "=>" OP id "." constraint EQUALOP exp)
(COMMENT constraint "=>" "." COLON ty)
(COMMENT constraint "=>" ".")
(REDUCE (EQUALOP) r122)
(SHIFT (COLON) s369)
(GOTO constraint s368))
(STATE
s368
(COMMENT rvb "=>" OP id constraint "." EQUALOP exp)
(SHIFT (EQUALOP) s371))
(STATE
s369
(COMMENT constraint "=>" COLON "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s370))
(STATE
s370
(COMMENT constraint "=>" COLON ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (EQUALOP) r123)
(SHIFT (ARROW) s70))
(STATE
s371
(COMMENT rvb "=>" OP id constraint EQUALOP "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s372)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s372
(COMMENT rvb "=>" OP id constraint EQUALOP exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r125)
(REDUCE (ABSTYPE) r125)
(REDUCE (DATATYPE) r125)
(REDUCE (END) r125)
(REDUCE (EXCEPTION) r125)
(REDUCE (FUN) r125)
(REDUCE (FUNCTOR) r125)
(REDUCE (IN) r125)
(REDUCE (INFIX) r125)
(REDUCE (INFIXR) r125)
(REDUCE (LOCAL) r125)
(REDUCE (NONFIX) r125)
(REDUCE (OPEN) r125)
(REDUCE (OVERLOAD) r125)
(REDUCE (SIGNATURE) r125)
(REDUCE (STRUCTURE) r125)
(REDUCE (TYPE) r125)
(REDUCE (VAL) r125)
(REDUCE (RPAREN) r125)
(REDUCE (FUNSIG) r125)
(REDUCE (AND) r125)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55)
(REDUCE (EOF) r125))
(STATE
s373
(COMMENT rvb "=>" LAZY id "." constraint EQUALOP exp)
(COMMENT constraint "=>" "." COLON ty)
(COMMENT constraint "=>" ".")
(REDUCE (EQUALOP) r122)
(SHIFT (COLON) s369)
(GOTO constraint s379))
(STATE
s374
(COMMENT rvb "=>" LAZY OP "." id constraint EQUALOP exp)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (ASTERISK) s80)
(GOTO id s375))
(STATE
s375
(COMMENT rvb "=>" LAZY OP id "." constraint EQUALOP exp)
(COMMENT constraint "=>" "." COLON ty)
(COMMENT constraint "=>" ".")
(REDUCE (EQUALOP) r122)
(SHIFT (COLON) s369)
(GOTO constraint s376))
(STATE
s376
(COMMENT rvb "=>" LAZY OP id constraint "." EQUALOP exp)
(SHIFT (EQUALOP) s377))
(STATE
s377
(COMMENT rvb "=>" LAZY OP id constraint EQUALOP "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s378)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s378
(COMMENT rvb "=>" LAZY OP id constraint EQUALOP exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r128)
(REDUCE (ABSTYPE) r128)
(REDUCE (DATATYPE) r128)
(REDUCE (END) r128)
(REDUCE (EXCEPTION) r128)
(REDUCE (FUN) r128)
(REDUCE (FUNCTOR) r128)
(REDUCE (IN) r128)
(REDUCE (INFIX) r128)
(REDUCE (INFIXR) r128)
(REDUCE (LOCAL) r128)
(REDUCE (NONFIX) r128)
(REDUCE (OPEN) r128)
(REDUCE (OVERLOAD) r128)
(REDUCE (SIGNATURE) r128)
(REDUCE (STRUCTURE) r128)
(REDUCE (TYPE) r128)
(REDUCE (VAL) r128)
(REDUCE (RPAREN) r128)
(REDUCE (FUNSIG) r128)
(REDUCE (AND) r128)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55)
(REDUCE (EOF) r128))
(STATE
s379
(COMMENT rvb "=>" LAZY id constraint "." EQUALOP exp)
(SHIFT (EQUALOP) s380))
(STATE
s380
(COMMENT rvb "=>" LAZY id constraint EQUALOP "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s381)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s381
(COMMENT rvb "=>" LAZY id constraint EQUALOP exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r127)
(REDUCE (ABSTYPE) r127)
(REDUCE (DATATYPE) r127)
(REDUCE (END) r127)
(REDUCE (EXCEPTION) r127)
(REDUCE (FUN) r127)
(REDUCE (FUNCTOR) r127)
(REDUCE (IN) r127)
(REDUCE (INFIX) r127)
(REDUCE (INFIXR) r127)
(REDUCE (LOCAL) r127)
(REDUCE (NONFIX) r127)
(REDUCE (OPEN) r127)
(REDUCE (OVERLOAD) r127)
(REDUCE (SIGNATURE) r127)
(REDUCE (STRUCTURE) r127)
(REDUCE (TYPE) r127)
(REDUCE (VAL) r127)
(REDUCE (RPAREN) r127)
(REDUCE (FUNSIG) r127)
(REDUCE (AND) r127)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55)
(REDUCE (EOF) r127))
(STATE
s382
(COMMENT ldec "=>" VAL REC tyvarseq rvb ".")
(COMMENT rvb "=>" rvb "." AND rvb)
(REDUCE (SEMICOLON) r171)
(REDUCE (ABSTYPE) r171)
(REDUCE (DATATYPE) r171)
(REDUCE (END) r171)
(REDUCE (EXCEPTION) r171)
(REDUCE (FUN) r171)
(REDUCE (FUNCTOR) r171)
(REDUCE (IN) r171)
(REDUCE (INFIX) r171)
(REDUCE (INFIXR) r171)
(REDUCE (LOCAL) r171)
(REDUCE (NONFIX) r171)
(REDUCE (OPEN) r171)
(REDUCE (OVERLOAD) r171)
(REDUCE (SIGNATURE) r171)
(REDUCE (STRUCTURE) r171)
(REDUCE (TYPE) r171)
(REDUCE (VAL) r171)
(REDUCE (RPAREN) r171)
(REDUCE (FUNSIG) r171)
(SHIFT (AND) s383)
(REDUCE (EOF) r171))
(STATE
s383
(COMMENT rvb "=>" "." LAZY OP id constraint EQUALOP exp)
(COMMENT rvb "=>" "." LAZY id constraint EQUALOP exp)
(COMMENT rvb "=>" rvb AND "." rvb)
(COMMENT rvb "=>" "." rvb AND rvb)
(COMMENT rvb "=>" "." OP id constraint EQUALOP exp)
(COMMENT rvb "=>" "." id constraint EQUALOP exp)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(SHIFT (ID) s78)
(SHIFT (LAZY) s365)
(SHIFT (OP) s366)
(SHIFT (ASTERISK) s80)
(GOTO id s362)
(GOTO rvb s384))
(STATE
s384
(COMMENT rvb "=>" rvb AND rvb ".")
(COMMENT rvb "=>" rvb "." AND rvb)
(REDUCE (SEMICOLON) r126)
(REDUCE (ABSTYPE) r126)
(REDUCE (DATATYPE) r126)
(REDUCE (END) r126)
(REDUCE (EXCEPTION) r126)
(REDUCE (FUN) r126)
(REDUCE (FUNCTOR) r126)
(REDUCE (IN) r126)
(REDUCE (INFIX) r126)
(REDUCE (INFIXR) r126)
(REDUCE (LOCAL) r126)
(REDUCE (NONFIX) r126)
(REDUCE (OPEN) r126)
(REDUCE (OVERLOAD) r126)
(REDUCE (SIGNATURE) r126)
(REDUCE (STRUCTURE) r126)
(REDUCE (TYPE) r126)
(REDUCE (VAL) r126)
(REDUCE (RPAREN) r126)
(REDUCE (FUNSIG) r126)
(SHIFT (AND) s383)
(REDUCE (EOF) r126))
(STATE
s385
(COMMENT rvb "=>" id constraint "." EQUALOP exp)
(SHIFT (EQUALOP) s386))
(STATE
s386
(COMMENT rvb "=>" id constraint EQUALOP "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s387)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s387
(COMMENT rvb "=>" id constraint EQUALOP exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r124)
(REDUCE (ABSTYPE) r124)
(REDUCE (DATATYPE) r124)
(REDUCE (END) r124)
(REDUCE (EXCEPTION) r124)
(REDUCE (FUN) r124)
(REDUCE (FUNCTOR) r124)
(REDUCE (IN) r124)
(REDUCE (INFIX) r124)
(REDUCE (INFIXR) r124)
(REDUCE (LOCAL) r124)
(REDUCE (NONFIX) r124)
(REDUCE (OPEN) r124)
(REDUCE (OVERLOAD) r124)
(REDUCE (SIGNATURE) r124)
(REDUCE (STRUCTURE) r124)
(REDUCE (TYPE) r124)
(REDUCE (VAL) r124)
(REDUCE (RPAREN) r124)
(REDUCE (FUNSIG) r124)
(REDUCE (AND) r124)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55)
(REDUCE (EOF) r124))
(STATE
s388
(COMMENT vb "=>" LAZY pat "." EQUALOP exp)
(COMMENT pat "=>" pat "." COLON ty)
(COMMENT pat "=>" pat "." AS pat)
(SHIFT (EQUALOP) s389)
(SHIFT (AS) s118)
(SHIFT (COLON) s119))
(STATE
s389
(COMMENT vb "=>" LAZY pat EQUALOP "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s390)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s390
(COMMENT vb "=>" LAZY pat EQUALOP exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r120)
(REDUCE (ABSTYPE) r120)
(REDUCE (DATATYPE) r120)
(REDUCE (END) r120)
(REDUCE (EXCEPTION) r120)
(REDUCE (FUN) r120)
(REDUCE (FUNCTOR) r120)
(REDUCE (IN) r120)
(REDUCE (INFIX) r120)
(REDUCE (INFIXR) r120)
(REDUCE (LOCAL) r120)
(REDUCE (NONFIX) r120)
(REDUCE (OPEN) r120)
(REDUCE (OVERLOAD) r120)
(REDUCE (SIGNATURE) r120)
(REDUCE (STRUCTURE) r120)
(REDUCE (TYPE) r120)
(REDUCE (VAL) r120)
(REDUCE (RPAREN) r120)
(REDUCE (FUNSIG) r120)
(REDUCE (AND) r120)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55)
(REDUCE (EOF) r120))
(STATE
s391
(COMMENT ldec "=>" VAL tyvarseq vb ".")
(COMMENT vb "=>" vb "." AND vb)
(REDUCE (SEMICOLON) r169)
(REDUCE (ABSTYPE) r169)
(REDUCE (DATATYPE) r169)
(REDUCE (END) r169)
(REDUCE (EXCEPTION) r169)
(REDUCE (FUN) r169)
(REDUCE (FUNCTOR) r169)
(REDUCE (IN) r169)
(REDUCE (INFIX) r169)
(REDUCE (INFIXR) r169)
(REDUCE (LOCAL) r169)
(REDUCE (NONFIX) r169)
(REDUCE (OPEN) r169)
(REDUCE (OVERLOAD) r169)
(REDUCE (SIGNATURE) r169)
(REDUCE (STRUCTURE) r169)
(REDUCE (TYPE) r169)
(REDUCE (VAL) r169)
(REDUCE (RPAREN) r169)
(REDUCE (FUNSIG) r169)
(SHIFT (AND) s392)
(REDUCE (EOF) r169))
(STATE
s392
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT vb "=>" "." pat EQUALOP exp)
(COMMENT vb "=>" "." LAZY pat EQUALOP exp)
(COMMENT vb "=>" vb AND "." vb)
(COMMENT vb "=>" "." vb AND vb)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (LAZY) s359)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO pat s356)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO vb s393)
(GOTO apats s102))
(STATE
s393
(COMMENT vb "=>" vb AND vb ".")
(COMMENT vb "=>" vb "." AND vb)
(REDUCE (SEMICOLON) r119)
(REDUCE (ABSTYPE) r119)
(REDUCE (DATATYPE) r119)
(REDUCE (END) r119)
(REDUCE (EXCEPTION) r119)
(REDUCE (FUN) r119)
(REDUCE (FUNCTOR) r119)
(REDUCE (IN) r119)
(REDUCE (INFIX) r119)
(REDUCE (INFIXR) r119)
(REDUCE (LOCAL) r119)
(REDUCE (NONFIX) r119)
(REDUCE (OPEN) r119)
(REDUCE (OVERLOAD) r119)
(REDUCE (SIGNATURE) r119)
(REDUCE (STRUCTURE) r119)
(REDUCE (TYPE) r119)
(REDUCE (VAL) r119)
(REDUCE (RPAREN) r119)
(REDUCE (FUNSIG) r119)
(SHIFT (AND) s392)
(REDUCE (EOF) r119))
(STATE
s394
(COMMENT vb "=>" pat EQUALOP "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s395)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s395
(COMMENT vb "=>" pat EQUALOP exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r121)
(REDUCE (ABSTYPE) r121)
(REDUCE (DATATYPE) r121)
(REDUCE (END) r121)
(REDUCE (EXCEPTION) r121)
(REDUCE (FUN) r121)
(REDUCE (FUNCTOR) r121)
(REDUCE (IN) r121)
(REDUCE (INFIX) r121)
(REDUCE (INFIXR) r121)
(REDUCE (LOCAL) r121)
(REDUCE (NONFIX) r121)
(REDUCE (OPEN) r121)
(REDUCE (OVERLOAD) r121)
(REDUCE (SIGNATURE) r121)
(REDUCE (STRUCTURE) r121)
(REDUCE (TYPE) r121)
(REDUCE (VAL) r121)
(REDUCE (RPAREN) r121)
(REDUCE (FUNSIG) r121)
(REDUCE (AND) r121)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55)
(REDUCE (EOF) r121))
(STATE
s396
(COMMENT ldec "=>" TYPE tb ".")
(COMMENT tb "=>" tb "." AND tb)
(REDUCE (SEMICOLON) r174)
(REDUCE (ABSTYPE) r174)
(REDUCE (DATATYPE) r174)
(REDUCE (END) r174)
(REDUCE (EXCEPTION) r174)
(REDUCE (FUN) r174)
(REDUCE (FUNCTOR) r174)
(REDUCE (IN) r174)
(REDUCE (INFIX) r174)
(REDUCE (INFIXR) r174)
(REDUCE (LOCAL) r174)
(REDUCE (NONFIX) r174)
(REDUCE (OPEN) r174)
(REDUCE (OVERLOAD) r174)
(REDUCE (SIGNATURE) r174)
(REDUCE (STRUCTURE) r174)
(REDUCE (TYPE) r174)
(REDUCE (VAL) r174)
(REDUCE (RPAREN) r174)
(REDUCE (FUNSIG) r174)
(SHIFT (AND) s316)
(REDUCE (EOF) r174))
(STATE
s397
(COMMENT strb "=>" ident "." sigconstraint_op EQUALOP str)
(COMMENT sigconstraint_op "=>" "." COLONGT sign)
(COMMENT sigconstraint_op "=>" "." COLON sign)
(COMMENT sigconstraint_op "=>" ".")
(REDUCE (EQUALOP) r233)
(SHIFT (COLONGT) s402)
(SHIFT (COLON) s403)
(GOTO sigconstraint_op s401))
(STATE
s398
(COMMENT strb "=>" strb "." AND strb)
(COMMENT sdec "=>" STRUCTURE strb ".")
(REDUCE (SEMICOLON) r267)
(REDUCE (ABSTYPE) r267)
(REDUCE (DATATYPE) r267)
(REDUCE (END) r267)
(REDUCE (EXCEPTION) r267)
(REDUCE (FUN) r267)
(REDUCE (FUNCTOR) r267)
(REDUCE (IN) r267)
(REDUCE (INFIX) r267)
(REDUCE (INFIXR) r267)
(REDUCE (LOCAL) r267)
(REDUCE (NONFIX) r267)
(REDUCE (OPEN) r267)
(REDUCE (OVERLOAD) r267)
(REDUCE (SIGNATURE) r267)
(REDUCE (STRUCTURE) r267)
(REDUCE (TYPE) r267)
(REDUCE (VAL) r267)
(REDUCE (FUNSIG) r267)
(SHIFT (AND) s399)
(REDUCE (EOF) r267))
(STATE
s399
(COMMENT strb "=>" strb AND "." strb)
(COMMENT strb "=>" "." strb AND strb)
(COMMENT strb "=>" "." ident sigconstraint_op EQUALOP str)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s397)
(GOTO strb s400))
(STATE
s400
(COMMENT strb "=>" strb AND strb ".")
(COMMENT strb "=>" strb "." AND strb)
(REDUCE (SEMICOLON) r274)
(REDUCE (ABSTYPE) r274)
(REDUCE (DATATYPE) r274)
(REDUCE (END) r274)
(REDUCE (EXCEPTION) r274)
(REDUCE (FUN) r274)
(REDUCE (FUNCTOR) r274)
(REDUCE (IN) r274)
(REDUCE (INFIX) r274)
(REDUCE (INFIXR) r274)
(REDUCE (LOCAL) r274)
(REDUCE (NONFIX) r274)
(REDUCE (OPEN) r274)
(REDUCE (OVERLOAD) r274)
(REDUCE (SIGNATURE) r274)
(REDUCE (STRUCTURE) r274)
(REDUCE (TYPE) r274)
(REDUCE (VAL) r274)
(REDUCE (RPAREN) r274)
(REDUCE (FUNSIG) r274)
(SHIFT (AND) s399)
(REDUCE (EOF) r274))
(STATE
s401
(COMMENT strb "=>" ident sigconstraint_op "." EQUALOP str)
(SHIFT (EQUALOP) s406))
(STATE
s402
(COMMENT sigconstraint_op "=>" COLONGT "." sign)
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s230)
(GOTO sign s405))
(STATE
s403
(COMMENT sigconstraint_op "=>" COLON "." sign)
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s230)
(GOTO sign s404))
(STATE
s404
(COMMENT sigconstraint_op "=>" COLON sign ".")
(COMMENT sign "=>" sign "." WHERE whspec)
(REDUCE (EQUALOP) r234)
(SHIFT (WHERE) s236))
(STATE
s405
(COMMENT sigconstraint_op "=>" COLONGT sign ".")
(COMMENT sign "=>" sign "." WHERE whspec)
(REDUCE (EQUALOP) r235)
(SHIFT (WHERE) s236))
(STATE
s406
(COMMENT strb "=>" ident sigconstraint_op EQUALOP "." str)
(COMMENT str "=>" "." str COLONGT sign)
(COMMENT str "=>" "." str COLON sign)
(COMMENT str "=>" "." LET strdecs IN str END)
(COMMENT str "=>" "." qid arg_fct)
(COMMENT str "=>" "." STRUCT strdecs END)
(COMMENT str "=>" "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (LET) s409)
(SHIFT (STRUCT) s410)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s407)
(GOTO str s408))
(STATE
s407
(COMMENT arg_fct "=>" "." LPAREN strdecs RPAREN)
(COMMENT arg_fct "=>" "." LPAREN str RPAREN)
(COMMENT arg_fct "=>" "." LPAREN str RPAREN arg_fct)
(COMMENT arg_fct "=>" "." LPAREN strdecs RPAREN arg_fct)
(COMMENT str "=>" qid "." arg_fct)
(COMMENT str "=>" qid ".")
(REDUCE (SEMICOLON) r245)
(REDUCE (ABSTYPE) r245)
(REDUCE (DATATYPE) r245)
(REDUCE (END) r245)
(REDUCE (EXCEPTION) r245)
(REDUCE (FUN) r245)
(REDUCE (FUNCTOR) r245)
(REDUCE (IN) r245)
(REDUCE (INFIX) r245)
(REDUCE (INFIXR) r245)
(REDUCE (LOCAL) r245)
(REDUCE (NONFIX) r245)
(REDUCE (OPEN) r245)
(REDUCE (OVERLOAD) r245)
(REDUCE (SIGNATURE) r245)
(REDUCE (STRUCTURE) r245)
(REDUCE (TYPE) r245)
(REDUCE (VAL) r245)
(REDUCE (COLONGT) r245)
(SHIFT (LPAREN) s449)
(REDUCE (RPAREN) r245)
(REDUCE (FUNSIG) r245)
(REDUCE (AND) r245)
(REDUCE (COLON) r245)
(REDUCE (EOF) r245)
(GOTO arg_fct s463))
(STATE
s408
(COMMENT strb "=>" ident sigconstraint_op EQUALOP str ".")
(COMMENT str "=>" str "." COLONGT sign)
(COMMENT str "=>" str "." COLON sign)
(REDUCE (SEMICOLON) r273)
(REDUCE (ABSTYPE) r273)
(REDUCE (DATATYPE) r273)
(REDUCE (END) r273)
(REDUCE (EXCEPTION) r273)
(REDUCE (FUN) r273)
(REDUCE (FUNCTOR) r273)
(REDUCE (IN) r273)
(REDUCE (INFIX) r273)
(REDUCE (INFIXR) r273)
(REDUCE (LOCAL) r273)
(REDUCE (NONFIX) r273)
(REDUCE (OPEN) r273)
(REDUCE (OVERLOAD) r273)
(REDUCE (SIGNATURE) r273)
(REDUCE (STRUCTURE) r273)
(REDUCE (TYPE) r273)
(REDUCE (VAL) r273)
(SHIFT (COLONGT) s436)
(REDUCE (RPAREN) r273)
(REDUCE (FUNSIG) r273)
(REDUCE (AND) r273)
(SHIFT (COLON) s437)
(REDUCE (EOF) r273))
(STATE
s409
(COMMENT strdec "=>" "." ldec)
(COMMENT strdec "=>" "." LOCAL strdecs IN strdecs END)
(COMMENT strdec "=>" "." FUNCTOR fctb)
(COMMENT strdec "=>" "." STRUCTURE strb)
(COMMENT strdecs "=>" ".")
(COMMENT strdecs "=>" "." SEMICOLON strdecs)
(COMMENT strdecs "=>" "." strdec strdecs)
(COMMENT str "=>" LET "." strdecs IN str END)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s414)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s415)
(REDUCE (IN) r257)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s416)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (STRUCTURE) s417)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s411)
(GOTO strdecs s459)
(GOTO strdec s413))
(STATE
s410
(COMMENT strdec "=>" "." ldec)
(COMMENT strdec "=>" "." LOCAL strdecs IN strdecs END)
(COMMENT strdec "=>" "." FUNCTOR fctb)
(COMMENT strdec "=>" "." STRUCTURE strb)
(COMMENT strdecs "=>" ".")
(COMMENT strdecs "=>" "." SEMICOLON strdecs)
(COMMENT strdecs "=>" "." strdec strdecs)
(COMMENT str "=>" STRUCT "." strdecs END)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s414)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r257)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s415)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s416)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (STRUCTURE) s417)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s411)
(GOTO strdecs s412)
(GOTO strdec s413))
(STATE s411 (COMMENT strdec "=>" ldec ".") (REDUCE () r266))
(STATE s412 (COMMENT str "=>" STRUCT strdecs "." END) (SHIFT (END) s458))
(STATE
s413
(COMMENT strdec "=>" "." ldec)
(COMMENT strdec "=>" "." LOCAL strdecs IN strdecs END)
(COMMENT strdec "=>" "." FUNCTOR fctb)
(COMMENT strdec "=>" "." STRUCTURE strb)
(COMMENT strdecs "=>" ".")
(COMMENT strdecs "=>" "." SEMICOLON strdecs)
(COMMENT strdecs "=>" strdec "." strdecs)
(COMMENT strdecs "=>" "." strdec strdecs)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s414)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r257)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s415)
(REDUCE (IN) r257)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s416)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (STRUCTURE) s417)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(REDUCE (RPAREN) r257)
(GOTO fixity s7)
(GOTO ldec s411)
(GOTO strdecs s457)
(GOTO strdec s413))
(STATE
s414
(COMMENT strdec "=>" "." ldec)
(COMMENT strdec "=>" "." LOCAL strdecs IN strdecs END)
(COMMENT strdec "=>" "." FUNCTOR fctb)
(COMMENT strdec "=>" "." STRUCTURE strb)
(COMMENT strdecs "=>" ".")
(COMMENT strdecs "=>" SEMICOLON "." strdecs)
(COMMENT strdecs "=>" "." SEMICOLON strdecs)
(COMMENT strdecs "=>" "." strdec strdecs)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s414)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r257)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s415)
(REDUCE (IN) r257)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s416)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (STRUCTURE) s417)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(REDUCE (RPAREN) r257)
(GOTO fixity s7)
(GOTO ldec s411)
(GOTO strdecs s456)
(GOTO strdec s413))
(STATE
s415
(COMMENT fctb "=>" "." fctb AND fctb)
(COMMENT fctb "=>" "." ident fsigconstraint_op EQUALOP fct_exp)
(COMMENT fctb "=>" "." ident fparamList sigconstraint_op EQUALOP str)
(COMMENT strdec "=>" FUNCTOR "." fctb)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s423)
(GOTO fctb s424))
(STATE
s416
(COMMENT strdec "=>" "." ldec)
(COMMENT strdec "=>" LOCAL "." strdecs IN strdecs END)
(COMMENT strdec "=>" "." LOCAL strdecs IN strdecs END)
(COMMENT strdec "=>" "." FUNCTOR fctb)
(COMMENT strdec "=>" "." STRUCTURE strb)
(COMMENT strdecs "=>" ".")
(COMMENT strdecs "=>" "." SEMICOLON strdecs)
(COMMENT strdecs "=>" "." strdec strdecs)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s414)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s415)
(REDUCE (IN) r257)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s416)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (STRUCTURE) s417)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s411)
(GOTO strdecs s419)
(GOTO strdec s413))
(STATE
s417
(COMMENT strb "=>" "." strb AND strb)
(COMMENT strb "=>" "." ident sigconstraint_op EQUALOP str)
(COMMENT strdec "=>" STRUCTURE "." strb)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s397)
(GOTO strb s418))
(STATE
s418
(COMMENT strb "=>" strb "." AND strb)
(COMMENT strdec "=>" STRUCTURE strb ".")
(REDUCE (SEMICOLON) r263)
(REDUCE (ABSTYPE) r263)
(REDUCE (DATATYPE) r263)
(REDUCE (END) r263)
(REDUCE (EXCEPTION) r263)
(REDUCE (FUN) r263)
(REDUCE (FUNCTOR) r263)
(REDUCE (IN) r263)
(REDUCE (INFIX) r263)
(REDUCE (INFIXR) r263)
(REDUCE (LOCAL) r263)
(REDUCE (NONFIX) r263)
(REDUCE (OPEN) r263)
(REDUCE (OVERLOAD) r263)
(REDUCE (STRUCTURE) r263)
(REDUCE (TYPE) r263)
(REDUCE (VAL) r263)
(REDUCE (RPAREN) r263)
(SHIFT (AND) s399))
(STATE
s419
(COMMENT strdec "=>" LOCAL strdecs "." IN strdecs END)
(SHIFT (IN) s420))
(STATE
s420
(COMMENT strdec "=>" "." ldec)
(COMMENT strdec "=>" LOCAL strdecs IN "." strdecs END)
(COMMENT strdec "=>" "." LOCAL strdecs IN strdecs END)
(COMMENT strdec "=>" "." FUNCTOR fctb)
(COMMENT strdec "=>" "." STRUCTURE strb)
(COMMENT strdecs "=>" ".")
(COMMENT strdecs "=>" "." SEMICOLON strdecs)
(COMMENT strdecs "=>" "." strdec strdecs)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s414)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r257)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s415)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s416)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (STRUCTURE) s417)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s411)
(GOTO strdecs s421)
(GOTO strdec s413))
(STATE
s421
(COMMENT strdec "=>" LOCAL strdecs IN strdecs "." END)
(SHIFT (END) s422))
(STATE
s422
(COMMENT strdec "=>" LOCAL strdecs IN strdecs END ".")
(REDUCE () r265))
(STATE
s423
(COMMENT fctb "=>" ident "." fsigconstraint_op EQUALOP fct_exp)
(COMMENT fctb "=>" ident "." fparamList sigconstraint_op EQUALOP str)
(COMMENT fparamList "=>" "." LPAREN fparam RPAREN fparamList)
(COMMENT fparamList "=>" "." LPAREN fparam RPAREN)
(COMMENT fsigconstraint_op "=>" "." COLONGT ident)
(COMMENT fsigconstraint_op "=>" "." COLON ident)
(COMMENT fsigconstraint_op "=>" ".")
(REDUCE (EQUALOP) r236)
(SHIFT (COLONGT) s429)
(SHIFT (LPAREN) s188)
(SHIFT (COLON) s430)
(GOTO fsigconstraint_op s427)
(GOTO fparamList s428))
(STATE
s424
(COMMENT fctb "=>" fctb "." AND fctb)
(COMMENT strdec "=>" FUNCTOR fctb ".")
(REDUCE (SEMICOLON) r264)
(REDUCE (ABSTYPE) r264)
(REDUCE (DATATYPE) r264)
(REDUCE (END) r264)
(REDUCE (EXCEPTION) r264)
(REDUCE (FUN) r264)
(REDUCE (FUNCTOR) r264)
(REDUCE (IN) r264)
(REDUCE (INFIX) r264)
(REDUCE (INFIXR) r264)
(REDUCE (LOCAL) r264)
(REDUCE (NONFIX) r264)
(REDUCE (OPEN) r264)
(REDUCE (OVERLOAD) r264)
(REDUCE (STRUCTURE) r264)
(REDUCE (TYPE) r264)
(REDUCE (VAL) r264)
(REDUCE (RPAREN) r264)
(SHIFT (AND) s425))
(STATE
s425
(COMMENT fctb "=>" fctb AND "." fctb)
(COMMENT fctb "=>" "." fctb AND fctb)
(COMMENT fctb "=>" "." ident fsigconstraint_op EQUALOP fct_exp)
(COMMENT fctb "=>" "." ident fparamList sigconstraint_op EQUALOP str)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s423)
(GOTO fctb s426))
(STATE
s426
(COMMENT fctb "=>" fctb AND fctb ".")
(COMMENT fctb "=>" fctb "." AND fctb)
(REDUCE (SEMICOLON) r281)
(REDUCE (ABSTYPE) r281)
(REDUCE (DATATYPE) r281)
(REDUCE (END) r281)
(REDUCE (EXCEPTION) r281)
(REDUCE (FUN) r281)
(REDUCE (FUNCTOR) r281)
(REDUCE (IN) r281)
(REDUCE (INFIX) r281)
(REDUCE (INFIXR) r281)
(REDUCE (LOCAL) r281)
(REDUCE (NONFIX) r281)
(REDUCE (OPEN) r281)
(REDUCE (OVERLOAD) r281)
(REDUCE (SIGNATURE) r281)
(REDUCE (STRUCTURE) r281)
(REDUCE (TYPE) r281)
(REDUCE (VAL) r281)
(REDUCE (RPAREN) r281)
(REDUCE (FUNSIG) r281)
(SHIFT (AND) s425)
(REDUCE (EOF) r281))
(STATE
s427
(COMMENT fctb "=>" ident fsigconstraint_op "." EQUALOP fct_exp)
(SHIFT (EQUALOP) s440))
(STATE
s428
(COMMENT fctb "=>" ident fparamList "." sigconstraint_op EQUALOP str)
(COMMENT sigconstraint_op "=>" "." COLONGT sign)
(COMMENT sigconstraint_op "=>" "." COLON sign)
(COMMENT sigconstraint_op "=>" ".")
(REDUCE (EQUALOP) r233)
(SHIFT (COLONGT) s402)
(SHIFT (COLON) s403)
(GOTO sigconstraint_op s433))
(STATE
s429
(COMMENT fsigconstraint_op "=>" COLONGT "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s432))
(STATE
s430
(COMMENT fsigconstraint_op "=>" COLON "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s431))
(STATE
s431
(COMMENT fsigconstraint_op "=>" COLON ident ".")
(REDUCE () r237))
(STATE
s432
(COMMENT fsigconstraint_op "=>" COLONGT ident ".")
(REDUCE () r238))
(STATE
s433
(COMMENT fctb "=>" ident fparamList sigconstraint_op "." EQUALOP str)
(SHIFT (EQUALOP) s434))
(STATE
s434
(COMMENT fctb "=>" ident fparamList sigconstraint_op EQUALOP "." str)
(COMMENT str "=>" "." str COLONGT sign)
(COMMENT str "=>" "." str COLON sign)
(COMMENT str "=>" "." LET strdecs IN str END)
(COMMENT str "=>" "." qid arg_fct)
(COMMENT str "=>" "." STRUCT strdecs END)
(COMMENT str "=>" "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (LET) s409)
(SHIFT (STRUCT) s410)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s407)
(GOTO str s435))
(STATE
s435
(COMMENT fctb "=>" ident fparamList sigconstraint_op EQUALOP str ".")
(COMMENT str "=>" str "." COLONGT sign)
(COMMENT str "=>" str "." COLON sign)
(REDUCE (SEMICOLON) r279)
(REDUCE (ABSTYPE) r279)
(REDUCE (DATATYPE) r279)
(REDUCE (END) r279)
(REDUCE (EXCEPTION) r279)
(REDUCE (FUN) r279)
(REDUCE (FUNCTOR) r279)
(REDUCE (IN) r279)
(REDUCE (INFIX) r279)
(REDUCE (INFIXR) r279)
(REDUCE (LOCAL) r279)
(REDUCE (NONFIX) r279)
(REDUCE (OPEN) r279)
(REDUCE (OVERLOAD) r279)
(REDUCE (SIGNATURE) r279)
(REDUCE (STRUCTURE) r279)
(REDUCE (TYPE) r279)
(REDUCE (VAL) r279)
(SHIFT (COLONGT) s436)
(REDUCE (RPAREN) r279)
(REDUCE (FUNSIG) r279)
(REDUCE (AND) r279)
(SHIFT (COLON) s437)
(REDUCE (EOF) r279))
(STATE
s436
(COMMENT str "=>" str COLONGT "." sign)
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s230)
(GOTO sign s439))
(STATE
s437
(COMMENT str "=>" str COLON "." sign)
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s230)
(GOTO sign s438))
(STATE
s438
(COMMENT str "=>" str COLON sign ".")
(COMMENT sign "=>" sign "." WHERE whspec)
(REDUCE (SEMICOLON) r249)
(REDUCE (ABSTYPE) r249)
(REDUCE (DATATYPE) r249)
(REDUCE (END) r249)
(REDUCE (EXCEPTION) r249)
(REDUCE (FUN) r249)
(REDUCE (FUNCTOR) r249)
(REDUCE (IN) r249)
(REDUCE (INFIX) r249)
(REDUCE (INFIXR) r249)
(REDUCE (LOCAL) r249)
(REDUCE (NONFIX) r249)
(REDUCE (OPEN) r249)
(REDUCE (OVERLOAD) r249)
(REDUCE (SIGNATURE) r249)
(REDUCE (STRUCTURE) r249)
(REDUCE (TYPE) r249)
(REDUCE (VAL) r249)
(SHIFT (WHERE) s236)
(REDUCE (COLONGT) r249)
(REDUCE (RPAREN) r249)
(REDUCE (FUNSIG) r249)
(REDUCE (AND) r249)
(REDUCE (COLON) r249)
(REDUCE (EOF) r249))
(STATE
s439
(COMMENT str "=>" str COLONGT sign ".")
(COMMENT sign "=>" sign "." WHERE whspec)
(REDUCE (SEMICOLON) r250)
(REDUCE (ABSTYPE) r250)
(REDUCE (DATATYPE) r250)
(REDUCE (END) r250)
(REDUCE (EXCEPTION) r250)
(REDUCE (FUN) r250)
(REDUCE (FUNCTOR) r250)
(REDUCE (IN) r250)
(REDUCE (INFIX) r250)
(REDUCE (INFIXR) r250)
(REDUCE (LOCAL) r250)
(REDUCE (NONFIX) r250)
(REDUCE (OPEN) r250)
(REDUCE (OVERLOAD) r250)
(REDUCE (SIGNATURE) r250)
(REDUCE (STRUCTURE) r250)
(REDUCE (TYPE) r250)
(REDUCE (VAL) r250)
(SHIFT (WHERE) s236)
(REDUCE (COLONGT) r250)
(REDUCE (RPAREN) r250)
(REDUCE (FUNSIG) r250)
(REDUCE (AND) r250)
(REDUCE (COLON) r250)
(REDUCE (EOF) r250))
(STATE
s440
(COMMENT fct_exp "=>" "." LET strdecs IN fct_exp END)
(COMMENT fct_exp "=>" "." qid arg_fct)
(COMMENT fct_exp "=>" "." qid)
(COMMENT fctb "=>" ident fsigconstraint_op EQUALOP "." fct_exp)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (LET) s443)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s441)
(GOTO fct_exp s442))
(STATE
s441
(COMMENT fct_exp "=>" qid "." arg_fct)
(COMMENT fct_exp "=>" qid ".")
(COMMENT arg_fct "=>" "." LPAREN strdecs RPAREN)
(COMMENT arg_fct "=>" "." LPAREN str RPAREN)
(COMMENT arg_fct "=>" "." LPAREN str RPAREN arg_fct)
(COMMENT arg_fct "=>" "." LPAREN strdecs RPAREN arg_fct)
(REDUCE (SEMICOLON) r282)
(REDUCE (ABSTYPE) r282)
(REDUCE (DATATYPE) r282)
(REDUCE (END) r282)
(REDUCE (EXCEPTION) r282)
(REDUCE (FUN) r282)
(REDUCE (FUNCTOR) r282)
(REDUCE (IN) r282)
(REDUCE (INFIX) r282)
(REDUCE (INFIXR) r282)
(REDUCE (LOCAL) r282)
(REDUCE (NONFIX) r282)
(REDUCE (OPEN) r282)
(REDUCE (OVERLOAD) r282)
(REDUCE (SIGNATURE) r282)
(REDUCE (STRUCTURE) r282)
(REDUCE (TYPE) r282)
(REDUCE (VAL) r282)
(SHIFT (LPAREN) s449)
(REDUCE (RPAREN) r282)
(REDUCE (FUNSIG) r282)
(REDUCE (AND) r282)
(REDUCE (EOF) r282)
(GOTO arg_fct s448))
(STATE
s442
(COMMENT fctb "=>" ident fsigconstraint_op EQUALOP fct_exp ".")
(REDUCE () r280))
(STATE
s443
(COMMENT fct_exp "=>" LET "." strdecs IN fct_exp END)
(COMMENT strdec "=>" "." ldec)
(COMMENT strdec "=>" "." LOCAL strdecs IN strdecs END)
(COMMENT strdec "=>" "." FUNCTOR fctb)
(COMMENT strdec "=>" "." STRUCTURE strb)
(COMMENT strdecs "=>" ".")
(COMMENT strdecs "=>" "." SEMICOLON strdecs)
(COMMENT strdecs "=>" "." strdec strdecs)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s414)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s415)
(REDUCE (IN) r257)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s416)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (STRUCTURE) s417)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s411)
(GOTO strdecs s444)
(GOTO strdec s413))
(STATE
s444
(COMMENT fct_exp "=>" LET strdecs "." IN fct_exp END)
(SHIFT (IN) s445))
(STATE
s445
(COMMENT fct_exp "=>" LET strdecs IN "." fct_exp END)
(COMMENT fct_exp "=>" "." LET strdecs IN fct_exp END)
(COMMENT fct_exp "=>" "." qid arg_fct)
(COMMENT fct_exp "=>" "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (LET) s443)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s441)
(GOTO fct_exp s446))
(STATE
s446
(COMMENT fct_exp "=>" LET strdecs IN fct_exp "." END)
(SHIFT (END) s447))
(STATE
s447
(COMMENT fct_exp "=>" LET strdecs IN fct_exp END ".")
(REDUCE () r284))
(STATE s448 (COMMENT fct_exp "=>" qid arg_fct ".") (REDUCE () r283))
(STATE
s449
(COMMENT strdec "=>" "." ldec)
(COMMENT strdec "=>" "." LOCAL strdecs IN strdecs END)
(COMMENT strdec "=>" "." FUNCTOR fctb)
(COMMENT strdec "=>" "." STRUCTURE strb)
(COMMENT strdecs "=>" ".")
(COMMENT strdecs "=>" "." SEMICOLON strdecs)
(COMMENT strdecs "=>" "." strdec strdecs)
(COMMENT arg_fct "=>" LPAREN "." strdecs RPAREN)
(COMMENT arg_fct "=>" LPAREN "." str RPAREN)
(COMMENT arg_fct "=>" LPAREN "." str RPAREN arg_fct)
(COMMENT arg_fct "=>" LPAREN "." strdecs RPAREN arg_fct)
(COMMENT str "=>" "." str COLONGT sign)
(COMMENT str "=>" "." str COLON sign)
(COMMENT str "=>" "." LET strdecs IN str END)
(COMMENT str "=>" "." qid arg_fct)
(COMMENT str "=>" "." STRUCT strdecs END)
(COMMENT str "=>" "." qid)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (SEMICOLON) s414)
(SHIFT (ID) s160)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(SHIFT (EQUALOP) s22)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s415)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LET) s409)
(SHIFT (LOCAL) s416)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (STRUCT) s410)
(SHIFT (STRUCTURE) s417)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(SHIFT (ASTERISK) s42)
(REDUCE (RPAREN) r257)
(GOTO ident s158)
(GOTO qid s407)
(GOTO fixity s7)
(GOTO ldec s411)
(GOTO str s450)
(GOTO strdecs s451)
(GOTO strdec s413))
(STATE
s450
(COMMENT arg_fct "=>" LPAREN str "." RPAREN)
(COMMENT arg_fct "=>" LPAREN str "." RPAREN arg_fct)
(COMMENT str "=>" str "." COLONGT sign)
(COMMENT str "=>" str "." COLON sign)
(SHIFT (COLONGT) s436)
(SHIFT (RPAREN) s454)
(SHIFT (COLON) s437))
(STATE
s451
(COMMENT arg_fct "=>" LPAREN strdecs "." RPAREN)
(COMMENT arg_fct "=>" LPAREN strdecs "." RPAREN arg_fct)
(SHIFT (RPAREN) s452))
(STATE
s452
(COMMENT arg_fct "=>" LPAREN strdecs RPAREN ".")
(COMMENT arg_fct "=>" "." LPAREN strdecs RPAREN)
(COMMENT arg_fct "=>" "." LPAREN str RPAREN)
(COMMENT arg_fct "=>" "." LPAREN str RPAREN arg_fct)
(COMMENT arg_fct "=>" LPAREN strdecs RPAREN "." arg_fct)
(COMMENT arg_fct "=>" "." LPAREN strdecs RPAREN arg_fct)
(REDUCE (SEMICOLON) r254)
(REDUCE (ABSTYPE) r254)
(REDUCE (DATATYPE) r254)
(REDUCE (END) r254)
(REDUCE (EXCEPTION) r254)
(REDUCE (FUN) r254)
(REDUCE (FUNCTOR) r254)
(REDUCE (IN) r254)
(REDUCE (INFIX) r254)
(REDUCE (INFIXR) r254)
(REDUCE (LOCAL) r254)
(REDUCE (NONFIX) r254)
(REDUCE (OPEN) r254)
(REDUCE (OVERLOAD) r254)
(REDUCE (SIGNATURE) r254)
(REDUCE (STRUCTURE) r254)
(REDUCE (TYPE) r254)
(REDUCE (VAL) r254)
(REDUCE (COLONGT) r254)
(SHIFT (LPAREN) s449)
(REDUCE (RPAREN) r254)
(REDUCE (FUNSIG) r254)
(REDUCE (AND) r254)
(REDUCE (COLON) r254)
(REDUCE (EOF) r254)
(GOTO arg_fct s453))
(STATE
s453
(COMMENT arg_fct "=>" LPAREN strdecs RPAREN arg_fct ".")
(REDUCE () r251))
(STATE
s454
(COMMENT arg_fct "=>" "." LPAREN strdecs RPAREN)
(COMMENT arg_fct "=>" LPAREN str RPAREN ".")
(COMMENT arg_fct "=>" "." LPAREN str RPAREN)
(COMMENT arg_fct "=>" LPAREN str RPAREN "." arg_fct)
(COMMENT arg_fct "=>" "." LPAREN str RPAREN arg_fct)
(COMMENT arg_fct "=>" "." LPAREN strdecs RPAREN arg_fct)
(REDUCE (SEMICOLON) r253)
(REDUCE (ABSTYPE) r253)
(REDUCE (DATATYPE) r253)
(REDUCE (END) r253)
(REDUCE (EXCEPTION) r253)
(REDUCE (FUN) r253)
(REDUCE (FUNCTOR) r253)
(REDUCE (IN) r253)
(REDUCE (INFIX) r253)
(REDUCE (INFIXR) r253)
(REDUCE (LOCAL) r253)
(REDUCE (NONFIX) r253)
(REDUCE (OPEN) r253)
(REDUCE (OVERLOAD) r253)
(REDUCE (SIGNATURE) r253)
(REDUCE (STRUCTURE) r253)
(REDUCE (TYPE) r253)
(REDUCE (VAL) r253)
(REDUCE (COLONGT) r253)
(SHIFT (LPAREN) s449)
(REDUCE (RPAREN) r253)
(REDUCE (FUNSIG) r253)
(REDUCE (AND) r253)
(REDUCE (COLON) r253)
(REDUCE (EOF) r253)
(GOTO arg_fct s455))
(STATE
s455
(COMMENT arg_fct "=>" LPAREN str RPAREN arg_fct ".")
(REDUCE () r252))
(STATE s456 (COMMENT strdecs "=>" SEMICOLON strdecs ".") (REDUCE () r256))
(STATE s457 (COMMENT strdecs "=>" strdec strdecs ".") (REDUCE () r255))
(STATE s458 (COMMENT str "=>" STRUCT strdecs END ".") (REDUCE () r246))
(STATE s459 (COMMENT str "=>" LET strdecs "." IN str END) (SHIFT (IN) s460))
(STATE
s460
(COMMENT str "=>" "." str COLONGT sign)
(COMMENT str "=>" "." str COLON sign)
(COMMENT str "=>" LET strdecs IN "." str END)
(COMMENT str "=>" "." LET strdecs IN str END)
(COMMENT str "=>" "." qid arg_fct)
(COMMENT str "=>" "." STRUCT strdecs END)
(COMMENT str "=>" "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (LET) s409)
(SHIFT (STRUCT) s410)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s407)
(GOTO str s461))
(STATE
s461
(COMMENT str "=>" str "." COLONGT sign)
(COMMENT str "=>" str "." COLON sign)
(COMMENT str "=>" LET strdecs IN str "." END)
(SHIFT (END) s462)
(SHIFT (COLONGT) s436)
(SHIFT (COLON) s437))
(STATE s462 (COMMENT str "=>" LET strdecs IN str END ".") (REDUCE () r248))
(STATE s463 (COMMENT str "=>" qid arg_fct ".") (REDUCE () r247))
(STATE
s464
(COMMENT sigb "=>" ident "." EQUALOP sign)
(SHIFT (EQUALOP) s468))
(STATE
s465
(COMMENT sdec "=>" SIGNATURE sigb ".")
(COMMENT sigb "=>" sigb "." AND sigb)
(REDUCE (SEMICOLON) r268)
(REDUCE (ABSTYPE) r268)
(REDUCE (DATATYPE) r268)
(REDUCE (END) r268)
(REDUCE (EXCEPTION) r268)
(REDUCE (FUN) r268)
(REDUCE (FUNCTOR) r268)
(REDUCE (IN) r268)
(REDUCE (INFIX) r268)
(REDUCE (INFIXR) r268)
(REDUCE (LOCAL) r268)
(REDUCE (NONFIX) r268)
(REDUCE (OPEN) r268)
(REDUCE (OVERLOAD) r268)
(REDUCE (SIGNATURE) r268)
(REDUCE (STRUCTURE) r268)
(REDUCE (TYPE) r268)
(REDUCE (VAL) r268)
(REDUCE (FUNSIG) r268)
(SHIFT (AND) s466)
(REDUCE (EOF) r268))
(STATE
s466
(COMMENT sigb "=>" "." ident EQUALOP sign)
(COMMENT sigb "=>" sigb AND "." sigb)
(COMMENT sigb "=>" "." sigb AND sigb)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s464)
(GOTO sigb s467))
(STATE
s467
(COMMENT sigb "=>" sigb AND sigb ".")
(COMMENT sigb "=>" sigb "." AND sigb)
(REDUCE (SEMICOLON) r239)
(REDUCE (ABSTYPE) r239)
(REDUCE (DATATYPE) r239)
(REDUCE (END) r239)
(REDUCE (EXCEPTION) r239)
(REDUCE (FUN) r239)
(REDUCE (FUNCTOR) r239)
(REDUCE (IN) r239)
(REDUCE (INFIX) r239)
(REDUCE (INFIXR) r239)
(REDUCE (LOCAL) r239)
(REDUCE (NONFIX) r239)
(REDUCE (OPEN) r239)
(REDUCE (OVERLOAD) r239)
(REDUCE (SIGNATURE) r239)
(REDUCE (STRUCTURE) r239)
(REDUCE (TYPE) r239)
(REDUCE (VAL) r239)
(REDUCE (FUNSIG) r239)
(SHIFT (AND) s466)
(REDUCE (EOF) r239))
(STATE
s468
(COMMENT sigb "=>" ident EQUALOP "." sign)
(COMMENT sign "=>" "." sign WHERE whspec)
(COMMENT sign "=>" "." SIG spec_s END)
(COMMENT sign "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (SIG) s232)
(SHIFT (ASTERISK) s42)
(GOTO ident s230)
(GOTO sign s469))
(STATE
s469
(COMMENT sigb "=>" ident EQUALOP sign ".")
(COMMENT sign "=>" sign "." WHERE whspec)
(REDUCE (SEMICOLON) r240)
(REDUCE (ABSTYPE) r240)
(REDUCE (DATATYPE) r240)
(REDUCE (END) r240)
(REDUCE (EXCEPTION) r240)
(REDUCE (FUN) r240)
(REDUCE (FUNCTOR) r240)
(REDUCE (IN) r240)
(REDUCE (INFIX) r240)
(REDUCE (INFIXR) r240)
(REDUCE (LOCAL) r240)
(REDUCE (NONFIX) r240)
(REDUCE (OPEN) r240)
(REDUCE (OVERLOAD) r240)
(REDUCE (SIGNATURE) r240)
(REDUCE (STRUCTURE) r240)
(REDUCE (TYPE) r240)
(REDUCE (VAL) r240)
(SHIFT (WHERE) s236)
(REDUCE (FUNSIG) r240)
(REDUCE (AND) r240)
(REDUCE (EOF) r240))
(STATE
s470
(COMMENT ldec "=>" OVERLOAD ident "." COLON ty AS exp_pa)
(SHIFT (COLON) s471))
(STATE
s471
(COMMENT ldec "=>" OVERLOAD ident COLON "." ty AS exp_pa)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s472))
(STATE
s472
(COMMENT ldec "=>" OVERLOAD ident COLON ty "." AS exp_pa)
(COMMENT ty "=>" ty "." ARROW ty)
(SHIFT (ARROW) s70)
(SHIFT (AS) s473))
(STATE
s473
(COMMENT exp_pa "=>" "." exp AND exp_pa)
(COMMENT exp_pa "=>" "." exp)
(COMMENT ldec "=>" OVERLOAD ident COLON ty AS "." exp_pa)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s474)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6)
(GOTO exp_pa s475))
(STATE
s474
(COMMENT exp_pa "=>" exp "." AND exp_pa)
(COMMENT exp_pa "=>" exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r184)
(REDUCE (ABSTYPE) r184)
(REDUCE (DATATYPE) r184)
(REDUCE (END) r184)
(REDUCE (EXCEPTION) r184)
(REDUCE (FUN) r184)
(REDUCE (FUNCTOR) r184)
(REDUCE (IN) r184)
(REDUCE (INFIX) r184)
(REDUCE (INFIXR) r184)
(REDUCE (LOCAL) r184)
(REDUCE (NONFIX) r184)
(REDUCE (OPEN) r184)
(REDUCE (OVERLOAD) r184)
(REDUCE (SIGNATURE) r184)
(REDUCE (STRUCTURE) r184)
(REDUCE (TYPE) r184)
(REDUCE (VAL) r184)
(REDUCE (RPAREN) r184)
(REDUCE (FUNSIG) r184)
(SHIFT (AND) s476)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55)
(REDUCE (EOF) r184))
(STATE
s475
(COMMENT ldec "=>" OVERLOAD ident COLON ty AS exp_pa ".")
(REDUCE () r183))
(STATE
s476
(COMMENT exp_pa "=>" exp AND "." exp_pa)
(COMMENT exp_pa "=>" "." exp AND exp_pa)
(COMMENT exp_pa "=>" "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s474)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6)
(GOTO exp_pa s477))
(STATE s477 (COMMENT exp_pa "=>" exp AND exp_pa ".") (REDUCE () r185))
(STATE
s478
(COMMENT qid_p "=>" qid "." qid_p)
(COMMENT qid_p "=>" "." qid qid_p)
(COMMENT qid_p "=>" qid ".")
(COMMENT qid_p "=>" "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(REDUCE (SEMICOLON) r161)
(SHIFT (ID) s160)
(REDUCE (ABSTYPE) r161)
(REDUCE (DATATYPE) r161)
(REDUCE (END) r161)
(SHIFT (EQUALOP) s22)
(REDUCE (EXCEPTION) r161)
(REDUCE (FUN) r161)
(REDUCE (FUNCTOR) r161)
(REDUCE (IN) r161)
(REDUCE (INFIX) r161)
(REDUCE (INFIXR) r161)
(REDUCE (LOCAL) r161)
(REDUCE (NONFIX) r161)
(REDUCE (OPEN) r161)
(REDUCE (OVERLOAD) r161)
(REDUCE (SIGNATURE) r161)
(REDUCE (STRUCTURE) r161)
(REDUCE (TYPE) r161)
(REDUCE (VAL) r161)
(SHIFT (ASTERISK) s42)
(REDUCE (RPAREN) r161)
(REDUCE (FUNSIG) r161)
(REDUCE (EOF) r161)
(GOTO ident s158)
(GOTO qid s478)
(GOTO qid_p s480))
(STATE s479 (COMMENT ldec "=>" OPEN qid_p ".") (REDUCE () r181))
(STATE s480 (COMMENT qid_p "=>" qid qid_p ".") (REDUCE () r162))
(STATE s481 (COMMENT aexp "=>" OP ident ".") (REDUCE () r57))
(STATE
s482
(COMMENT sdec "=>" LOCAL sdecs "." IN sdecs END)
(SHIFT (IN) s487))
(STATE
s483
(COMMENT sdec "=>" "." ldec)
(COMMENT sdec "=>" "." LOCAL sdecs IN sdecs END)
(COMMENT sdec "=>" "." FUNCTOR fctb)
(COMMENT sdec "=>" "." FUNSIG fsigb)
(COMMENT sdec "=>" "." SIGNATURE sigb)
(COMMENT sdec "=>" "." STRUCTURE strb)
(COMMENT sdecs "=>" ".")
(COMMENT sdecs "=>" "." SEMICOLON sdecs)
(COMMENT sdecs "=>" sdec "." sdecs)
(COMMENT sdecs "=>" "." sdec sdecs)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s484)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r260)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s26)
(REDUCE (IN) r260)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s32)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (SIGNATURE) s37)
(SHIFT (STRUCTURE) s38)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(SHIFT (FUNSIG) s46)
(GOTO fixity s7)
(GOTO ldec s8)
(GOTO sdecs s486)
(GOTO sdec s483))
(STATE
s484
(COMMENT sdec "=>" "." ldec)
(COMMENT sdec "=>" "." LOCAL sdecs IN sdecs END)
(COMMENT sdec "=>" "." FUNCTOR fctb)
(COMMENT sdec "=>" "." FUNSIG fsigb)
(COMMENT sdec "=>" "." SIGNATURE sigb)
(COMMENT sdec "=>" "." STRUCTURE strb)
(COMMENT sdecs "=>" ".")
(COMMENT sdecs "=>" SEMICOLON "." sdecs)
(COMMENT sdecs "=>" "." SEMICOLON sdecs)
(COMMENT sdecs "=>" "." sdec sdecs)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s484)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r260)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s26)
(REDUCE (IN) r260)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s32)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (SIGNATURE) s37)
(SHIFT (STRUCTURE) s38)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(SHIFT (FUNSIG) s46)
(GOTO fixity s7)
(GOTO ldec s8)
(GOTO sdecs s485)
(GOTO sdec s483))
(STATE s485 (COMMENT sdecs "=>" SEMICOLON sdecs ".") (REDUCE () r259))
(STATE s486 (COMMENT sdecs "=>" sdec sdecs ".") (REDUCE () r258))
(STATE
s487
(COMMENT sdec "=>" "." ldec)
(COMMENT sdec "=>" LOCAL sdecs IN "." sdecs END)
(COMMENT sdec "=>" "." LOCAL sdecs IN sdecs END)
(COMMENT sdec "=>" "." FUNCTOR fctb)
(COMMENT sdec "=>" "." FUNSIG fsigb)
(COMMENT sdec "=>" "." SIGNATURE sigb)
(COMMENT sdec "=>" "." STRUCTURE strb)
(COMMENT sdecs "=>" ".")
(COMMENT sdecs "=>" "." SEMICOLON sdecs)
(COMMENT sdecs "=>" "." sdec sdecs)
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s484)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r260)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (FUNCTOR) s26)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s32)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (SIGNATURE) s37)
(SHIFT (STRUCTURE) s38)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(SHIFT (FUNSIG) s46)
(GOTO fixity s7)
(GOTO ldec s8)
(GOTO sdecs s488)
(GOTO sdec s483))
(STATE
s488
(COMMENT sdec "=>" LOCAL sdecs IN sdecs "." END)
(SHIFT (END) s489))
(STATE
s489
(COMMENT sdec "=>" LOCAL sdecs IN sdecs END ".")
(REDUCE () r271))
(STATE
s490
(COMMENT ldecs "=>" "." LOCAL ldecs IN ldecs END ldecs)
(COMMENT ldecs "=>" "." SEMICOLON ldecs)
(COMMENT ldecs "=>" ldec "." ldecs)
(COMMENT ldecs "=>" "." ldec ldecs)
(COMMENT ldecs "=>" ".")
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s492)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r186)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(REDUCE (IN) r186)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s493)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s490)
(GOTO ldecs s503))
(STATE
s491
(COMMENT aexp "=>" LET ldecs "." IN exp_ps END)
(SHIFT (IN) s500))
(STATE
s492
(COMMENT ldecs "=>" "." LOCAL ldecs IN ldecs END ldecs)
(COMMENT ldecs "=>" SEMICOLON "." ldecs)
(COMMENT ldecs "=>" "." SEMICOLON ldecs)
(COMMENT ldecs "=>" "." ldec ldecs)
(COMMENT ldecs "=>" ".")
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s492)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r186)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(REDUCE (IN) r186)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s493)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s490)
(GOTO ldecs s499))
(STATE
s493
(COMMENT ldecs "=>" LOCAL "." ldecs IN ldecs END ldecs)
(COMMENT ldecs "=>" "." LOCAL ldecs IN ldecs END ldecs)
(COMMENT ldecs "=>" "." SEMICOLON ldecs)
(COMMENT ldecs "=>" "." ldec ldecs)
(COMMENT ldecs "=>" ".")
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s492)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(REDUCE (IN) r186)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s493)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s490)
(GOTO ldecs s494))
(STATE
s494
(COMMENT ldecs "=>" LOCAL ldecs "." IN ldecs END ldecs)
(SHIFT (IN) s495))
(STATE
s495
(COMMENT ldecs "=>" LOCAL ldecs IN "." ldecs END ldecs)
(COMMENT ldecs "=>" "." LOCAL ldecs IN ldecs END ldecs)
(COMMENT ldecs "=>" "." SEMICOLON ldecs)
(COMMENT ldecs "=>" "." ldec ldecs)
(COMMENT ldecs "=>" ".")
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s492)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r186)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s493)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s490)
(GOTO ldecs s496))
(STATE
s496
(COMMENT ldecs "=>" LOCAL ldecs IN ldecs "." END ldecs)
(SHIFT (END) s497))
(STATE
s497
(COMMENT ldecs "=>" LOCAL ldecs IN ldecs END "." ldecs)
(COMMENT ldecs "=>" "." LOCAL ldecs IN ldecs END ldecs)
(COMMENT ldecs "=>" "." SEMICOLON ldecs)
(COMMENT ldecs "=>" "." ldec ldecs)
(COMMENT ldecs "=>" ".")
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s492)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r186)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(REDUCE (IN) r186)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s493)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s490)
(GOTO ldecs s498))
(STATE
s498
(COMMENT ldecs "=>" LOCAL ldecs IN ldecs END ldecs ".")
(REDUCE () r189))
(STATE s499 (COMMENT ldecs "=>" SEMICOLON ldecs ".") (REDUCE () r188))
(STATE
s500
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" LET ldecs IN "." exp_ps END)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT exp_ps "=>" "." exp SEMICOLON exp_ps)
(COMMENT exp_ps "=>" "." exp)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp_ps s501)
(GOTO exp s339)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s501
(COMMENT aexp "=>" LET ldecs IN exp_ps "." END)
(SHIFT (END) s502))
(STATE s502 (COMMENT aexp "=>" LET ldecs IN exp_ps END ".") (REDUCE () r74))
(STATE s503 (COMMENT ldecs "=>" ldec ldecs ".") (REDUCE () r187))
(STATE s504 (COMMENT fixity "=>" INFIXR int ".") (REDUCE () r166))
(STATE s505 (COMMENT fixity "=>" INFIX int ".") (REDUCE () r164))
(STATE
s506
(COMMENT exp "=>" IF exp "." THEN exp ELSE exp)
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(SHIFT (THEN) s507)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55))
(STATE
s507
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" IF exp THEN "." exp ELSE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s508)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s508
(COMMENT exp "=>" IF exp THEN exp "." ELSE exp)
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(SHIFT (ELSE) s509)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55))
(STATE
s509
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" IF exp THEN exp ELSE "." exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s510)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s510
(COMMENT exp "=>" IF exp THEN exp ELSE exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r51)
(REDUCE (ABSTYPE) r51)
(REDUCE (BAR) r51)
(REDUCE (DATATYPE) r51)
(REDUCE (END) r51)
(REDUCE (EXCEPTION) r51)
(REDUCE (FUN) r51)
(REDUCE (FUNCTOR) r51)
(REDUCE (IN) r51)
(REDUCE (INFIX) r51)
(REDUCE (INFIXR) r51)
(REDUCE (LOCAL) r51)
(REDUCE (NONFIX) r51)
(REDUCE (OF) r51)
(REDUCE (OPEN) r51)
(REDUCE (OVERLOAD) r51)
(REDUCE (SIGNATURE) r51)
(REDUCE (STRUCTURE) r51)
(REDUCE (THEN) r51)
(REDUCE (TYPE) r51)
(REDUCE (VAL) r51)
(REDUCE (COMMA) r51)
(REDUCE (RBRACE) r51)
(REDUCE (RBRACKET) r51)
(REDUCE (RPAREN) r51)
(REDUCE (FUNSIG) r51)
(REDUCE (AND) r51)
(REDUCE (DO) r51)
(REDUCE (ELSE) r51)
(REDUCE (HANDLE) r51)
(REDUCE (ORELSE) r51)
(REDUCE (ANDALSO) r51)
(REDUCE (COLON) r51)
(REDUCE (EOF) r51))
(STATE s511 (COMMENT aexp "=>" HASH selector ".") (REDUCE () r64))
(STATE
s512
(COMMENT fctb "=>" fctb "." AND fctb)
(COMMENT sdec "=>" FUNCTOR fctb ".")
(REDUCE (SEMICOLON) r270)
(REDUCE (ABSTYPE) r270)
(REDUCE (DATATYPE) r270)
(REDUCE (END) r270)
(REDUCE (EXCEPTION) r270)
(REDUCE (FUN) r270)
(REDUCE (FUNCTOR) r270)
(REDUCE (IN) r270)
(REDUCE (INFIX) r270)
(REDUCE (INFIXR) r270)
(REDUCE (LOCAL) r270)
(REDUCE (NONFIX) r270)
(REDUCE (OPEN) r270)
(REDUCE (OVERLOAD) r270)
(REDUCE (SIGNATURE) r270)
(REDUCE (STRUCTURE) r270)
(REDUCE (TYPE) r270)
(REDUCE (VAL) r270)
(REDUCE (FUNSIG) r270)
(SHIFT (AND) s425)
(REDUCE (EOF) r270))
(STATE
s513
(COMMENT fb "=>" fb_prime "." AND fb)
(COMMENT fb "=>" fb_prime ".")
(REDUCE (SEMICOLON) r131)
(REDUCE (ABSTYPE) r131)
(REDUCE (DATATYPE) r131)
(REDUCE (END) r131)
(REDUCE (EXCEPTION) r131)
(REDUCE (FUN) r131)
(REDUCE (FUNCTOR) r131)
(REDUCE (IN) r131)
(REDUCE (INFIX) r131)
(REDUCE (INFIXR) r131)
(REDUCE (LOCAL) r131)
(REDUCE (NONFIX) r131)
(REDUCE (OPEN) r131)
(REDUCE (OVERLOAD) r131)
(REDUCE (SIGNATURE) r131)
(REDUCE (STRUCTURE) r131)
(REDUCE (TYPE) r131)
(REDUCE (VAL) r131)
(REDUCE (RPAREN) r131)
(REDUCE (FUNSIG) r131)
(SHIFT (AND) s528)
(REDUCE (EOF) r131))
(STATE s514 (COMMENT ldec "=>" FUN fb ".") (REDUCE () r172))
(STATE
s515
(COMMENT clause "=>" apats "." constraint EQUALOP exp)
(COMMENT constraint "=>" "." COLON ty)
(COMMENT constraint "=>" ".")
(REDUCE (EQUALOP) r122)
(SHIFT (COLON) s369)
(GOTO constraint s525))
(STATE
s516
(COMMENT fb_prime "=>" clause "." BAR fb_prime)
(COMMENT fb_prime "=>" clause ".")
(REDUCE (SEMICOLON) r129)
(REDUCE (ABSTYPE) r129)
(SHIFT (BAR) s523)
(REDUCE (DATATYPE) r129)
(REDUCE (END) r129)
(REDUCE (EXCEPTION) r129)
(REDUCE (FUN) r129)
(REDUCE (FUNCTOR) r129)
(REDUCE (IN) r129)
(REDUCE (INFIX) r129)
(REDUCE (INFIXR) r129)
(REDUCE (LOCAL) r129)
(REDUCE (NONFIX) r129)
(REDUCE (OPEN) r129)
(REDUCE (OVERLOAD) r129)
(REDUCE (SIGNATURE) r129)
(REDUCE (STRUCTURE) r129)
(REDUCE (TYPE) r129)
(REDUCE (VAL) r129)
(REDUCE (RPAREN) r129)
(REDUCE (FUNSIG) r129)
(REDUCE (AND) r129)
(REDUCE (EOF) r129))
(STATE
s517
(COMMENT ldec "=>" FUN tyvarseq "." fb)
(COMMENT clause "=>" "." apats constraint EQUALOP exp)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT fb "=>" "." LAZY fb_prime AND fb)
(COMMENT fb "=>" "." fb_prime AND fb)
(COMMENT fb "=>" "." LAZY fb_prime)
(COMMENT fb "=>" "." fb_prime)
(COMMENT fb_prime "=>" "." clause BAR fb_prime)
(COMMENT fb_prime "=>" "." clause)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (LAZY) s518)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO fb_prime s513)
(GOTO fb s522)
(GOTO apats s515)
(GOTO clause s516))
(STATE
s518
(COMMENT clause "=>" "." apats constraint EQUALOP exp)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT fb "=>" LAZY "." fb_prime AND fb)
(COMMENT fb "=>" LAZY "." fb_prime)
(COMMENT fb_prime "=>" "." clause BAR fb_prime)
(COMMENT fb_prime "=>" "." clause)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO fb_prime s519)
(GOTO apats s515)
(GOTO clause s516))
(STATE
s519
(COMMENT fb "=>" LAZY fb_prime "." AND fb)
(COMMENT fb "=>" LAZY fb_prime ".")
(REDUCE (SEMICOLON) r132)
(REDUCE (ABSTYPE) r132)
(REDUCE (DATATYPE) r132)
(REDUCE (END) r132)
(REDUCE (EXCEPTION) r132)
(REDUCE (FUN) r132)
(REDUCE (FUNCTOR) r132)
(REDUCE (IN) r132)
(REDUCE (INFIX) r132)
(REDUCE (INFIXR) r132)
(REDUCE (LOCAL) r132)
(REDUCE (NONFIX) r132)
(REDUCE (OPEN) r132)
(REDUCE (OVERLOAD) r132)
(REDUCE (SIGNATURE) r132)
(REDUCE (STRUCTURE) r132)
(REDUCE (TYPE) r132)
(REDUCE (VAL) r132)
(REDUCE (RPAREN) r132)
(REDUCE (FUNSIG) r132)
(SHIFT (AND) s520)
(REDUCE (EOF) r132))
(STATE
s520
(COMMENT clause "=>" "." apats constraint EQUALOP exp)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT fb "=>" LAZY fb_prime AND "." fb)
(COMMENT fb "=>" "." LAZY fb_prime AND fb)
(COMMENT fb "=>" "." fb_prime AND fb)
(COMMENT fb "=>" "." LAZY fb_prime)
(COMMENT fb "=>" "." fb_prime)
(COMMENT fb_prime "=>" "." clause BAR fb_prime)
(COMMENT fb_prime "=>" "." clause)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (LAZY) s518)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO fb_prime s513)
(GOTO fb s521)
(GOTO apats s515)
(GOTO clause s516))
(STATE s521 (COMMENT fb "=>" LAZY fb_prime AND fb ".") (REDUCE () r134))
(STATE s522 (COMMENT ldec "=>" FUN tyvarseq fb ".") (REDUCE () r173))
(STATE
s523
(COMMENT clause "=>" "." apats constraint EQUALOP exp)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT fb_prime "=>" clause BAR "." fb_prime)
(COMMENT fb_prime "=>" "." clause BAR fb_prime)
(COMMENT fb_prime "=>" "." clause)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO fb_prime s524)
(GOTO apats s515)
(GOTO clause s516))
(STATE
s524
(COMMENT fb_prime "=>" clause BAR fb_prime ".")
(REDUCE () r130))
(STATE
s525
(COMMENT clause "=>" apats constraint "." EQUALOP exp)
(SHIFT (EQUALOP) s526))
(STATE
s526
(COMMENT clause "=>" apats constraint EQUALOP "." exp)
(COMMENT quote "=>" "." BEGINQ ot_list ENDQ)
(COMMENT quote "=>" "." BEGINQ ENDQ)
(COMMENT aexp "=>" "." quote)
(COMMENT aexp "=>" "." AQID)
(COMMENT aexp "=>" "." LET ldecs IN exp_ps END)
(COMMENT aexp "=>" "." VECTORSTART RBRACKET)
(COMMENT aexp "=>" "." VECTORSTART exp_list RBRACKET)
(COMMENT aexp "=>" "." LBRACKET RBRACKET)
(COMMENT aexp "=>" "." LBRACKET exp_list RBRACKET)
(COMMENT aexp "=>" "." LPAREN exp_2c RPAREN)
(COMMENT aexp "=>" "." LPAREN exp_ps RPAREN)
(COMMENT aexp "=>" "." LPAREN RPAREN)
(COMMENT aexp "=>" "." LBRACE RBRACE)
(COMMENT aexp "=>" "." LBRACE elabels RBRACE)
(COMMENT aexp "=>" "." HASH selector)
(COMMENT aexp "=>" "." CHAR)
(COMMENT aexp "=>" "." STRING)
(COMMENT aexp "=>" "." REAL)
(COMMENT aexp "=>" "." WORD)
(COMMENT aexp "=>" "." int)
(COMMENT aexp "=>" "." ID DOT qid)
(COMMENT aexp "=>" "." OP ident)
(COMMENT app_exp "=>" "." ident app_exp)
(COMMENT app_exp "=>" "." aexp app_exp)
(COMMENT app_exp "=>" "." ident)
(COMMENT app_exp "=>" "." aexp)
(COMMENT exp "=>" "." RAISE exp)
(COMMENT exp "=>" "." IF exp THEN exp ELSE exp)
(COMMENT exp "=>" "." WHILE exp DO exp)
(COMMENT exp "=>" "." CASE exp OF match)
(COMMENT exp "=>" "." FN match)
(COMMENT exp "=>" "." app_exp)
(COMMENT exp "=>" "." exp COLON ty)
(COMMENT exp "=>" "." exp ANDALSO exp)
(COMMENT exp "=>" "." exp ORELSE exp)
(COMMENT exp "=>" "." exp HANDLE match)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s12)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s15)
(SHIFT (REAL) s16)
(SHIFT (STRING) s17)
(SHIFT (CHAR) s18)
(SHIFT (CASE) s20)
(SHIFT (EQUALOP) s22)
(SHIFT (FN) s24)
(SHIFT (HASH) s27)
(SHIFT (IF) s28)
(SHIFT (LET) s31)
(SHIFT (OP) s34)
(SHIFT (WHILE) s41)
(SHIFT (ASTERISK) s42)
(SHIFT (LBRACE) s43)
(SHIFT (LBRACKET) s44)
(SHIFT (LPAREN) s45)
(SHIFT (VECTORSTART) s47)
(SHIFT (BEGINQ) s48)
(SHIFT (AQID) s49)
(SHIFT (RAISE) s50)
(GOTO int s1)
(GOTO ident s2)
(GOTO exp s527)
(GOTO app_exp s4)
(GOTO aexp s5)
(GOTO quote s6))
(STATE
s527
(COMMENT clause "=>" apats constraint EQUALOP exp ".")
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(REDUCE (SEMICOLON) r137)
(REDUCE (ABSTYPE) r137)
(REDUCE (BAR) r137)
(REDUCE (DATATYPE) r137)
(REDUCE (END) r137)
(REDUCE (EXCEPTION) r137)
(REDUCE (FUN) r137)
(REDUCE (FUNCTOR) r137)
(REDUCE (IN) r137)
(REDUCE (INFIX) r137)
(REDUCE (INFIXR) r137)
(REDUCE (LOCAL) r137)
(REDUCE (NONFIX) r137)
(REDUCE (OPEN) r137)
(REDUCE (OVERLOAD) r137)
(REDUCE (SIGNATURE) r137)
(REDUCE (STRUCTURE) r137)
(REDUCE (TYPE) r137)
(REDUCE (VAL) r137)
(REDUCE (RPAREN) r137)
(REDUCE (FUNSIG) r137)
(REDUCE (AND) r137)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55)
(REDUCE (EOF) r137))
(STATE
s528
(COMMENT clause "=>" "." apats constraint EQUALOP exp)
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT fb "=>" "." LAZY fb_prime AND fb)
(COMMENT fb "=>" fb_prime AND "." fb)
(COMMENT fb "=>" "." fb_prime AND fb)
(COMMENT fb "=>" "." LAZY fb_prime)
(COMMENT fb "=>" "." fb_prime)
(COMMENT fb_prime "=>" "." clause BAR fb_prime)
(COMMENT fb_prime "=>" "." clause)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (LAZY) s518)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO fb_prime s513)
(GOTO fb s529)
(GOTO apats s515)
(GOTO clause s516))
(STATE s529 (COMMENT fb "=>" fb_prime AND fb ".") (REDUCE () r133))
(STATE s530 (COMMENT exp "=>" FN match ".") (REDUCE () r48))
(STATE
s531
(COMMENT eb "=>" op_op "." ident EQUALOP qid)
(COMMENT eb "=>" op_op "." ident OF ty)
(COMMENT eb "=>" op_op "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s156)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s535))
(STATE
s532
(COMMENT ldec "=>" EXCEPTION eb ".")
(COMMENT eb "=>" eb "." AND eb)
(REDUCE (SEMICOLON) r180)
(REDUCE (ABSTYPE) r180)
(REDUCE (DATATYPE) r180)
(REDUCE (END) r180)
(REDUCE (EXCEPTION) r180)
(REDUCE (FUN) r180)
(REDUCE (FUNCTOR) r180)
(REDUCE (IN) r180)
(REDUCE (INFIX) r180)
(REDUCE (INFIXR) r180)
(REDUCE (LOCAL) r180)
(REDUCE (NONFIX) r180)
(REDUCE (OPEN) r180)
(REDUCE (OVERLOAD) r180)
(REDUCE (SIGNATURE) r180)
(REDUCE (STRUCTURE) r180)
(REDUCE (TYPE) r180)
(REDUCE (VAL) r180)
(REDUCE (RPAREN) r180)
(REDUCE (FUNSIG) r180)
(SHIFT (AND) s533)
(REDUCE (EOF) r180))
(STATE
s533
(COMMENT eb "=>" eb AND "." eb)
(COMMENT eb "=>" "." eb AND eb)
(COMMENT eb "=>" "." op_op ident EQUALOP qid)
(COMMENT eb "=>" "." op_op ident OF ty)
(COMMENT eb "=>" "." op_op ident)
(COMMENT op_op "=>" ".")
(COMMENT op_op "=>" "." OP)
(REDUCE (ID) r11)
(REDUCE (EQUALOP) r11)
(SHIFT (OP) s205)
(REDUCE (ASTERISK) r11)
(GOTO op_op s531)
(GOTO eb s534))
(STATE
s534
(COMMENT eb "=>" eb AND eb ".")
(COMMENT eb "=>" eb "." AND eb)
(REDUCE (SEMICOLON) r160)
(REDUCE (ABSTYPE) r160)
(REDUCE (DATATYPE) r160)
(REDUCE (END) r160)
(REDUCE (EXCEPTION) r160)
(REDUCE (FUN) r160)
(REDUCE (FUNCTOR) r160)
(REDUCE (IN) r160)
(REDUCE (INFIX) r160)
(REDUCE (INFIXR) r160)
(REDUCE (LOCAL) r160)
(REDUCE (NONFIX) r160)
(REDUCE (OPEN) r160)
(REDUCE (OVERLOAD) r160)
(REDUCE (SIGNATURE) r160)
(REDUCE (STRUCTURE) r160)
(REDUCE (TYPE) r160)
(REDUCE (VAL) r160)
(REDUCE (RPAREN) r160)
(REDUCE (FUNSIG) r160)
(SHIFT (AND) s533)
(REDUCE (EOF) r160))
(STATE
s535
(COMMENT eb "=>" op_op ident "." EQUALOP qid)
(COMMENT eb "=>" op_op ident "." OF ty)
(COMMENT eb "=>" op_op ident ".")
(REDUCE (SEMICOLON) r157)
(REDUCE (ABSTYPE) r157)
(REDUCE (DATATYPE) r157)
(REDUCE (END) r157)
(SHIFT (EQUALOP) s536)
(REDUCE (EXCEPTION) r157)
(REDUCE (FUN) r157)
(REDUCE (FUNCTOR) r157)
(REDUCE (IN) r157)
(REDUCE (INFIX) r157)
(REDUCE (INFIXR) r157)
(REDUCE (LOCAL) r157)
(REDUCE (NONFIX) r157)
(SHIFT (OF) s537)
(REDUCE (OPEN) r157)
(REDUCE (OVERLOAD) r157)
(REDUCE (SIGNATURE) r157)
(REDUCE (STRUCTURE) r157)
(REDUCE (TYPE) r157)
(REDUCE (VAL) r157)
(REDUCE (RPAREN) r157)
(REDUCE (FUNSIG) r157)
(REDUCE (AND) r157)
(REDUCE (EOF) r157))
(STATE
s536
(COMMENT eb "=>" op_op ident EQUALOP "." qid)
(COMMENT qid "=>" "." ident)
(COMMENT qid "=>" "." ID DOT qid)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(SHIFT (ID) s160)
(SHIFT (EQUALOP) s22)
(SHIFT (ASTERISK) s42)
(GOTO ident s158)
(GOTO qid s539))
(STATE
s537
(COMMENT eb "=>" op_op ident OF "." ty)
(COMMENT ty "=>" "." ty_prime)
(COMMENT ty "=>" "." ty ARROW ty)
(COMMENT ty "=>" "." tuple_ty)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK ty_prime)
(COMMENT tuple_ty "=>" "." ty_prime ASTERISK tuple_ty)
(COMMENT ty_prime "=>" "." tycon)
(COMMENT ty_prime "=>" "." ty_prime tycon)
(COMMENT ty_prime "=>" "." LPAREN ty RPAREN)
(COMMENT ty_prime "=>" "." LPAREN ty0_pc RPAREN tycon)
(COMMENT ty_prime "=>" "." LBRACE RBRACE)
(COMMENT ty_prime "=>" "." LBRACE tlabels RBRACE)
(COMMENT ty_prime "=>" "." TYVAR)
(COMMENT tycon "=>" "." ID)
(COMMENT tycon "=>" "." ID DOT tycon)
(SHIFT (ID) s60)
(SHIFT (TYVAR) s61)
(SHIFT (LBRACE) s62)
(SHIFT (LPAREN) s63)
(GOTO tycon s56)
(GOTO ty_prime s57)
(GOTO tuple_ty s58)
(GOTO ty s538))
(STATE
s538
(COMMENT eb "=>" op_op ident OF ty ".")
(COMMENT ty "=>" ty "." ARROW ty)
(REDUCE (SEMICOLON) r158)
(REDUCE (ABSTYPE) r158)
(REDUCE (DATATYPE) r158)
(REDUCE (END) r158)
(REDUCE (EXCEPTION) r158)
(REDUCE (FUN) r158)
(REDUCE (FUNCTOR) r158)
(REDUCE (IN) r158)
(REDUCE (INFIX) r158)
(REDUCE (INFIXR) r158)
(REDUCE (LOCAL) r158)
(REDUCE (NONFIX) r158)
(REDUCE (OPEN) r158)
(REDUCE (OVERLOAD) r158)
(REDUCE (SIGNATURE) r158)
(REDUCE (STRUCTURE) r158)
(REDUCE (TYPE) r158)
(REDUCE (VAL) r158)
(REDUCE (RPAREN) r158)
(REDUCE (FUNSIG) r158)
(REDUCE (AND) r158)
(SHIFT (ARROW) s70)
(REDUCE (EOF) r158))
(STATE s539 (COMMENT eb "=>" op_op ident EQUALOP qid ".") (REDUCE () r159))
(STATE s540 (COMMENT ldec "=>" DATATYPE dtrepl ".") (REDUCE () r175))
(STATE
s541
(COMMENT ldec "=>" DATATYPE dbs "." WITHTYPE tb)
(COMMENT ldec "=>" DATATYPE dbs ".")
(REDUCE (SEMICOLON) r176)
(REDUCE (ABSTYPE) r176)
(REDUCE (DATATYPE) r176)
(REDUCE (END) r176)
(REDUCE (EXCEPTION) r176)
(REDUCE (FUN) r176)
(REDUCE (FUNCTOR) r176)
(REDUCE (IN) r176)
(REDUCE (INFIX) r176)
(REDUCE (INFIXR) r176)
(REDUCE (LOCAL) r176)
(REDUCE (NONFIX) r176)
(REDUCE (OPEN) r176)
(REDUCE (OVERLOAD) r176)
(REDUCE (SIGNATURE) r176)
(REDUCE (STRUCTURE) r176)
(REDUCE (TYPE) r176)
(REDUCE (VAL) r176)
(REDUCE (RPAREN) r176)
(REDUCE (FUNSIG) r176)
(SHIFT (WITHTYPE) s542)
(REDUCE (EOF) r176))
(STATE
s542
(COMMENT ldec "=>" DATATYPE dbs WITHTYPE "." tb)
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(COMMENT tb "=>" "." tb AND tb)
(COMMENT tb "=>" "." tyvars ID EQUALOP ty)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(SHIFT (LPAREN) s214)
(GOTO tb s543)
(GOTO tyvars s312))
(STATE
s543
(COMMENT ldec "=>" DATATYPE dbs WITHTYPE tb ".")
(COMMENT tb "=>" tb "." AND tb)
(REDUCE (SEMICOLON) r177)
(REDUCE (ABSTYPE) r177)
(REDUCE (DATATYPE) r177)
(REDUCE (END) r177)
(REDUCE (EXCEPTION) r177)
(REDUCE (FUN) r177)
(REDUCE (FUNCTOR) r177)
(REDUCE (IN) r177)
(REDUCE (INFIX) r177)
(REDUCE (INFIXR) r177)
(REDUCE (LOCAL) r177)
(REDUCE (NONFIX) r177)
(REDUCE (OPEN) r177)
(REDUCE (OVERLOAD) r177)
(REDUCE (SIGNATURE) r177)
(REDUCE (STRUCTURE) r177)
(REDUCE (TYPE) r177)
(REDUCE (VAL) r177)
(REDUCE (RPAREN) r177)
(REDUCE (FUNSIG) r177)
(SHIFT (AND) s316)
(REDUCE (EOF) r177))
(STATE
s544
(COMMENT exp "=>" CASE exp "." OF match)
(COMMENT exp "=>" exp "." COLON ty)
(COMMENT exp "=>" exp "." ANDALSO exp)
(COMMENT exp "=>" exp "." ORELSE exp)
(COMMENT exp "=>" exp "." HANDLE match)
(SHIFT (OF) s545)
(SHIFT (HANDLE) s52)
(SHIFT (ORELSE) s53)
(SHIFT (ANDALSO) s54)
(SHIFT (COLON) s55))
(STATE
s545
(COMMENT apats "=>" "." apat apats)
(COMMENT apats "=>" "." apat)
(COMMENT apat_prime "=>" "." LBRACE plabels RBRACE)
(COMMENT apat_prime "=>" "." LBRACE RBRACE)
(COMMENT apat_prime "=>" "." VECTORSTART pat_list RBRACKET)
(COMMENT apat_prime "=>" "." VECTORSTART RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET pat_list RBRACKET)
(COMMENT apat_prime "=>" "." LBRACKET RBRACKET)
(COMMENT apat_prime "=>" "." WILD)
(COMMENT apat_prime "=>" "." CHAR)
(COMMENT apat_prime "=>" "." STRING)
(COMMENT apat_prime "=>" "." WORD)
(COMMENT apat_prime "=>" "." int)
(COMMENT apat_prime "=>" "." ID DOT qid)
(COMMENT apat_prime "=>" "." OP ident)
(COMMENT apat "=>" "." LPAREN pat BAR or_pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN pat COMMA pat_list RPAREN)
(COMMENT apat "=>" "." LPAREN RPAREN)
(COMMENT apat "=>" "." id)
(COMMENT apat "=>" "." LPAREN pat RPAREN)
(COMMENT apat "=>" "." apat_prime)
(COMMENT pat "=>" "." apats)
(COMMENT pat "=>" "." pat COLON ty)
(COMMENT pat "=>" "." pat AS pat)
(COMMENT exp "=>" CASE exp OF "." match)
(COMMENT rule "=>" "." pat DARROW exp)
(COMMENT match "=>" "." rule BAR match)
(COMMENT match "=>" "." rule)
(COMMENT id "=>" "." ASTERISK)
(COMMENT id "=>" "." ID)
(COMMENT int "=>" "." INT0)
(COMMENT int "=>" "." INT)
(SHIFT (ID) s103)
(SHIFT (INT) s13)
(SHIFT (INT0) s14)
(SHIFT (WORD) s104)
(SHIFT (STRING) s105)
(SHIFT (CHAR) s106)
(SHIFT (OP) s107)
(SHIFT (WILD) s108)
(SHIFT (ASTERISK) s80)
(SHIFT (LBRACE) s109)
(SHIFT (LBRACKET) s110)
(SHIFT (LPAREN) s111)
(SHIFT (VECTORSTART) s112)
(GOTO int s95)
(GOTO id s96)
(GOTO match s546)
(GOTO rule s98)
(GOTO pat s99)
(GOTO apat s100)
(GOTO apat_prime s101)
(GOTO apats s102))
(STATE s546 (COMMENT exp "=>" CASE exp OF match ".") (REDUCE () r49))
(STATE
s547
(COMMENT ldec "=>" ABSTYPE dbs "." WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" ABSTYPE dbs "." WITH ldecs END)
(SHIFT (WITH) s548)
(SHIFT (WITHTYPE) s549))
(STATE
s548
(COMMENT ldecs "=>" "." LOCAL ldecs IN ldecs END ldecs)
(COMMENT ldecs "=>" "." SEMICOLON ldecs)
(COMMENT ldecs "=>" "." ldec ldecs)
(COMMENT ldecs "=>" ".")
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" ABSTYPE dbs WITH "." ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s492)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r186)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s493)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s490)
(GOTO ldecs s554))
(STATE
s549
(COMMENT ldec "=>" ABSTYPE dbs WITHTYPE "." tb WITH ldecs END)
(COMMENT tyvars "=>" ".")
(COMMENT tyvars "=>" "." LPAREN tyvar_pc RPAREN)
(COMMENT tyvars "=>" "." TYVAR)
(COMMENT tb "=>" "." tb AND tb)
(COMMENT tb "=>" "." tyvars ID EQUALOP ty)
(REDUCE (ID) r142)
(SHIFT (TYVAR) s213)
(SHIFT (LPAREN) s214)
(GOTO tb s550)
(GOTO tyvars s312))
(STATE
s550
(COMMENT ldec "=>" ABSTYPE dbs WITHTYPE tb "." WITH ldecs END)
(COMMENT tb "=>" tb "." AND tb)
(SHIFT (WITH) s551)
(SHIFT (AND) s316))
(STATE
s551
(COMMENT ldecs "=>" "." LOCAL ldecs IN ldecs END ldecs)
(COMMENT ldecs "=>" "." SEMICOLON ldecs)
(COMMENT ldecs "=>" "." ldec ldecs)
(COMMENT ldecs "=>" ".")
(COMMENT ldec "=>" "." OVERLOAD ident COLON ty AS exp_pa)
(COMMENT ldec "=>" "." fixity ops)
(COMMENT ldec "=>" "." OPEN qid_p)
(COMMENT ldec "=>" "." EXCEPTION eb)
(COMMENT ldec "=>" ABSTYPE dbs WITHTYPE tb WITH "." ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITHTYPE tb WITH ldecs END)
(COMMENT ldec "=>" "." ABSTYPE dbs WITH ldecs END)
(COMMENT ldec "=>" "." DATATYPE dbs WITHTYPE tb)
(COMMENT ldec "=>" "." DATATYPE dbs)
(COMMENT ldec "=>" "." DATATYPE dtrepl)
(COMMENT ldec "=>" "." TYPE tb)
(COMMENT ldec "=>" "." FUN tyvarseq fb)
(COMMENT ldec "=>" "." FUN fb)
(COMMENT ldec "=>" "." VAL REC tyvarseq rvb)
(COMMENT ldec "=>" "." VAL REC rvb)
(COMMENT ldec "=>" "." VAL tyvarseq vb)
(COMMENT ldec "=>" "." VAL vb)
(COMMENT fixity "=>" "." NONFIX)
(COMMENT fixity "=>" "." INFIXR int)
(COMMENT fixity "=>" "." INFIXR)
(COMMENT fixity "=>" "." INFIX int)
(COMMENT fixity "=>" "." INFIX)
(SHIFT (SEMICOLON) s492)
(SHIFT (ABSTYPE) s19)
(SHIFT (DATATYPE) s21)
(REDUCE (END) r186)
(SHIFT (EXCEPTION) s23)
(SHIFT (FUN) s25)
(SHIFT (INFIX) s29)
(SHIFT (INFIXR) s30)
(SHIFT (LOCAL) s493)
(SHIFT (NONFIX) s33)
(SHIFT (OPEN) s35)
(SHIFT (OVERLOAD) s36)
(SHIFT (TYPE) s39)
(SHIFT (VAL) s40)
(GOTO fixity s7)
(GOTO ldec s490)
(GOTO ldecs s552))
(STATE
s552
(COMMENT ldec "=>" ABSTYPE dbs WITHTYPE tb WITH ldecs "." END)
(SHIFT (END) s553))
(STATE
s553
(COMMENT ldec "=>" ABSTYPE dbs WITHTYPE tb WITH ldecs END ".")
(REDUCE () r179))
(STATE
s554
(COMMENT ldec "=>" ABSTYPE dbs WITH ldecs "." END)
(SHIFT (END) s555))
(STATE
s555
(COMMENT ldec "=>" ABSTYPE dbs WITH ldecs END ".")
(REDUCE () r178))
(STATE s556 (COMMENT *start "=>" interdec SEMICOLON ".") (REDUCE () r2))
(STATE s557 (COMMENT *start "=>" interdec EOF ".") (REDUCE () r1))
(STATE
s558
(COMMENT sdecs_prime "=>" sdec sdecs_prime ".")
(REDUCE () r261))
(STATE
s559
(COMMENT ops "=>" ident "." ops)
(COMMENT ops "=>" "." ident ops)
(COMMENT ops "=>" ident ".")
(COMMENT ops "=>" "." ident)
(COMMENT ident "=>" "." EQUALOP)
(COMMENT ident "=>" "." ASTERISK)
(COMMENT ident "=>" "." ID)
(REDUCE (SEMICOLON) r190)
(SHIFT (ID) s156)
(REDUCE (ABSTYPE) r190)
(REDUCE (DATATYPE) r190)
(REDUCE (END) r190)
(SHIFT (EQUALOP) s22)
(REDUCE (EXCEPTION) r190)
(REDUCE (FUN) r190)
(REDUCE (FUNCTOR) r190)
(REDUCE (IN) r190)
(REDUCE (INFIX) r190)
(REDUCE (INFIXR) r190)
(REDUCE (LOCAL) r190)
(REDUCE (NONFIX) r190)
(REDUCE (OPEN) r190)
(REDUCE (OVERLOAD) r190)
(REDUCE (SIGNATURE) r190)
(REDUCE (STRUCTURE) r190)
(REDUCE (TYPE) r190)
(REDUCE (VAL) r190)
(SHIFT (ASTERISK) s42)
(REDUCE (RPAREN) r190)
(REDUCE (FUNSIG) r190)
(REDUCE (EOF) r190)
(GOTO ident s559)
(GOTO ops s561))
(STATE s560 (COMMENT ldec "=>" fixity ops ".") (REDUCE () r182))
(STATE s561 (COMMENT ops "=>" ident ops ".") (REDUCE () r191))
(STATE s562 (COMMENT app_exp "=>" aexp app_exp ".") (REDUCE () r55))
(STATE s563 (COMMENT app_exp "=>" ident app_exp ".") (REDUCE () r56))))
| false |
9347ccd3d3bac14e022d93c2ff17f477beb5aeeb | ddc11a453a0eeda0df8e0fedc3407b66604ab63c | /ode-initval/rk4.rkt | 9a32db9c004057595bb5c59a6966eca8034fb360 | []
| no_license | bennn/pycket-benchmarks | 9e109b9b481620e5bccd043137592a5f836edf13 | 9673ec0e6e87bdc4dfbc4d3b3e0022e47eeb586c | refs/heads/master | 2020-04-01T02:14:01.488139 | 2016-03-08T05:05:16 | 2016-03-08T05:05:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,708 | rkt | rk4.rkt | #lang racket/base
;;; Science Collection
;;; ode-initval/rk4.rkt
;;; Copyright (c) 2004-2011 M. Douglas Williams
;;;
;;; This file is part of the Science Collection.
;;;
;;; The Science Collection is free software: you can redistribute it and/or
;;; modify it under the terms of the GNU Lesser General Public License as
;;; published by the Free Software Foundation, either version 3 of the License
;;; or (at your option) any later version.
;;;
;;; The Science Collection is distributed in the hope that it will be useful,
;;; but WITHOUT WARRANTY; without even the implied warranty of MERCHANTABILITY
;;; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
;;; License for more details.
;;;
;;; You should have received a copy of the GNU Lesser General Public License
;;; along with the Science Collection. If not, see
;;; <http://www.gnu.org/licenses/>.
;;;
;;; -------------------------------------------------------------------
;;;
;;; Version Date Description
;;; 3.0.1 07/01/08 Added header. (Doug Williams)
;;; 4.0.0 08/16/11 Changed the header and restructured the code. (MDW)
(require "system.rkt" "step.rkt" "control.rkt" "standard-control.rkt" "evolve.rkt")
(require scheme/unsafe/ops)
(define-values (struct:rk4-state
rk4-state-constructor
rk4-state?
rk4-state-field-ref
set-rk4-state-field!)
(make-struct-type 'rk4-state #f 3 0))
(define (make-rk4-state dim)
(rk4-state-constructor
(make-vector dim 0.0)
(make-vector dim 0.0)
(make-vector dim 0.0)))
(define rk4-state-k
(make-struct-field-accessor rk4-state-field-ref 0 'k))
(define set-rk4-state-k!
(make-struct-field-mutator set-rk4-state-field! 0 'k))
(define rk4-state-y0
(make-struct-field-accessor rk4-state-field-ref 1 'y0))
(define set-rk4-state-y0!
(make-struct-field-mutator set-rk4-state-field! 1 'y0))
(define rk4-state-ytmp
(make-struct-field-accessor rk4-state-field-ref 2 'ytmp))
(define set-rk4-state-ytmp!
(make-struct-field-mutator set-rk4-state-field! 2 'ytmp))
(define (rk4-apply state dim t h y y-err dydt-in dydt-out system)
(let ((k (rk4-state-k state))
(y0 (rk4-state-y0 state))
(ytmp (rk4-state-ytmp state)))
;; Copy the starting value. We will write over the y[] vector,
;; using it for scratch and then filling it with the final result.
(vector-copy! y0 0 y)
(if dydt-in
(vector-copy! k 0 dydt-in)
(ode-system-function-eval system t y0 k))
(for ((i (in-range dim)))
(unsafe-vector-set!
y i (unsafe-fl* (unsafe-fl/ h 6.0) (unsafe-vector-ref k i)))
(unsafe-vector-set!
ytmp i (unsafe-fl+ (unsafe-vector-ref y0 i)
(unsafe-fl* 0.5 (unsafe-fl* h (unsafe-vector-ref k i))))))
;; k2 step
(ode-system-function-eval system (unsafe-fl+ t (unsafe-fl* 0.5 h)) ytmp k)
(for ((i (in-range dim)))
(unsafe-vector-set!
y i (unsafe-fl+ (unsafe-vector-ref y i)
(unsafe-fl* (unsafe-fl/ h 3.0) (unsafe-vector-ref k i))))
(unsafe-vector-set!
ytmp i (unsafe-fl+ (unsafe-vector-ref y0 i)
(unsafe-fl* 0.5 (unsafe-fl* h (unsafe-vector-ref k i))))))
;; k3 step
(ode-system-function-eval system (unsafe-fl+ t (unsafe-fl* 0.5 h)) ytmp k)
(for ((i (in-range dim)))
(unsafe-vector-set!
y i (unsafe-fl+ (unsafe-vector-ref y i)
(unsafe-fl* (unsafe-fl/ h 3.0) (unsafe-vector-ref k i))))
(unsafe-vector-set!
ytmp i (unsafe-fl+ (unsafe-vector-ref y0 i) (unsafe-fl* h (unsafe-vector-ref k i)))))
;; k4 step, error estimate, and final sum
(for ((i (in-range dim)))
(unsafe-vector-set!
y i (unsafe-fl+ (unsafe-vector-ref y i)
(unsafe-fl* (unsafe-fl/ h 6.0) (unsafe-vector-ref k i))))
(vector-set!
y-err i (unsafe-fl* h (unsafe-vector-ref y i)))
(vector-set!
y i (unsafe-fl+ (unsafe-vector-ref y i) (unsafe-vector-ref y0 i)))
(when dydt-out
(unsafe-vector-set! dydt-out i (unsafe-vector-ref k i))))))
(define (rk4-reset state dim)
(let ((k (rk4-state-k state))
(y0 (rk4-state-y0 state))
(ytmp (rk4-state-ytmp state)))
(for ((i (in-range dim)))
(unsafe-vector-set! k i 0.0)
(unsafe-vector-set! y0 i 0.0)
(unsafe-vector-set! ytmp i 0.0))))
(define (rk4-order state)
4)
(define rk4-ode-type
(make-ode-step-type
"rk4"
#t
#f
make-rk4-state
rk4-apply
rk4-reset
rk4-order))
(provide rk4-ode-type)
| false |
0b94bce2804266fbe4442f1c069e49be7974d8af | c86d2725ede9f022a4ac9a33ab94f452db32a19b | /src/data/normalize-context.rkt | 6415b67a0c6cc088629b8f1666b8d88ed881cb3c | [
"MIT"
]
| permissive | rfindler/Grift | e38f0d680e423a6ae9365d674376aa24563dab2d | 01061bbf9916e18cba340044e9f0fa8b4379f202 | refs/heads/master | 2020-03-21T15:06:10.102115 | 2018-06-26T06:33:17 | 2018-06-26T06:34:08 | 138,694,386 | 0 | 0 | null | 2018-06-26T06:30:13 | 2018-06-26T06:30:13 | null | UTF-8 | Racket | false | false | 7,917 | rkt | normalize-context.rkt | #lang typed/racket
#|------------------------------------------------------------------------------+
|Pass: src/data/normalize-context |
+-------------------------------------------------------------------------------+
|Author: Andre Kuhlenshmidt ([email protected]) |
+-------------------------------------------------------------------------------+
| Description: This pass introduces the concept of keeping track
| of the context of an ast node.
+-------------------------------------------------------------------------------+
| Grammer:
+------------------------------------------------------------------------------|#
;; The define-pass syntax
(require "../helpers.rkt"
"../errors.rkt"
"../configuration.rkt"
"../language/data0.rkt"
"../language/data1.rkt"
"../casts/constants-and-codes.rkt"
(submod "../language/make-begin.rkt" typed))
;; Only the pass is provided by this module
(provide normalize-context
(all-from-out
"../language/data0.rkt"
"../language/data1.rkt"))
(: normalize-context (-> Data0-Lang Data1-Lang))
(define (normalize-context prgm)
(match-let ([(Prog (list name count type) (GlobDecs d* prog)) prgm])
(let* ([bndc* : (Boxof D1-Bnd-Code*) (box '())]
[prog (nc-prog bndc* prog)]
[bndc* : D1-Bnd-Code* (unbox bndc*)])
(Prog (list name count type) (GlobDecs d* (Labels bndc* prog))))))
(: nc-prog ((Boxof D1-Bnd-Code*) D0-Expr -> D1-Tail))
(define (nc-prog lifted-code* prog)
;; Make sure the expression is in tail possition
(: nc-tail (D0-Expr -> D1-Tail))
(define (nc-tail exp)
(match exp
[(Labels bndc* exp)
(nc-bnd-code* bndc*)
(nc-tail exp)]
[(Let bnd* tail)
(Let (nc-bnd* bnd*) (nc-tail tail))]
[(If t c a)
(If (nc-pred t) (nc-tail c) (nc-tail a))]
[(Switch e c* d)
(Switch (nc-value e) (map-switch-case* nc-tail c*) (nc-tail d))]
[(Begin eff* exp)
(Begin (nc-effect* eff*) (nc-tail exp))]
[(Repeat i e1 e2 a e3 e4)
;; This breaks SSA but we don't rely on SSA currently
(Begin
(list
(Assign a (nc-value e3))
(Repeat i (nc-value e1) (nc-value e2) #f #f
(Assign a (nc-value e4))))
(Var a))]
[(App-Code exp exp*)
(App-Code (nc-value exp) (nc-value* exp*))]
[(Op p (app nc-value* v*))
(if (uil-prim-effect? p)
(Begin (list (Op p v*)) UNIT-IMDT)
(nc-value-op p v*))]
[(Var i) (Var i)]
[(Global s) (Global s)]
[(Code-Label i) (Code-Label i)]
[(Quote k) (Quote k)]
[(Halt) (Halt)]
[(Success) (Success)]
;; FIXME: Come up with a more compelling intermediate language
[(No-Op) (Success)]
;; forms that don't quite work out because normalize
;; context is after specify
;; I could do
[(Assign u e) (error 'nc-tail "unhandled case")]
[other (error 'normalize-context "umatched ~a" other)]))
(: nc-value (D0-Expr -> D1-Value))
(define (nc-value exp)
(match exp
[(Labels bndc* exp)
(nc-bnd-code* bndc*)
(nc-value exp)]
[(Let bnd* exp)
(Let (nc-bnd* bnd*) (nc-value exp))]
[(If t c a)
(If (nc-pred t) (nc-value c) (nc-value a))]
[(Switch e c* d)
(Switch (nc-value e) (map-switch-case* nc-value c*) (nc-value d))]
[(Begin eff* exp)
(Begin (nc-effect* eff*) (nc-value exp))]
[(Repeat i e1 e2 a e3 e4)
(Begin
(list
(Assign a (nc-value e3))
(Repeat i (nc-value e1) (nc-value e2) #f #f
(Assign a (nc-value e4))))
(Var a))]
[(Break-Repeat) (Begin (list (Break-Repeat)) UNIT-IMDT)]
[(App-Code exp exp*)
(App-Code (nc-value exp) (nc-value* exp*))]
[(Op p (app nc-value* v*))
(if (uil-prim-effect? p)
(Begin (list (Op p v*)) UNIT-IMDT)
(nc-value-op p v*))]
[(Var i) (Var i)]
[(Global s) (Global s)]
[(Code-Label i) (Code-Label i)]
[(Quote k) (Quote k)]
[(Halt) (Halt)]
[(Assign u (app nc-value v))
(Begin (list (Assign u v)) UNIT-IMDT)]
[(No-Op) (error 'normalize-context "no-op in value context")]
[other (error 'normalize-context "umatched ~a" other)]))
(: nc-effect (-> D0-Expr D1-Effect))
(define (nc-effect exp)
(match exp
[(Assign u (app nc-value v))
(Assign u v)]
[(Labels bndc* exp)
(nc-bnd-code* bndc*)
(nc-effect exp)]
[(Let (app nc-bnd* bnd*) (app nc-effect tail))
(Let bnd* tail)]
[(If (app nc-pred t) (app nc-effect c) (app nc-effect a))
(If t c a)]
[(Switch e c* d)
(Switch (nc-value e) (map-switch-case* nc-effect c*) (nc-effect d))]
[(Begin eff* exp)
(Begin (append (nc-effect* eff*) (list (nc-effect exp))) NO-OP)]
[(Repeat i e1 e2 a e3 e4)
(Begin
(list
(Assign a (nc-value e3))
(Repeat i (nc-value e1) (nc-value e2) #f #f
(Assign a (nc-value e4))))
NO-OP)]
[(Break-Repeat) (Break-Repeat)]
[(App-Code exp exp*)
(App-Code (nc-value exp) (nc-value* exp*))]
[(Op p exp*)
(if (uil-prim-effect? p)
(Op p (nc-value* exp*))
;; evaluate values for their effects
(make-begin (nc-effect* exp*) NO-OP))]
[(Var i) NO-OP]
[(Global s) NO-OP]
[(Code-Label i) NO-OP]
[(Quote k) NO-OP]
[(No-Op) NO-OP]
[other (error 'normalize-context "umatched ~a" other)]))
(: nc-pred (-> D0-Expr D1-Pred))
(define (nc-pred exp)
(match exp
[(Labels bndc* exp)
(nc-bnd-code* bndc*)
(nc-pred exp)]
[(If (app nc-pred t) (app nc-pred c) (app nc-pred a))
(If t c a)]
[(Switch e c* d)
(Switch (nc-value e) (map-switch-case* nc-pred c*) (nc-pred d))]
[(Begin eff* exp)
(Begin (nc-effect* eff*) (nc-pred exp))]
[(Repeat i e1 e2 a e3 e4)
(Begin
(list
(Assign a (nc-value e3))
(Repeat i (nc-value e1) (nc-value e2) #f #f
(Assign a (nc-value e4))))
(Relop '= TRUE-IMDT (Var a)))]
[(Break-Repeat) (error 'nc-pred/unsuported/break-repeat)]
[(Assign u e) (error 'nc-pred/unsuported/assign)]
[(Op p (app nc-value* val*))
(if (IntxInt->Bool-primitive? p)
(match val*
[(list a b) (Relop p a b)]
[other (error 'nc-pred-op)])
(Relop '= TRUE-IMDT (nc-value-op p val*)))]
[(No-Op) (error 'nc-pred "no-op in pred context")]
[(app nc-value v) (Relop '= TRUE-IMDT v)]))
(: nc-value* (-> D0-Expr* D1-Value*))
(define (nc-value* exp*) (map nc-value exp*))
(: nc-effect* (-> D0-Expr* D1-Effect*))
(define (nc-effect* exp*) (map nc-effect exp*))
(: nc-bnd* (-> D0-Bnd* D1-Bnd*))
(define (nc-bnd* bnd*)
(map (lambda ([b : D0-Bnd])
(cons (car b) (nc-value (cdr b))))
bnd*))
(: nc-bnd-code* (-> D0-Bnd-Code* Void))
(define (nc-bnd-code* bnd*)
(for-each
(lambda ([b : D0-Bnd-Code])
(match-let ([(cons u (Code u* t)) b])
(let ([b (cons u (Code u* (nc-tail t)))])
(set-box! lifted-code* (cons b (unbox lifted-code*))))))
bnd*))
(nc-tail prog))
;; This makes sure that the value #t is returned from predicates
(: nc-value-op (-> (U UIL-Prim UIL-Prim!) D1-Value* D1-Value))
(define (nc-value-op p exp*)
(cond
[(uil-prim-pred? p)
(match exp*
[(list a b)
(If (Relop p a b) TRUE-IMDT FALSE-IMDT)]
[otherwise (error 'nc-expr-op "Unmatched ~a" exp)])]
[(uil-prim-value? p) (Op p exp*)]
[(uil-prim-effect? p) (Begin (list (Op p exp*)) UNIT-IMDT)]
[else (error 'nc-value-op "primitive out of context ~v ~v" p exp*)]))
| false |
4b2b88822970db643f8a4b1ae7159a4ccad81524 | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/shell-one-liner.rkt | 095f38dcdbbc0711df62f65e56626a2a7d317486 | []
| no_license | dlaststark/machine-learning-projects | efb0a28c664419275e87eb612c89054164fe1eb0 | eaa0c96d4d1c15934d63035b837636a6d11736e3 | refs/heads/master | 2022-12-06T08:36:09.867677 | 2022-11-20T13:17:25 | 2022-11-20T13:17:25 | 246,379,103 | 9 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 54 | rkt | shell-one-liner.rkt | $ racket -e "(displayln \"Hello World\")"
Hello World
| false |
6f3b29065bd8826c3dc0ca56ad8305f8fbfba2d9 | 98fd4b7b928b2e03f46de75c8f16ceb324d605f7 | /drracket-test/tests/drracket/stepper-test.rkt | 337ca609c1ea8549e32948751bd3740dd0d9a477 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/drracket | 213cf54eb12a27739662b5e4d6edeeb0f9342140 | 2657eafdcfb5e4ccef19405492244f679b9234ef | refs/heads/master | 2023-08-31T09:24:52.247155 | 2023-08-14T06:31:49 | 2023-08-14T06:32:14 | 27,413,460 | 518 | 120 | NOASSERTION | 2023-09-11T17:02:44 | 2014-12-02T03:36:22 | Racket | UTF-8 | Racket | false | false | 26,735 | rkt | stepper-test.rkt |
(module stepper-test mzscheme
(require mred
mzlib/class
"private/drracket-test-util.rkt"
"private/gui.rkt"
framework
mzlib/pretty)
(provide run-test)
(define next-button-label "Step >")
(define no-more-steps-message "All of the definitions have been successfully evaluated.")
;; type contents = (listof (union snip string contents))
;; type error = (make-error string)
;; type step = (make-step contents contents (union error contents))
(define-struct step (definitions before after) (make-inspector))
(define-struct err (message) (make-inspector))
;; type program-spec = (union string (make-file string))
(define-struct file (name))
(define current-program-id (make-parameter 'current-program-id-unset))
(define failure-escape (make-parameter 'failure-escape-unset))
(define sample-solutions-directory "/home/robby/unison/collects/solutions")
(define to-skip-to "average-price.scm")
(define (run-test)
(run-fully-specified-tests)
#|
(set-language-level! (list "Beginning Student with List Abbreviations"))
(run-string-test "(define (f x) (* x 2))\n(+ 1 (f (+ 1 1)))")
(run-string-test "(sqrt 2)")
(run-string-test "(car)")
(run-sample-solution-tests)
|#
)
(define (run-fully-specified-tests)
(set-language-level! (list "Beginning Student"))
(beginner-tests/no-list)
(test-transcript '(cons 1 (cons 2 (list 3 4 5)))
'(cons 1 (cons 2 (cons 3 (cons 4 (cons 5 empty))))))
(set-language-level! (list "Beginning Student with List Abbreviations"))
(beginner-tests/no-list)
(test-transcript '(cons 1 (cons 2 (list 3 4 5)))
'(cons 1 (list 2 3 4 5))
'(list 1 2 3 4 5)))
(define (beginner-tests/no-list)
(test-transcript '(+ 1 2) 3)
(test-transcript
'(cond [(= 1 1) (cond [(= 1 2) 3] [else 4])])
'(cond [true (cond [(= 1 2) 3] [else 4])])
'(cond [(= 1 2) 3] [else 4])
'(cond [false 3] [else 4])
'(cond [else 4])
'4)
(test-transcript
'(if (= 1 1) (if (= 1 2) 4 (if (= 1 1) 5 6)) 7)
'(if true (if (= 1 2) 4 (if (= 1 1) 5 6)) 7)
'(if (= 1 2) 4 (if (= 1 1) 5 6))
'(if false 4 (if (= 1 1) 5 6))
'(if (= 1 1) 5 6)
'(if true 5 6)
'5)
(test-transcript
'(and (or true false)
(or false false true)
(and true true)
false)
'(and true
(or false false true)
(and true true)
false)
'(and true
true
(and true true)
false)
'(and true
true
true
false)
'false)
(fully-specified-test
"(+ #i1.2 1)"
(make-step '() '("(+ #i1.2 1)") '("#i2.2"))
(make-step '("#i2.2") '() '()))
(test-transcript/defns
(list '(define (f x) (+ x 1)))
'(f 1)
'(+ 1 1)
'2)
(test-transcript
'(+ 1 (posn-x (make-posn (+ 1 2) (+ 3 4))))
'(+ 1 (posn-x (make-posn 3 (+ 3 4))))
'(+ 1 (posn-x (make-posn 3 7)))
'(+ 1 3)
'4)
(test-transcript/defns
(list '(define-struct s (a b)))
'(if (s? (make-s 'a 'b))
(s-a (make-s 'c 'd))
'ack)
'(if true
(s-a (make-s 'c 'd))
'ack)
'(s-a (make-s 'c 'd))
''c)
(test-transcript/defns
(list '(define x 1))
'(+ x x)
'(+ 1 x)
'(+ 1 1)
'2)
(test-transcript/defns
(list '(define-struct con (hd tl))
'(define-struct mt ())
'(define (sum l)
(cond
[(mt? l) 0]
[(con? l) (+ (con-hd l) (sum (con-tl l)))])))
'(sum (make-con 5 (make-con 6 (make-con 7 (make-mt)))))
'(cond
[(mt? (make-con 5 (make-con 6 (make-con 7 (make-mt))))) 0]
[(con? (make-con 5 (make-con 6 (make-con 7 (make-mt)))))
(+ (con-hd (make-con 5 (make-con 6 (make-con 7 (make-mt)))))
(sum (con-tl (make-con 5 (make-con 6 (make-con 7 (make-mt)))))))])
'(cond
[false 0]
[(con? (make-con 5 (make-con 6 (make-con 7 (make-mt)))))
(+ (con-hd (make-con 5 (make-con 6 (make-con 7 (make-mt)))))
(sum (con-tl (make-con 5 (make-con 6 (make-con 7 (make-mt)))))))])
'(cond
[(con? (make-con 5 (make-con 6 (make-con 7 (make-mt)))))
(+ (con-hd (make-con 5 (make-con 6 (make-con 7 (make-mt)))))
(sum (con-tl (make-con 5 (make-con 6 (make-con 7 (make-mt)))))))])
'(cond
[true
(+ (con-hd (make-con 5 (make-con 6 (make-con 7 (make-mt)))))
(sum (con-tl (make-con 5 (make-con 6 (make-con 7 (make-mt)))))))])
'(+ (con-hd (make-con 5 (make-con 6 (make-con 7 (make-mt)))))
(sum (con-tl (make-con 5 (make-con 6 (make-con 7 (make-mt)))))))
'(+ 5
(sum (con-tl (make-con 5 (make-con 6 (make-con 7 (make-mt)))))))
'(+ 5
(sum (make-con 6 (make-con 7 (make-mt)))))
'(+ 5
(cond
[(mt? (make-con 6 (make-con 7 (make-mt)))) 0]
[(con? (make-con 6 (make-con 7 (make-mt))))
(+ (con-hd (make-con 6 (make-con 7 (make-mt))))
(sum (con-tl (make-con 6 (make-con 7 (make-mt))))))]))
'(+ 5
(cond
[false 0]
[(con? (make-con 6 (make-con 7 (make-mt))))
(+ (con-hd (make-con 6 (make-con 7 (make-mt))))
(sum (con-tl (make-con 6 (make-con 7 (make-mt))))))]))
'(+ 5
(cond
[(con? (make-con 6 (make-con 7 (make-mt))))
(+ (con-hd (make-con 6 (make-con 7 (make-mt))))
(sum (con-tl (make-con 6 (make-con 7 (make-mt))))))]))
'(+ 5
(cond
[true
(+ (con-hd (make-con 6 (make-con 7 (make-mt))))
(sum (con-tl (make-con 6 (make-con 7 (make-mt))))))]))
'(+ 5
(+ (con-hd (make-con 6 (make-con 7 (make-mt))))
(sum (con-tl (make-con 6 (make-con 7 (make-mt)))))))
'(+ 5
(+ 6
(sum (con-tl (make-con 6 (make-con 7 (make-mt)))))))
'(+ 5
(+ 6
(sum (make-con 7 (make-mt)))))
'(+ 5
(+ 6
(cond
[(mt? (make-con 7 (make-mt))) 0]
[(con? (make-con 7 (make-mt)))
(+ (con-hd (make-con 7 (make-mt)))
(sum (con-tl (make-con 7 (make-mt)))))])))
'(+ 5
(+ 6
(cond
[false 0]
[(con? (make-con 7 (make-mt)))
(+ (con-hd (make-con 7 (make-mt)))
(sum (con-tl (make-con 7 (make-mt)))))])))
'(+ 5
(+ 6
(cond
[(con? (make-con 7 (make-mt)))
(+ (con-hd (make-con 7 (make-mt)))
(sum (con-tl (make-con 7 (make-mt)))))])))
'(+ 5
(+ 6
(cond
[true
(+ (con-hd (make-con 7 (make-mt)))
(sum (con-tl (make-con 7 (make-mt)))))])))
'(+ 5
(+ 6
(+ (con-hd (make-con 7 (make-mt)))
(sum (con-tl (make-con 7 (make-mt)))))))
'(+ 5
(+ 6
(+ 7
(sum (con-tl (make-con 7 (make-mt)))))))
'(+ 5
(+ 6
(+ 7
(sum (make-mt)))))
'(+ 5
(+ 6
(+ 7
(cond
[(mt? (make-mt)) 0]
[(con? (make-mt)) (+ (con-hd (make-mt)) (sum (con-tl (make-mt))))]))))
'(+ 5
(+ 6
(+ 7
(cond
[true 0]
[(con? (make-mt)) (+ (con-hd (make-mt)) (sum (con-tl (make-mt))))]))))
'(+ 5 (+ 6 (+ 7 0)))
'(+ 5 (+ 6 7))
'(+ 5 13)
'18))
(define (fully-specified-test init . steps)
(let ([actual (step-and-extract-program init)])
(unless (equal? actual steps)
(eprintf "FAILED: ~s\nexpected: ~s\n got: ~s\n" init steps actual))))
(define (test-transcript/defns defns init . sexp-steps)
(let* ([str-defns (apply string-append (map (lambda (x) (string-append (to-string x) "\n")) defns))]
[actual-steps (step-and-extract-program (format "~a~a" str-defns (to-string init)))]
[failed
(lambda (msg . args)
(eprintf "FAILED: ~a\ndefns: ~s\nexpected: ~s\nactual: ~s\n\n"
(apply format msg args)
defns
(cons init sexp-steps)
actual-steps))])
(let loop ([steps actual-steps]
[last init]
[sexps sexp-steps]
[n 0])
(cond
[(and (null? sexps)
(not (null? steps))
(null? (cdr steps)))
(let ([step (car steps)])
(unless (ws-equal? (stringify (step-definitions step))
(string-append
str-defns
"\n"
(to-string last)))
(failed "mismatch at last step ~s and ~s"
(step-definitions step)
last))
(unless (and (equal? '() (step-before step))
(equal? '() (step-after step)))
(failed "expected empty before and after steps in the last step")))]
[(or (null? steps) (null? sexps))
(failed "different length")]
[else
(let ([step (car steps)]
[sexp (car sexps)])
(cond
[(not (ws-equal? (stringify (step-definitions step)) str-defns))
(failed "mismatch at ~a defnitions ~s and ~s"
n
(stringify (step-definitions step))
str-defns)]
[(not (ws-equal? (stringify (step-before step))
(to-string last)))
(failed "mismatch at ~a before ~s and ~s"
n
(stringify (step-before step))
last)]
[(not (ws-equal? (stringify (step-after step))
(to-string sexp)))
(failed "mismatch at ~a after ~s and ~s"
n
(stringify (step-after step))
sexp)]
[else
(loop (cdr steps)
sexp
(cdr sexps)
(+ n 1))]))]))))
(define (to-string s)
(let ([sp (open-output-string)])
(parameterize ([pretty-print-columns 'infinity]
[current-output-port sp])
(pretty-print s))
(get-output-string sp)))
(define (stringify x)
(unless (andmap string? x)
(error 'stringify "cannot: ~s" x))
(apply string-append x))
(define (test-transcript init . sexp-steps)
(apply test-transcript/defns '() init sexp-steps))
(define (ws-equal? s1 s2)
(equal? (regexp-replace* "[ \t\n]+"
(string-append " " s1 " ")
" ")
(regexp-replace* "[ \t\n]+"
(string-append " " s2 " ")
" ")))
(define (run-sample-solution-tests)
(let ([found-it? #f])
(for-each
(lambda (file)
(when (equal? file to-skip-to)
(set! found-it? #t))
(when found-it?
(run-file-test (build-path sample-solutions-directory file))))
(directory-list sample-solutions-directory))))
;; run-file-test : string -> void
(define (run-file-test filename)
(let/ec k
(parameterize ([current-program-id filename]
[failure-escape k])
(check-steps
(make-file filename)
(step-and-extract-program (make-file filename))))))
;; run-string-test : string -> void
;; runs the test in the string.
(define (run-string-test prog)
(let/ec k
(parameterize ([current-program-id prog]
[failure-escape k])
(check-steps
prog
(step-and-extract-program prog)))))
;; simple-failure : (union #f step) string any ... -> beta
;; indicates that this one test failed, but the stepper may still
;; be steppable, so just jumps out of this one test.
(define (simple-failure step message . args)
(eprintf "FAILED TEST ~s:\n" (current-program-id))
(when step (eprintf "~s\n" step))
(eprintf "~a\n\n" (apply format message args))
((failure-escape)))
;; check-steps : program-spec (listof step) -> void
;; executes each of the steps in DrRacket and raises
;; an exception if something doesn't match up.
(define (check-steps program steps)
(let* ([drs-frame (wait-for-drracket-frame)]
[defs-text (send drs-frame get-definitions-text)])
(let loop ([last-results #f]
[steps steps])
(cond
[(null? steps)
(clear-definitions drs-frame)
(type-in-definitions drs-frame ";; full prog\n")
(set-definitions-to-program drs-frame program)
(do-execute drs-frame)
(let ([prog-results (fetch-output drs-frame)])
;; can only check subset here, since we may have stopped stepping early
(check-subset-results #f last-results prog-results))]
[else
(let ([step (car steps)])
(clear-definitions drs-frame)
(dynamic-wind
(lambda ()
(send defs-text begin-edit-sequence))
(lambda ()
(type-in-definitions drs-frame ";; before\n")
(insert-into-definitions drs-frame (step-definitions step))
(type-in-definitions drs-frame "\n")
(insert-into-definitions drs-frame (step-before step)))
(lambda ()
(send defs-text end-edit-sequence)))
(do-execute drs-frame)
(let ([before-results (fetch-output drs-frame)])
(when last-results
(check-subset-results step last-results before-results))
(clear-definitions drs-frame)
(dynamic-wind
(lambda ()
(send defs-text begin-edit-sequence))
(lambda ()
(type-in-definitions drs-frame ";; after\n")
(insert-into-definitions drs-frame (step-definitions step))
(type-in-definitions drs-frame "\n")
(unless (err? (step-after step))
(insert-into-definitions drs-frame (step-after step))))
(lambda ()
(send defs-text end-edit-sequence)))
(do-execute drs-frame)
(cond
[(err? (step-after step))
(let* ([pre-output (fetch-output drs-frame)]
[add-newline? (and ((string-length pre-output) . >= . 1)
(not
(char=?
(string-ref pre-output
(- (string-length pre-output) 1))
#\newline)))]
[after-results
(if add-newline?
(string-append pre-output
"\n"
(err-message (step-after step)))
(string-append pre-output
(err-message (step-after step))))])
(check-same-results step before-results after-results)
(unless (null? (cdr steps))
(simple-failure #f "expected no more steps after an error, found ~s" (cdr steps)))
(loop after-results null))]
[else
(let ([after-results (fetch-output drs-frame)])
(check-same-results step before-results after-results)
(loop after-results (cdr steps)))])))]))))
;; insert-info-definitions : frame contents -> void
;; technically, this function should probably type the
;; contents into the definitions window, but that is
;; considerably slower than just inserting it directly....
(define (insert-into-definitions drs-frame orig-contents)
(let ([defns (send drs-frame get-definitions-text)])
(let loop ([contents orig-contents])
(for-each
(lambda (content)
(cond
[(string? content)
(send defns insert content
(send defns last-position)
(send defns last-position))]
[(is-a? content snip%)
(send defns insert (send content copy)
(send defns last-position)
(send defns last-position))]
[(eq? content 'unknown)
(error 'insert-into-definitions "found unknown snip in ~e" orig-contents)]
[(list? content)
;; wrong thing. this flattens embedded editors
(loop content)]))
contents))))
;; check-subset-results : step string string -> void
;; raises an error if s1 is not the beginning of s2.
(define (check-subset-results step s1 s2)
(unless (and (<= (string-length s1)
(string-length s2))
(string=? (substring s2 0 (string-length s1))
s1))
(simple-failure step "expected\n ~s\nto be the beginning of\n ~s" s1 s2)))
;; check-same-results : step string string -> void
;; raises an error if s1 is not s2.
(define (check-same-results step s1 s2)
(unless (string=? s1 s2)
(simple-failure step "expected\n ~s\nto be the same as\n ~s" s1 s2)))
;; step-and-extract-program : program-spec -> (listof step)
(define (step-and-extract-program program)
(let ([drs-frame (wait-for-drracket-frame)])
(clear-definitions drs-frame)
(set-definitions-to-program drs-frame program)
(let* ([stepper-frame (start-stepper drs-frame)]
[steps (get-all-steps stepper-frame)])
(test:menu-select "File" (if (eq? (system-type) 'unix) "Close" "Close Window"))
(let ([drs-frame1 (wait-for-new-frame stepper-frame)])
(unless (eq? drs-frame1 drs-frame)
(error 'step-and-extract "didn't get back to drscheme frame, got: ~e" drs-frame)))
steps)))
;; set-definitions-to-program : program-spec -> void
(define (set-definitions-to-program drs-frame program)
(cond
[(string? program)
(type-in-definitions drs-frame program)]
[else
(let ([definitions-text (send drs-frame get-definitions-text)])
(send definitions-text load-file (file-name program))
(send definitions-text set-filename #f))]))
;; start-stepper : frame -> frame
(define (start-stepper drs-frame)
(test:button-push (send drs-frame get-stepper-button))
(let ([stepper-frame (wait-for-new-frame drs-frame)])
stepper-frame))
;; get-all-steps : frame -> (listof step)
(define (get-all-steps stepper-frame)
(let* ([stepper-canvas (find-labelled-window #f editor-canvas% stepper-frame)]
[stepper-editor (poll-until (lambda ()
(let ([ed (send stepper-canvas get-editor)])
(if (and ed
(not (send ed refresh-delayed?)))
ed
#f))))])
(cons (get-step stepper-frame stepper-editor)
(get-more-steps stepper-frame))))
;; get-more-steps : stepper-frame -> (listof step)
;; repeatedly push the next button to get out all of the steps
(define (get-more-steps stepper-frame)
(let ([next-button (find-labelled-window next-button-label button% stepper-frame)]
[stepper-canvas (find-labelled-window #f editor-canvas% stepper-frame)])
;; wait until we are in a "ready" state.
(poll-until (lambda () (send next-button is-enabled?))
2
void)
;; at most 200 steps
(let loop ([n 200])
(cond
[(zero? n) null]
[(send next-button is-enabled?)
(let* ([before-editor (poll-until (lambda () (send stepper-canvas get-editor)))]
[new-step-available?
;; if there is a new editor and the next button is enabled,
;; we take that to mean that a new step has appeared.
(lambda ()
(let ([editor (send stepper-canvas get-editor)])
(and editor
(or (and (not (eq? before-editor editor))
(not (send editor refresh-delayed?))
(send next-button is-enabled?))
(editor-has-stepper-done-message editor)))))])
(test:button-push next-button)
(poll-until new-step-available? 2 void)
(if (new-step-available?)
(let ([step (get-step stepper-frame (send stepper-canvas get-editor))])
(if step
(cons step (loop (- n 1)))
(loop (- n 1))))
null))]
[else null]))))
;; editor-has-stepper-done-message : editor->boolean
(define (editor-has-stepper-done-message editor)
(string=? (send editor get-text 0 (send editor last-position))
no-more-steps-message))
;; get-step : frame editor -> (union step #f)
;; extracts a step from the stepper window. Only returns #f for
;; the "I'm done stepping" message that sometimes appears at the end.
(define (get-step stepper-frame stepper-editor)
(let ([canvas (find-labelled-window #f canvas% stepper-frame (lambda () #f))])
(when canvas
(error 'get-steps "stepper warning present!")))
(let* ([extraction (extract-from-editor stepper-editor)]
[step (separate-steps extraction)])
(unless step
(unless (equal? (list no-more-steps-message) extraction)
(error 'get-step "couldn't parse stepper window: ~s\n" extraction)))
step))
;; snips = (union (cons error snips) (cons snip snips) (cons snips snips) null)
;; extract-from-editor : editor -> snips
(define (extract-from-editor editor)
(let loop ([snip (send editor find-first-snip)])
(cond
[(not snip)
null]
[(is-a? snip editor-snip%)
(let ([editor (send snip get-editor)])
(cons (cond
[(not editor) '()]
[(contains-error-message? editor)
(let ([ans (extract-from-editor editor)])
(unless (and (list? ans)
(andmap string? ans))
(error 'extract-from-editor "couldn't parse error message: ~s" ans))
(make-err (apply string-append ans)))]
[else (extract-from-editor editor)])
(loop (send snip next))))]
[(is-a? snip string-snip%)
(cons (send snip get-text 0 (send snip get-count) #t)
(loop (send snip next)))]
[(or (is-a? snip image-snip%)
(and (is-a? snip snip%)
(method-in-interface? 'get-fraction-view (object-interface snip))))
(cons (send snip copy) (loop (send snip next)))]
[else (cons 'unknown
(loop (send snip next)))])))
;; contains-error-message? : editor -> boolean
;; returns #t if the editors contents look like an error message
(define (contains-error-message? editor)
(let ([snip (send editor find-first-snip)])
(and snip
(error-style? (send snip get-style)))))
;; error-style? : style -> boolean
(define (error-style? style)
(let ([color (send style get-foreground)])
(and (color-equal? (send the-color-database find-color "red") color)
(memq (send style get-style) '(slant italic)))))
;; color-equal? : color color -> boolean
(define (color-equal? c1 c2)
(and (= (send c1 red) (send c2 red))
(= (send c1 green) (send c2 green))
(= (send c1 blue) (send c2 blue))))
;; separate-steps : snips -> (union step #f)
(define (separate-steps snips)
(let/ec k
(let ([program null]
[before null]
[after null]
[snips snips])
(define (die which when)
(printf "~a: didn't find ~s\n ~s\n ~s\n ~s\n ~s\n" which when
program
before
after
snips))
(define (hunt-for-list id)
(let loop ()
(cond
[(null? snips)
(die 'hunt-for-list.1 id)
(k #f)]
[(eq? 'unknown (car snips))
(die 'hunt-for-list.2 id)
(k #f)]
[(list? (car snips))
(begin0 (car snips)
(set! snips (cdr snips)))]
[else (set! snips (cdr snips))
(loop)])))
(define (hunt-for-list/error id)
(let loop ()
(cond
[(null? snips)
(die 'hunt-for-list/error.1 id)
(k #f)]
[(eq? 'unknown (car snips))
(die 'hunt-for-list/error.2 id)
(k #f)]
[(or (err? (car snips)) (list? (car snips)))
(begin0 (car snips)
(set! snips (cdr snips)))]
[else (set! snips (cdr snips))
(loop)])))
(define (hunt-for-unknown id)
(let loop ()
(cond
[(null? snips)
(die 'hunt-for-unknown id)
(k #f)]
[(eq? 'unknown (car snips)) (set! snips (cdr snips))]
[else (set! snips (cdr snips))
(loop)])))
;(set! program (hunt-for-list 'program))
(set! before (hunt-for-list 'before))
(hunt-for-unknown 'between)
(set! after (hunt-for-list/error 'after))
(make-step program
before
after)))))
| false |
174ae216912a108b9664a9d5ab2c0bda1531518b | 8b07825d591d4ed23046b5ed8165b4cef1aec9eb | /Scheme/лабка2.rkt | 0e99261a30ed6c35662bf28a122c594fa8eae563 | []
| no_license | tea-with-lemon/IU9 | 9903559053f046c6acf6015f4a7d220df46c22ba | 81d91dd15b40d8d70046f493b965247dd2771d9e | refs/heads/master | 2022-12-10T16:46:36.120140 | 2019-08-17T14:52:22 | 2019-08-17T14:52:22 | 48,314,037 | 3 | 2 | null | 2022-12-09T05:57:12 | 2015-12-20T09:20:23 | JavaScript | UTF-8 | Racket | false | false | 1,605 | rkt | лабка2.rkt | ;;convertor
(define (list-head lst k)
(if (= k 0)'()
(cons (car lst) (list-head (cdr lst)(- k 1)))))
(define (vector-head vec k)
(list->vector(list-head (vector->list vec)k)))
(define (vector-tail vec k)
(list->vector(list-tail (vector->list vec)k)))
(define (vector-add el vec)
(list->vector(cons el (vector->list vec))))
(define (veсtor-concat vec1 vec2)
(list->vector (append (vector->list vec1) (vector->list vec2))))
(define (string-head s k)
(substring s 0 k))
(define (string-tail s k)
(substring s k (string-length s)))
(define (string-add el s)
(list->string (cons el (string->list s))))
;;1 chast'
(define (ref xs index . el)
(cond
((list? xs)
(if (>= index (length xs))
#f
(if (null? el)
(list-ref xs index)
(append (list-head xs index) (cons (car el) (list-tail xs index))))))
((vector? xs)
(if (>= index (vector-length xs))
#f
(if (null? el)
(vector-ref xs index)
(veсtor-concat (vector-head xs index) (vector-add (car el)(vector-tail xs index))))))
((string? xs)
(if (>= index (string-length xs))
#f
(if (null? el)
(string-ref xs index)
(if (char? (car el))
(string-append (string-head xs index)(string-add (car el) (string-tail xs index)))
#f))))
(else #f)))
;;tests
(ref '(1 2 3) 1)
(ref #(1 2 3) 1)
(ref "123" 1)
(ref "123" 3)
(ref '(1 2 3) 1 0)
(ref #(1 2 3) 1 0)
(ref #(1 2 3) 1 #\0)
(ref "123" 1 #\0)
(ref "123" 1 0)
(ref "123" 3)
| false |
ee4f7ebbe755286770a2d92a8d2400f1ff8ee05d | 1baabfed8813ca3b4111ae186b4518b0df3c4d6a | /a9/a9.rkt | 81700014d1be29ab8a4483f3d47379e555852695 | [
"Apache-2.0"
]
| permissive | gaoyuu/III_I_I_PL | a4f4d60ee9603397c6d8ede63708e8e947285dbe | d30378fb5779cad871e63efc1eca81d0995327d0 | refs/heads/master | 2021-01-01T04:11:51.780024 | 2016-05-19T01:30:18 | 2016-05-19T01:30:18 | 59,156,648 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 7,714 | rkt | a9.rkt | #lang racket
(require "parenthec.rkt")
;Registerize the interpreter. Turn each let* expression to a begin block: the former let* bindings will
;become set! expressions, and the body becomes the invocation of a function of no arguments.
(define-union expr
(const cexp)
(var n)
(if test conseq alt)
(mult nexp1 nexp2)
(sub1 nexp)
(zero nexp)
(letcc body)
(throw kexp vexp)
(let exp body)
(lambda body)
(app rator rand))
(define value-of-cps
(λ (exp env return)
(union-case exp expr
[(const cexp) (let* ([v cexp] [return^ return]) (apply-k return^ v))]
[(var n) (let* ([env^ env] [n^ n] [return^ return]) (apply-env env^ n^ return^))]
;[(mult e0 e1) (value-of-cps e0 env (kt_outer-mult-k e1 env return))]
[(mult e0 e1) (let* ([e0^ e0] [env^ env] [return^ (kt_outer-mult-k e1 env^ return)])
(value-of-cps e0^ env^ return^))]
;[(sub1 e) (value-of-cps e env (kt_constructor-sub1 return))]
[(sub1 e) (let* ([e^ e] [env^ env] [return^ (kt_constructor-sub1 return)])
(value-of-cps e^ env^ return^))]
;[(zero e) (value-of-cps e env (kt_constructor-zero return))]
[(zero e) (let* ([e^ e] [env^ env] [return^ (kt_constructor-zero return)])
(value-of-cps e^ env^ return^))]
;[(if test conseq alt) (value-of-cps test env (kt_constructor-if conseq alt env return))]
[(if test conseq alt) (let* ([test^ test] [env^ env] [return^ (kt_constructor-if conseq alt env^ return)])
(value-of-cps test^ env^ return^))]
;[(letcc e) (value-of-cps e (envr_extend-env return env) return)]
[(letcc e) (let* ([e^ e] [env^ (envr_extend-env return env)] [return^ return])
(value-of-cps e^ env^ return^))]
;[(throw e0 e1) (value-of-cps e0 env (kt_outer-throw-k e1 env))]
[(throw e0 e1) (let* ([e0^ e0] [env^ env] [return^ (kt_outer-throw-k e1 env^)])
(value-of-cps e0^ env^ return^))]
;[(let e0 e1) (value-of-cps e0 env (kt_constructor-let e1 env return))]
[(let e0 e1) (let* ([e0^ e0] [env^ env] [return^ (kt_constructor-let e1 env^ return)])
(value-of-cps e0^ env^ return^))]
;[(lambda e) (apply-k return (clos_closure e env))]
[(lambda e) (let* ([return^ return] [v (clos_closure e env)])
(apply-k return^ v))]
;[(app rator rand) (value-of-cps rator env (kt_outer-app-k rand env return))])))
[(app rator rand) (let* ([rator^ rator] [env^ env] [return^ (kt_outer-app-k rand env^ return)])
(value-of-cps rator^ env^ return^))])))
(define empty-env
(λ ()
`(empty-env)))
(define-union envr
(empty-env)
(extend-env a env))
(define apply-env
(λ (env y return)
(union-case env envr
[(empty-env) (error 'value-of "unbound identifier ~s" y)]
[(extend-env a env) (if (zero? y)
(let* ([return^ return] [v a])(apply-k return^ v));modification_5
(let* ([env^ env] [y^ (sub1 y)] [return^ return])
(apply-env env^ y^ return^)))])))
(define-union clos
(closure body env))
(define apply-closure
(λ (clo v return)
(union-case clo clos
[(closure body env) (let* ([e body] [env (envr_extend-env v env)] [return^ return])
(value-of-cps e env return^))])));;modification_5
(define empty-k
(λ ()
(λ (v) v)))
(define-union kt
(empty-k)
(inner-mult-k v^ return^)
(outer-mult-k e env return^)
(constructor-sub1 return^)
(constructor-zero return^)
(constructor-if conseq alt env return^)
(constructor-let body env return^)
(inner-throw-k e1)
(outer-throw-k e0 env)
(inner-app-k v^ return^)
(outer-app-k rand env return^))
;=====
;inner-mult-k
(define inner-mult-k
(λ (v^ return^)
`(inner-mult-k ,v^ ,return^)))
;outer-mult-k
(define outer-mult-k
(λ (e env return^)
`(outer-mult-k ,e ,env ,return^)))
;constructor-sub1
(define constructor-sub1
(λ (return^)
`(constructor-sub1 ,return^)))
;constructor-zero
(define constructor-zero
(λ (return^)
`(constructor-zero ,return^)))
;constructor-if
(define constructor-if
(λ (conseq alt env return^)
`(constructor-if ,conseq ,alt ,env ,return^)))
;constructor-let
(define constructor-let
(λ (body env return^)
`(constructor-let ,body ,env ,return^)))
;inner-throw-k
(define inner-throw-k
(λ (e1)
`(inner-throw-k ,e1)))
;outer-throw-k
(define outer-throw-k
(λ (e0 env)
`(outer-throw-k ,e0 ,env)))
;inner-app-k
(define inner-app-k
(λ (v^ return^)
`(inner-app-k ,v^ ,return^)))
;outer-app-k
(define outer-app-k
(λ (rand env return^)
`(outer-app-k ,rand ,env ,return^)))
(define apply-k
(λ (return v)
(union-case return kt
[(empty-k) v]
;[(inner-mult-k v^ return^) (apply-k return^ (* v v^))]
[(inner-mult-k v^ return^) (let* ([return^^ return^] [v^^ (* v v^)]) (apply-k return^^ v^^))]
;[(outer-mult-k e env return^) (value-of-cps e env (kt_inner-mult-k v return^))]
[(outer-mult-k e env return^) (let* ([e^ e] [env^ env] [return^^ (kt_inner-mult-k v return^)])(value-of-cps e^ env^ return^^))]
;[(constructor-sub1 return^) (apply-k return^ (sub1 v))]
[(constructor-sub1 return^) (let* ([return^^ return^] [v^ (sub1 v)]) (apply-k return^^ v^))]
;[(constructor-zero return^) (apply-k return^ (zero? v))]
[(constructor-zero return^) (let* ([return^^ return^] [v^ (zero? v)]) (apply-k return^^ v^))]
;[(constructor-if conseq alt env return^) (if v (value-of-cps conseq env return^) (value-of-cps alt env return^))]
[(constructor-if conseq alt env return^) (if v (let* ([conseq^ conseq] [env^ env] [return^^ return^])
(value-of-cps conseq^ env^ return^^))
(let* ([alt^ alt] [env^^ env] [return^^^ return^])
(value-of-cps alt^ env^^ return^^^)))]
;[(constructor-let body env return^) (value-of-cps body (envr_extend-env v env) return^)]
[(constructor-let body env return^) (let* ([body^ body] [env^ (envr_extend-env v env)] [return^^ return^]) (value-of-cps body^ env^ return^^))]
;[(inner-throw-k e1) (apply-k e1 v)]
[(inner-throw-k e1) (let* ([return e1] [v^ v]) (apply-k return v^))]
;[(outer-throw-k e0 env) (value-of-cps e0 env (kt_inner-throw-k v))]
[(outer-throw-k e0 env) (let* ([e0^ e0] [env^ env] [return (kt_inner-throw-k v)])(value-of-cps e0^ env^ return))]
;[(inner-app-k v^ return^) (apply-closure v^ v return^)]
[(inner-app-k v^ return^) (let* ([clos v^] [v^^ v] [return^^ return^]) (apply-closure clos v^^ return^^))]
;[(outer-app-k rand env return^) (value-of-cps rand env (kt_inner-app-k v return^))])))
[(outer-app-k rand env return^) (let* ([rand^ rand] [env^ env] [return^^ (kt_inner-app-k v return^)]) (value-of-cps rand^ env^ return^^))])))
(define main
(lambda ()
(value-of-cps
(expr_let
(expr_lambda
(expr_lambda
(expr_if
(expr_zero (expr_var 0))
(expr_const 1)
(expr_mult (expr_var 0) (expr_app (expr_app (expr_var 1) (expr_var 1)) (expr_sub1 (expr_var 0)))))))
(expr_mult
(expr_letcc
(expr_app
(expr_app (expr_var 1) (expr_var 1))
(expr_throw (expr_var 0) (expr_app (expr_app (expr_var 1) (expr_var 1)) (expr_const 4)))))
(expr_const 5)))
(envr_empty-env)
(kt_empty-k))))
| false |
967b90ce9522f47692a153168c15998eb7cf0f91 | dfc97ebacfcdb87b730cc985df48c4e938972750 | /03-seeing-old-friends-in-new-ways.rkt | 520f8a2e8e81d043c5a7de6966d5ca5ab69dab62 | []
| no_license | rodnaph/the-reasoned-schemer | 1a7deb805abc4de865329a304f02d5999be755cf | 8c42fc16504e629d7d0d04e9686cbeffcf811344 | refs/heads/master | 2021-01-10T21:01:44.814653 | 2012-06-05T15:12:53 | 2012-06-05T15:12:53 | 4,383,902 | 3 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 3,631 | rkt | 03-seeing-old-friends-in-new-ways.rkt | #lang racket
(require "lib/rs.ss")
; 1
(ans #t
(pair? '((a) (a b) c)))
; 2
(ans #t
(list? '()))
; 3
(ans #f
(list? 's))
; 4
(ans #f
(list? '(d a t e . s)))
; 7
(ans '(_.0)
(run* (x)
(listo (list 'a 'b x 'd))))
; 10
(ans '(())
(run 1 (x)
(listo (cons '(a b c) x))))
; 13
; non-terminating
;(ans '()
; (run* (x)
; (listo (cons '(a b c) x))))
; 14
(ans '(()
(_.0)
(_.0 _.1)
(_.0 _.1 _.2)
(_.0 _.1 _.2 _.3))
(run 5 (x)
(listo (cons '(a b c) x))))
; 20
(ans '(())
(run 1 (l)
(lolo l)))
; 21
(ans '(#t)
(run* (q)
(fresh (x y)
(lolo (list '(a b) (list x 'c) (list 'd y)))
(== #t q))))
; 22
(ans '(#t)
(run 1 (q)
(fresh (x)
(lolo (list '(a b) x))
(== #t q))))
; 23
(ans '(())
(run 1 (x)
(lolo (list '(a b) '(c d) x))))
; 24
; @todo
;(ans '(()
; (())
; (() ())
; (() () ())
; (() () () ()))
; (run 5 (x)
; (lolo (list '(a b) '(c d) x))))
; 32
(ans '(#t)
(run* (q)
(twinso '(tofu tofu))
(== #t q)))
; 33
(ans '(tofu)
(run* (z)
(twinso (list z 'tofu))))
; 38
(ans '(())
(run 1 (z)
(loto (cons '(g g) z))))
; 42
(ans '(()
((_.0 _.0))
((_.0 _.0) (_.1 _.1))
((_.0 _.0) (_.1 _.1) (_.2 _.2))
((_.0 _.0) (_.1 _.1) (_.2 _.2) (_.3 _.3)))
(run 5 (z)
(loto (cons '(g g) z))))
; 45
(ans '((e (_.0 _.0) ())
(e (_.0 _.0) ((_.1 _.1)))
(e (_.0 _.0) ((_.1 _.1) (_.2 _.2)))
(e (_.0 _.0) ((_.1 _.1) (_.2 _.2) (_.3 _.3)))
(e (_.0 _.0) ((_.1 _.1) (_.2 _.2) (_.3 _.3) (_.4 _.4))))
(run 5 (r)
(fresh (w x y z)
(loto (list* '(g g) (list 'e w) (list x y) z))
(== (list w (list x y) z) r))))
; 47
(ans '(((g g) (e e) (_.0 _.0))
((g g) (e e) (_.0 _.0) (_.1 _.1))
((g g) (e e) (_.0 _.0) (_.1 _.1) (_.2 _.2)))
(run 3 (out)
(fresh (w x y z)
(== (list* '(g g) (list 'e w) (list x y) z) out)
(loto out))))
; 53
(ans #t
(member? 'olive '(virgin olive oil)))
; 57
(ans '(#t)
(run* (q)
(membero 'a '(b a))
(== #t q)))
; 58
(ans '(hummus)
(run 1 (y)
(membero y '(hummus with pita))))
; 59
(ans '(with)
(run 1 (y)
(membero y '(with pita))))
; 60
(ans '(pita)
(run 1 (y)
(membero y '(pita))))
; 61
(ans '()
(run* (y)
(membero y '())))
; 62
(ans '(hummus with pita)
(run* (y)
(membero y '(hummus with pita))))
; 65
(ans '(a b c)
(identity '(a b c)))
; 66
(ans '(e)
(run* (x)
(membero 'e (list 'pasta x 'fagioli))))
; 69
(ans '(_.0)
(run 1 (x)
(membero 'e (list 'pasta 'e x 'fagioli))))
; 70
(ans '(e)
(run 1 (x)
(membero 'e (list 'pasta x 'e 'fagioli))))
; 71
(ans '((e _.0) (_.0 e))
(run* (r)
(fresh (x y)
(membero 'e (list 'pasta x 'fagioli y))
(== (list x y) r))))
; 73
(ans '((tofu . _.0))
(run 1 (l)
(membero 'tofu l)))
; 75
; non-termintating
;(ans '()
; (run* (l)
; (membero 'tofu l)))
; 76
(ans '((tofu . _.0)
(_.0 tofu . _.1)
(_.0 _.1 tofu . _.2)
(_.0 _.1 _.2 tofu . _.3)
(_.0 _.1 _.2 _.3 tofu . _.4))
(run 5 (l)
(membero 'tofu l)))
; 80
(ans '((tofu)
(_.0 tofu)
(_.0 _.1 tofu)
(_.0 _.1 _.2 tofu)
(_.0 _.1 _.2 _.3 tofu))
(run 5 (l)
(pmembero 'tofu l)))
; 81
(ans '(#t)
(run* (q)
(pmembero 'tofu '(a b tofu d tofu))
(== #t q)))
; 95
(ans '(pasta)
(first-value '(pasta e fagioli)))
; 100
; @todo - reverse not working
;
;(ans '(fagioli e pasta)
; (run* (x)
; (memberrevo x '(pasta e fagioli))))
;
;; 101
;
;(ans '(c b a)
; (reverse-list '(a b c)))
| false |
6cb7954f38e6a59c8b950687f53c7995d64f9527 | b799840b179368ed5ec0a24032f62699cadb3d5e | /racket/lists.rkt | d811e7c58247277747295118b90241ffe58ecf2b | []
| no_license | anderscui/Programming | 891a34ad65062e61abe1f3dc8d11f10584e49758 | ec48ceb1b07c51ed894ffa23cd88024258a9ec2f | refs/heads/master | 2022-11-08T02:41:47.609547 | 2022-10-27T02:47:10 | 2022-10-27T02:47:10 | 31,781,791 | 0 | 0 | null | 2022-06-29T17:50:58 | 2015-03-06T18:00:21 | HTML | UTF-8 | Racket | false | false | 463 | rkt | lists.rkt | #lang racket
(provide (all-defined-out))
(define (sum xs)
(if (null? xs)
0
(+ (car xs) (sum (cdr xs)))))
(print (sum (list 1 2 3 4 5)))
(newline)
; append
(define (my-append xs ys)
(if (null? xs)
ys
(cons (car xs) (my-append (cdr xs) ys))))
(print (my-append (list 1 2 3) (list 4 5 6)))
(newline)
(define (my-map f xs)
(if (null? xs)
null
(cons (f (car xs)) (my-map f (cdr xs)))))
(print (my-map (lambda (x) (+ x 2)) (list 1 2 3)))
(newline) | false |
67f465ae4d274cf9f8bee4c8ea73e5dc03252e7c | 00f61893609b0ec26859a77f82c5b6408ad668e7 | /messages.rkt | 93fbc51a588a5ef25165d0de1232ee26b360dbcd | []
| no_license | pineapplevendor/crappy-spy-game | 879a22804126e2bad795561d1181433d88b8e109 | 64815820a7c5c313fd4e03d46fa4f00edc7bb1e9 | refs/heads/master | 2020-06-03T18:54:24.985402 | 2019-06-13T04:28:23 | 2019-06-13T04:28:23 | 191,691,039 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,082 | rkt | messages.rkt | #lang racket
(require "rooms.rkt")
(provide display-messages update-messages)
(define rooms-to-messages (make-hash))
(define max-messages 10)
(define (add-message messages new-message)
(cond [ (>= (length messages) max-messages)
(append (take messages (- max-messages 1)) (list new-message))]
[ else (append messages (list new-message))]))
(define (update-messages room-name message)
(define selected-room-id (get-room-id-by-name room-name (get-rooms)))
(hash-set! rooms-to-messages
selected-room-id
(add-message (hash-ref rooms-to-messages selected-room-id '()) message)))
(define (get-messages room-name)
(hash-ref rooms-to-messages (get-room-id-by-name room-name (get-rooms)) '()))
(define (display-messages room-name)
(for-each
(lambda (message idx) (writeln (string-append "message " (number->string idx) ": " message)))
(get-messages room-name)
(reverse (count-down (length (get-messages room-name))))))
(define (count-down n)
(cond [(equal? 0 n) '()]
[else (cons n (count-down (- n 1)))]))
| false |
6ee8ecacf479fabec3e1e29618a9fabd89dfaa83 | 643a6d43def813933299573275686372b2055544 | /hw4/hw4.rkt | 3aee9d4b36ccd290444ceccdca3352270837c9a1 | []
| no_license | SiRumCz/Programming-Language | 7460889d04e64ab053516ef023447505a610f70a | 081b487ef5581090f8027bebee3e317a6b2f4c97 | refs/heads/master | 2020-04-14T06:42:06.744732 | 2018-12-31T20:01:54 | 2018-12-31T20:01:54 | 163,693,443 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,997 | rkt | hw4.rkt | #lang racket
;; CSC330 Fall2018 Assignment 4
;; Zhe(Kevin) Chen
(provide (all-defined-out)) ;; so we can put tests in a second file
;; these definitions are simply for the purpose of being able to run the tests
;; you MUST replace them with your solutions
;;
; 1
(define (sequence low high stride)
(if (< low (+ high 1))
(cons low (sequence (+ low stride) high stride))
null)) ; (+ high 1) means low <= high
; 2
(define (string-append-map xs suffix)
(map (lambda (str) (string-append str suffix)) xs))
; 3
(define (list-nth-mod xs n)
(if (< n 0)
(error "list-nth-mod: negative number")
(if (null? xs)
(error "list-nth-mod: empty list")
(car (list-tail xs (remainder n (length xs))))))) ; i is the remainder produced when dividing n by the list’s length
; 4 stream s and number n
(define (stream-for-n-steps s n)
(letrec ([f (lambda (s n)
(let ([pr (s)])
(if (> 1 n)
null ; if 1 > n (n is less or equal to 0) then output null list, else '(head, f(tail, n-1))
(cons (car pr)(f (cdr pr) (- n 1))))))])
(f s n)))
; 5
(define funny-number-stream
(letrec ([f (lambda (x)
(if (integer? (/ x 5)) ; (= 0 (modulo x 5)) should also works
(cons (- x) (lambda () (f (+ x 1))))
(cons x (lambda () (f (+ x 1))))))])
(lambda () (f 1)))) ; starts with 1
; 6
(define cat-then-dog
(letrec ([f (lambda (name)
(cond [(string=? "cat.jpg" name) (cons name (lambda () (f "dog.jpg")))]
[#t (cons name (lambda () (f "cat.jpg")))]))])
(lambda () (f "cat.jpg")))) ; using string compare
; 7
(define (stream-add-zero s)
(letrec ([f (lambda (s)
(let ([pr (s)])
(lambda() (cons (cons 0 (car pr)) (f (cdr pr))))))]) ; returns a stream
(f s)))
; 8 use (list-nth-mod list n)
(define (cycle-lists xs ys)
(letrec ([f (lambda (n)
(let ([pr (cons (list-nth-mod xs n) (list-nth-mod ys n))])
(lambda() (cons pr (f (+ n 1))))))])
(f 0)))
; 9 Use library functions vector-length, vector-ref, and equal?
(define (vector-assoc v vec)
(letrec ([f (lambda (v vec pos) ; value, vector, current position of pointer
(cond [(> 1 (- (vector-length vec) pos)) #f] ; when it reaches the end of vector, means no match found
[#t
(let ([cur (vector-ref vec pos)])
(cond [(equal? v (car cur)) cur] ; found match, return this match
[#t (f v vec (+ pos 1))]))]))]) ; go through next
(f v vec 0)))
; 10 https://docs.racket-lang.org/reference/vectors.html
(define (cached-assoc xs n)
(letrec ([cache (make-vector n (list 0 #f))] ; The cache starts empty (all elements #f)
[cslot 0] ; cache slots
[f (lambda (x)
(let ([result (vector-assoc x cache)]) ; check the cache
(if result
result ; return this result
(let ([ans (assoc x xs)]) ; use assoc and xs to get the answer
(if ans
(begin
(vector-set! cache cslot ans) ; adds the pair to the cache
(set! cslot (modulo (+ cslot 1) n)) ; increment the cacheslot
ans)
ans)))))])
f))
; 11 macro, your macro can do anything or fail mysteriously otherwise
(define-syntax while-less
(syntax-rules (do) ; do is syntax(keywords)
[(while-less e1 do e2)
(let ([res1 e1]) ; save the result from e1, only eval once
(letrec ([loop (lambda (res2)
(if (>= res2 res1) ; res2 from e2 is no less than res1
#t ; return the result
(begin (loop e2))))])
(loop e2)))]))
| true |
5a44209edb6aa36d5527a584b2938fb790132bc9 | 5de040bc36cb7938ae1383863f670a30fe0f87b4 | /usr/racket-6.1/share/doc/racket/racklog/blueboxes.rktd | 029def247112a13e60c3b3ecc1f88a64698e2b17 | []
| no_license | Kreachers/CS-112 | a53a9b926bc4c7a922ae8de1d891a2cfb97f336b | 5af6a26696614fc2fc3f0c1f09a0d73c2076075b | refs/heads/master | 2020-04-18T10:23:39.836792 | 2019-01-25T01:46:45 | 2019-01-25T01:46:45 | 167,466,313 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,250 | rktd | blueboxes.rktd | 2580
((3) 0 () 1 ((q lib "racklog/main.rkt")) () (h ! (equal) ((c def c (c (? . 0) q %<)) q (1953 . 4)) ((c def c (c (? . 0) q %copy)) q (3587 . 4)) ((c def c (c (? . 0) q %set-of)) q (2627 . 5)) ((c def c (c (? . 0) q %not)) q (1358 . 3)) ((c form c (c (? . 0) q %assert-after!)) q (962 . 5)) ((c def c (c (? . 0) q %compound)) q (3122 . 3)) ((c def c (c (? . 0) q %set-of-1)) q (2731 . 5)) ((c def c (c (? . 0) q %if-then-else)) q (1407 . 5)) ((c def c (c (? . 0) q %>=)) q (2353 . 4)) ((c def c (c (? . 0) q %nonvar)) q (3291 . 3)) ((c def c (c (? . 0) q %>)) q (2274 . 4)) ((c def c (c (? . 0) q answer-value?)) q (340 . 3)) ((c form c (c (? . 0) q %assert!)) q (863 . 5)) ((c def c (c (? . 0) q %melt-new)) q (3505 . 4)) ((c form c (c (? . 0) q %rel)) q (665 . 8)) ((c def c (c (? . 0) q atomic-struct?)) q (56 . 3)) ((c def c (c (? . 0) q use-occurs-check?)) q (1852 . 4)) ((c def c (c (? . 0) q %freeze)) q (3347 . 4)) ((c def c (c (? . 0) q compound-struct?)) q (167 . 3)) ((c def c (c (? . 0) q %/==)) q (1750 . 4)) ((c form c (c (? . 0) q %which)) q (479 . 5)) ((c form c (c (? . 0) q %and)) q (1275 . 4)) ((c def c (c (? . 0) q %==)) q (1670 . 4)) ((c form c (c (? . 0) q %cut-delimiter)) q (1157 . 2)) ((c def c (c (? . 0) q _)) q (1067 . 2)) ((c def c (c (? . 0) q %=)) q (1511 . 4)) ((c def c (c (? . 0) q %<=)) q (2032 . 4)) ((c def c (c (? . 0) q %repeat)) q (1243 . 2)) ((c form c (c (? . 0) q %is)) q (1831 . 2)) ((c def c (c (? . 0) q %melt)) q (3427 . 4)) ((c def c (c (? . 0) q %member)) q (2543 . 4)) ((c def c (c (? . 0) q answer?)) q (399 . 3)) ((c def c (c (? . 0) q compound?)) q (229 . 3)) ((c def c (c (? . 0) q %fail)) q (1197 . 2)) ((c def c (c (? . 0) q %bag-of)) q (2837 . 5)) ((c def c (c (? . 0) q %=:=)) q (2193 . 4)) ((c def c (c (? . 0) q %var)) q (3238 . 3)) ((c def c (c (? . 0) q logic-var?)) q (0 . 3)) ((c def c (c (? . 0) q %=/=)) q (2112 . 4)) ((c def c (c (? . 0) q %empty-rel)) q (799 . 3)) ((c def c (c (? . 0) q %true)) q (1220 . 2)) ((c def c (c (? . 0) q %bag-of-1)) q (2941 . 5)) ((c def c (c (? . 0) q %/=)) q (1590 . 4)) ((c form c (c (? . 0) q %free-vars)) q (3047 . 5)) ((c form c (c (? . 0) q %find-all)) q (586 . 5)) ((c form c (c (? . 0) q %let)) q (1097 . 4)) ((c def c (c (? . 0) q goal/c)) q (452 . 2)) ((c def c (c (? . 0) q %more)) q (555 . 2)) ((c form c (c (? . 0) q !)) q (1188 . 2)) ((c def c (c (? . 0) q unifiable?)) q (284 . 3)) ((c def c (c (? . 0) q %append)) q (2433 . 5)) ((c form c (c (? . 0) q %or)) q (1317 . 4)) ((c def c (c (? . 0) q atom?)) q (116 . 3)) ((c def c (c (? . 0) q %constant)) q (3180 . 3))))
procedure
(logic-var? x) -> boolean?
x : any/c
procedure
(atomic-struct? x) -> boolean?
x : any/c
procedure
(atom? x) -> boolean?
x : any/c
procedure
(compound-struct? x) -> boolean?
x : any/c
procedure
(compound? x) -> boolean?
x : any/c
procedure
(unifiable? x) -> boolean?
x : any/c
procedure
(answer-value? x) -> boolean?
x : any/c
procedure
(answer? x) -> boolean?
x : any/c
value
goal/c : contract?
syntax
(%which (V ...) G ...)
V : identifier?
G : goal/c
procedure
(%more) -> answer?
syntax
(%find-all (V ...) G ...)
V : identifier?
G : goal/c
syntax
(%rel (V ...) clause ...)
clause = [(E ...) G ...]
V : identifier?
E : expression?
G : goal/c
procedure
(%empty-rel E ...) -> goal/c
E : unifiable?
syntax
(%assert! Pname (V ...) clause ...)
Pname : identifier?
V : identifier?
syntax
(%assert-after! Pname (V ...) clause ...)
Pname : identifier?
V : identifier?
procedure
(_) -> logic-var?
syntax
(%let (V ...) expr ...)
V : identifier?
syntax
(%cut-delimiter . any)
syntax
!
value
%fail : goal/c
value
%true : goal/c
procedure
(%repeat) -> goal/c
syntax
(%and G ...)
G : goal/c
syntax
(%or G ...)
G : goal/c
procedure
(%not G) -> goal/c
G : goal/c
procedure
(%if-then-else G1 G2 G3) -> goal/c
G1 : goal/c
G2 : goal/c
G3 : goal/c
procedure
(%= E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%/= E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%== E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%/== E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
syntax
(%is E1 E2)
parameter
(use-occurs-check?) -> boolean?
(use-occurs-check? on?) -> void?
on? : boolean?
procedure
(%< E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%<= E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%=/= E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%=:= E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%> E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%>= E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%append E1 E2 E3) -> goal/c
E1 : unifiable?
E2 : unifiable?
E3 : unifiable?
procedure
(%member E1 E2) -> goal/c
E1 : unifiable?
E2 : unifiable?
procedure
(%set-of E1 G E2) -> goal/c
E1 : unifiable?
G : goal/c
E2 : unifiable?
procedure
(%set-of-1 E1 G E2) -> goal/c
E1 : unifiable?
G : goal/c
E2 : unifiable?
procedure
(%bag-of E1 G E2) -> goal/c
E1 : unifiable?
G : goal/c
E2 : unifiable?
procedure
(%bag-of-1 E1 G E2) -> goal/c
E1 : unifiable?
G : goal/c
E2 : unifiable?
syntax
(%free-vars (V ...) G)
V : identifier?
G : goal/c
procedure
(%compound E) -> goal/c
E : unifiable?
procedure
(%constant E) -> goal/c
E : unifiable?
procedure
(%var E) -> goal/c
E : unifiable?
procedure
(%nonvar E) -> goal/c
E : unifiable?
procedure
(%freeze S F) -> goal/c
S : unifiable?
F : unifiable?
procedure
(%melt F S) -> goal/c
F : unifiable?
S : unifiable?
procedure
(%melt-new F S) -> goal/c
F : unifiable?
S : unifiable?
procedure
(%copy F S) -> goal/c
F : unifiable?
S : unifiable?
| false |
6206d06e399a3c7cae8152515abb371b2c9cd7ca | 3dfe64bf2cb2b852ce61e1157681a562e785b790 | /test/dssl2/quotient-remainder.rkt | d63319bb1cf52e285148a2daf0aa2b30d62cea0a | []
| no_license | stamourv/dssl2 | 54466a1a4432992b16e0e0a4b09e5e7b31a20f41 | f97b4875ef3c737b017a5e636e3a343e59d5e178 | refs/heads/master | 2021-07-01T02:30:02.702516 | 2020-09-08T08:54:59 | 2020-09-08T23:07:31 | 164,521,335 | 0 | 0 | null | 2019-01-08T00:39:03 | 2019-01-08T00:39:03 | null | UTF-8 | Racket | false | false | 53 | rkt | quotient-remainder.rkt | #lang dssl2
assert_eq 10 / 3, 3
assert_eq 10 % 3, 1
| false |
f314689ee4b8982a3f6d444b0e43ff7c5aea6314 | d186400a571bb301032f87645dec82b46d5865ea | /private/tree-mixin.rkt | 633e220e87be40f179c2a2d4e8d40cb471c85f29 | [
"MIT",
"Apache-2.0"
]
| permissive | yjqww6/rkt-tree-widget | 30755119d0dda8698f0e5d217e8e85fce448e0a4 | 0c6e354874f063338cb4549f7d4a0338d6ea6586 | refs/heads/master | 2023-06-27T23:54:00.463080 | 2021-07-31T02:37:32 | 2021-07-31T02:37:32 | 385,673,394 | 3 | 0 | NOASSERTION | 2021-07-31T05:15:39 | 2021-07-13T16:47:11 | Racket | UTF-8 | Racket | false | false | 1,558 | rkt | tree-mixin.rkt | #lang racket/base
(require "interfaces.rkt" "tree-pos-cache.rkt"
racket/class)
(provide (all-defined-out))
(define tree-mixin
(mixin () (tree<%>)
(define cache empty-tree-pos-cache)
(define/public (compute-item-size v)
(values 1 1 0))
(define/public (compute-indent v w h)
w)
(define/public (get-root)
cache)
(define/public (set-root t)
(set! cache t)
(on-positions-changed))
(define/public (on-positions-changed)
(void))
(super-new)))
(define tree-updater%
(class object%
(init-field tree)
(super-new)
(define-syntax-rule (define-op (name t a ... v) op)
(define/public (name t a ... v [expand? #f] [children #f])
(define-values (w h ind) (send tree compute-item-size v))
(op t a ... (λ () (values v w h ind)) expand? (and children (cursor-node children)))))
(define-op (append-item t v) cursor-append-item)
(define-op (prepend-item t v) cursor-prepend-item)
(define-op (insert-item t i v) cursor-insert-item)
(define/public (update-item t i v)
(define-values (w h ind) (send tree compute-item-size v))
(cursor-update-item t i (λ () (values v w h ind))))
(define/public (delete-item t i)
(cursor-delete-item t i))
(define/public (expand-item t b?)
(cursor-expand-item t b?))
(define/public (update-children t u)
(cursor-update-children t u))
(define/public (set-tree t)
(send tree set-root t))
(define/public (empty-tree)
empty-tree-pos-cache)))
| true |
02f45f7b011dc3044de496a6dc0a8bff7e79d15f | ca861ad0a3e092d062bf62d479d7b2b588ac7a7e | /hackett-lib/hackett/private/util/function.rkt | e77c3a8e058a4625afe21858bc2e867411f2e268 | []
| no_license | mattaudesse/hackett | 06d8bc82b5e1038f49836d3b3d51f8015bf3fbc0 | 7ddf45a94b26e90cd8793b585706fc2f6e94c679 | refs/heads/master | 2021-01-12T00:49:26.225120 | 2017-02-08T19:59:44 | 2017-02-08T19:59:44 | 78,302,313 | 0 | 0 | null | 2017-01-07T20:35:42 | 2017-01-07T20:35:42 | null | UTF-8 | Racket | false | false | 220 | rkt | function.rkt | #lang racket/base
(provide ~> and~>)
(define (~> x . fs)
((apply compose1 (reverse fs)) x))
(define (and~> x . fs)
(define ((apply-and f) v)
(and v (f v)))
((apply compose1 (map apply-and (reverse fs))) x))
| false |
fd1a36edbaf256c5259e2793abb59d22f9a7f772 | 02d041879fc375e02464e7c85b6a458a592b4073 | /reconstruct-template/util/stx-equal.rkt | 1e12e60ddc868578c5331814f928dc5b4a7671d2 | [
"MIT"
]
| permissive | AlexKnauth/reconstruct-template | d7f2b42c59ddeb90c59e4a01260eb9353e31d128 | 2d055080bdbd0e59bcbe4d4ed644565135a1d80e | refs/heads/main | 2022-01-16T12:48:56.930971 | 2022-01-07T14:39:26 | 2022-01-07T14:39:26 | 162,502,143 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,261 | rkt | stx-equal.rkt | #lang racket/base
(provide stx=?
stx-scopes=?
stx-srcloc=?
stx-props=?)
;; Any Any -> Bool
;; Checks that scopes, source-locations, and properties
;; are all exactly the same.
(define (stx=? a b)
(cond
[(and (identifier? a) (identifier? b))
(and (bound-identifier=? a b)
(stx-srcloc=? a b)
(stx-props=? a b))]
[(and (syntax? a) (syntax? b))
(and (stx-scopes=? a b)
(stx-srcloc=? a b)
(stx-props=? a b)
(stx=? (syntax-e a) (syntax-e b)))]
[else
(equal?/recur a b stx=?)]))
;; Syntax Syntax -> Bool
(define (stx-scopes=? a b)
(bound-identifier=? (datum->syntax a '||) (datum->syntax b '||)))
;; Syntax Syntax -> Bool
(define (stx-srcloc=? a b)
(and (equal? (syntax-source a) (syntax-source b))
(equal? (syntax-line a) (syntax-line b))
(equal? (syntax-column a) (syntax-column b))
(equal? (syntax-position a) (syntax-position b))
(equal? (syntax-span a) (syntax-span b))))
;; Syntax Syntax -> Bool
(define (stx-props=? a b)
(define ks (syntax-property-symbol-keys a))
(and (equal? ks (syntax-property-symbol-keys b))
(for/and ([k (in-list ks)])
(stx=? (syntax-property a k) (syntax-property b k)))))
| false |
643b2694928d9d8f2961c1c576dc1972f9b1d4b1 | 5162661b8ec358d1ac289956c3a23acfe9796c65 | /begin.rkt | 535f4dca46a42b4798363a216aa1563242757ebc | [
"ISC"
]
| permissive | aymanosman/riposte | 5e7457f48bbfe594f3b25d8af2a7eef77597f231 | 84e5975e9364703bff0b330438de59a30f8b5382 | refs/heads/master | 2020-05-07T08:43:34.057133 | 2019-04-09T10:33:30 | 2019-04-09T10:33:30 | 180,343,436 | 0 | 0 | null | 2019-04-09T10:32:48 | 2019-04-09T10:32:48 | null | UTF-8 | Racket | false | false | 930 | rkt | begin.rkt | #lang racket/base
(provide block-expression?
make-block-expression)
(require racket/class
racket/contract
(file "expression.rkt")
(file "step.rkt")
(file "environment.rkt"))
(define block-expression%
(class expression%
(super-new)
(init-field steps)
(define/override (evaluate env)
(define/contract (f step env)
(step? environment? . -> . environment?)
(send step evaluate env))
(foldl f
env
steps))
(define/override (render)
(apply string-append
(map (lambda (step)
(format "~a~%" (send step render)))
steps)))))
(define (block-expression? x)
(and (object? x)
(is-a? x block-expression%)))
(define/contract (make-block-expression block-steps)
((listof step?) . -> . block-expression?)
(new block-expression%
[steps block-steps]))
| false |
f8df6041fae83c7ddc92d8f3654d55574d953f83 | 2ef7de9dc3eef1ecfa531f4ce8068e2e4d86461a | /examples-esop2013/nqueens-lazy-proper.rkt | b5bcd920b3f78cbc22471c6382e0fc3d899f73d4 | []
| no_license | stchang/lazyinf-tool | 4f75426402165eaff2a09798f2e0ced979c05918 | b2432ed92ed84fc22808165b6cf1eeaf4b9ea855 | refs/heads/master | 2021-01-19T07:03:17.443659 | 2014-04-30T23:16:15 | 2014-04-30T23:16:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,140 | rkt | nqueens-lazy-proper.rkt | #lang racket
(require htdp/show-queen)
(require (only-in racket [null? r:null?]))
;; n-queens, in generate-and-filter style, with lazy lists + lazy foldr
;; - syntax is from esop2013 paper:
;; - lcons for lists
;; - cons for pairs
;; - first/rest instead of car/cdr
;; - semantics:
;; - use Racket car/cdr bc first/rest don't work with improper lists
;; - first, rest, null? implicitly forced
;; - result is displayed using htdp show-queen library
;; DIRECTIONS: just run
;; (should be much faster than nqueens-strict.rkt or nqueens-lazy-naive.rkt)
;; (~5s on i7-2600k machine, compiled and run on cmd line)
(define-syntax-rule (first x) (car (force x)))
(define-syntax-rule (rest x) (cdr (force x)))
(define-syntax-rule (null? x) (r:null? (force x)))
(define-syntax-rule (lcons x y) (cons x (lazy y)))
(define (add1 x) (+ x 1))
(define (build-list-help n f m)
(if (= n m)
null
(lcons (f m) (build-list-help n f (add1 m)))))
(define (build-list n f) (build-list-help n f 0))
(define (filter p? lst)
(if (null? lst)
null
(let ([head (first lst)])
(if (p? head)
(lcons head (filter p? (rest lst)))
(filter p? (rest lst))))))
(define (foldl f acc lst)
(if (null? lst)
acc
(foldl f (f (first lst) acc) (rest lst))))
(define (andmap f lst)
(if (null? lst)
true
(and (f (first lst)) (andmap f (rest lst)))))
(define (append lst1 lst2)
(if (null? lst1)
lst2
(lcons (first lst1) (append (rest lst1) lst2))))
(define (!= x y) (not (= x y)))
(define (abs- x y) (if (< x y) (- y x) (- x y)))
(define (safe? q1 q2)
(and (and (!= (first q1) (first q2))
(!= (rest q1) (rest q2)))
(!= (abs- (first q1) (first q2)) (abs- (rest q1) (rest q2)))))
(define (tails lst)
(if (null? lst)
(lcons null null)
(lcons lst (tails (rest lst)))))
(define (map f lst)
(if (null? lst)
null
(lcons (f (first lst)) (map f (rest lst)))))
(define (foldr f base lst)
(if (null? lst)
base
(f (first lst) (lazy (foldr f base (rest lst))))))
(define (nqueens n)
(let ([qu
(λ (i qss)
(foldr
(λ (qs acc)
(append (map (λ (k) (lcons (cons i k) qs))
(build-list n add1))
acc))
null qss))]
[ok?
(λ (lst)
(if (null? lst)
true
(andmap (λ (q) (safe? (first lst) q)) (rest lst))))])
(let ([all-possible-solns
(foldl qu (lcons null null) (build-list n add1))]
[valid?
(λ (lst) (andmap ok? (tails lst)))])
(first (filter valid? all-possible-solns)))))
(define (force-list lst)
(if (null? lst)
null
(cons (first lst) (force-list (rest lst)))))
(define (show-queens res)
(define resf (force-list res))
(define n (length resf))
(show-queen
(for/list ([i n])
(for/list ([j n])
(if (member (cons (add1 i) (add1 j)) resf)
#t #;(printf "Q ")
#f #;(printf "· ")))
#;(printf "\n"))))
(show-queens (time (nqueens 8)))
| true |
de26b17c34051588df827a311a6df47d9731cb13 | 2bb711eecf3d1844eb209c39e71dea21c9c13f5c | /test/unbound/mochi/r-file.rkt | 401ab633dd506921a3223447c5c5c25500963066 | [
"BSD-2-Clause"
]
| permissive | dvvrd/rosette | 861b0c4d1430a02ffe26c6db63fd45c3be4f04ba | 82468bf97d65bde9795d82599e89b516819a648a | refs/heads/master | 2021-01-11T12:26:01.125551 | 2017-01-25T22:24:27 | 2017-01-25T22:24:37 | 76,679,540 | 2 | 0 | null | 2016-12-16T19:23:08 | 2016-12-16T19:23:07 | null | UTF-8 | Racket | false | false | 911 | rkt | r-file.rkt | #lang rosette/unbound
(dbg-level 0)
(define-symbolic b2 b3 integer?)
(define/unbound (loop x) (~> integer? integer?)
(loop x))
(define init 0)
(define opened 1)
(define closed 2)
(define ignore 3)
(define (readit st)
(cond
[(= st opened) opened]
[(= st ignore) st]
[else (assert false)]))
(define (read_ x st)
(if x (readit st) st))
(define (closeit st)
(cond
[(= st opened) closed]
[(= st ignore) st]
[else (loop) 0]))
(define (close_ x st)
(if x (closeit st) st))
(define/unbound (f x y st) (~> boolean? boolean? integer? integer?)
(close_ y (close_ x st))
(f x y (read_ y (read_ x st)))
1)
(define (next st)
(if (= st init) opened ignore))
(define (g b3 x st)
(if (> b3 0)
(f x #t (next st))
(f x #f st)))
; Expecting unsat
(time
(verify/unbound
(assert
(positive?
(if (> b2 0)
(g b3 #t opened)
(g b3 #f init))))))
| false |
57ef92a9a4bf6474f94df6c983bd9cd1cb9c5788 | 8a316e0c796b3f58816078325bf7dc87801e958f | /cap/lang/language-info.rkt | c65176cf9935ab8e771958f6b229b0294728f704 | []
| no_license | ezig/shilldb | 92f017b8e22f9ca8ad6f55f22330b98e89ac14fd | 1bb20f53b762254296a8f5343e11a185a6897eb3 | refs/heads/master | 2021-09-16T14:02:37.436455 | 2018-06-21T15:59:12 | 2018-06-21T15:59:12 | 72,788,098 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 138 | rkt | language-info.rkt | #lang racket
(provide get-language-info)
(define (get-language-info data)
(lambda (key default)
(case key
[else default]))) | false |
75f9e62d6d396d0f62cb7eddea4eac2fe4c9ff6a | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-test/fail/polymorphic-recursion.rkt | 997571a11f2ab57eecf6939b988b2e63b25164c3 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/typed-racket | 2cde60da289399d74e945b8f86fbda662520e1ef | f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554 | refs/heads/master | 2023-09-01T23:26:03.765739 | 2023-08-09T01:22:36 | 2023-08-09T01:22:36 | 27,412,259 | 571 | 131 | NOASSERTION | 2023-08-09T01:22:41 | 2014-12-02T03:00:29 | Racket | UTF-8 | Racket | false | false | 1,109 | rkt | polymorphic-recursion.rkt | #;
(exn-pred #rx"cannot be applied at a different type")
#lang typed/racket
;; Example from Wikipedia
;; http://en.wikipedia.org/w/index.php?title=Polymorphic_recursion&oldid=543854337
;; Note that the following code does not work, but some
;; of it could work if polymorphic recursion were implemented
;; in the future.
;;
;; Right now the type definition of Nested should throw a static error
(struct: (A B) :<: ([left : A] [right : B])
#:transparent)
(struct: ε ())
;; Note that this type uses polymorphic recursion
(define-type (Nested A)
(U (:<: A (Nested (Listof A))) ε))
(: nested (Nested Integer))
(define nested
(:<: 1 (:<: (list 2 3 4) (:<: (list (list 4 5) (list 7) (list 8 9)) (ε)))))
;; inference loops forever for this one...
(: nested-length (All (A) ((Nested A) -> Integer)))
(define (nested-length n)
(if (ε? n)
0
;; explicit instantiation needed
(add1 ((inst nested-length (Listof A)) (:<:-right n)))))
;; Test subtyping with polymorphic recursion
(: nested2 (Nested Number))
(define nested2 nested)
(provide nested nested-length :<: Nested ε)
| false |
3bc9a6b36f48f121f7dcfbbad9dd4b535c3e603f | 10b9611a25668507c6207f529d221459ee34ea50 | /expander.rkt | 7d802103ba9b4480133f11f0b5d960787dfc06fd | []
| no_license | jjsimpso/magic | b9090d363442f382d8bf21a309e73facad17c74d | d1751718be07d22589acdceb8f15f8c892ebb3f8 | refs/heads/master | 2022-04-28T15:27:20.660268 | 2022-03-13T03:40:34 | 2022-03-13T03:40:34 | 199,348,299 | 7 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 11,511 | rkt | expander.rkt | #lang racket/base
;;Copyright 2019 Jonathan Simpson
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
(provide #%top #%top-interaction #%datum #%app)
(require racket/port)
(require racket/string)
(require racket/stxparam)
(require "magic-functions.rkt")
(require "expander-utils.rkt")
(require "output.rkt")
(require (for-syntax racket/base syntax/stx syntax/parse racket/syntax))
(require (for-syntax "expander-utils.rkt" "magic-functions.rkt" "output.rkt"))
(define-syntax-parameter name-offset
(lambda (stx)
#'0))
(define-syntax-parameter top-level-base-offset
(lambda (stx)
#'0))
(define-syntax (line stx)
(syntax-parse stx
#:datum-literals (line offset reloffset relindoff type test message)
[(line (offset off) (type (_ "use")) (test (_ magic-name)))
#'(magic-name (use-offset off))]
[(line (offset off) (type (_ "indirect" (~optional flag:string))) (test test-expr) (~optional (message msg)))
#;(let ([expanded-offset (local-expand #'(offset off) 'expression '())])
(with-syntax ([base-offset (lambda (stx) #`#,expanded-offset)])
#'(syntax-parameterize ([name-offset base-offset])
(print-info "indirect with offset = 0x~a~n" (number->string name-offset 16))
(magic-query-thunk))))
#'(printf "(insert indirect results here) ")]
[(line (offset off) (type type-expr) (test test-expr))
(syntax-protect #'(magic-test (offset off) (type (quote type-expr) (quote test-expr)) (compare (quote test-expr) (quote type-expr))))]
[(line (offset off) (type type-expr) (test test-expr) (message msg))
(syntax-protect #'(magic-test (offset off) (type (quote type-expr) (quote test-expr)) (compare (quote test-expr) (quote type-expr)) msg))]
[(_) #'"no clause found in line"]))
(define-syntax (clear-line stx)
(syntax-parse stx
#:datum-literals (clear-line offset)
[(clear-line (offset off) "clear" (test test-expr))
#'(test-passed-at-level #f)]
[(clear-line (offset off) "clear")
#'(test-passed-at-level #f)]))
;; in named queries, absolute offsets are relative to the argument of the query.
;; so add that offset here, which will be zero for regular queries.
;; for relative offsets in named queries, the last-level-offset will have already taken
;; the name-offset into account(still need to verify relative offsets in named queries).
(define-syntax (offset stx)
(syntax-parse stx
#:datum-literals (indoff reloffset relindoff)
[(_ off:exact-nonnegative-integer)
#'(+ name-offset off)]
;; negative absolute offsets are an offset from the end of the file
;; assume we should ignore the name offset
[(_ off:integer)
#'(offset-from-eof off)]
;; indirect offset
[(_ (indoff off:integer (~optional size-expr:expr) (~optional (~seq op-expr disp-expr))))
#'(indoff (+ name-offset off) (~? size-expr) (~? op-expr) (~? disp-expr))]
;; indirect relative offset
[(_ (indoff (reloffset off:integer) (~optional size-expr:expr) (~optional (~seq op-expr disp-expr))))
#'(indoff (reloffset off) (~? size-expr) (~? op-expr) (~? disp-expr))]
;; relative offset
[(_ (reloffset off:integer))
#'(reloffset off)]
;; relative indirect offset
[(_ (relindoff off:expr))
; still need to test this in a named query
#'(reloffset (offset off))]))
;; This macro is used as a replacement for the standard offset macro in 'use' lines.
;; file says that use will "recursively call the named magic starting from the current offset."
;; This is somewhat vague. Experimentation shows that indirect offsets(indoff) need to be
;; handled diffently on 'use' lines. In named queries indirect offsets appear to be relative to
;; the offset passed to the query by its use call. Outside of a name, indirect offsets seem
;; to be relative to the base offset of the offset at the top level of the query(i.e. the
;; first line of the query). This is my current implementation until I find magic that
;; contradicts it.
;;
;; Only saving this base offset for use calls at the top level fixes the RAR magic. The previous
;; version fixed the zip magic(see debugtest.rkt). jpeg magic also requires that the name-offset
;; be added to result of the read. This version is also much cleaner than the previous version
;; using a parameter to save the offset at each level.
;;
;; --- start description of first implementation
;; file is either doing something subtle with indirect offsets or it treats use differently
;; than the other tests. in the case of indirect offsets we need to add the name-offset to
;; both the location to read from and the resulting offset. but only for use lines. this
;; change breaks other types of tests. this problem was found when i incorporated the
;; jpeg magic from file.
;; --- end description of first implementation
;;
;; btw, according to the man page, indirect offsets in names are always relative to
;; the start of the file and ignore the name's offset, unlike absolute offsets which are
;; adjusted by the name's offset. the wording isn't precise but this appears to be wrong.
;; indirect offsets are definitely read from a location relative to the name's offset. and
;; in the case of use the name's offset is also applied to the result.
(define-syntax (use-offset stx)
(syntax-parse stx
#:datum-literals (indoff)
;; indirect offset
[(_ (indoff off:integer (~optional size-expr:expr) (~optional (~seq op-expr disp-expr))))
#'(begin
(+ (indoff (+ top-level-base-offset off) (~? size-expr) (~? op-expr) (~? disp-expr))
name-offset))]
[(_ expr ...)
#'(offset expr ...)]))
(define-syntax-rule (reloffset off)
(+ last-level-offset off))
(define-syntax (size stx)
(syntax-parse stx
#:datum-literals (byte leshort lelong beshort belong)
[(_ (byte ".b")) #'(lambda () (read-byt #t))]
[(_ (byte ".B")) #'(lambda () (read-byt #t))]
[(_ (byte ".c")) #'(lambda () (read-byt #t))]
[(_ (byte ".C")) #'(lambda () (read-byt #t))]
[(_ (leshort ".s")) #'(lambda () (read-leshort #t))]
[(_ (beshort ".S")) #'(lambda () (read-beshort #t))]
[(_ (lelong ".l")) #'(lambda () (read-lelong #t))]
[(_ (belong ".L")) #'(lambda () (read-belong #t))]
[(_ (ubyte ",b")) #'read-byt]
[(_ (ubyte ",B")) #'read-byt]
[(_ (ubyte ",c")) #'read-byt]
[(_ (ubyte ",C")) #'read-byt]
[(_ (uleshort ",s")) #'read-leshort]
[(_ (ubeshort ",S")) #'read-beshort]
[(_ (ulelong ",l")) #'read-lelong]
[(_ (ubelong ",L")) #'read-belong]
))
(define-syntax (op stx)
(syntax-parse stx
[(_ "*") #'*]
[(_ "+") #'+]
[(_ "-") #'-]
[(_ "/") #'/]
[(_ "%") #'remainder]
[(_ "&") #'bitwise-and]
[(_ "|") #'bitwise-ior]
[(_ "^") #'bitwise-xor]
))
(define-syntax (disp stx)
(syntax-parse stx
[(_ val:integer) #'val]
[(_ (memvalue val:integer))
#'(lambda (read-func base-offset)
(file-position (current-input-port) (+ base-offset val))
(read-func))]))
;(error (format "line ~a: memvalue not implemented" (syntax-line stx)))]))
;; a query will return either a magic-result struct or #f.
;; #f indicates either no lines in the query matched or
;; there was a match but it didn't result in any output.
(define-syntax (query stx)
(syntax-parse stx
[(_ ln expr ...)
#:with off
(syntax-parse #'ln
#:datum-literals (line offset)
[(line (offset off) e ...) #'(offset off)])
#'(let ([result
(with-output-to-string
(lambda ()
(let ([tmp-offset off])
(syntax-parameterize ([top-level-base-offset (make-rename-transformer #'tmp-offset)])
(parse-level0 ln expr ...)))))])
(if (non-empty-string? result)
(magic-result result 0 "" "")
#f))]))
(define-for-syntax always-true-line '(line (offset 0) (type (numeric "byte")) (test (truetest "x"))))
(define-syntax (named-query stx)
(syntax-parse stx
[(_ (name-line (_ 0) (_ "name") magic-name))
(with-syntax ([^magic-name (format-id stx "^~a" (syntax-e #'magic-name))])
#'(begin
(define magic-name
(lambda (new-offset) (void)))
(define ^magic-name
(lambda (new-offset) (void)))))]
[(_ (name-line (_ 0) (_ "name") magic-name (~optional msg-expr)) . rst)
#:with first-line #`(#,@always-true-line (~? msg-expr))
(with-syntax ([^magic-name (format-id stx "^~a" (syntax-e #'magic-name))]
[modified-rst (cons #'first-line #'rst)])
#`(begin
(define magic-name
(lambda (new-offset)
(syntax-parameterize ([name-offset (make-rename-transformer #'new-offset)]
[top-level-base-offset (make-rename-transformer #'new-offset)])
(print-info "~a offset = 0x~a~n" magic-name (number->string name-offset 16))
(parse-level0 . modified-rst))))
(define ^magic-name
(lambda (new-offset)
(syntax-parameterize ([name-offset (make-rename-transformer #'new-offset)]
[top-level-base-offset (make-rename-transformer #'new-offset)])
(print-info "~a offset = 0x~a~n" ^magic-name (number->string name-offset 16))
(parse-level0 #,@(reverse-endianness #'modified-rst)))))))]))
(struct magic-result
(output-text
strength
mime-type
ext)
#:prefab)
(define (replace-query-empty-string-w-false result)
(if (equal? result #s(magic-result "" 0 "" ""))
#f
result))
;;
(define-syntax (wrap-queries-for-run-all stx)
(syntax-parse stx
[(_ (qry ...))
#'(filter struct?
(list (replace-query-empty-string-w-false qry) ...))]
[_ (error "wrap-queries format error")]))
;; use this module-begin to measure parser performance
#;(define-syntax (magic-module-begin stx)
#'42)
(define-syntax (magic-module-begin stx)
(define (query? expr)
(if (and (pair? expr)
(equal? (car expr) 'query))
#t
#f))
(define (named-query? expr)
(if (and (pair? expr)
(equal? (car expr) 'named-query))
#t
#f))
(let ([exprs (cdadr (syntax->datum stx))])
;(display queries)
(let ([queries (filter query? exprs)]
[named-queries (filter named-query? exprs)])
#`(#%module-begin
#,@named-queries
(define (magic-query)
(or #,@queries))
(define (magic-query-run-all)
(wrap-queries-for-run-all #,queries))
(provide (struct-out magic-result) magic-query magic-query-run-all)))))
(provide
(except-out (all-from-out racket/base) #%module-begin)
(rename-out [magic-module-begin #%module-begin])
(all-from-out "magic-functions.rkt" racket/port)
(struct-out magic-result) query line clear-line offset reloffset size op disp begin-level when*)
| true |
700a1887f877969a0ecdb591743646df2d825efd | f2623a70b62884376764530fc395d6b6ace5123e | /collection.scrbl | 998a890f9457e9a475a2ae743a76660956498890 | [
"Apache-2.0"
]
| permissive | namjae/rebellion | cb88d81d384ec53a6d8e2f8255231c2e7454db9d | fb9611c0087ef5a72b894436259a4be73b693f1e | refs/heads/master | 2023-05-11T07:35:08.740389 | 2021-05-27T00:44:28 | 2021-05-27T00:44:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,592 | scrbl | collection.scrbl | #lang scribble/manual
@(require (for-label rebellion/collection)
(submod rebellion/private/scribble-cross-document-tech doc))
@title[#:style (list 'toc)]{Collections}
@defmodule[rebellion/collection]
Rebellion provides several different types of collections. A @deftech{
collection} is a container for values, like a @tech/reference{list} or a
@tech/reference{hash table}. Different types of collections have different
properties, for example @tech/reference{sets} are unordered and have no
duplicate elements. For advice on how to choose the right collection type, see
@secref["choosing-collections"].
@local-table-of-contents[]
@include-section[(lib "rebellion/collection/choosing-collections.scrbl")]
@include-section[(lib "rebellion/collection/entry.scrbl")]
@include-section[(lib "rebellion/collection/list.scrbl")]
@include-section[(lib "rebellion/collection/vector.scrbl")]
@include-section[(lib "rebellion/collection/vector/builder.scrbl")]
@include-section[(lib "rebellion/collection/immutable-vector.scrbl")]
@include-section[(lib "rebellion/collection/set.scrbl")]
@include-section[(lib "rebellion/collection/hash.scrbl")]
@include-section[(lib "rebellion/collection/multiset.scrbl")]
@include-section[(lib "rebellion/collection/multidict.scrbl")]
@include-section[(lib "rebellion/collection/association-list.scrbl")]
@include-section[(lib "rebellion/collection/range-set.scrbl")]
@include-section[(lib "rebellion/collection/keyset.scrbl")]
@include-section[(lib "rebellion/collection/record.scrbl")]
@include-section[(lib "rebellion/collection/table.scrbl")]
| false |
d5d6e08ce8b5830a0043d9543d4aa62da7b045c0 | 80d084444b9512b231abd28454b01fc2c127e6cf | /thesis-test-examples/real-example/afonso-proj.rkt | d2ad176aedd8e2d40e72f92223572435c6284879 | []
| no_license | guilhemferr/thesis | 9d851779ff0be374518bcd3d92db1b9e18071cf6 | 9b9b50b5258947f4fe673ef8f24c0b3a4a67395b | refs/heads/master | 2022-05-01T12:52:31.086551 | 2019-09-18T14:10:19 | 2019-09-18T14:15:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 22,217 | rkt | afonso-proj.rkt | #lang racket
#|
==ADVANCED DIGITAL FABRICATION==
=DIGITAL AND PARAMETRIC DESIGN USING RACKET=
Advanced Studies Program
Computation Applied to Architecture, Urban Planning and Design
University of Lisbon - Faculty of Architecture
2013/2014
Afonso Gonçalves
20130528
|#
(require (planet aml/rosetta))
(backend rhino5)
(erase-2d-top)
;;========================================================================| AUXILIARY FUNCTIONS |==
(define (transpose-matrix matrix) ;calculates the transpose matrix of a given matrix
(if (null? (car matrix))
(list)
(cons (map car matrix)
(transpose-matrix (map cdr matrix)))))
(define (midpoint p0 p1) ;calculates the midpoint between two other points
(xy (/ (+ (cx p0) (cx p1)) 2.0)
(/ (+ (cy p0) (cy p1)) 2.0)))
(define (pts-average p0 p1)
(/c (+c p0 p1) 2))
(define (between-pts p0 p1 a) ;evaluates a distance between p0 (a=0) and p1 (a=1)
(xyz (+ (cx p0) (* a (- (cx p1) (cx p0))))
(+ (cy p0) (* a (- (cy p1) (cy p0))))
(+ (cz p0) (* a (- (cz p1) (cz p0))))))
(define (normal pt0 pt1 pt2 pt3) ;Computes the face normal of a quadrangle
(let ((c (quad-center pt0 pt1 pt2 pt3))
(n (quad-normal pt0 pt1 pt2 pt3))
(d (distance pt0 pt2)))
(cylinder c
(/ d 40)
(+c c (*c n (* d 0.5))))))
(define (radians<-degrees angle) ;converts degrees to radians
(/ (* 180 angle) pi))
(define (dot-product u v) ;computes the dot product (or scalar product) between two vectors
(+ (* (cx u) (cx v))
(* (cy u) (cy v))
(* (cz u) (cz v))))
(define (angle-vectors u v) ;measures the angle between two vectors
(radians<-degrees
(acos
(/ (dot-product u v)
(* (sqrt (+ (sqr (cx u)) (sqr (cy u)) (sqr (cz u))))
(sqrt (+ (sqr (cx v)) (sqr (cy v)) (sqr (cz v)))))))))
(define (ptf p0 p1 f)
(+c p0 (*c (-c p1 p0) f)))
(define (perpendicular-vector vector) ;computes a vector perpendicular to a given one
(xy
(* -1 (cy vector))
(cx vector)))
(define (verify-normal pt0 pt1 pt2 pt3) ;verifies the normals of a quad-iterated surface by drawing a line orientated along the surface normal
(let ((c (quad-center pt0 pt1 pt2 pt3))
(n (quad-normal pt0 pt1 pt2 pt3))
(d (distance pt0 pt2)))
(line c (+c c (*c n (* d 1.5))))))
(define (vector-ab pta ptb) ;calculates the vector between two points
(xyz (- (cx pta) (cx ptb))
(- (cy pta) (cy ptb))
(- (cz pta) (cz ptb))))
;;========================================================================| PARAMETRIC SURFACES |==
;;CONIC SPIRAL
(define (conic-spiral p a b c n1 u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(+ (* a (- 1 (/ v 2pi)) (cos (* n1 v)) (+ 1 (cos u))) (* c (cos (* n1 v))))
(+ (* a (- 1 (/ v 2pi)) (sin (* n1 v)) (+ 1 (cos u))) (* c (sin (* n1 v))))
(/ (+
(* b v) (* a (- 1 (/ v 2pi)) (sin u))) 2pi)))
u0 u1 n
v0 v1 m))
;;CROSS-CAP
(define (cross-cap p u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(* (cos u) (sin (* 2 v)))
(* (sin u) (sin (* 2 v)))
(- (* (cos v) (cos v)) (* (sqr (cos u)) (sqr (sin v))))))
u0 u1 n
v0 v1 m))
;;DINI
(define (dini p a u0 u1 m v0 v1 n)
(map-division
(lambda (u v)
(+xyz p
(* (cos u) (sin v))
(* (sin u) (sin v))
(+ (cos v) (log (tan (/ v 2.0))) (* a u))))
u0 u1 m
v0 v1 n))
;;ELLIPSOID
(define (ellipsoid p a b c u0 u1 m v0 v1 n)
(map-division
(lambda (u v)
(+xyz p
(* a (cos u) (sin v))
(* b (sin u) (sin v))
(* c (cos v))))
u0 u1 m
v0 v1 n))
;;ENNEPER'S SURFACE
(define (enneper1 p u0 u1 m v0 v1 n)
(map-division
(lambda (u v)
(+xyz p
(+ (- u (/ (expt u 3) 3) (* u (sqr v))))
(+ (- v (/ (expt v 3) 3) (* v (sqr u))))
(- (sqr u) (sqr v))))
u0 u1 m
v0 v1 n))
(define (enneper2 p u0 u1 m v0 v1 n)
(map-division
(lambda (u v)
(+xyz p
(/ (* u (/ (- 1 (expt u 2)) (+ 3 (expt v 2)))) 3)
(/ (* (- v) (/ (- 1 (expt v 2)) (+ 3 (expt u 2)))) 3)
(/ (- (expt u 2) (expt v 2)) 3)))
u0 u1 m
v0 v1 n))
;;FIGURE 8 KLEIN BOTTLE
(define (fig8-klein-bottle p a u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(* (cos u) (- (+ a (* (sin v) (cos (/ u 2.0)))) (/ (* (sin (* 2 v)) (sin (/ u 2.0))) 2.0)))
(* (sin u) (- (+ a (* (sin v) (cos (/ u 2.0)))) (/ (* (sin (* 2 v)) (sin (/ u 2.0))) 2.0)))
(+ (* (sin (/ u 2.0)) (sin v)) (/ (* (cos (/ u 2.0)) (sin (* 2 v))) 2.0))))
u0 u1 m
v0 v1 n))
;;MOBIUS STRIP
(define (mobius-strip1 p a u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(- a (* v (sin (/ u 2.0))) (sin u))
(- a (* v (sin (/ u 2.0))) (cos u))
(* v (cos (/ u 2.0)))))
u0 u1 m
v0 v1 n))
(define (mobius-strip2 p a u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+cyl p
(+ 1 (* v (cos (/ u 2.0))))
u
(* v (sin (/ u 2.0)))))
u0 u1 m
v0 v1 n))
;;STEINER'S ROMAN SURFACE
(define (steiner-roman-surface p a u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(/ (* (sqr a) (sqr (cos v)) (sin (* 2 u))) 2.0)
(/ (* (sqr a) (sin u) (sin (* 2 v))) 2.0)
(/ (* (sqr a) (cos u) (sin (* 2 v))) 2.0)))
u0 u1 m
v0 v1 n))
;;SUPER ELLIPSOID
(define (super-ellipsoid p a b c n1 n2 u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(* a (expt (sin v) n1) (* v (expt (cos u) n2)))
(* b (expt (sin v) n1) (* v (expt (sin u) n2)))
(* c (expt (sin v) n))))
u0 u1 m
v0 v1 n))
;;SUPER TOROID
(define (super-toroid p rx ry rz c a n1 n2 u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(* rx (+ c (* a (expt (cos v) n2))) (expt (cos u) n1))
(* ry (+ c (* a (expt (cos v) n2))) (expt (sin u) n1))
(* rz a (expt (sin v) n2))))
u0 u1 m
v0 v1 n))
;;TORUS
(define (torus-surface p c a u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(* (+ c (* a (cos v))) (cos u))
(* (+ c (* a (cos v))) (sin u))
(* a (sin v))))
u0 u1 m
v0 v1 n))
;;APPLE SURFACE
(define (apple-surface p u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(* (cos u) (+ 4 (* 3.8 (cos v))))
(* (sin u) (+ 4 (* 3.8 (cos v))))
(+ (* (- (+ (cos v) (sin v)) 1) (+ 1 (sin v)) (log (- 1 (* pi (/ v 10.0))))) (* 7.5 (sin v)))))
u0 u1 m
v0 v1 n))
;;SIN-U*V
(define (sin-u*v p a u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
u
v
(* (/ 4.0 10) (* a (sin (* u v))))))
u0 u1 n
v0 v1 m))
;;SIN-U*V2
(define (sin-u*v2 p u0 u1 n v0 v1 m a b)
(map-division
(lambda (u v)
(+xyz p
u
v
(+ (* (/ 4.0 10) (* a (sin (+ u v))))
(exp (/ (abs (- u 1)) 10.0))
(* b (sin (- v 1))))))
u0 u1 n
v0 v1 m))
;;ELLIPTIC PARABOLOID
(define (elliptic-paraboloid p a b u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
u
v
(- (+ (/ (sqr u) (sqr a)) (/ (sqr v) (sqr b))))))
u0 u1 n
v0 v1 m))
;;HYPERBOLOID
(define (hyperboloid p a b c u0 u1 n v0 v1 m)
(map-division
(lambda (u v)
(+xyz p
(* a (+ 5 (cosh v)) (cos u))
(* b (+ 5 (cosh v)) (sin u))
(* c (sinh v))))
u0 u1 n
v0 v1 m))
;;========================================================================| SURFACE PROCESSING |==
(define (iterate-quads f ptss)
(for/list ((pts0 ptss)
(pts1 (cdr ptss)))
(for/list ((p0 pts0)
(p1 pts1)
(p2 (cdr pts1))
(p3 (cdr pts0)))
(f p0 p1 p2 p3))))
(define (quad-center p0 p1 p2 p3)
(pts-average
(pts-average p0 p2)
(pts-average p1 p3)))
(define (quad-normal p0 p1 p2 p3)
(poligon-normal (list p0 p1 p2 p3)))
(define (poligon-normal pts)
(norm-c
(crossed-products
(append pts (list (car pts))))))
(define (crossed-products pts)
(if (null? (cdr pts))
(xyz 0 0 0)
(+c (cross-c (car pts) (cadr pts))
(crossed-products (cdr pts)))))
;;========================================================================| GRID/STRUCTURE GENERATION |==
(define (hex-grid p0 p1 p2 p3 a b)
(let* ((o (quad-center p0 p1 p2 p3))
(m01 (pts-average p0 p1))
(m12 (pts-average p1 p2))
(m23 (pts-average p2 p3))
(m30 (pts-average p3 p0))
(q0 (between-pts p0 m01 b))
(q1 (between-pts m01 p1 (- 1.0 b)))
(q2 (between-pts o m12 (- 1.0 a)))
(q3 (between-pts m23 p2 (- 1.0 b)))
(q4 (between-pts p3 m23 b))
(q5 (between-pts m30 o a)))
(if (= a 0)
(line q0 q1 q2 q3 q4 q5 q0)
(begin
(line q0 q1 q2 q3 q4 q5 q0)
(line q2 m12)
(line m30 q5)))))
(define (truss-node p r) (sphere p r))
(define (truss-bar p0 p1 r) (cylinder p0 r p1))
(define (truss-bars ps qs r)
(if (or (null? ps) (null? qs))
#t
(begin
(truss-bar (car ps) (car qs) r)
(truss-bars (cdr ps) (cdr qs) r))))
(define (truss-nodes ps r)
(if (null? ps)
#t
(begin
(truss-node (car ps) r)
(truss-nodes (cdr ps) r))))
(define (space-truss pts r-nodes r-bars)
(let ((as (car pts))
(bs (cadr pts))
(cs (caddr pts)))
(truss-nodes as r-nodes)
(truss-nodes bs r-nodes)
(truss-bars as cs r-bars)
(truss-bars bs as r-bars)
(truss-bars bs cs r-bars)
(truss-bars bs (cdr as) r-bars)
(truss-bars bs (cdr cs) r-bars)
(truss-bars (cdr as) as r-bars)
(truss-bars (cdr bs) bs r-bars)
(if (null? (cdddr pts))
(begin
(truss-nodes cs r-nodes)
(truss-bars (cdr cs) cs r-bars))
(begin
(truss-bars bs (cadddr pts) r-bars)
(space-truss (cddr pts) r-nodes r-bars)))))
#|(define (hex-space-truss pts r-nodes r-bars b) ;Function not working
(let* ((as (car pts))
(bs (cadr pts))
(cs (caddr pts))
(m1s (ptf (car as) (car cs) 1/2))
(q0s (ptf as (cdr as) 1/2))
(q1s (between-pts as cs (- 1 b)))
(q2s (between-pts cs as (- 1 b)))
(q3s (ptf cs (cdr cs) 1/2)))
(truss-nodes q0s r-nodes)
(truss-nodes q1s r-nodes)
(truss-nodes q2s r-nodes)
(truss-bar q0s q1s r-bars)
(truss-bar q1s q2s r-bars)
(truss-bar q2s q3s r-bars)
(truss-bar q3s (cdr q2s) r-bars)
(truss-bar q0s (cdr q1s) r-bars)
(truss-bar q0s bs r-bars)
(truss-bar q1s bs r-bars)
(truss-bar q2s bs r-bars)
(truss-bar q3s bs r-bars)
(truss-bar bs (cdr q1s) r-bars)
(truss-bar bs (cdr q2s) r-bars)
(truss-bar q0s (cdr q0s) r-bars)
(truss-bar bs (cdr bs) r-bars)
(if (null? (cdddr pts))
(begin
(truss-nodes q3s r-nodes)
(truss-bars q3s (cdr q3s) r-bars))
(begin
(truss-bars bs (cadddr pts) r-bars)
(space-truss (cddr pts) r-nodes r-bars b)))))|#
(define (truss-midpoint p0 p1 p2 p3 h)
(+c (quad-center p0 p1 p2 p3)
(*c (quad-normal p0 p1 p2 p3) (- h))))
(define (truss-midpoints pts0 pts1 h)
(cons (truss-midpoint (car pts0) (car pts1) (cadr pts1) (cadr pts0) h)
(if (null? (cddr pts0))
(list)
(truss-midpoints (cdr pts0) (cdr pts1) h))))
(define (truss-quad ptss h)
(if (null? (cdr ptss))
ptss
(cons
(car ptss)
(cons (truss-midpoints (car ptss) (cadr ptss) h)
(truss-quad (cdr ptss) h)))))
(define (truss+surface srf r-nodes r-bars h-truss)
(iterate-quads (lambda (p0 p1 p2 p3)
(surface-polygon p0 p1 p2 p3))
srf)
(space-truss (truss-quad srf h-truss) r-nodes r-bars))
(define (hex-truss p0 p1 p2 p3 a b r-nodes r-bars r-pilar h1 h2)
(let* ((o (quad-center p0 p1 p2 p3))
(n (quad-normal p0 p1 p2 p3))
(m01 (pts-average p0 p1))
(m12 (pts-average p1 p2))
(m23 (pts-average p2 p3))
(m30 (pts-average p3 p0))
(q0 (between-pts p0 m01 b))
(q1 (between-pts m01 p1 (- 1.0 b)))
(q2 (between-pts o m12 (- 1.0 a)))
(q3 (between-pts m23 p2 (- 1.0 b)))
(q4 (between-pts p3 m23 b))
(q5 (between-pts m30 o a))
(q6 (+c o (*c uz (- h1)))))
(if (= a 0)
(begin
(truss-bar q0 q1 r-bars)
(truss-bar q1 q2 r-bars)
(truss-bar q2 q3 r-bars)
(truss-bar q3 q4 r-bars)
(truss-bar q4 q5 r-bars)
(truss-bar q5 q0 r-bars)
(truss-bar q0 q6 r-bars)
(truss-bar q1 q6 r-bars)
(truss-bar q2 q6 r-bars)
(truss-bar q3 q6 r-bars)
(truss-bar q4 q6 r-bars)
(truss-bar q5 q6 r-bars)
(truss-nodes (list q0 q1 q2 q3 q4 q5 q6) r-nodes)
(truss-bar q6 (+c q6 (- h2)) r-pilar))
(begin
(truss-bar q0 q1 r-bars)
(truss-bar q1 q2 r-bars)
(truss-bar q2 q3 r-bars)
(truss-bar q3 q4 r-bars)
(truss-bar q4 q5 r-bars)
(truss-bar q5 q0 r-bars)
(truss-bar q0 q6 r-bars)
(truss-bar q1 q6 r-bars)
(truss-bar q2 q6 r-bars)
(truss-bar q3 q6 r-bars)
(truss-bar q4 q6 r-bars)
(truss-bar q5 q6 r-bars)
(truss-bar q2 m12 r-bars)
(truss-bar m30 q5 r-bars)
(truss-nodes (list q0 q1 q2 q3 q4 q5 q6) r-nodes)
(truss-bar q6 (+z q6 (- h2)) r-pilar)))))
(define (truss+surface2 srf a b r-nodes r-bars r-pilar h-truss h-pilar)
(iterate-quads (lambda (p0 p1 p2 p3)
(surface-polygon p0 p1 p2 p3))
srf)
(iterate-quads (lambda (p0 p1 p2 p3)
(hex-truss p0 p1 p2 p3 a b r-nodes r-bars r-pilar h-truss h-pilar))
srf))
;;========================================================================| PANELING/SKIN |==
;;HEXAGONAL PANELS - ATTRACTOR POINT
(define (hex-panel-1 p0 p1 p2 p3 p4 p5 f h att)
(let* ((c (quad-center p0 p1 p2 p3))
(n (quad-normal p0 p1 p2 p3))
(d (* f (distance att c))))
(loft (list
(closed-line p0 p1 p2 p3 p4 p5)
(move
(scale (closed-line p0 p1 p2 p3 p4 p5) d c)
(*c n (- h)))))))
(define (hex-panel-2 p0 p1 p2 p3 p4 p5 f h att)
(let* ((c (quad-center p0 p1 p2 p3))
(n (quad-normal p0 p1 p2 p3))
(d (* f (distance att c))))
(loft (list
(closed-line p0 p1 p2 p3 p4 p5)
(move
(scale (closed-line p0 p1 p2 p3 p4 p5) (/ d 1.3) c)
(*c n (/ (- h) 2.0)))
(move
(scale (closed-line p0 p1 p2 p3 p4 p5) d c)
(*c n (- h)))))))
(define (hex-panel-3 p0 p1 p2 p3 p4 p5 panel-f panel-h att)
(surface (closed-line p0 p1 p2 p3 p4 p5)))
(define (skin-closed-srf srf panel panel-f panel-h att) ;to be used on closed surfaces
(iterate-quads
(lambda (h0 h1 h2 h3)
(panel (list-ref h0 4)
(list-ref h0 3)
(list-ref h1 4)
(list-ref h2 1)
(list-ref h2 0)
(list-ref h3 1)
panel-f panel-h att))
(let ((hexss
(iterate-quads
(lambda (p0 p1 p2 p3)
(let* ((a (ptf p0 p3 0.17))
(b (ptf p0 p1 1/2))
(f (ptf p0 p3 1/2))
(j (ptf p3 p2 1/2))
(e (ptf b j 2/3))
(k p1)
(l p2)
(c (ptf k l 0.17))
(d (ptf k l 1/2))
(w (ptf k l 2/3))
(g (ptf (ptf p0 p3 2/3) (ptf p1 p2 2/3) 3/2))
(h (ptf p3 p2 3/2))
(i (ptf k l 1.17)))
(panel a b c d e f panel-f panel-h att)
(list a b c d e f)))
(transpose-matrix srf))))
(for/list ((hexs hexss))
(append hexs (list (car hexs)))))))
(define (skin-open-srf srf panel panel-f panel-h att) ;to be used on open surfaces
(sphere att 0.03)
(iterate-quads
(lambda (h0 h1 h2 h3)
(panel (list-ref h0 4)
(list-ref h0 3)
(list-ref h1 4)
(list-ref h2 1)
(list-ref h2 0)
(list-ref h3 1)
panel-f panel-h att))
(iterate-quads
(lambda (p0 p1 p2 p3)
(let* ((a (ptf p0 p3 0.17))
(b (ptf p0 p1 1/2))
(f (ptf p0 p3 1/2))
(j (ptf p3 p2 1/2))
(e (ptf b j 2/3))
(k p1)
(l p2)
(c (ptf k l 0.17))
(d (ptf k l 1/2))
(w (ptf k l 2/3))
(g (ptf (ptf p0 p3 2/3) (ptf p1 p2 2/3) 3/2))
(h (ptf p3 p2 3/2))
(i (ptf k l 1.17)))
(panel a b c d e f panel-f panel-h att)
(list a b c d e f)))
(transpose-matrix srf))))
;;QUADRANGULAR PANELS - ATTRACTOR VECTOR
(define (quad-panel-1 p0 p1 p2 p3 h f)
(let* ((c (quad-center p0 p1 p2 p3))
(n (quad-normal p0 p1 p2 p3))
(d (* f (/ (angle-vectors n uz) 90))))
(loft (list
(line p0 p1 p2 p3 p0)
(move
(scale (line p0 p1 p2 p3 p0) d c)
(*c n h))))))
(define (responsive-skin-1 srf h)
(iterate-quads (lambda (p0 p1 p2 p3)
(quad-panel-1 p0 p1 p2 p3 h)) srf))
(define (quad-panel-2 p0 p1 p2 p3 h f)
(let* ((c (quad-center p0 p1 p2 p3))
(n (quad-normal p0 p1 p2 p3))
(d (* f (/ (angle-vectors n uz) 90))))
(subtraction (list
(extrusion (surface-polygon p0 p1 p2 p3) h)
(sphere (+c c (*c n (/ h 2))) d)))))
(define (responsive-skin-2 srf h f)
(iterate-quads (lambda (p0 p1 p2 p3)
(quad-panel-2 p0 p1 p2 p3 h f)) srf))
(define (quad-panel-3 p0 p1 p2 p3 h f)
(let* ((c (quad-center p0 p1 p2 p3))
(n (quad-normal p0 p1 p2 p3))
(d (* f (/ (angle-vectors n uz) 90))))
(subtraction
(extrusion
(surface-polygon p0 p1 p2 p3) h)
(cylinder (+c c (*c n (- h 2)))
d
(+c c (*c n (+ h 2)))))))
(define (responsive-skin-3 srf h f)
(iterate-quads (lambda (p0 p1 p2 p3)
(quad-panel-3 p0 p1 p2 p3 h f)) srf))
(define (quad-panel-4 p0 p1 p2 p3 h1 h2 f)
(let* ((c (quad-center p0 p1 p2 p3))
(n (quad-normal p0 p1 p2 p3))
(d (* f (/ (angle-vectors n uz) 90))))
(loft (list
(polygon p0 p1 p2 p3)
(move
(scale (polygon p0 p1 p2 p3) (/ d 1.3) c)
(*c n h1))
(move
(scale (polygon p0 p1 p2 p3) d c)
(*c n h2))))))
(define (responsive-skin-4 srf h1 h2 f)
(iterate-quads (lambda (p0 p1 p2 p3)
(quad-panel-4 p0 p1 p2 p3 h1 h2 f)) srf))
;;========================================================================| EXAMPLES/TESTING |==
;Parametric surfaces
;(surface-grid (conic-spiral (xyz 0 0 0) 0.2 1 0.1 2 0 2pi 80 0 2pi 80))
;(surface-grid (cross-cap (xyz 0 0 20) 0 pi 80 0 pi 80))
;(surface-grid (dini (xyz 0 0 0) 0.2 0 (* 6 pi) 80 0.1 (* pi 0.5) 80))
;(surface-grid (dini (xyz 0 0 0) 0.2 0 (* 6 pi) 80 0.1 (* pi 0.7) 80))
;(surface-grid (ellipsoid (xyz 0 0 0) 50 30 30 0 2pi 80 0 2pi 80))
;(surface-grid (enneper1 (xyz 0 0 0) 0 (* 2 pi) 80 0 (* 2 pi) 80))
;(surface-grid (fig8-klein-bottle (xyz 0 0 0) 2 0 (* 2 pi) 80 0 (* 2 pi) 80))
;(surface-grid (steiner-roman-surface (xyz 0 0 0) 0.2 0 pi 80 0 pi 80))
;(surface-grid (mobius-strip2 (xyz 0 0 0) 0.2 0 (* 4 pi) 10 0 0.3 80))
;(surface-grid (torus-surface (xyz 0 0 0) 50 10 0 2pi 50 0 2pi 80))
;(surface-grid (apple-surface (xyz 0 0 0) 0 2pi 50 (- pi) pi 80))
;(surface-grid (sin-u*v (xyz 0 0 0) 0.8 0 2pi 80 0 2pi 80))
;(surface-grid (sin-u*v2 (xyz 0 0 0) 0 10 80 0 10 80 1 0.2))
;(surface-grid (elliptic-paraboloid (xyz 0 0 0) 2.2 2.2 -pi pi 80 -pi pi 80))
;(surface-grid (hyperboloid (xyz 0 0 0) 2 2 2 -pi pi 80 -pi pi 80))
;Examples of trusses being iterated along a surface
;(truss+surface (sin-u*v (xyz 0 0 0) 0.2 -pi pi 10 -pi pi 10) 0.03 0.01 0.5)
;(truss+surface2 (elliptic-paraboloid (xyz 0 0 3) 5 5 -pi pi 5 -pi pi 5) 0.2 0.8 0.03 0.01 0.03 0.6 2.7)
;Example of hexagonal iteration along a closed surface
;(skin-closed-srf (mobius-strip2 (xyz 0 0 0) 0.2 0 (* 4 pi) 10 0 0.3 80) hex-panel-3 0 0 (xyz 0 0 0))
;(skin-open-srf (elliptic-paraboloid (xyz 0 0 0) 2.2 2.2 -pi pi 20 -pi pi 20) hex-panel-3 0 0 (xyz 0 0 0))
;Paneling examples of hexagonal panels where the opening is being influenced by the distance to an attractor point
;(skin-open-srf (elliptic-paraboloid (xyz 0 0 0) 2.5 2.5 -pi pi 20 -pi pi 20) hex-panel-1 0.15 0.2 (xyz 0 0 1))
;(skin-open-srf (sin-u*v2 (xyz 0 0 0) 0 10 20 0 10 20 1 0.2) hex-panel-2 0.15 0.2 (xyz 5 5 2.5))
;(skin-closed-srf (transpose-matrix (fig8-klein-bottle (xyz 0 0 0) 2 0 2pi 30 0 2pi 30)) hex-panel-1 0.15 0.03 (xyz 0 0 1.3))
;Paneling examples of quadrangular panels where the opening is being influenced by the angle between the normals and vector z
;(responsive-skin-4 (sin-u*v (xyz 0 0 0) 1 -pi pi 20 -pi pi 20) 0.08 0.1 1.0)
;(responsive-skin-4 (sin-u*v2 (xyz 0 0 0) 0 10 20 0 10 20 1 0.2) -0.15 -0.4 1.8)
;(responsive-skin-3 (sin-u*v (xyz 0 0 0) 0.8 -pi pi 20 -pi pi 20) 0.05 0.25)
;(responsive-skin-2 (elliptic-paraboloid (xyz 0 0 0) 2.5 2.5 -pi pi 20 -pi pi 20) 0.05 0.25)
;Examples complete structures (truss + paneling solution)
#|(space-truss (truss-quad (sin-u*v2 (xyz 0 0 0) 0 10 10 0 10 10 1 0.2) 0.5) 0.03 0.01)
(skin-open-srf (sin-u*v2 (xyz 0 0 0) 0 10 10 0 10 10 1 0.2) hex-panel-2 0.15 0.1 (xyz 5 5 2.5))|#
#|(iterate-quads (lambda (p0 p1 p2 p3) (hex-truss p0 p1 p2 p3 0.2 0.8 0.03 0.01 0.03 0.5 2.5)) (sin-u*v (xyz 0 0 0) 0.2 -pi pi 10 -pi pi 10))
(responsive-skin-4 (sin-u*v (xyz 0 0 0) 0.2 -pi pi 10 -pi pi 10) 0.08 0.1 1.5)|#
| false |
a3461e720121aefaca4bfc728847004b9efb2b85 | 7bf617f77a55d8ec23fa8156c1380b563a5ac7f6 | /PL/PL 1.rkt | c627f801c56b7f10b071dbc6e26ee573bc49068d | []
| no_license | anyatran/school | c06da0e08b148e3d93aec0e76329579bddaa85d5 | 24bcfd75f4a6fe9595d790808f8fca4f9bf6c7ec | refs/heads/master | 2021-06-17T10:45:47.648361 | 2017-05-26T12:57:23 | 2017-05-26T12:57:23 | 92,509,148 | 1 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 2,073 | rkt | PL 1.rkt | ;; The first three lines of this file were inserted by DrRacket. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-intermediate-reader.ss" "lang")((modname |PL 1|) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ())))
;; Anya Tran
;; username: anya
;; PRoblem 2:
;; Int Int Int Int -> Number
;; takes 4 numbers (either 1 or 0) and
;; converts a 4-digits binary number into a decimal number
;;
(define (bin4-to-num n1 n2 n3 n4)
(+ (* n1 1) (* n2 2) (* n3 4) (* n4 8)))
(bin4-to-num 1 0 1 1)
;; P3
;; Int Int -> Int
;; calculates GCD of 2 non-negative integers
(define (gcd2 a b)
(cond
[(equal? a 0) b]
[(equal? b 0) a]
[(and (even? a) (even? b)) (* 2 (gcd2 (/ a 2) (/ b 2)))]
[(and (even? a) (odd? b)) (gcd2 (/ a 2) b)]
[(and (odd? a) (even? b)) (gcd2 a (/ b 2))]
[(and (odd? a) (odd? b))
(cond
[(>= a b) (gcd2 (/ (- a b) 2) b)]
[else (gcd2 (/ (- b a) 2) a)])]))
(equal? (gcd2 378 144) 18)
(equal? (gcd2 216 612) 36)
(equal? (gcd2 12 0) 12)
(equal? (gcd2 0 12) 12)
(equal? (gcd2 9 5) 1)
(equal? (gcd2 15 33) 3)
(equal? (gcd2 36 15) 3)
(equal? (gcd2 15 12) 3)
;; P4
;; LoInt -> Boolean
;; checks if all integers in the list are even
(define (all-even? l)
(or (empty? l) (and (even? (first l)) (all-even? (rest l)))))
(all-even? (list 2 4 6 8))
(not (all-even? (list 1 3 5 7)))
;; P5
;; LoNum LoNum -> LoNum
;; takes two sorted lists and creates a new sorted list by merging them
(define (merge-lists l1 l2)
(cond
[(empty? l1) l2]
[(empty? l2) l1]
[(> (first l1) (first l2))
(merge-lists (cons (first l2) l1) (rest l2))]
[else
(cons (first l1) (merge-lists (rest l1) l2))]))
(equal? (list 1 2 3 5 6 7) (merge-lists (list 1 3 7) (list 2 5 6)))
(equal? (list 2 3 4) (merge-lists '() (list 2 3 4)))
;; P6:
;; my picture from
(define my-picture 41)
(define my-other-pictures null)
;; P7:
;; total time spent on the assignment
(define minutes-spent 70)
| false |
6324c8e7908f671428cc469fc6f8447ccaec80d3 | 804e0b7ef83b4fd12899ba472efc823a286ca52d | /old/gst/gstreamer/gst/GstObject-ffi.rkt | 02e6c7c26becd79158ff204b431d8a07b2b7c2d5 | []
| no_license | cha63506/CRESTaceans | 6ec436d1bcb0256e17499ea9eccd5c034e9158bf | a0d24fd3e93fc39eaf25a0b5df90ce1c4a96ec9b | refs/heads/master | 2017-05-06T16:59:57.189426 | 2013-10-17T15:22:35 | 2013-10-17T15:22:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,704 | rkt | GstObject-ffi.rkt | #lang racket
(require ffi/unsafe)
(require "gst_base.rkt"
"gst-structs-ffi.rkt")
(provide (all-defined-out))
#|typedef enum
{
GST_OBJECT_DISPOSING = (1<<0),
GST_OBJECT_FLOATING = (1<<1),
/* padding */
GST_OBJECT_FLAG_LAST = (1<<4)
} GstObjectFlags;|#
(define GST_OBJECT_DISPOSING (arithmetic-shift 1 0))
(define GST_OBJECT_FLOATING (arithmetic-shift 1 1))
(define GST_OBJECT_FLAG_LAST (arithmetic-shift 1 4))
;#define GST_OBJECT_FLAGS (obj)
;#define GST_OBJECT_FLAG_IS_SET (obj, flag)
;#define GST_OBJECT_FLAG_SET (obj, flag)
;#define GST_OBJECT_FLAG_UNSET (obj, flag)
;#define GST_OBJECT_NAME (obj)
;#define GST_OBJECT_PARENT (obj)
;#define GST_OBJECT_IS_DISPOSING (obj)
;#define GST_OBJECT_IS_FLOATING (obj)
;#define GST_OBJECT_REFCOUNT (obj)
;#define GST_OBJECT_REFCOUNT_VALUE (obj)
;#define GST_CLASS_GET_LOCK (obj)
;#define GST_CLASS_LOCK (obj)
;#define GST_CLASS_TRYLOCK (obj)
;#define GST_CLASS_UNLOCK (obj)
;#define GST_OBJECT_LOCK (obj)
;#define GST_OBJECT_TRYLOCK (obj)
;#define GST_OBJECT_UNLOCK (obj)
;#define GST_OBJECT_GET_LOCK (obj)
;gboolean gst_object_set_name (GstObject *object, const gchar *name);
(define-gstreamer gst_object_set_name (_fun _GstObject-pointer _string -> _gboolean))
;;GstObject*-> gchar*
(define-gstreamer*
(_fun _GstObject-pointer -> _string)
gst_object_get_name gst_object_get_path_string)
;;GstObject* GstObject* -> gboolean
(define-gstreamer*
(_fun _GstObject-pointer _GstObject-pointer -> _gboolean)
gst_object_set_parent gst_object_has_ancestor)
;;GstObject* -> void
(define-gstreamer gst_object_unparent (_fun _GstObject-pointer -> _void))
;GstObject* gst_object_get_parent (GstObject *object);
(define-gstreamer gst_object_get_parent (_fun _GstObject-pointer -> _void))
;void gst_object_default_deep_notify (GObject *object, GstObject *orig, GParamSpec *pspec, gchar **excluded_props);
(define-gstreamer gst_object_default_deep_notify (_fun _GstObject-pointer _GstObject-pointer _GParamSpec-pointer (_ptr io _string) -> _void))
;void gst_object_default_error (GstObject *source, GError *error, gchar *debug);
(define-gstreamer gst_object_default_error (_fun _GstObject-pointer _GError-pointer _string -> _void))
;gboolean gst_object_check_uniqueness (GList *list, const gchar *name);
(define-gstreamer gst_object_check_uniqueness (_fun _GList-pointer _string -> _gboolean))
;gpointer gst_object_ref (gpointer object);
(define-gstreamer gst_object_ref (_fun _gpointer -> _gpointer))
;;gpointer -> void
(define-gstreamer*
(_fun _gpointer -> _void)
gst_object_unref gst_object_ref_sink gst_object_sink)
;void gst_object_replace (GstObject **oldobj, GstObject *newobj);
(define-gstreamer gst_object_replace (_fun (_ptr io _GstObject-pointer) _GstObject-pointer -> _void))
;guint gst_class_signal_connect (GstObjectClass *klass, const gchar *name, gpointer func, gpointer func_data);
(define-gstreamer gst_class_signal_connect (_fun _GstObjectClass-pointer _string _gpointer _gpointer -> _guint))
| false |
e76c0176d6ab3352b590dadccace821e3ff6846b | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-compatibility/typed/scheme.rkt | b300589a397b2809329520750f8ba471d9fe6832 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/typed-racket | 2cde60da289399d74e945b8f86fbda662520e1ef | f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554 | refs/heads/master | 2023-09-01T23:26:03.765739 | 2023-08-09T01:22:36 | 2023-08-09T01:22:36 | 27,412,259 | 571 | 131 | NOASSERTION | 2023-08-09T01:22:41 | 2014-12-02T03:00:29 | Racket | UTF-8 | Racket | false | false | 245 | rkt | scheme.rkt | #lang typed-racket/minimal
(require typed/scheme/base scheme/require (subtract-in scheme typed/scheme/base scheme/contract)
(for-syntax scheme/base))
(provide (all-from-out typed/scheme/base scheme)
(for-syntax (all-from-out scheme/base)))
| false |
fbf69e4a92553bdc283ee24c5dbe9ae37126e22d | 76df16d6c3760cb415f1294caee997cc4736e09b | /rosette-benchmarks-3/bagpipe/src/bagpipe/racket/main/cisco/cisco.rkt | fd372eeae31102f46447e775c999771847239a4f | [
"MIT"
]
| permissive | uw-unsat/leanette-popl22-artifact | 70409d9cbd8921d794d27b7992bf1d9a4087e9fe | 80fea2519e61b45a283fbf7903acdf6d5528dbe7 | refs/heads/master | 2023-04-15T21:00:49.670873 | 2021-11-16T04:37:11 | 2021-11-16T04:37:11 | 414,331,908 | 6 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 956 | rkt | cisco.rkt | #lang s-exp rosette
(require "parser.rkt")
(require "denote.rkt")
(require "cache.rkt")
(require "../util/util.rkt")
(require "../network/network.rkt")
(provide as-from-configs as-denote-import as-denote-export
as-internal-routers as-router-external-neighbors as-environment)
(define (as-from-configs configs)
(cache (cisco->sexp configs)))
(define (as-denote-import as r i a)
(denote-policy '_importPolicy (cache-as as) r i a))
(define (as-denote-export as r o a)
(denote-policy '_exportPolicy (cache-as as) r o a))
(define (as-environment as)
(define communities (map (compose symbolize first) (record-field 'Config '_communitySets (cache-as as))))
(define paths (map (compose symbolize first) (record-field 'Config '_asPathSets (cache-as as))))
(environment communities paths))
(define (as-internal-routers as) (cache-internal-routers as))
(define (as-router-external-neighbors as r) (cache-router-external-neighbors as r))
| false |
5cbdb43f6d731ce27b09a0ef45d96ab830826566 | 352a2d9071ab1bd08a29d1c6b00f35a7e515c7af | /server/util/current-req.rkt | 2f36619fc433d7aa280c3fa6b21a90a6f3210870 | [
"Apache-2.0",
"MIT"
]
| permissive | thoughtstem/webapp | 18ca171bbb7f68badfe68e686c7302ed1052e9bb | 76eb4a63973e4ad166df4789071b9400a915445c | refs/heads/master | 2020-12-20T13:54:22.074328 | 2020-08-06T22:31:47 | 2020-08-06T22:31:47 | 236,099,582 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,429 | rkt | current-req.rkt | #lang web-server
(provide current-req
request->params)
(require racket/hash json net/uri-codec)
(define current-req (make-web-parameter #f))
(define (request->params req)
(hash-union
(request->post-data-hash req)
(request->query-string-hash req)))
(define (request->post-data-hash req)
(define raw-data
(request-post-data/raw req))
(cond
[(not raw-data) (hash)]
[(is-json? raw-data)
(hash 'json
(string->jsexpr
(bytes->string/utf-8 raw-data)))]
[else
(let ([posted-data
(bytes->string/utf-8 raw-data)])
(hashify-data posted-data))]))
(define (is-json? b)
(with-handlers ([exn:fail? (thunk* #f)])
(string->jsexpr
(bytes->string/utf-8 b))))
(define (request->query-string-hash req)
(define query
(url-query (request-uri req)))
(if (not query)
(hash)
(make-hash
(map
(lambda (p)
(cons (car p)
(maybe-string->number
(cdr p))))
query))))
(define (hashify-data d)
(define raw-pairs
(string-split d "&"))
(define pairs
(map (curryr string-split "=")
raw-pairs))
(define decoded-pairs
(map (lambda (p)
(list-set p 1 (uri-decode (second p))))
pairs) )
(apply hash
(apply append decoded-pairs)))
(define (maybe-string->number s)
(define maybe-n
(and (string? s)
(string->number s)))
(or maybe-n s))
| false |
770e1e7f1cb6b1a01afdf8c191b3f706c544ccf7 | ca861ad0a3e092d062bf62d479d7b2b588ac7a7e | /hackett-lib/hackett/function.rkt | 16c6c34ea3bc95c2b2e17c04760c7ad6eafbcbff | []
| no_license | mattaudesse/hackett | 06d8bc82b5e1038f49836d3b3d51f8015bf3fbc0 | 7ddf45a94b26e90cd8793b585706fc2f6e94c679 | refs/heads/master | 2021-01-12T00:49:26.225120 | 2017-02-08T19:59:44 | 2017-02-08T19:59:44 | 78,302,313 | 0 | 0 | null | 2017-01-07T20:35:42 | 2017-01-07T20:35:42 | null | UTF-8 | Racket | false | false | 285 | rkt | function.rkt | #lang hackett/private/kernel
(provide id const flip)
(def id : (forall [a] (-> a a))
(λ (x) x))
(def const : (forall [a b] (-> a (-> b a)))
(λ (y x) y))
(def flip : (forall [a b c] (-> (-> a (-> b c))
(-> b (-> a c))))
(λ (f x y) (f y x)))
| false |
5dc0edc99afda38e910206843824950b3c2a9369 | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-test/xfail/fact-unit.rkt | 6a8f01c7e25c7e5a060fc2003b9b79bcccd24ffa | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/typed-racket | 2cde60da289399d74e945b8f86fbda662520e1ef | f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554 | refs/heads/master | 2023-09-01T23:26:03.765739 | 2023-08-09T01:22:36 | 2023-08-09T01:22:36 | 27,412,259 | 571 | 131 | NOASSERTION | 2023-08-09T01:22:41 | 2014-12-02T03:00:29 | Racket | UTF-8 | Racket | false | false | 494 | rkt | fact-unit.rkt | #lang typed/racket
;; It would be nice if this program could typecheck, but because the types
;; of unannotated exports are not added to the type environment the type
;; the fact function is not inferred correctly. Adding a type annotation
;; to fact allows this program to run.
(define-signature fact^
([fact : (-> Integer Integer)]))
(define-unit fact@
(import (prefix i: fact^))
(export fact^)
(define (fact n)
(if (< n 1)
1
(* n (i:fact (sub1 n)))))
fact) | false |
b860e4fe68e0b039dcdcd6bbd97ed69cf9eca9ee | 20c553d1bfe87db1c033d55c2dee45a62f7f402f | /info.rkt | 22ad3af4a39fb4b5e1e3e626836e7384d40b2baf | []
| no_license | gottreu/rack-portaudio | e16e7948adbef78150952cd6df18c76313b9b8ea | 9ef3c4decd9e89c058fcfba4c2d2da69a088b4d4 | refs/heads/master | 2021-01-15T23:41:20.301034 | 2012-08-31T22:09:20 | 2012-08-31T22:09:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 848 | rkt | info.rkt | #lang setup/infotab
(define name "PortAudio")
(define blurb '((p "PortAudio is a cross-platform library "
"for audio output and input. It runs "
"on Windows, Mac OS X, and linux. "
"This package provides Racket bindings "
"for these functions. For higher-level "
"tools and utilities, use the RSound package.")))
(define scribblings '(("portaudio.scrbl" () (tool))))
(define categories '(media))
(define version "2011-12-14-12:44")
(define release-notes '((p "better heuristics for latency selection, "
"more documentation")))
;; planet-specific:
(define repositories '("4.x"))
(define primary-file "main.rkt")
#;(define homepage "http://schematics.sourceforge.net/")
#;(define url "http://schematics.sourceforge.net/")
| false |
14db21b1b0733ab687cd4d5fa85b2e865cf56d52 | c27b8ab46d5bf1638a8933e770ed01d8200ec731 | /EOPL3/ch5_3imperative.rkt | d03072691ed874497011f98c47c80689258ec872 | []
| no_license | 3gx/drracket | 21366d63b029e90da43690c54c6359ecd3cfefee | 978d9bcc3b36ee73fe682039f62302b9bd5517d5 | refs/heads/master | 2023-01-04T10:28:24.591314 | 2020-10-19T14:21:55 | 2020-10-19T14:21:55 | 195,736,419 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 11,128 | rkt | ch5_3imperative.rkt | #lang racket
(require eopl)
;;;;;;;;;;;;;;;; grammatical specification ;;;;;;;;;;;;;;;;
(define the-lexical-spec
'((whitespace (whitespace) skip)
(comment ("%" (arbno (not #\newline))) skip)
(identifier
(letter (arbno (or letter digit "_" "-" "?")))
symbol)
(number (digit (arbno digit)) number)
(number ("-" digit (arbno digit)) number)
))
(define the-grammar
'((program (expression) a-program)
(expression (number) const-exp)
(expression
("-" "(" expression "," expression ")")
diff-exp)
(expression
("+" "(" expression "," expression ")")
plus-exp)
(expression
("*" "(" expression "," expression ")")
mul-exp)
(expression
("zero?" "(" expression ")")
zero?-exp)
(expression
("if" expression "then" expression "else" expression)
if-exp)
(expression (identifier) var-exp)
(expression
("let" identifier "=" expression "in" expression)
let-exp)
(expression
("proc" "(" identifier ")" expression)
proc-exp)
(expression
("(" expression expression ")")
call-exp)
(expression
("letrec"
(arbno identifier "(" identifier ")" "=" expression)
"in" expression)
letrec-exp)
))
;;;;;;;;;;;;;;;; sllgen boilerplate ;;;;;;;;;;;;;;;;
(sllgen:make-define-datatypes the-lexical-spec the-grammar)
(define show-the-datatypes
(lambda () (sllgen:list-define-datatypes the-lexical-spec the-grammar)))
(define scan&parse
(sllgen:make-string-parser the-lexical-spec the-grammar))
(define just-scan
(sllgen:make-string-scanner the-lexical-spec the-grammar))
; environment
(define-datatype environment environment?
(empty-env)
(extend-env
(var symbol?)
(val expval?)
(env environment?))
(extend-env-rec*
(p-names (list-of symbol?))
(b-vars (list-of symbol?))
(bodies (list-of expression?))
(env environment?)))
(define (apply-env env search-var)
(cases environment env
[empty-env ()
(error "No binding for" search-var)]
[extend-env (saved-var saved-val saved-env)
(if (eqv? saved-var search-var)
saved-val
(apply-env saved-env search-var))]
[extend-env-rec* (p-names b-vars p-bodies saved-env)
(cond
[(location search-var p-names)
=> (lambda (n)
(proc-val
(procedure
(list-ref b-vars n)
(list-ref p-bodies n)
env)))]
[else
(apply-env saved-env search-var)])]))
(define location
(lambda (sym syms)
(cond
((null? syms) #f)
((eqv? sym (car syms)) 0)
((location sym (cdr syms))
=> (lambda (n)
(+ n 1)))
(else #f))))
; global registers
(define g-exp 'uninitialized)
(define g-env 'uninitialized)
(define g-cont 'uninitialized)
(define g-val 'uninitialized)
(define g-proc1 'uninitialized)
; continuation data-type
(define-datatype continuation continuation?
[end-cont]
[zero1-cont
(saved-cont continuation?)]
[let-exp-cont
(var symbol?)
(body expression?)
(saved-env environment?)
(saved-cont continuation?)]
[if-test-cont
(exp2 expression?)
(exp3 expression?)
(saved-env environment?)
(saved-cont continuation?)]
[diff1-cont
(exp2 expression?)
(saved-env environment?)
(saved-cont continuation?)]
[diff2-cont
(val1 expval?)
(saved-cont continuation?)]
[plus1-cont
(exp2 expression?)
(saved-env environment?)
(saved-cont continuation?)]
[plus2-cont
(val1 expval?)
(saved-cont continuation?)]
[mul1-cont
(exp2 expression?)
(saved-env environment?)
(saved-cont continuation?)]
[mul2-cont
(val1 expval?)
(saved-cont continuation?)]
[rator-cont
(rand expression?)
(saved-env environment?)
(saved-cont continuation?)]
[rand-cont
(val1 expval?)
(saved-cont continuation?)])
(define (apply-cont)
(cases continuation g-cont
[end-cont ()
(begin
(println "End-of-computation:")
g-val)]
[zero1-cont (saved-cont)
(set! g-cont saved-cont)
(set! g-val (bool-val (zero? (expval->num g-val))))
(apply-cont)]
[let-exp-cont (var body saved-env saved-cont)
(set! g-exp body)
(set! g-env (extend-env var g-val saved-env))
(set! g-cont saved-cont)
(value-of/k)]
[if-test-cont (exp2 exp3 saved-env saved-cont)
(set! g-cont saved-cont)
(set! g-env saved-env)
(if (expval->bool g-val)
(set! g-exp exp2)
(set! g-exp exp3))
(value-of/k)]
[diff1-cont (exp2 saved-env saved-cont)
(set! g-exp exp2)
(set! g-env saved-env)
(set! g-cont (diff2-cont g-val saved-cont))
(value-of/k)]
[diff2-cont (val1 saved-cont)
(let ([num1 (expval->num val1)]
[num2 (expval->num g-val)])
(set! g-cont saved-cont)
(set! g-val (num-val (- num1 num2)))
(apply-cont))]
[plus1-cont (exp2 saved-env saved-cont)
(set! g-exp exp2)
(set! g-env saved-env)
(set! g-cont (plus2-cont g-val saved-cont))
(value-of/k)]
[plus2-cont (val1 saved-cont)
(let ([num1 (expval->num val1)]
[num2 (expval->num g-val)])
(set! g-cont saved-cont)
(set! g-val (num-val (+ num1 num2)))
(apply-cont))]
[mul1-cont (exp2 saved-env saved-cont)
(set! g-exp exp2)
(set! g-env saved-env)
(set! g-cont (mul2-cont g-val saved-cont))
(value-of/k)]
[mul2-cont (val1 saved-cont)
(let ([num1 (expval->num val1)]
[num2 (expval->num g-val)])
(set! g-cont saved-cont)
(set! g-val (num-val (* num1 num2)))
(apply-cont))]
[rator-cont (rand saved-env saved-cont)
(set! g-exp rand)
(set! g-env saved-env)
(set! g-cont (rand-cont g-val saved-cont))
(value-of/k)]
[rand-cont (val1 saved-cont)
(let ([proc (expval->proc val1)])
(set! g-proc1 proc)
(set! g-cont saved-cont)
(apply-procedure/k))]))
(define (apply-procedure/k)
(cases proc g-proc1
[procedure (var body saved-env)
(set! g-exp body)
(set! g-env (extend-env var g-val saved-env))
(value-of/k)]))
(define (init-env)
(extend-env
'i (num-val 1)
(extend-env
'v (num-val 5)
(extend-env
'x (num-val 10)
(empty-env)))))
(define-datatype proc proc?
(procedure
(var symbol?)
(body expression?)
(env environment?)))
(define-datatype expval expval?
(num-val
(value number?))
(bool-val
(boolean boolean?))
(proc-val
(proc proc?)))
(define (expval->num val)
(cases expval val
(num-val (num) num)
(else (error "failed to extract num" val))))
(define (expval->bool val)
(cases expval val
(bool-val (bool) bool)
(else (error "failed to extract bool" val))))
(define (expval->proc val)
(cases expval val
(proc-val (proc) proc)
(else (error "failed to extract proc" val))))
(define (run str ast)
(println (format "~a:~a" str (value-of-program ast))))
(define (value-of-program pgm)
(cases program pgm
[a-program (exp1)
(set! g-exp exp1)
(set! g-env (init-env))
(set! g-cont (end-cont))
(value-of/k)]))
(define (value-of/k)
(cases expression g-exp
[const-exp (num)
(set! g-val (num-val num))
(apply-cont)]
[var-exp (var)
(set! g-val (apply-env g-env var))
(apply-cont)]
[diff-exp (exp1 exp2)
(set! g-exp exp1)
(set! g-cont (diff1-cont exp2 g-env g-cont))
(value-of/k)]
[plus-exp (exp1 exp2)
(set! g-exp exp1)
(set! g-cont (plus1-cont exp2 g-env g-cont))
(value-of/k)]
[mul-exp (exp1 exp2)
(set! g-exp exp1)
(set! g-cont (mul1-cont exp2 g-env g-cont))
(value-of/k)]
[zero?-exp (exp1)
(set! g-exp exp1)
(set! g-cont (zero1-cont g-cont))
(value-of/k)]
[if-exp (exp1 exp2 exp3)
(set! g-exp exp1)
(set! g-cont (if-test-cont exp2 exp3 g-env g-cont))
(value-of/k)]
[let-exp (var exp1 body)
(set! g-exp exp1)
(set! g-cont (let-exp-cont var body g-env g-cont))
(value-of/k)]
[proc-exp (var body)
(set! g-val
(proc-val (procedure var body g-env)))
(apply-cont)]
[call-exp (rator rand)
(set! g-exp rator)
(set! g-cont (rator-cont rand g-env g-cont))
(value-of/k)]
[letrec-exp (p-names b-vars p-bodies letrec-body)
(set! g-exp letrec-body)
(set! g-env (extend-env-rec* p-names b-vars p-bodies g-env))
(value-of/k)]))
(define spgm0 (scan&parse "-(55, -(x,11))"))
spgm0
(run 'spgm0 spgm0)
(define spgm1 (scan&parse "if zero?(42) then 43 else 45"))
spgm1
(run 'spgm1 spgm1)
(define spgm2 (scan&parse "
let f = proc(x) -(x,11)
in (f (f 77))
"))
spgm2
(run 'spgm2 spgm2)
(define spgm3 (scan&parse "
let f = proc(x) -(x,11)
in (f (f 77))
"))
spgm3
(run 'spgm3 spgm3)
(define spgm4 (scan&parse "
let x = 200
in let f = proc (z) -(z,x)
in let x = 100
in let g = proc (z) -(z,x)
in -((f 1), (g 1))
"))
spgm4
(run 'spgm4 spgm4)
(define ast1
(scan&parse "
letrec double(x)
= if zero?(x) then 0 else -((double -(x,1)), -2)
in (double 6)
"))
ast1
(run 'ast1 ast1)
(define ast2
(scan&parse "
letrec even(x) =
if zero?(x) then 1 else (odd -(x,1))
odd(x) =
if zero?(x) then 0 else (even -(x,1))
in (odd 13)
"))
ast2
(run 'ast2 ast2)
(define ast3
(scan&parse "
letrec fact(n) =
if zero?(n) then 1 else *(n, (fact -(n,1)))
in (fact 5)
"))
ast3
(run 'ast3 ast3)
(define ast4
(scan&parse "
letrec fix(f) =
letrec d(x) = proc(z) ((f (x x)) z)
in proc(n) ((f (d d)) n)
in letrec t4m(f) =
proc(x) if zero?(x) then 0 else +((f -(x,1)),4)
in let times4 = (fix t4m)
in (times4 3)"
))
ast4
(run 'ast4 ast4)
(define ast4a
(scan&parse "
letrec fix(f) =
letrec d(x) = (f (x x))
in (f (d d))
in letrec t4m(f) =
proc(x) if zero?(x) then 0 else +((f -(x,1)),4)
in let times4 = (fix t4m)
in (times4 3)"
))
ast4a
;(run ast4a) - runs infinitely
| false |
f3ecf61689b2956638b35cc34b47a00d4c1bc8cd | f05faa71d7fef7301d30fb8c752f726c8b8c77d4 | /src/exercises/ex-1.43.rkt | 373ec753a166c27608631660be807053efb8ccfe | []
| no_license | yamad/sicp | c9e8a53799f0ca6f02b47acd23189b2ca91fe419 | 11e3a59f41ed411814411e80f17606e49ba1545a | refs/heads/master | 2021-01-21T09:53:44.834639 | 2017-02-27T19:32:23 | 2017-02-27T19:32:23 | 83,348,438 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 342 | rkt | ex-1.43.rkt | #lang racket
;; ex 1.43
(define (compose f g)
(lambda (x) (f (g x))))
(define (repeated f n)
(define (rep-iter f g n)
(if (= n 1)
g
(rep-iter
f
(compose f g)
(- n 1))))
(rep-iter f f n))
(define (square x) (* x x))
(define (inc x) (+ x 1))
((repeated square 2) 5)
((repeated inc 3) 0)
| false |
9465cafefa696942c14b41a7f48de11ce51babf9 | d074b9a2169d667227f0642c76d332c6d517f1ba | /racket-summerschool2019/day3/five.rkt | 6448c7960538182c9553a517fc3db27e2a5eb548 | []
| no_license | zenspider/schemers | 4d0390553dda5f46bd486d146ad5eac0ba74cbb4 | 2939ca553ac79013a4c3aaaec812c1bad3933b16 | refs/heads/master | 2020-12-02T18:27:37.261206 | 2019-07-14T15:27:42 | 2019-07-14T15:27:42 | 26,163,837 | 7 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 669 | rkt | five.rkt | #lang racket
(require syntax/parse/define
(for-syntax racket/match))
(provide (rename-out [define-five define]))
(define-syntax (define-five stx)
#;
(begin
(define e (syntax->list stx))
(define k (list-ref e 1))
(define v (list-ref e 2))
(printf "Assuming that ~s produces 5~n" (syntax->datum v))
#`(define #,k 5))
#;
(match (syntax->list stx)
[`(,_ ,k ,v)
(printf "Assuming that ~s produces 5~n" (syntax->datum v))
#`(define #,k 5)])
(syntax-parse stx
[(_ k v)
(printf "Assuming that ~s produces 5~n" (syntax->datum #'v))
#`(define k 5)])
)
(define-five x 42)
(define-five y (+ 1 2))
(+ x y)
| true |
d5a522ab31387bca90f06d67ed5eec4e032ca4d1 | fc6465100ab657aa1e31af6a4ab77a3284c28ff0 | /results/mildly-unfair-24/list-machine-2-enum-mildly-unfair.rktd | 5c1b994d8f545922b8025e875a694d250229906a | []
| no_license | maxsnew/Redex-Enum-Paper | f5ba64a34904beb6ed9be39ff9a5e1e5413c059b | d77ec860d138cb023628cc41f532dd4eb142f15b | refs/heads/master | 2020-05-21T20:07:31.382540 | 2017-09-04T14:42:13 | 2017-09-04T14:42:13 | 17,602,325 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 796,704 | rktd | list-machine-2-enum-mildly-unfair.rktd | (start 2015-06-16T21:59:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T21:59:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T21:59:46 (#:amount 6782120 #:time 272))
(heartbeat 2015-06-16T21:59:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:00:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:00:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:00:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:00:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:00:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:00:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:01:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:01:12 (#:amount 90986984 #:time 326))
(heartbeat 2015-06-16T22:01:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:01:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:01:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:01:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:01:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:02:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:02:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:02:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:02:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:02:40 (#:amount 95713992 #:time 283))
(heartbeat 2015-06-16T22:02:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:02:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:03:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:03:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:03:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:03:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:03:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:03:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:04:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:04:10 (#:amount 92766904 #:time 326))
(heartbeat 2015-06-16T22:04:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:04:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:04:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:04:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:04:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:05:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:05:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:05:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:05:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:05:40 (#:amount 95116088 #:time 327))
(heartbeat 2015-06-16T22:05:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:05:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:06:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:06:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:06:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:06:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:06:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:06:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:07:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:07:09 (#:amount 92675184 #:time 327))
(heartbeat 2015-06-16T22:07:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:07:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:07:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:07:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:07:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:08:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:08:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:08:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:08:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:08:39 (#:amount 95249568 #:time 327))
(heartbeat 2015-06-16T22:08:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:08:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:09:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:09:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:09:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:09:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:09:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:09:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:10:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:10:08 (#:amount 93050320 #:time 327))
(heartbeat 2015-06-16T22:10:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:10:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:10:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:10:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:10:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:11:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:11:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:11:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:11:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:11:38 (#:amount 94485512 #:time 328))
(heartbeat 2015-06-16T22:11:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:11:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:12:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:12:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:12:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:12:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:12:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:12:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:13:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:13:07 (#:amount 92843256 #:time 329))
(heartbeat 2015-06-16T22:13:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:13:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:13:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:13:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:13:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:14:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:14:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:14:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:14:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:14:37 (#:amount 94994344 #:time 329))
(heartbeat 2015-06-16T22:14:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:14:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:15:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:15:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:15:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:15:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:15:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:15:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:16:05 (#:amount 93028112 #:time 326))
(heartbeat 2015-06-16T22:16:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:16:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:16:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:16:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:16:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:16:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:17:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:17:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:17:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:17:27 (#:amount 94777232 #:time 278))
(heartbeat 2015-06-16T22:17:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:17:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:17:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:18:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:18:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:18:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:18:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:18:41 (#:amount 92968512 #:time 278))
(heartbeat 2015-06-16T22:18:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:18:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:19:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:19:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:19:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:19:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:19:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:19:54 (#:amount 94984952 #:time 285))
(heartbeat 2015-06-16T22:19:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:20:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:20:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:20:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:20:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:20:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:20:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:21:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:21:10 (#:amount 92791984 #:time 312))
(heartbeat 2015-06-16T22:21:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:21:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:21:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:21:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:21:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:22:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:22:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:22:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:22:30 (#:amount 95084840 #:time 331))
(heartbeat 2015-06-16T22:22:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:22:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:22:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:23:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:23:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:23:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:23:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:23:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:23:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:23:59 (#:amount 92808888 #:time 324))
(heartbeat 2015-06-16T22:24:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:24:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:24:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:24:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:24:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:24:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:25:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:25:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:25:25 (#:amount 94965968 #:time 278))
(heartbeat 2015-06-16T22:25:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:25:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:25:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:25:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:26:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:26:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:26:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:26:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:26:38 (#:amount 92985712 #:time 324))
(heartbeat 2015-06-16T22:26:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:26:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:27:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:27:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:27:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:27:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:27:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:27:54 (#:amount 94679360 #:time 279))
(heartbeat 2015-06-16T22:27:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:28:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:28:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:28:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:28:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:28:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:28:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:29:06 (#:amount 92672848 #:time 324))
(heartbeat 2015-06-16T22:29:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:29:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:29:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:29:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:29:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:29:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:30:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:30:16 (#:amount 95357728 #:time 282))
(heartbeat 2015-06-16T22:30:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:30:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:30:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:30:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:30:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:31:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:31:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:31:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:31:27 (#:amount 93446952 #:time 329))
(heartbeat 2015-06-16T22:31:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:31:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:31:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:32:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:32:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:32:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:32:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:32:39 (#:amount 93968080 #:time 281))
(heartbeat 2015-06-16T22:32:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:32:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:33:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:33:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:33:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:33:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:33:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:33:49 (#:amount 93026568 #:time 275))
(heartbeat 2015-06-16T22:33:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:34:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:34:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:34:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:34:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:34:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:34:56 (#:amount 94759432 #:time 280))
(heartbeat 2015-06-16T22:34:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:35:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:35:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:35:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:35:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:35:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:35:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:36:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:36:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:36:24 (#:amount 93026704 #:time 326))
(heartbeat 2015-06-16T22:36:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:36:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:36:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:36:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:37:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:37:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:37:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:37:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:37:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:37:55 (#:amount 94782056 #:time 328))
(heartbeat 2015-06-16T22:37:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:38:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:38:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:38:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:38:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:38:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:38:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:39:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:39:14 (#:amount 93105312 #:time 277))
(heartbeat 2015-06-16T22:39:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:39:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:39:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:39:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:39:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:40:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:40:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:40:19 (#:amount 94680376 #:time 280))
(heartbeat 2015-06-16T22:40:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:40:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:40:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:40:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:41:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:41:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:41:24 (#:amount 93110112 #:time 278))
(heartbeat 2015-06-16T22:41:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:41:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:41:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:41:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:42:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:42:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:42:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:42:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:42:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:42:49 (#:amount 94481648 #:time 328))
(heartbeat 2015-06-16T22:42:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:43:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:43:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:43:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:43:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:43:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:43:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:44:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:44:17 (#:amount 93120368 #:time 282))
(heartbeat 2015-06-16T22:44:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:44:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:44:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:44:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:44:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:45:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:45:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:45:21 (#:amount 94703696 #:time 287))
(heartbeat 2015-06-16T22:45:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:45:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:45:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:45:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:46:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:46:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:46:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:46:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:46:43 (#:amount 93023464 #:time 328))
(heartbeat 2015-06-16T22:46:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:46:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:47:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:47:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:47:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:47:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:47:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:47:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:48:06 (#:amount 94734216 #:time 285))
(heartbeat 2015-06-16T22:48:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:48:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:48:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:48:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:48:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:48:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:49:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:49:14 (#:amount 93202824 #:time 329))
(heartbeat 2015-06-16T22:49:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:49:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:49:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:49:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:49:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:50:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:50:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:50:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:50:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:50:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:50:48 (#:amount 94466768 #:time 327))
(heartbeat 2015-06-16T22:50:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:51:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:51:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:51:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:51:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:51:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:51:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:52:08 (#:amount 93303016 #:time 278))
(heartbeat 2015-06-16T22:52:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:52:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:52:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:52:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:52:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:52:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:53:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:53:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:53:20 (#:amount 94231272 #:time 281))
(heartbeat 2015-06-16T22:53:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:53:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:53:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:53:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:54:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:54:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:54:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:54:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:54:40 (#:amount 93264368 #:time 333))
(heartbeat 2015-06-16T22:54:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:54:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:55:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:55:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:55:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:55:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:55:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:55:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:56:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:56:09 (#:amount 94190400 #:time 331))
(heartbeat 2015-06-16T22:56:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:56:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:56:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:56:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:56:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:57:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:57:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:57:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:57:30 (#:amount 92890400 #:time 331))
(heartbeat 2015-06-16T22:57:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:57:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:57:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:58:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:58:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:58:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:58:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:58:41 (#:amount 94814216 #:time 280))
(heartbeat 2015-06-16T22:58:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:58:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:59:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:59:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:59:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:59:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T22:59:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T22:59:50 (#:amount 92839256 #:time 280))
(heartbeat 2015-06-16T22:59:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:00:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:00:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:00:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:00:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:00:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:00:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:01:04 (#:amount 95257712 #:time 279))
(heartbeat 2015-06-16T23:01:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:01:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:01:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:01:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:01:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:01:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:02:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:02:17 (#:amount 93344984 #:time 283))
(heartbeat 2015-06-16T23:02:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:02:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:02:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:02:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:02:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:03:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:03:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:03:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:03:29 (#:amount 94012576 #:time 326))
(heartbeat 2015-06-16T23:03:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:03:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:03:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:04:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:04:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:04:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:04:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:04:41 (#:amount 93096952 #:time 280))
(heartbeat 2015-06-16T23:04:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:04:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:05:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:05:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:05:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:05:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:05:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:05:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:06:01 (#:amount 94537016 #:time 334))
(heartbeat 2015-06-16T23:06:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:06:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:06:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:06:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:06:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:06:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:07:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:07:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:07:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:07:32 (#:amount 92941496 #:time 331))
(heartbeat 2015-06-16T23:07:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:07:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:07:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:08:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:08:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:08:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:08:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:08:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:08:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:09:03 (#:amount 94986664 #:time 328))
(heartbeat 2015-06-16T23:09:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:09:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:09:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:09:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:09:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:09:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:10:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:10:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:10:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:10:32 (#:amount 92962072 #:time 327))
(heartbeat 2015-06-16T23:10:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:10:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:10:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:11:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:11:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:11:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:11:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:11:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:11:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:12:03 (#:amount 95048744 #:time 328))
(heartbeat 2015-06-16T23:12:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:12:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:12:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:12:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:12:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:12:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:13:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:13:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:13:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:13:33 (#:amount 93037664 #:time 329))
(heartbeat 2015-06-16T23:13:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:13:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:13:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:14:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:14:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:14:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:14:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:14:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:14:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:15:01 (#:amount 94713104 #:time 278))
(heartbeat 2015-06-16T23:15:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:15:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:15:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:15:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:15:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:15:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:16:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:16:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:16:24 (#:amount 93008896 #:time 327))
(heartbeat 2015-06-16T23:16:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:16:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:16:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:16:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:17:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:17:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:17:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:17:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:17:44 (#:amount 94900752 #:time 282))
(heartbeat 2015-06-16T23:17:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:17:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:18:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:18:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:18:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:18:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:18:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:18:58 (#:amount 92852512 #:time 280))
(heartbeat 2015-06-16T23:18:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:19:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:19:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:19:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:19:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:19:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:19:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:20:08 (#:amount 94996704 #:time 281))
(heartbeat 2015-06-16T23:20:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:20:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:20:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:20:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:20:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:20:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:21:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:21:17 (#:amount 92949040 #:time 280))
(heartbeat 2015-06-16T23:21:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:21:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:21:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:21:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:21:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:22:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:22:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:22:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:22:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:22:46 (#:amount 95020872 #:time 279))
(heartbeat 2015-06-16T23:22:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:22:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:23:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:23:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:23:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:23:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:23:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:23:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:24:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:24:14 (#:amount 92999472 #:time 324))
(heartbeat 2015-06-16T23:24:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:24:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:24:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:24:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:24:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:25:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:25:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:25:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:25:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:25:41 (#:amount 94852272 #:time 333))
(heartbeat 2015-06-16T23:25:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:25:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:26:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:26:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:26:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:26:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:26:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:26:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:27:07 (#:amount 92953672 #:time 331))
(heartbeat 2015-06-16T23:27:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:27:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:27:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:27:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:27:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:27:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:28:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:28:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:28:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:28:37 (#:amount 95107408 #:time 336))
(heartbeat 2015-06-16T23:28:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:28:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:28:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:29:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:29:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:29:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:29:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:29:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:29:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:30:08 (#:amount 93178624 #:time 329))
(heartbeat 2015-06-16T23:30:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:30:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:30:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:30:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:30:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:30:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:31:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:31:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:31:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:31:31 (#:amount 94669552 #:time 280))
(heartbeat 2015-06-16T23:31:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:31:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:31:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:32:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:32:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:32:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:32:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:32:48 (#:amount 92995072 #:time 280))
(heartbeat 2015-06-16T23:32:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:32:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:33:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:33:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:33:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:33:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:33:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:33:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:34:03 (#:amount 94740040 #:time 332))
(heartbeat 2015-06-16T23:34:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:34:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:34:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:34:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:34:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:35:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:35:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:35:16 (#:amount 93063912 #:time 330))
(heartbeat 2015-06-16T23:35:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:35:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:35:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:35:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:36:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:36:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:36:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:36:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:36:30 (#:amount 94631840 #:time 279))
(heartbeat 2015-06-16T23:36:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:36:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:37:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:37:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:37:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:37:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:37:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:37:40 (#:amount 92900736 #:time 280))
(heartbeat 2015-06-16T23:37:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:38:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:38:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:38:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:38:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:38:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:38:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:39:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:39:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:39:12 (#:amount 95146392 #:time 335))
(heartbeat 2015-06-16T23:39:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:39:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:39:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:39:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:40:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:40:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:40:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:40:20 (#:amount 92988240 #:time 327))
(heartbeat 2015-06-16T23:40:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:40:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:40:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:41:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:41:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:41:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:41:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:41:32 (#:amount 94894472 #:time 327))
(heartbeat 2015-06-16T23:41:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:41:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:42:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:42:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:42:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:42:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:42:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:42:44 (#:amount 92969272 #:time 279))
(heartbeat 2015-06-16T23:42:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:43:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:43:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:43:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:43:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:43:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:43:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:43:55 (#:amount 94985176 #:time 279))
(heartbeat 2015-06-16T23:44:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:44:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:44:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:44:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:44:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:44:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:45:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:45:06 (#:amount 92938000 #:time 324))
(heartbeat 2015-06-16T23:45:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:45:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:45:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:45:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:45:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:46:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:46:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:46:17 (#:amount 94985104 #:time 283))
(heartbeat 2015-06-16T23:46:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:46:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:46:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:46:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:47:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:47:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:47:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:47:27 (#:amount 92830368 #:time 325))
(heartbeat 2015-06-16T23:47:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:47:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:47:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:48:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:48:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:48:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:48:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:48:39 (#:amount 95207208 #:time 281))
(heartbeat 2015-06-16T23:48:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:48:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:49:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:49:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:49:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:49:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:49:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:49:46 (#:amount 92957064 #:time 278))
(heartbeat 2015-06-16T23:49:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:50:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:50:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:50:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:50:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:50:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:50:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:50:59 (#:amount 95000992 #:time 280))
(heartbeat 2015-06-16T23:51:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:51:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:51:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:51:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:51:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:51:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:52:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:52:10 (#:amount 93158680 #:time 279))
(heartbeat 2015-06-16T23:52:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:52:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:52:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:52:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:52:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:53:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:53:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:53:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:53:24 (#:amount 94648840 #:time 326))
(heartbeat 2015-06-16T23:53:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:53:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:53:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:54:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:54:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:54:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:54:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:54:32 (#:amount 93170640 #:time 279))
(heartbeat 2015-06-16T23:54:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:54:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:55:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:55:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:55:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:55:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:55:37 (#:amount 94376032 #:time 280))
(heartbeat 2015-06-16T23:55:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:55:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:56:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:56:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:56:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:56:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:56:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:56:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:56:57 (#:amount 93072120 #:time 332))
(heartbeat 2015-06-16T23:57:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:57:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:57:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:57:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:57:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:57:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:58:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:58:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:58:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-16T23:58:29 (#:amount 94734816 #:time 329))
(heartbeat 2015-06-16T23:58:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:58:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:58:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:59:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:59:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:59:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:59:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:59:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-16T23:59:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:00:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:00:01 (#:amount 92839840 #:time 336))
(heartbeat 2015-06-17T00:00:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:00:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:00:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:00:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:00:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:01:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:01:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:01:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:01:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:01:35 (#:amount 95199024 #:time 330))
(heartbeat 2015-06-17T00:01:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:01:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:02:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:02:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:02:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:02:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:02:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:02:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:03:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:03:07 (#:amount 93037096 #:time 328))
(heartbeat 2015-06-17T00:03:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:03:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:03:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:03:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:03:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:04:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:04:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:04:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:04:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:04:34 (#:amount 94672320 #:time 279))
(heartbeat 2015-06-17T00:04:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:04:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:05:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:05:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:05:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:05:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:05:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:05:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:05:53 (#:amount 92854040 #:time 331))
(heartbeat 2015-06-17T00:06:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:06:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:06:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:06:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:06:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:06:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:07:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:07:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:07:11 (#:amount 95215120 #:time 334))
(heartbeat 2015-06-17T00:07:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:07:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:07:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:07:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:08:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:08:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:08:20 (#:amount 93084232 #:time 281))
(heartbeat 2015-06-17T00:08:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:08:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:08:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:08:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:09:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:09:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:09:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:09:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:09:33 (#:amount 94550656 #:time 279))
(heartbeat 2015-06-17T00:09:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:09:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:10:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:10:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:10:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:10:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:10:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:10:43 (#:amount 93098720 #:time 326))
(heartbeat 2015-06-17T00:10:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:11:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:11:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:11:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:11:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:11:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:11:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:11:56 (#:amount 94727832 #:time 280))
(heartbeat 2015-06-17T00:12:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:12:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:12:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:12:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:12:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:12:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:13:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:13:06 (#:amount 93115600 #:time 278))
(heartbeat 2015-06-17T00:13:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:13:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:13:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:13:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:13:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:14:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:14:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:14:12 (#:amount 94572072 #:time 285))
(heartbeat 2015-06-17T00:14:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:14:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:14:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:14:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:15:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:15:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:15:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:15:22 (#:amount 92787888 #:time 280))
(heartbeat 2015-06-17T00:15:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:15:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:15:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:16:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:16:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:16:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:16:29 (#:amount 95397208 #:time 290))
(heartbeat 2015-06-17T00:16:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:16:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:16:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:17:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:17:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:17:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:17:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:17:34 (#:amount 93183552 #:time 276))
(heartbeat 2015-06-17T00:17:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:17:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:18:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:18:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:18:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:18:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:18:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:18:43 (#:amount 94437096 #:time 280))
(heartbeat 2015-06-17T00:18:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:19:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:19:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:19:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:19:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:19:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:19:48 (#:amount 93017096 #:time 279))
(heartbeat 2015-06-17T00:19:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:20:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:20:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:20:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:20:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:20:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:20:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:20:55 (#:amount 94782688 #:time 284))
(heartbeat 2015-06-17T00:21:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:21:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:21:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:21:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:21:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:21:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:22:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:22:05 (#:amount 92951248 #:time 277))
(heartbeat 2015-06-17T00:22:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:22:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:22:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:22:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:22:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:23:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:23:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:23:13 (#:amount 94957512 #:time 278))
(heartbeat 2015-06-17T00:23:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:23:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:23:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:23:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:24:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:24:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:24:18 (#:amount 92943768 #:time 276))
(heartbeat 2015-06-17T00:24:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:24:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:24:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:24:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:25:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:25:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:25:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:25:28 (#:amount 95117592 #:time 279))
(heartbeat 2015-06-17T00:25:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:25:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:25:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:26:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:26:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:26:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:26:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:26:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:26:45 (#:amount 93237256 #:time 331))
(heartbeat 2015-06-17T00:26:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:27:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:27:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:27:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:27:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:27:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:27:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:28:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:28:07 (#:amount 94418384 #:time 281))
(heartbeat 2015-06-17T00:28:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:28:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:28:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:28:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:28:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:29:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:29:11 (#:amount 92997472 #:time 278))
(heartbeat 2015-06-17T00:29:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:29:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:29:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:29:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:29:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:30:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:30:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:30:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:30:22 (#:amount 94943152 #:time 328))
(heartbeat 2015-06-17T00:30:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:30:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:30:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:31:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:31:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:31:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:31:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:31:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:31:45 (#:amount 93051216 #:time 278))
(heartbeat 2015-06-17T00:31:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:32:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:32:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:32:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:32:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:32:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:32:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:32:55 (#:amount 94508304 #:time 279))
(heartbeat 2015-06-17T00:33:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:33:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:33:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:33:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:33:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:33:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:34:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:34:10 (#:amount 92889432 #:time 279))
(heartbeat 2015-06-17T00:34:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:34:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:34:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:34:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:34:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:35:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:35:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:35:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:35:30 (#:amount 95135944 #:time 331))
(heartbeat 2015-06-17T00:35:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:35:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:35:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:36:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:36:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:36:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:36:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:36:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:36:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:36:58 (#:amount 92902992 #:time 282))
(heartbeat 2015-06-17T00:37:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:37:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:37:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:37:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:37:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:37:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:38:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:38:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:38:12 (#:amount 95007320 #:time 282))
(heartbeat 2015-06-17T00:38:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:38:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:38:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:38:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:39:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:39:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:39:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:39:31 (#:amount 92983792 #:time 329))
(heartbeat 2015-06-17T00:39:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:39:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:39:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:40:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:40:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:40:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:40:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:40:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:40:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:41:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:41:05 (#:amount 95073608 #:time 330))
(heartbeat 2015-06-17T00:41:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:41:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:41:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:41:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:41:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:42:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:42:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:42:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:42:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:42:38 (#:amount 92785536 #:time 330))
(heartbeat 2015-06-17T00:42:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:42:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:43:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:43:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:43:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:43:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:43:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:43:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:44:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:44:11 (#:amount 95134360 #:time 332))
(heartbeat 2015-06-17T00:44:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:44:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:44:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:44:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:44:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:45:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:45:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:45:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:45:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:45:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:45:44 (#:amount 92759488 #:time 330))
(heartbeat 2015-06-17T00:45:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:46:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:46:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:46:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:46:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:46:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:46:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:47:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:47:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:47:18 (#:amount 95434248 #:time 330))
(heartbeat 2015-06-17T00:47:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:47:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:47:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:47:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:48:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:48:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:48:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:48:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:48:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:48:51 (#:amount 92931384 #:time 330))
(heartbeat 2015-06-17T00:48:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:49:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:49:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:49:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:49:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:49:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:49:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:50:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:50:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:50:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:50:25 (#:amount 95088384 #:time 328))
(heartbeat 2015-06-17T00:50:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:50:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:50:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:51:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:51:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:51:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:51:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:51:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:51:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:51:57 (#:amount 92954192 #:time 328))
(heartbeat 2015-06-17T00:52:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:52:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:52:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:52:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:52:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:52:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:53:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:53:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:53:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:53:31 (#:amount 95024424 #:time 333))
(heartbeat 2015-06-17T00:53:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:53:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:53:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:54:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:54:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:54:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:54:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:54:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:54:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:55:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:55:04 (#:amount 92736648 #:time 293))
(heartbeat 2015-06-17T00:55:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:55:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:55:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:55:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:55:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:56:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:56:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:56:20 (#:amount 95385336 #:time 304))
(heartbeat 2015-06-17T00:56:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:56:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:56:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:56:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:57:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:57:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:57:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:57:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:57:36 (#:amount 93220320 #:time 332))
(heartbeat 2015-06-17T00:57:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:57:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:58:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:58:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:58:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:58:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:58:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T00:58:49 (#:amount 94525432 #:time 329))
(heartbeat 2015-06-17T00:58:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:59:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:59:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:59:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:59:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:59:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T00:59:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:00:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:00:03 (#:amount 93032440 #:time 279))
(heartbeat 2015-06-17T01:00:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:00:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:00:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:00:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:00:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:01:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:01:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:01:21 (#:amount 94876896 #:time 333))
(heartbeat 2015-06-17T01:01:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:01:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:01:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:01:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:02:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:02:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:02:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:02:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:02:34 (#:amount 92882120 #:time 282))
(heartbeat 2015-06-17T01:02:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:02:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:03:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:03:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:03:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:03:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:03:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:03:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:03:56 (#:amount 95212264 #:time 330))
(heartbeat 2015-06-17T01:04:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:04:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:04:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:04:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:04:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:04:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:05:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:05:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:05:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:05:24 (#:amount 93033880 #:time 328))
(heartbeat 2015-06-17T01:05:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:05:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:05:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:06:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:06:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:06:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:06:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:06:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:06:53 (#:amount 94739656 #:time 330))
(heartbeat 2015-06-17T01:06:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:07:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:07:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:07:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:07:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:07:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:07:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:08:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:08:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:08:21 (#:amount 92832368 #:time 329))
(heartbeat 2015-06-17T01:08:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:08:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:08:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:08:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:09:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:09:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:09:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:09:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:09:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:09:53 (#:amount 95129160 #:time 331))
(heartbeat 2015-06-17T01:09:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:10:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:10:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:10:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:10:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:10:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:10:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:11:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:11:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:11:17 (#:amount 93149592 #:time 329))
(heartbeat 2015-06-17T01:11:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:11:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:11:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:11:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:12:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:12:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:12:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:12:29 (#:amount 94516080 #:time 281))
(heartbeat 2015-06-17T01:12:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:12:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:12:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:13:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:13:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:13:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:13:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:13:39 (#:amount 93028112 #:time 282))
(heartbeat 2015-06-17T01:13:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:13:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:14:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:14:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:14:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:14:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:14:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:14:49 (#:amount 94861472 #:time 289))
(heartbeat 2015-06-17T01:14:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:15:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:15:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:15:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:15:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:15:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:15:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:15:59 (#:amount 93192920 #:time 281))
(heartbeat 2015-06-17T01:16:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:16:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:16:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:16:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:16:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:16:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:17:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:17:08 (#:amount 94589168 #:time 283))
(heartbeat 2015-06-17T01:17:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:17:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:17:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:17:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:17:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:18:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:18:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:18:18 (#:amount 93199632 #:time 278))
(heartbeat 2015-06-17T01:18:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:18:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:18:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:18:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:19:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:19:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:19:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:19:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:19:43 (#:amount 94490624 #:time 331))
(heartbeat 2015-06-17T01:19:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:19:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:20:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:20:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:20:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:20:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:20:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:20:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:21:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:21:12 (#:amount 92830200 #:time 333))
(heartbeat 2015-06-17T01:21:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:21:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:21:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:21:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:21:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:22:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:22:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:22:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:22:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:22:37 (#:amount 95258032 #:time 333))
(heartbeat 2015-06-17T01:22:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:22:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:23:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:23:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:23:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:23:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:23:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:23:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:24:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:24:08 (#:amount 93086176 #:time 330))
(heartbeat 2015-06-17T01:24:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:24:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:24:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:24:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:24:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:25:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:25:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:25:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:25:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:25:40 (#:amount 94826488 #:time 335))
(heartbeat 2015-06-17T01:25:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:25:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:26:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:26:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:26:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:26:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:26:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:26:48 (#:amount 93039728 #:time 283))
(heartbeat 2015-06-17T01:26:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:27:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:27:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:27:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:27:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:27:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:27:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:28:01 (#:amount 94632160 #:time 281))
(heartbeat 2015-06-17T01:28:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:28:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:28:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:28:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:28:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:28:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:29:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:29:11 (#:amount 93029272 #:time 279))
(heartbeat 2015-06-17T01:29:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:29:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:29:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:29:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:29:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:30:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:30:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:30:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:30:26 (#:amount 94993952 #:time 280))
(heartbeat 2015-06-17T01:30:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:30:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:30:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:31:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:31:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:31:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:31:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:31:36 (#:amount 92976792 #:time 286))
(heartbeat 2015-06-17T01:31:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:31:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:32:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:32:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:32:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:32:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:32:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:32:46 (#:amount 94947520 #:time 282))
(heartbeat 2015-06-17T01:32:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:33:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:33:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:33:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:33:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:33:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:33:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:33:59 (#:amount 93095648 #:time 280))
(heartbeat 2015-06-17T01:34:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:34:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:34:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:34:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:34:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:34:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:35:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:35:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:35:18 (#:amount 94617744 #:time 329))
(heartbeat 2015-06-17T01:35:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:35:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:35:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:35:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:36:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:36:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:36:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:36:34 (#:amount 93041432 #:time 278))
(heartbeat 2015-06-17T01:36:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:36:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:36:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:37:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:37:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:37:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:37:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:37:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:37:46 (#:amount 94780296 #:time 330))
(heartbeat 2015-06-17T01:37:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:38:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:38:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:38:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:38:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:38:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:38:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:39:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:39:07 (#:amount 92896232 #:time 324))
(heartbeat 2015-06-17T01:39:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:39:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:39:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:39:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:39:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:40:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:40:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:40:16 (#:amount 95281600 #:time 329))
(heartbeat 2015-06-17T01:40:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:40:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:40:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:40:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:41:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:41:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:41:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:41:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:41:38 (#:amount 92939136 #:time 282))
(heartbeat 2015-06-17T01:41:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:41:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:42:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:42:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:42:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:42:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:42:44 (#:amount 94801592 #:time 278))
(heartbeat 2015-06-17T01:42:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:42:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:43:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:43:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:43:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:43:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:43:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:43:50 (#:amount 92909464 #:time 281))
(heartbeat 2015-06-17T01:43:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:44:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:44:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:44:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:44:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:44:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:44:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:45:04 (#:amount 94964184 #:time 329))
(heartbeat 2015-06-17T01:45:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:45:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:45:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:45:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:45:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:45:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:46:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:46:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:46:24 (#:amount 93140512 #:time 327))
(heartbeat 2015-06-17T01:46:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:46:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:46:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:46:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:47:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:47:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:47:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:47:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:47:35 (#:amount 94666832 #:time 285))
(heartbeat 2015-06-17T01:47:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:47:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:48:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:48:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:48:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:48:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:48:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:48:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:48:56 (#:amount 92868096 #:time 327))
(heartbeat 2015-06-17T01:49:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:49:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:49:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:49:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:49:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:49:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:50:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:50:11 (#:amount 95260864 #:time 330))
(heartbeat 2015-06-17T01:50:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:50:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:50:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:50:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:50:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:51:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:51:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:51:23 (#:amount 93220896 #:time 328))
(heartbeat 2015-06-17T01:51:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:51:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:51:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:51:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:52:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:52:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:52:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:52:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:52:37 (#:amount 94371344 #:time 331))
(heartbeat 2015-06-17T01:52:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:52:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:53:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:53:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:53:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:53:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:53:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:53:48 (#:amount 93264816 #:time 321))
(heartbeat 2015-06-17T01:53:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:54:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:54:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:54:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:54:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:54:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:54:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:54:55 (#:amount 94336984 #:time 330))
(heartbeat 2015-06-17T01:55:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:55:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:55:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:55:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:55:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:55:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:56:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:56:08 (#:amount 93144392 #:time 329))
(heartbeat 2015-06-17T01:56:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:56:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:56:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:56:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:56:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:57:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:57:14 (#:amount 94500312 #:time 286))
(heartbeat 2015-06-17T01:57:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:57:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:57:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:57:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:57:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:58:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:58:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:58:19 (#:amount 92994672 #:time 282))
(heartbeat 2015-06-17T01:58:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:58:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:58:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:58:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:59:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:59:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:59:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T01:59:26 (#:amount 94911824 #:time 327))
(heartbeat 2015-06-17T01:59:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:59:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T01:59:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:00:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:00:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:00:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:00:31 (#:amount 93160648 #:time 280))
(heartbeat 2015-06-17T02:00:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:00:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:00:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:01:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:01:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:01:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:01:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:01:44 (#:amount 94627176 #:time 334))
(heartbeat 2015-06-17T02:01:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:01:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:02:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:02:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:02:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:02:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:02:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:02:55 (#:amount 93152736 #:time 306))
(heartbeat 2015-06-17T02:02:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:03:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:03:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:03:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:03:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:03:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:03:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:04:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:04:06 (#:amount 94499272 #:time 305))
(heartbeat 2015-06-17T02:04:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:04:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:04:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:04:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:04:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:05:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:05:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:05:18 (#:amount 93305776 #:time 325))
(heartbeat 2015-06-17T02:05:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:05:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:05:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:05:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:06:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:06:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:06:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:06:31 (#:amount 94419592 #:time 279))
(heartbeat 2015-06-17T02:06:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:06:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:06:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:07:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:07:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:07:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:07:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:07:45 (#:amount 92829112 #:time 282))
(heartbeat 2015-06-17T02:07:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:07:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:08:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:08:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:08:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:08:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:08:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:08:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:09:01 (#:amount 95257232 #:time 282))
(heartbeat 2015-06-17T02:09:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:09:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:09:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:09:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:09:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:09:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:10:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:10:09 (#:amount 93200280 #:time 326))
(heartbeat 2015-06-17T02:10:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:10:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:10:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:10:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:10:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:11:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:11:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:11:18 (#:amount 94437176 #:time 282))
(heartbeat 2015-06-17T02:11:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:11:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:11:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:11:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:12:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:12:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:12:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:12:31 (#:amount 93259120 #:time 308))
(heartbeat 2015-06-17T02:12:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:12:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:12:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:13:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:13:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:13:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:13:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:13:43 (#:amount 94455696 #:time 330))
(heartbeat 2015-06-17T02:13:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:13:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:14:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:14:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:14:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:14:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:14:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:14:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:15:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:15:14 (#:amount 93051928 #:time 332))
(heartbeat 2015-06-17T02:15:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:15:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:15:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:15:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:15:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:16:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:16:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:16:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:16:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:16:39 (#:amount 94803784 #:time 309))
(heartbeat 2015-06-17T02:16:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:16:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:17:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:17:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:17:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:17:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:17:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:17:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:18:03 (#:amount 92990264 #:time 280))
(heartbeat 2015-06-17T02:18:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:18:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:18:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:18:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:18:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:18:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:19:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:19:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:19:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:19:32 (#:amount 94891800 #:time 331))
(heartbeat 2015-06-17T02:19:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:19:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:19:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:20:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:20:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:20:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:20:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:20:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:20:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:20:56 (#:amount 93103416 #:time 287))
(heartbeat 2015-06-17T02:21:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:21:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:21:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:21:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:21:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:21:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:22:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:22:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:22:25 (#:amount 94925704 #:time 336))
(heartbeat 2015-06-17T02:22:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:22:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:22:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:22:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:23:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:23:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:23:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:23:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:23:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:23:55 (#:amount 92911704 #:time 330))
(heartbeat 2015-06-17T02:23:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:24:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:24:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:24:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:24:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:24:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:24:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:25:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:25:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:25:19 (#:amount 95035784 #:time 331))
(heartbeat 2015-06-17T02:25:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:25:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:25:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:25:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:26:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:26:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:26:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:26:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:26:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:26:52 (#:amount 93059136 #:time 331))
(heartbeat 2015-06-17T02:26:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:27:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:27:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:27:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:27:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:27:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:27:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:28:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:28:13 (#:amount 94719392 #:time 281))
(heartbeat 2015-06-17T02:28:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:28:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:28:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:28:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:28:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:29:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:29:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:29:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:29:29 (#:amount 93151888 #:time 277))
(heartbeat 2015-06-17T02:29:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:29:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:29:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:30:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:30:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:30:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:30:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:30:43 (#:amount 94434128 #:time 287))
(heartbeat 2015-06-17T02:30:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:30:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:31:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:31:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:31:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:31:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:31:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:31:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:32:03 (#:amount 93338864 #:time 330))
(heartbeat 2015-06-17T02:32:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:32:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:32:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:32:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:32:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:32:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:33:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:33:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:33:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:33:33 (#:amount 94404064 #:time 326))
(heartbeat 2015-06-17T02:33:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:33:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:33:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:34:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:34:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:34:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:34:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:34:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:34:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:35:01 (#:amount 92949752 #:time 327))
(heartbeat 2015-06-17T02:35:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:35:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:35:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:35:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:35:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:35:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:36:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:36:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:36:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:36:33 (#:amount 94990264 #:time 329))
(heartbeat 2015-06-17T02:36:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:36:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:36:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:37:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:37:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:37:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:37:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:37:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:37:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:38:00 (#:amount 92894304 #:time 328))
(heartbeat 2015-06-17T02:38:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:38:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:38:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:38:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:38:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:38:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:39:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:39:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:39:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:39:31 (#:amount 95086088 #:time 333))
(heartbeat 2015-06-17T02:39:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:39:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:39:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:40:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:40:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:40:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:40:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:40:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:40:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:40:59 (#:amount 93059280 #:time 289))
(heartbeat 2015-06-17T02:41:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:41:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:41:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:41:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:41:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:41:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:42:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:42:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:42:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:42:31 (#:amount 94707928 #:time 333))
(heartbeat 2015-06-17T02:42:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:42:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:42:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:43:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:43:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:43:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:43:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:43:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:43:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:44:03 (#:amount 92931864 #:time 280))
(heartbeat 2015-06-17T02:44:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:44:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:44:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:44:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:44:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:44:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:45:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:45:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:45:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:45:27 (#:amount 95027536 #:time 322))
(heartbeat 2015-06-17T02:45:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:45:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:45:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:46:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:46:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:46:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:46:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:46:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:46:50 (#:amount 93169024 #:time 330))
(heartbeat 2015-06-17T02:46:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:47:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:47:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:47:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:47:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:47:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:47:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:48:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:48:16 (#:amount 94585024 #:time 331))
(heartbeat 2015-06-17T02:48:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:48:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:48:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:48:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:48:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:49:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:49:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:49:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:49:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:49:42 (#:amount 93121672 #:time 331))
(heartbeat 2015-06-17T02:49:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:49:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:50:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:50:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:50:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:50:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:50:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:50:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:51:06 (#:amount 94897896 #:time 332))
(heartbeat 2015-06-17T02:51:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:51:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:51:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:51:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:51:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:51:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:52:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:52:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:52:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:52:32 (#:amount 92903928 #:time 283))
(heartbeat 2015-06-17T02:52:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:52:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:52:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:53:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:53:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:53:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:53:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:53:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:53:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:54:00 (#:amount 95219128 #:time 329))
(heartbeat 2015-06-17T02:54:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:54:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:54:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:54:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:54:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:54:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:55:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:55:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:55:22 (#:amount 93139368 #:time 330))
(heartbeat 2015-06-17T02:55:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:55:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:55:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:55:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:56:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:56:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:56:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:56:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:56:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:56:48 (#:amount 94563152 #:time 331))
(heartbeat 2015-06-17T02:56:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:57:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:57:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:57:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:57:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:57:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:57:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:58:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:58:13 (#:amount 92937328 #:time 280))
(heartbeat 2015-06-17T02:58:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:58:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:58:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:58:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:58:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:59:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:59:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:59:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:59:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T02:59:43 (#:amount 94928208 #:time 332))
(heartbeat 2015-06-17T02:59:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T02:59:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:00:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:00:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:00:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:00:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:00:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:00:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:01:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:01:11 (#:amount 93259048 #:time 327))
(heartbeat 2015-06-17T03:01:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:01:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:01:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:01:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:01:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:02:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:02:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:02:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:02:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:02:39 (#:amount 94159592 #:time 330))
(heartbeat 2015-06-17T03:02:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:02:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:03:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:03:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:03:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:03:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:03:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:03:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:04:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:04:11 (#:amount 93141568 #:time 332))
(heartbeat 2015-06-17T03:04:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:04:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:04:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:04:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:04:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:05:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:05:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:05:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:05:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:05:40 (#:amount 94695736 #:time 328))
(heartbeat 2015-06-17T03:05:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:05:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:06:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:06:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:06:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:06:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:06:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:06:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:07:04 (#:amount 93063488 #:time 329))
(heartbeat 2015-06-17T03:07:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:07:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:07:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:07:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:07:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:07:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:08:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:08:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:08:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:08:36 (#:amount 94811944 #:time 329))
(heartbeat 2015-06-17T03:08:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:08:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:08:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:09:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:09:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:09:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:09:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:09:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:09:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:10:07 (#:amount 92922048 #:time 330))
(heartbeat 2015-06-17T03:10:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:10:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:10:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:10:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:10:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:10:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:11:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:11:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:11:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:11:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:11:39 (#:amount 95205272 #:time 330))
(heartbeat 2015-06-17T03:11:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:11:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:12:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:12:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:12:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:12:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:12:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:12:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:13:07 (#:amount 93190168 #:time 328))
(heartbeat 2015-06-17T03:13:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:13:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:13:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:13:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:13:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:13:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:14:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:14:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:14:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:14:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:14:39 (#:amount 94412168 #:time 334))
(heartbeat 2015-06-17T03:14:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:14:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:15:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:15:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:15:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:15:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:15:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:15:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:16:05 (#:amount 92760168 #:time 326))
(heartbeat 2015-06-17T03:16:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:16:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:16:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:16:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:16:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:16:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:17:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:17:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:17:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:17:33 (#:amount 95427640 #:time 329))
(heartbeat 2015-06-17T03:17:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:17:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:17:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:18:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:18:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:18:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:18:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:18:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:18:56 (#:amount 92884400 #:time 330))
(heartbeat 2015-06-17T03:18:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:19:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:19:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:19:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:19:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:19:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:19:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:20:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:20:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:20:25 (#:amount 95201272 #:time 297))
(heartbeat 2015-06-17T03:20:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:20:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:20:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:20:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:21:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:21:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:21:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:21:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:21:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:21:51 (#:amount 92940664 #:time 328))
(heartbeat 2015-06-17T03:21:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:22:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:22:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:22:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:22:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:22:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:22:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:23:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:23:17 (#:amount 94855896 #:time 338))
(heartbeat 2015-06-17T03:23:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:23:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:23:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:23:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:23:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:24:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:24:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:24:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:24:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:24:48 (#:amount 93050984 #:time 330))
(heartbeat 2015-06-17T03:24:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:24:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:25:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:25:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:25:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:25:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:25:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:25:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:26:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:26:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:26:19 (#:amount 95176488 #:time 328))
(heartbeat 2015-06-17T03:26:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:26:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:26:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:26:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:27:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:27:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:27:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:27:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:27:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:27:51 (#:amount 92793072 #:time 329))
(heartbeat 2015-06-17T03:27:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:28:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:28:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:28:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:28:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:28:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:28:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:29:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:29:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:29:25 (#:amount 95088088 #:time 336))
(heartbeat 2015-06-17T03:29:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:29:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:29:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:29:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:30:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:30:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:30:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:30:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:30:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:30:57 (#:amount 93104848 #:time 332))
(heartbeat 2015-06-17T03:30:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:31:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:31:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:31:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:31:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:31:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:31:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:32:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:32:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:32:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:32:30 (#:amount 94712512 #:time 341))
(heartbeat 2015-06-17T03:32:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:32:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:32:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:33:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:33:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:33:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:33:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:33:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:33:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:34:01 (#:amount 93078808 #:time 332))
(heartbeat 2015-06-17T03:34:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:34:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:34:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:34:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:34:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:34:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:35:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:35:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:35:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:35:34 (#:amount 94595280 #:time 331))
(heartbeat 2015-06-17T03:35:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:35:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:35:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:36:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:36:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:36:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:36:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:36:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:36:56 (#:amount 93102480 #:time 326))
(heartbeat 2015-06-17T03:36:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:37:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:37:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:37:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:37:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:37:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:37:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:38:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:38:16 (#:amount 94732056 #:time 281))
(heartbeat 2015-06-17T03:38:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:38:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:38:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:38:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:38:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:39:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:39:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:39:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:39:36 (#:amount 93190136 #:time 328))
(heartbeat 2015-06-17T03:39:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:39:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:39:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:40:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:40:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:40:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:40:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:40:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:40:54 (#:amount 94463728 #:time 328))
(heartbeat 2015-06-17T03:40:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:41:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:41:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:41:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:41:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:41:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:41:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:42:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:42:13 (#:amount 92754288 #:time 334))
(heartbeat 2015-06-17T03:42:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:42:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:42:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:42:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:42:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:43:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:43:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:43:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:43:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:43:39 (#:amount 95422968 #:time 331))
(heartbeat 2015-06-17T03:43:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:43:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:44:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:44:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:44:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:44:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:44:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:44:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:45:01 (#:amount 93147464 #:time 328))
(heartbeat 2015-06-17T03:45:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:45:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:45:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:45:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:45:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:45:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:46:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:46:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:46:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:46:31 (#:amount 94709656 #:time 335))
(heartbeat 2015-06-17T03:46:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:46:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:46:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:47:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:47:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:47:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:47:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:47:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:47:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:48:02 (#:amount 93250776 #:time 332))
(heartbeat 2015-06-17T03:48:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:48:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:48:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:48:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:48:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:48:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:49:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:49:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:49:28 (#:amount 94548528 #:time 333))
(heartbeat 2015-06-17T03:49:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:49:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:49:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:49:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:50:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:50:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:50:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:50:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:50:48 (#:amount 93094704 #:time 332))
(heartbeat 2015-06-17T03:50:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:50:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:51:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:51:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:51:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:51:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:51:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:51:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:52:01 (#:amount 94917000 #:time 283))
(heartbeat 2015-06-17T03:52:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:52:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:52:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:52:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:52:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:52:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:53:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:53:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:53:28 (#:amount 92867704 #:time 328))
(heartbeat 2015-06-17T03:53:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:53:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:53:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:53:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:54:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:54:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:54:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:54:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:54:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:54:55 (#:amount 95072696 #:time 282))
(heartbeat 2015-06-17T03:54:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:55:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:55:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:55:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:55:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:55:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:55:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:56:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:56:17 (#:amount 93043736 #:time 279))
(heartbeat 2015-06-17T03:56:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:56:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:56:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:56:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:56:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:57:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:57:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:57:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:57:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:57:43 (#:amount 94808368 #:time 331))
(heartbeat 2015-06-17T03:57:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:57:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:58:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:58:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:58:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:58:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:58:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:59:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T03:59:02 (#:amount 93016384 #:time 329))
(heartbeat 2015-06-17T03:59:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:59:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:59:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:59:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T03:59:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:00:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:00:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:00:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:00:29 (#:amount 94716080 #:time 330))
(heartbeat 2015-06-17T04:00:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:00:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:00:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:01:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:01:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:01:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:01:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:01:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:01:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:01:51 (#:amount 93115680 #:time 329))
(heartbeat 2015-06-17T04:02:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:02:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:02:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:02:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:02:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:02:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:03:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:03:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:03:15 (#:amount 94644592 #:time 279))
(heartbeat 2015-06-17T04:03:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:03:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:03:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:03:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:04:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:04:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:04:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:04:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:04:38 (#:amount 93070360 #:time 282))
(heartbeat 2015-06-17T04:04:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:04:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:05:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:05:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:05:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:05:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:05:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:05:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:06:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:06:01 (#:amount 94725112 #:time 331))
(heartbeat 2015-06-17T04:06:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:06:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:06:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:06:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:06:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:07:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:07:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:07:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:07:24 (#:amount 92930528 #:time 280))
(heartbeat 2015-06-17T04:07:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:07:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:07:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:08:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:08:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:08:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:08:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:08:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:08:49 (#:amount 94947992 #:time 282))
(heartbeat 2015-06-17T04:08:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:09:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:09:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:09:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:09:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:09:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:09:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:10:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:10:05 (#:amount 92957320 #:time 280))
(heartbeat 2015-06-17T04:10:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:10:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:10:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:10:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:10:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:11:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:11:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:11:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:11:28 (#:amount 94983760 #:time 331))
(heartbeat 2015-06-17T04:11:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:11:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:11:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:12:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:12:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:12:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:12:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:12:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:12:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:12:56 (#:amount 92992680 #:time 329))
(heartbeat 2015-06-17T04:13:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:13:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:13:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:13:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:13:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:13:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:14:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:14:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:14:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:14:27 (#:amount 94796024 #:time 337))
(heartbeat 2015-06-17T04:14:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:14:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:14:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:15:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:15:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:15:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:15:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:15:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:15:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:15:57 (#:amount 92831000 #:time 334))
(heartbeat 2015-06-17T04:16:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:16:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:16:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:16:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:16:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:16:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:17:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:17:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:17:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:17:29 (#:amount 95327520 #:time 330))
(heartbeat 2015-06-17T04:17:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:17:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:17:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:18:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:18:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:18:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:18:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:18:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:18:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:18:59 (#:amount 92730696 #:time 328))
(heartbeat 2015-06-17T04:19:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:19:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:19:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:19:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:19:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:19:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:20:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:20:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:20:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:20:29 (#:amount 95269968 #:time 330))
(heartbeat 2015-06-17T04:20:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:20:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:20:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:21:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:21:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:21:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:21:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:21:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:21:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:21:57 (#:amount 93022096 #:time 279))
(heartbeat 2015-06-17T04:22:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:22:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:22:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:22:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:22:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:22:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:23:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:23:09 (#:amount 94878616 #:time 329))
(heartbeat 2015-06-17T04:23:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:23:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:23:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:23:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:23:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:24:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:24:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:24:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:24:24 (#:amount 93418064 #:time 282))
(heartbeat 2015-06-17T04:24:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:24:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:24:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:25:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:25:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:25:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:25:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:25:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:25:41 (#:amount 94149056 #:time 329))
(heartbeat 2015-06-17T04:25:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:26:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:26:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:26:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:26:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:26:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:26:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:27:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:27:09 (#:amount 92734784 #:time 305))
(heartbeat 2015-06-17T04:27:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:27:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:27:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:27:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:27:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:28:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:28:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:28:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:28:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:28:41 (#:amount 95446048 #:time 337))
(heartbeat 2015-06-17T04:28:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:28:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:29:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:29:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:29:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:29:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:29:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:29:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:30:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:30:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:30:11 (#:amount 92836296 #:time 329))
(heartbeat 2015-06-17T04:30:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:30:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:30:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:30:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:31:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:31:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:31:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:31:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:31:40 (#:amount 95338496 #:time 333))
(heartbeat 2015-06-17T04:31:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:31:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:32:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:32:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:32:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:32:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:32:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:32:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:33:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:33:05 (#:amount 93184816 #:time 282))
(heartbeat 2015-06-17T04:33:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:33:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:33:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:33:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:33:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:34:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:34:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:34:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:34:27 (#:amount 94542920 #:time 285))
(heartbeat 2015-06-17T04:34:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:34:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:34:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:35:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:35:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:35:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:35:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:35:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:35:47 (#:amount 93062056 #:time 331))
(heartbeat 2015-06-17T04:35:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:36:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:36:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:36:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:36:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:36:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:36:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:37:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:37:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:37:18 (#:amount 94794832 #:time 330))
(heartbeat 2015-06-17T04:37:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:37:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:37:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:37:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:38:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:38:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:38:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:38:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:38:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:38:49 (#:amount 92771000 #:time 330))
(heartbeat 2015-06-17T04:38:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:39:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:39:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:39:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:39:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:39:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:39:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:40:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:40:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:40:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:40:23 (#:amount 95366296 #:time 334))
(heartbeat 2015-06-17T04:40:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:40:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:40:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:41:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:41:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:41:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:41:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:41:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:41:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:41:55 (#:amount 93244624 #:time 333))
(heartbeat 2015-06-17T04:42:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:42:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:42:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:42:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:42:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:42:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:43:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:43:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:43:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:43:26 (#:amount 94639400 #:time 332))
(heartbeat 2015-06-17T04:43:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:43:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:43:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:44:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:44:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:44:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:44:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:44:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:44:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:44:59 (#:amount 92546408 #:time 331))
(heartbeat 2015-06-17T04:45:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:45:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:45:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:45:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:45:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:45:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:46:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:46:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:46:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:46:31 (#:amount 95805920 #:time 331))
(heartbeat 2015-06-17T04:46:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:46:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:46:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:47:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:47:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:47:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:47:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:47:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:47:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:48:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:48:02 (#:amount 93023136 #:time 330))
(heartbeat 2015-06-17T04:48:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:48:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:48:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:48:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:48:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:49:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:49:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:49:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:49:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:49:32 (#:amount 94882640 #:time 328))
(heartbeat 2015-06-17T04:49:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:49:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:50:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:50:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:50:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:50:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:50:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:50:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:51:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:51:04 (#:amount 92901344 #:time 329))
(heartbeat 2015-06-17T04:51:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:51:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:51:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:51:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:51:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:52:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:52:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:52:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:52:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:52:35 (#:amount 94820832 #:time 330))
(heartbeat 2015-06-17T04:52:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:52:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:53:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:53:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:53:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:53:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:53:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:53:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:54:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:54:08 (#:amount 93007584 #:time 330))
(heartbeat 2015-06-17T04:54:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:54:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:54:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:54:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:54:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:55:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:55:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:55:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:55:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:55:40 (#:amount 95044440 #:time 327))
(heartbeat 2015-06-17T04:55:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:55:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:56:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:56:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:56:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:56:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:56:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:56:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:57:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:57:10 (#:amount 92813448 #:time 328))
(heartbeat 2015-06-17T04:57:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:57:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:57:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:57:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:57:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:58:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:58:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:58:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:58:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T04:58:41 (#:amount 95132672 #:time 332))
(heartbeat 2015-06-17T04:58:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:58:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:59:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:59:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:59:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:59:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:59:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T04:59:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:00:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:00:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:00:13 (#:amount 92896392 #:time 334))
(heartbeat 2015-06-17T05:00:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:00:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:00:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:00:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:01:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:01:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:01:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:01:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:01:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:01:46 (#:amount 95177968 #:time 331))
(heartbeat 2015-06-17T05:01:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:02:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:02:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:02:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:02:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:02:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:02:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:03:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:03:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:03:17 (#:amount 93220832 #:time 329))
(heartbeat 2015-06-17T05:03:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:03:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:03:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:03:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:04:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:04:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:04:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:04:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:04:37 (#:amount 94501984 #:time 333))
(heartbeat 2015-06-17T05:04:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:04:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:05:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:05:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:05:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:05:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:05:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:05:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:06:02 (#:amount 92998496 #:time 329))
(heartbeat 2015-06-17T05:06:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:06:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:06:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:06:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:06:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:06:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:07:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:07:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:07:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:07:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:07:32 (#:amount 94843128 #:time 331))
(heartbeat 2015-06-17T05:07:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:07:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:08:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:08:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:08:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:08:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:08:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:08:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:09:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:09:03 (#:amount 93121592 #:time 330))
(heartbeat 2015-06-17T05:09:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:09:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:09:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:09:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:09:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:10:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:10:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:10:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:10:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:10:34 (#:amount 94706008 #:time 282))
(heartbeat 2015-06-17T05:10:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:10:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:11:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:11:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:11:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:11:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:11:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:11:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:12:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:12:06 (#:amount 93161304 #:time 304))
(heartbeat 2015-06-17T05:12:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:12:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:12:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:12:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:12:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:13:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:13:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:13:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:13:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:13:37 (#:amount 94579864 #:time 331))
(heartbeat 2015-06-17T05:13:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:13:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:14:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:14:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:14:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:14:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:14:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:14:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:14:58 (#:amount 92696328 #:time 328))
(heartbeat 2015-06-17T05:15:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:15:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:15:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:15:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:15:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:15:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:16:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:16:11 (#:amount 95492288 #:time 279))
(heartbeat 2015-06-17T05:16:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:16:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:16:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:16:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:16:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:17:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:17:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:17:17 (#:amount 92950104 #:time 282))
(heartbeat 2015-06-17T05:17:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:17:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:17:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:17:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:18:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:18:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:18:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:18:24 (#:amount 95012040 #:time 284))
(heartbeat 2015-06-17T05:18:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:18:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:18:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:19:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:19:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:19:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:19:32 (#:amount 93034088 #:time 276))
(heartbeat 2015-06-17T05:19:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:19:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:19:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:20:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:20:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:20:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:20:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:20:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:20:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:20:55 (#:amount 94832680 #:time 327))
(heartbeat 2015-06-17T05:21:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:21:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:21:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:21:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:21:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:21:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:22:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:22:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:22:14 (#:amount 92846584 #:time 330))
(heartbeat 2015-06-17T05:22:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:22:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:22:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:22:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:23:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:23:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:23:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:23:31 (#:amount 95300480 #:time 282))
(heartbeat 2015-06-17T05:23:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:23:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:23:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:24:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:24:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:24:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:24:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:24:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:24:49 (#:amount 92862584 #:time 279))
(heartbeat 2015-06-17T05:24:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:25:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:25:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:25:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:25:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:25:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:25:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:26:01 (#:amount 95174632 #:time 283))
(heartbeat 2015-06-17T05:26:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:26:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:26:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:26:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:26:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:26:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:27:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:27:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:27:14 (#:amount 92890824 #:time 330))
(heartbeat 2015-06-17T05:27:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:27:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:27:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:27:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:28:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:28:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:28:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:28:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:28:41 (#:amount 95046704 #:time 335))
(heartbeat 2015-06-17T05:28:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:28:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:29:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:29:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:29:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:29:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:29:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:29:51 (#:amount 93263848 #:time 280))
(heartbeat 2015-06-17T05:29:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:30:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:30:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:30:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:30:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:30:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:30:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:31:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:31:03 (#:amount 94571928 #:time 328))
(heartbeat 2015-06-17T05:31:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:31:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:31:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:31:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:31:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:32:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:32:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:32:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:32:23 (#:amount 93124272 #:time 281))
(heartbeat 2015-06-17T05:32:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:32:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:32:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:33:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:33:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:33:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:33:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:33:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:33:52 (#:amount 94494816 #:time 283))
(heartbeat 2015-06-17T05:33:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:34:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:34:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:34:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:34:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:34:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:34:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:35:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:35:09 (#:amount 93147368 #:time 280))
(heartbeat 2015-06-17T05:35:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:35:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:35:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:35:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:35:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:36:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:36:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:36:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:36:27 (#:amount 94693856 #:time 282))
(heartbeat 2015-06-17T05:36:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:36:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:36:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:37:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:37:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:37:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:37:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:37:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:37:47 (#:amount 93074744 #:time 326))
(heartbeat 2015-06-17T05:37:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:38:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:38:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:38:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:38:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:38:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:38:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:39:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:39:07 (#:amount 94796656 #:time 334))
(heartbeat 2015-06-17T05:39:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:39:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:39:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:39:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:39:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:40:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:40:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:40:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:40:30 (#:amount 93066088 #:time 279))
(heartbeat 2015-06-17T05:40:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:40:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:40:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:41:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:41:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:41:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:41:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:41:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:41:51 (#:amount 94813208 #:time 308))
(heartbeat 2015-06-17T05:41:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:42:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:42:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:42:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:42:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:42:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:42:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:43:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:43:13 (#:amount 92712968 #:time 291))
(heartbeat 2015-06-17T05:43:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:43:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:43:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:43:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:43:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:44:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:44:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:44:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:44:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:44:36 (#:amount 95434216 #:time 285))
(heartbeat 2015-06-17T05:44:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:44:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:45:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:45:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:45:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:45:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:45:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:45:53 (#:amount 92853440 #:time 280))
(heartbeat 2015-06-17T05:45:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:46:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:46:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:46:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:46:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:46:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:46:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:47:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:47:10 (#:amount 95288280 #:time 288))
(heartbeat 2015-06-17T05:47:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:47:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:47:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:47:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:47:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:48:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:48:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:48:18 (#:amount 93446008 #:time 328))
(heartbeat 2015-06-17T05:48:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:48:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:48:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:48:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:49:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:49:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:49:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:49:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:49:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:49:49 (#:amount 94069648 #:time 330))
(heartbeat 2015-06-17T05:49:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:50:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:50:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:50:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:50:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:50:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:50:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:51:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:51:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:51:20 (#:amount 92858096 #:time 327))
(heartbeat 2015-06-17T05:51:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:51:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:51:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:51:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:52:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:52:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:52:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:52:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:52:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:52:51 (#:amount 95399600 #:time 334))
(heartbeat 2015-06-17T05:52:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:53:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:53:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:53:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:53:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:53:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:53:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:54:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:54:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:54:23 (#:amount 92864952 #:time 330))
(heartbeat 2015-06-17T05:54:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:54:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:54:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:54:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:55:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:55:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:55:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:55:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:55:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:55:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:55:54 (#:amount 94879776 #:time 331))
(heartbeat 2015-06-17T05:56:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:56:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:56:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:56:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:56:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:56:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:57:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:57:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:57:24 (#:amount 93182168 #:time 332))
(heartbeat 2015-06-17T05:57:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:57:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:57:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:57:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:58:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:58:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:58:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:58:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:58:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:58:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T05:58:57 (#:amount 94654256 #:time 330))
(heartbeat 2015-06-17T05:59:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:59:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:59:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:59:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:59:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T05:59:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:00:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:00:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:00:22 (#:amount 92969552 #:time 328))
(heartbeat 2015-06-17T06:00:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:00:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:00:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:00:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:01:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:01:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:01:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:01:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:01:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:01:46 (#:amount 94950808 #:time 334))
(heartbeat 2015-06-17T06:01:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:02:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:02:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:02:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:02:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:02:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:02:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:03:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:03:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:03:18 (#:amount 93271456 #:time 336))
(heartbeat 2015-06-17T06:03:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:03:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:03:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:03:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:04:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:04:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:04:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:04:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:04:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:04:50 (#:amount 94465864 #:time 332))
(heartbeat 2015-06-17T06:04:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:05:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:05:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:05:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:05:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:05:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:05:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:06:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:06:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:06:24 (#:amount 92831280 #:time 336))
(heartbeat 2015-06-17T06:06:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:06:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:06:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:06:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:07:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:07:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:07:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:07:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:07:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:07:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:07:56 (#:amount 95342496 #:time 330))
(heartbeat 2015-06-17T06:08:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:08:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:08:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:08:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:08:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:08:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:09:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:09:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:09:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:09:27 (#:amount 93315800 #:time 332))
(heartbeat 2015-06-17T06:09:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:09:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:09:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:10:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:10:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:10:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:10:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:10:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:10:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:10:58 (#:amount 94306648 #:time 331))
(heartbeat 2015-06-17T06:11:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:11:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:11:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:11:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:11:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:11:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:12:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:12:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:12:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:12:29 (#:amount 92857016 #:time 329))
(heartbeat 2015-06-17T06:12:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:12:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:12:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:13:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:13:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:13:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:13:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:13:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:13:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:14:00 (#:amount 95232712 #:time 334))
(heartbeat 2015-06-17T06:14:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:14:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:14:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:14:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:14:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:14:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:15:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:15:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:15:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:15:31 (#:amount 92976752 #:time 330))
(heartbeat 2015-06-17T06:15:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:15:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:15:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:16:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:16:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:16:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:16:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:16:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:16:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:17:03 (#:amount 94854096 #:time 332))
(heartbeat 2015-06-17T06:17:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:17:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:17:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:17:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:17:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:17:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:18:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:18:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:18:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:18:33 (#:amount 93195240 #:time 330))
(heartbeat 2015-06-17T06:18:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:18:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:18:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:19:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:19:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:19:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:19:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:19:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:19:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:20:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:20:06 (#:amount 94600512 #:time 330))
(heartbeat 2015-06-17T06:20:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:20:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:20:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:20:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:20:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:21:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:21:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:21:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:21:34 (#:amount 92985384 #:time 330))
(heartbeat 2015-06-17T06:21:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:21:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:21:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:22:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:22:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:22:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:22:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:22:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:22:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:23:02 (#:amount 94872456 #:time 336))
(heartbeat 2015-06-17T06:23:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:23:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:23:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:23:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:23:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:23:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:24:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:24:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:24:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:24:29 (#:amount 93041184 #:time 327))
(heartbeat 2015-06-17T06:24:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:24:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:24:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:25:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:25:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:25:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:25:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:25:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:25:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:25:56 (#:amount 94889376 #:time 329))
(heartbeat 2015-06-17T06:26:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:26:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:26:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:26:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:26:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:26:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:27:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:27:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:27:23 (#:amount 93078664 #:time 330))
(heartbeat 2015-06-17T06:27:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:27:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:27:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:27:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:28:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:28:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:28:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:28:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:28:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:28:50 (#:amount 94776952 #:time 314))
(heartbeat 2015-06-17T06:28:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:29:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:29:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:29:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:29:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:29:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:29:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:30:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:30:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:30:16 (#:amount 93292128 #:time 327))
(heartbeat 2015-06-17T06:30:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:30:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:30:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:30:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:31:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:31:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:31:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:31:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:31:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:31:46 (#:amount 94380688 #:time 332))
(heartbeat 2015-06-17T06:31:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:32:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:32:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:32:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:32:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:32:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:32:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:33:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:33:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:33:16 (#:amount 92828088 #:time 327))
(heartbeat 2015-06-17T06:33:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:33:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:33:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:33:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:34:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:34:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:34:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:34:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:34:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:34:47 (#:amount 95176096 #:time 334))
(heartbeat 2015-06-17T06:34:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:35:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:35:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:35:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:35:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:35:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:35:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:36:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:36:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:36:17 (#:amount 92749488 #:time 330))
(heartbeat 2015-06-17T06:36:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:36:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:36:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:36:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:37:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:37:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:37:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:37:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:37:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:37:49 (#:amount 95399832 #:time 333))
(heartbeat 2015-06-17T06:37:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:38:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:38:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:38:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:38:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:38:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:38:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:39:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:39:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:39:19 (#:amount 93000552 #:time 328))
(heartbeat 2015-06-17T06:39:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:39:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:39:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:39:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:40:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:40:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:40:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:40:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:40:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:40:49 (#:amount 94830520 #:time 330))
(heartbeat 2015-06-17T06:40:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:41:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:41:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:41:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:41:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:41:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:41:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:42:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:42:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:42:17 (#:amount 92960568 #:time 330))
(heartbeat 2015-06-17T06:42:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:42:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:42:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:42:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:43:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:43:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:43:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:43:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:43:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:43:49 (#:amount 94766720 #:time 318))
(heartbeat 2015-06-17T06:43:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:44:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:44:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:44:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:44:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:44:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:44:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:45:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:45:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:45:18 (#:amount 92818752 #:time 339))
(heartbeat 2015-06-17T06:45:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:45:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:45:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:45:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:46:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:46:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:46:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:46:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:46:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:46:49 (#:amount 95255616 #:time 334))
(heartbeat 2015-06-17T06:46:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:47:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:47:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:47:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:47:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:47:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:47:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:48:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:48:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:48:18 (#:amount 92995688 #:time 329))
(heartbeat 2015-06-17T06:48:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:48:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:48:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:48:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:49:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:49:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:49:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:49:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:49:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:49:51 (#:amount 94717232 #:time 332))
(heartbeat 2015-06-17T06:49:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:50:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:50:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:50:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:50:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:50:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:50:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:51:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:51:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:51:20 (#:amount 93118904 #:time 332))
(heartbeat 2015-06-17T06:51:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:51:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:51:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:51:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:52:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:52:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:52:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:52:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:52:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:52:51 (#:amount 94850960 #:time 330))
(heartbeat 2015-06-17T06:52:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:53:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:53:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:53:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:53:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:53:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:53:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:54:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:54:12 (#:amount 92867448 #:time 327))
(heartbeat 2015-06-17T06:54:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:54:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:54:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:54:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:54:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:55:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:55:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:55:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:55:32 (#:amount 94947632 #:time 317))
(heartbeat 2015-06-17T06:55:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:55:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:55:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:56:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:56:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:56:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:56:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:56:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:56:55 (#:amount 93213096 #:time 281))
(heartbeat 2015-06-17T06:56:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:57:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:57:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:57:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:57:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:57:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:57:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:58:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:58:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:58:18 (#:amount 94625432 #:time 329))
(heartbeat 2015-06-17T06:58:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:58:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:58:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:58:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:59:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:59:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:59:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T06:59:35 (#:amount 93002128 #:time 331))
(heartbeat 2015-06-17T06:59:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:59:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T06:59:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:00:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:00:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:00:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:00:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:00:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:00:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:00:59 (#:amount 94778680 #:time 282))
(heartbeat 2015-06-17T07:01:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:01:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:01:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:01:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:01:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:01:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:02:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:02:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:02:22 (#:amount 93142616 #:time 283))
(heartbeat 2015-06-17T07:02:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:02:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:02:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:02:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:03:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:03:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:03:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:03:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:03:43 (#:amount 94517840 #:time 331))
(heartbeat 2015-06-17T07:03:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:03:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:04:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:04:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:04:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:04:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:04:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:04:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:05:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:05:09 (#:amount 93118120 #:time 327))
(heartbeat 2015-06-17T07:05:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:05:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:05:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:05:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:05:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:06:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:06:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:06:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:06:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:06:41 (#:amount 94941824 #:time 330))
(heartbeat 2015-06-17T07:06:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:06:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:07:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:07:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:07:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:07:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:07:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:07:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:08:06 (#:amount 92778128 #:time 302))
(heartbeat 2015-06-17T07:08:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:08:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:08:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:08:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:08:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:08:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:09:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:09:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:09:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:09:30 (#:amount 95169776 #:time 329))
(heartbeat 2015-06-17T07:09:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:09:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:09:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:10:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:10:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:10:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:10:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:10:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:10:52 (#:amount 92803384 #:time 282))
(heartbeat 2015-06-17T07:10:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:11:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:11:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:11:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:11:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:11:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:11:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:12:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:12:15 (#:amount 95454504 #:time 282))
(heartbeat 2015-06-17T07:12:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:12:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:12:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:12:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:12:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:13:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:13:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:13:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:13:33 (#:amount 93144472 #:time 331))
(heartbeat 2015-06-17T07:13:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:13:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:13:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:14:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:14:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:14:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:14:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:14:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:14:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:14:58 (#:amount 94498112 #:time 281))
(heartbeat 2015-06-17T07:15:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:15:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:15:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:15:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:15:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:15:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:16:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:16:14 (#:amount 93169024 #:time 280))
(heartbeat 2015-06-17T07:16:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:16:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:16:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:16:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:16:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:17:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:17:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:17:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:17:28 (#:amount 94702824 #:time 281))
(heartbeat 2015-06-17T07:17:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:17:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:17:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:18:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:18:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:18:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:18:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:18:44 (#:amount 92884152 #:time 328))
(heartbeat 2015-06-17T07:18:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:18:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:19:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:19:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:19:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:19:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:19:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:19:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:20:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:20:13 (#:amount 95123688 #:time 332))
(heartbeat 2015-06-17T07:20:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:20:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:20:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:20:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:20:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:21:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:21:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:21:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:21:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:21:43 (#:amount 93137944 #:time 328))
(heartbeat 2015-06-17T07:21:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:21:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:22:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:22:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:22:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:22:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:22:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:22:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:23:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:23:15 (#:amount 94572904 #:time 331))
(heartbeat 2015-06-17T07:23:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:23:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:23:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:23:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:23:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:24:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:24:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:24:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:24:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:24:47 (#:amount 93272008 #:time 331))
(heartbeat 2015-06-17T07:24:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:24:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:25:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:25:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:25:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:25:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:25:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:25:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:26:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:26:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:26:19 (#:amount 94343648 #:time 331))
(heartbeat 2015-06-17T07:26:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:26:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:26:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:26:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:27:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:27:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:27:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:27:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:27:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:27:48 (#:amount 93076032 #:time 330))
(heartbeat 2015-06-17T07:27:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:28:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:28:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:28:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:28:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:28:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:28:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:29:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:29:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:29:18 (#:amount 94803432 #:time 333))
(heartbeat 2015-06-17T07:29:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:29:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:29:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:29:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:30:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:30:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:30:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:30:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:30:48 (#:amount 92943136 #:time 328))
(heartbeat 2015-06-17T07:30:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:30:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:31:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:31:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:31:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:31:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:31:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:31:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:32:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:32:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:32:18 (#:amount 94798496 #:time 332))
(heartbeat 2015-06-17T07:32:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:32:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:32:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:32:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:33:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:33:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:33:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:33:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:33:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:33:49 (#:amount 92886488 #:time 329))
(heartbeat 2015-06-17T07:33:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:34:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:34:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:34:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:34:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:34:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:34:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:35:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:35:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:35:20 (#:amount 95023880 #:time 331))
(heartbeat 2015-06-17T07:35:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:35:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:35:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:35:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:36:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:36:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:36:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:36:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:36:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:36:51 (#:amount 92962624 #:time 336))
(heartbeat 2015-06-17T07:36:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:37:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:37:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:37:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:37:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:37:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:37:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:38:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:38:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:38:24 (#:amount 95164224 #:time 339))
(heartbeat 2015-06-17T07:38:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:38:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:38:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:38:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:39:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:39:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:39:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:39:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:39:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:39:54 (#:amount 93268904 #:time 330))
(heartbeat 2015-06-17T07:39:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:40:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:40:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:40:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:40:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:40:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:40:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:41:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:41:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:41:26 (#:amount 94436128 #:time 330))
(heartbeat 2015-06-17T07:41:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:41:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:41:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:41:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:42:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:42:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:42:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:42:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:42:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:42:57 (#:amount 92771576 #:time 326))
(heartbeat 2015-06-17T07:42:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:43:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:43:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:43:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:43:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:43:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:43:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:44:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:44:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:44:21 (#:amount 95108328 #:time 330))
(heartbeat 2015-06-17T07:44:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:44:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:44:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:44:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:45:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:45:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:45:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:45:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:45:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:45:49 (#:amount 92901224 #:time 329))
(heartbeat 2015-06-17T07:45:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:46:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:46:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:46:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:46:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:46:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:46:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:47:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:47:14 (#:amount 95107560 #:time 329))
(heartbeat 2015-06-17T07:47:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:47:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:47:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:47:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:47:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:48:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:48:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:48:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:48:38 (#:amount 93089584 #:time 326))
(heartbeat 2015-06-17T07:48:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:48:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:48:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:49:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:49:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:49:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:49:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:49:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:49:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:50:08 (#:amount 94594216 #:time 327))
(heartbeat 2015-06-17T07:50:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:50:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:50:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:50:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:50:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:50:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:51:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:51:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:51:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:51:37 (#:amount 93020552 #:time 326))
(heartbeat 2015-06-17T07:51:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:51:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:51:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:52:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:52:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:52:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:52:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:52:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:52:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:53:08 (#:amount 94933952 #:time 330))
(heartbeat 2015-06-17T07:53:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:53:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:53:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:53:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:53:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:53:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:54:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:54:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:54:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:54:38 (#:amount 92762968 #:time 328))
(heartbeat 2015-06-17T07:54:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:54:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:54:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:55:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:55:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:55:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:55:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:55:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:55:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:56:05 (#:amount 95409568 #:time 333))
(heartbeat 2015-06-17T07:56:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:56:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:56:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:56:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:56:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:56:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:57:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:57:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:57:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:57:30 (#:amount 93140960 #:time 329))
(heartbeat 2015-06-17T07:57:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:57:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:57:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:58:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:58:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:58:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:58:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:58:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T07:58:58 (#:amount 94485376 #:time 331))
(heartbeat 2015-06-17T07:58:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:59:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:59:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:59:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:59:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:59:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T07:59:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:00:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:00:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:00:23 (#:amount 93166728 #:time 336))
(heartbeat 2015-06-17T08:00:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:00:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:00:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:00:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:01:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:01:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:01:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:01:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:01:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:01:55 (#:amount 94410672 #:time 334))
(heartbeat 2015-06-17T08:01:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:02:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:02:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:02:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:02:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:02:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:02:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:03:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:03:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:03:21 (#:amount 92917408 #:time 328))
(heartbeat 2015-06-17T08:03:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:03:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:03:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:03:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:04:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:04:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:04:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:04:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:04:42 (#:amount 95353344 #:time 331))
(heartbeat 2015-06-17T08:04:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:04:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:05:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:05:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:05:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:05:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:05:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:05:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:06:02 (#:amount 93101024 #:time 327))
(heartbeat 2015-06-17T08:06:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:06:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:06:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:06:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:06:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:06:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:07:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:07:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:07:20 (#:amount 94657824 #:time 282))
(heartbeat 2015-06-17T08:07:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:07:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:07:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:07:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:08:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:08:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:08:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:08:37 (#:amount 92991472 #:time 328))
(heartbeat 2015-06-17T08:08:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:08:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:08:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:09:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:09:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:09:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:09:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:09:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:09:58 (#:amount 95014472 #:time 280))
(heartbeat 2015-06-17T08:09:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:10:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:10:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:10:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:10:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:10:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:10:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:11:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:11:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:11:21 (#:amount 93211792 #:time 330))
(heartbeat 2015-06-17T08:11:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:11:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:11:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:11:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:12:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:12:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:12:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:12:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:12:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:12:53 (#:amount 94388896 #:time 332))
(heartbeat 2015-06-17T08:12:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:13:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:13:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:13:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:13:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:13:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:13:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:14:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:14:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:14:25 (#:amount 93203448 #:time 329))
(heartbeat 2015-06-17T08:14:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:14:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:14:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:14:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:15:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:15:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:15:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:15:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:15:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:15:58 (#:amount 94522808 #:time 330))
(heartbeat 2015-06-17T08:15:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:16:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:16:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:16:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:16:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:16:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:16:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:17:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:17:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:17:29 (#:amount 92838728 #:time 328))
(heartbeat 2015-06-17T08:17:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:17:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:17:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:17:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:18:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:18:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:18:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:18:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:18:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:18:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:19:01 (#:amount 95228992 #:time 336))
(heartbeat 2015-06-17T08:19:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:19:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:19:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:19:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:19:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:19:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:20:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:20:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:20:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:20:31 (#:amount 93115416 #:time 332))
(heartbeat 2015-06-17T08:20:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:20:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:20:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:21:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:21:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:21:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:21:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:21:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:21:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:22:01 (#:amount 94444544 #:time 332))
(heartbeat 2015-06-17T08:22:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:22:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:22:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:22:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:22:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:22:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:23:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:23:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:23:29 (#:amount 93164888 #:time 324))
(heartbeat 2015-06-17T08:23:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:23:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:23:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:23:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:24:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:24:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:24:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:24:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:24:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:24:59 (#:amount 94603024 #:time 331))
(heartbeat 2015-06-17T08:24:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:25:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:25:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:25:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:25:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:25:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:26:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:26:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:26:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:26:25 (#:amount 92922352 #:time 326))
(heartbeat 2015-06-17T08:26:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:26:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:26:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:27:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:27:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:27:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:27:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:27:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:27:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:27:53 (#:amount 95121512 #:time 327))
(heartbeat 2015-06-17T08:28:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:28:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:28:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:28:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:28:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:28:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:29:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:29:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:29:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:29:22 (#:amount 92714608 #:time 332))
(heartbeat 2015-06-17T08:29:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:29:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:29:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:30:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:30:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:30:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:30:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:30:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:30:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:30:51 (#:amount 95475600 #:time 337))
(heartbeat 2015-06-17T08:31:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:31:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:31:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:31:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:31:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:31:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:32:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:32:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:32:16 (#:amount 92946224 #:time 326))
(heartbeat 2015-06-17T08:32:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:32:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:32:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:32:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:33:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:33:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:33:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:33:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:33:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:33:46 (#:amount 94948976 #:time 296))
(heartbeat 2015-06-17T08:33:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:34:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:34:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:34:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:34:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:34:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:34:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:35:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:35:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:35:14 (#:amount 92917200 #:time 326))
(heartbeat 2015-06-17T08:35:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:35:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:35:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:35:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:36:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:36:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:36:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:36:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:36:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:36:44 (#:amount 94984680 #:time 329))
(heartbeat 2015-06-17T08:36:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:37:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:37:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:37:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:37:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:37:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:37:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:38:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:38:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:38:11 (#:amount 92627208 #:time 328))
(heartbeat 2015-06-17T08:38:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:38:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:38:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:38:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:39:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:39:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:39:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:39:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:39:35 (#:amount 95765552 #:time 328))
(heartbeat 2015-06-17T08:39:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:39:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:40:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:40:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:40:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:40:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:40:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:40:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:40:59 (#:amount 92973280 #:time 323))
(heartbeat 2015-06-17T08:41:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:41:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:41:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:41:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:41:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:41:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:42:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:42:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:42:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:42:27 (#:amount 94924584 #:time 332))
(heartbeat 2015-06-17T08:42:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:42:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:42:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:43:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:43:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:43:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:43:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:43:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:43:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:43:52 (#:amount 92960744 #:time 327))
(heartbeat 2015-06-17T08:44:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:44:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:44:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:44:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:44:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:44:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:45:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:45:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:45:14 (#:amount 94802840 #:time 329))
(heartbeat 2015-06-17T08:45:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:45:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:45:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:45:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:46:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:46:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:46:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:46:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:46:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:46:40 (#:amount 93274488 #:time 327))
(heartbeat 2015-06-17T08:46:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:47:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:47:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:47:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:47:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:47:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:47:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:48:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:48:09 (#:amount 94380168 #:time 334))
(heartbeat 2015-06-17T08:48:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:48:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:48:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:48:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:48:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:49:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:49:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:49:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:49:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:49:38 (#:amount 93353376 #:time 327))
(heartbeat 2015-06-17T08:49:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:49:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:50:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:50:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:50:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:50:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:50:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:50:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:51:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:51:05 (#:amount 94279192 #:time 334))
(heartbeat 2015-06-17T08:51:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:51:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:51:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:51:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:51:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:52:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:52:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:52:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:52:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:52:32 (#:amount 93382592 #:time 325))
(heartbeat 2015-06-17T08:52:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:52:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:53:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:53:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:53:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:53:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:53:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:53:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:53:59 (#:amount 94357296 #:time 331))
(heartbeat 2015-06-17T08:54:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:54:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:54:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:54:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:54:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:54:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:55:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:55:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:55:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:55:26 (#:amount 92652336 #:time 329))
(heartbeat 2015-06-17T08:55:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:55:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:55:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:56:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:56:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:56:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:56:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:56:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:56:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:56:56 (#:amount 95624480 #:time 333))
(heartbeat 2015-06-17T08:57:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:57:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:57:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:57:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:57:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:57:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:58:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:58:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:58:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:58:24 (#:amount 92961912 #:time 328))
(heartbeat 2015-06-17T08:58:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:58:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:58:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:59:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:59:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:59:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:59:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:59:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T08:59:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T08:59:55 (#:amount 94900184 #:time 330))
(heartbeat 2015-06-17T09:00:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:00:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:00:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:00:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:00:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:00:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:01:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:01:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:01:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:01:27 (#:amount 93086384 #:time 332))
(heartbeat 2015-06-17T09:01:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:01:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:01:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:02:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:02:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:02:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:02:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:02:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:02:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:02:58 (#:amount 94654400 #:time 337))
(heartbeat 2015-06-17T09:03:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:03:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:03:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:03:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:03:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:03:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:04:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:04:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:04:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:04:27 (#:amount 93123816 #:time 329))
(heartbeat 2015-06-17T09:04:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:04:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:04:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:05:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:05:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:05:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:05:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:05:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:05:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:05:56 (#:amount 94555376 #:time 328))
(heartbeat 2015-06-17T09:06:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:06:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:06:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:06:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:06:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:06:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:07:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:07:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:07:16 (#:amount 93199512 #:time 331))
(heartbeat 2015-06-17T09:07:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:07:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:07:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:07:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:08:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:08:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:08:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:08:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:08:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:08:45 (#:amount 94586640 #:time 330))
(heartbeat 2015-06-17T09:08:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:09:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:09:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:09:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:09:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:09:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:09:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:10:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:10:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:10:16 (#:amount 93166944 #:time 327))
(heartbeat 2015-06-17T09:10:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:10:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:10:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:10:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:11:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:11:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:11:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:11:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:11:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:11:48 (#:amount 94577344 #:time 330))
(heartbeat 2015-06-17T09:11:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:12:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:12:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:12:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:12:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:12:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:12:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:13:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:13:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:13:19 (#:amount 92978376 #:time 328))
(heartbeat 2015-06-17T09:13:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:13:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:13:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:13:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:14:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:14:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:14:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:14:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:14:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:14:48 (#:amount 95163776 #:time 333))
(heartbeat 2015-06-17T09:14:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:15:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:15:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:15:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:15:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:15:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:15:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:16:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:16:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:16:17 (#:amount 92845984 #:time 329))
(heartbeat 2015-06-17T09:16:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:16:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:16:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:16:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:17:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:17:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:17:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:17:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:17:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:17:48 (#:amount 95264520 #:time 330))
(heartbeat 2015-06-17T09:17:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:18:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:18:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:18:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:18:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:18:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:18:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:19:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:19:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:19:13 (#:amount 92868832 #:time 329))
(heartbeat 2015-06-17T09:19:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:19:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:19:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:19:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:20:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:20:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:20:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:20:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:20:39 (#:amount 95019632 #:time 330))
(heartbeat 2015-06-17T09:20:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:20:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:21:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:21:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:21:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:21:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:21:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:21:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:22:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:22:05 (#:amount 92896632 #:time 327))
(heartbeat 2015-06-17T09:22:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:22:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:22:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:22:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:22:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:23:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:23:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:23:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:23:22 (#:amount 95094784 #:time 282))
(heartbeat 2015-06-17T09:23:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:23:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:23:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:24:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:24:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:24:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:24:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:24:32 (#:amount 92574104 #:time 329))
(heartbeat 2015-06-17T09:24:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:24:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:25:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:25:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:25:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:25:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:25:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:25:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:26:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:26:03 (#:amount 95733096 #:time 327))
(heartbeat 2015-06-17T09:26:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:26:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:26:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:26:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:26:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:27:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:27:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:27:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:27:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:27:32 (#:amount 92964544 #:time 327))
(heartbeat 2015-06-17T09:27:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:27:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:28:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:28:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:28:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:28:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:28:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:28:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:29:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:29:02 (#:amount 95018520 #:time 335))
(heartbeat 2015-06-17T09:29:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:29:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:29:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:29:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:29:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:30:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:30:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:30:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:30:32 (#:amount 93056448 #:time 332))
(heartbeat 2015-06-17T09:30:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:30:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:30:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:31:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:31:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:31:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:31:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:31:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:31:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:32:02 (#:amount 94929336 #:time 328))
(heartbeat 2015-06-17T09:32:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:32:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:32:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:32:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:32:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:32:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:33:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:33:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:33:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:33:31 (#:amount 93008504 #:time 328))
(heartbeat 2015-06-17T09:33:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:33:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:33:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:34:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:34:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:34:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:34:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:34:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:34:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:35:01 (#:amount 94947472 #:time 331))
(heartbeat 2015-06-17T09:35:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:35:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:35:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:35:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:35:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:35:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:36:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:36:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:36:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:36:30 (#:amount 92873464 #:time 327))
(heartbeat 2015-06-17T09:36:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:36:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:36:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:37:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:37:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:37:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:37:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:37:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:37:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:38:00 (#:amount 95375352 #:time 329))
(heartbeat 2015-06-17T09:38:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:38:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:38:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:38:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:38:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:38:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:39:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:39:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:39:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:39:29 (#:amount 93120328 #:time 327))
(heartbeat 2015-06-17T09:39:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:39:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:39:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:40:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:40:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:40:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:40:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:40:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:40:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:40:59 (#:amount 94664040 #:time 326))
(heartbeat 2015-06-17T09:41:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:41:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:41:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:41:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:41:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:41:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:42:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:42:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:42:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:42:28 (#:amount 93098768 #:time 326))
(heartbeat 2015-06-17T09:42:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:42:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:42:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:43:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:43:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:43:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:43:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:43:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:43:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:43:58 (#:amount 94631800 #:time 327))
(heartbeat 2015-06-17T09:44:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:44:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:44:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:44:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:44:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:44:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:45:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:45:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:45:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:45:27 (#:amount 92990560 #:time 327))
(heartbeat 2015-06-17T09:45:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:45:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:45:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:46:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:46:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:46:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:46:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:46:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:46:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:46:57 (#:amount 94878552 #:time 328))
(heartbeat 2015-06-17T09:47:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:47:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:47:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:47:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:47:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:47:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:48:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:48:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:48:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:48:26 (#:amount 92940688 #:time 326))
(heartbeat 2015-06-17T09:48:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:48:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:48:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:49:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:49:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:49:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:49:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:49:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:49:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:49:56 (#:amount 95078528 #:time 329))
(heartbeat 2015-06-17T09:50:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:50:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:50:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:50:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:50:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:50:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:51:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:51:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:51:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:51:24 (#:amount 93068672 #:time 329))
(heartbeat 2015-06-17T09:51:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:51:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:51:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:52:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:52:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:52:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:52:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:52:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:52:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:52:55 (#:amount 94777408 #:time 328))
(heartbeat 2015-06-17T09:53:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:53:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:53:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:53:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:53:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:53:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:54:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:54:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:54:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:54:24 (#:amount 93049232 #:time 328))
(heartbeat 2015-06-17T09:54:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:54:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:54:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:55:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:55:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:55:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:55:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:55:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:55:51 (#:amount 94936048 #:time 329))
(heartbeat 2015-06-17T09:55:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:56:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:56:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:56:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:56:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:56:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:56:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:57:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:57:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:57:20 (#:amount 92906504 #:time 330))
(heartbeat 2015-06-17T09:57:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:57:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:57:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:57:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:58:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:58:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:58:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:58:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:58:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T09:58:47 (#:amount 95154192 #:time 331))
(heartbeat 2015-06-17T09:58:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:59:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:59:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:59:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:59:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:59:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T09:59:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:00:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:00:07 (#:amount 92929384 #:time 327))
(heartbeat 2015-06-17T10:00:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:00:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:00:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:00:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:00:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:01:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:01:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:01:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:01:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:01:36 (#:amount 95178240 #:time 331))
(heartbeat 2015-06-17T10:01:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:01:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:02:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:02:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:02:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:02:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:02:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:02:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:03:00 (#:amount 93199048 #:time 327))
(heartbeat 2015-06-17T10:03:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:03:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:03:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:03:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:03:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:03:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:04:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:04:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:04:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:04:30 (#:amount 94605480 #:time 327))
(heartbeat 2015-06-17T10:04:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:04:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:04:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:05:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:05:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:05:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:05:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:05:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:05:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:05:59 (#:amount 93032520 #:time 328))
(heartbeat 2015-06-17T10:06:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:06:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:06:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:06:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:06:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:06:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:07:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:07:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:07:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:07:29 (#:amount 94991496 #:time 332))
(heartbeat 2015-06-17T10:07:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:07:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:07:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:08:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:08:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:08:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:08:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:08:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:08:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:08:56 (#:amount 92854792 #:time 330))
(heartbeat 2015-06-17T10:09:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:09:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:09:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:09:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:09:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:09:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:10:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:10:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:10:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:10:29 (#:amount 95075424 #:time 329))
(heartbeat 2015-06-17T10:10:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:10:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:10:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:11:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:11:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:11:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:11:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:11:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:11:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:12:01 (#:amount 93217048 #:time 333))
(heartbeat 2015-06-17T10:12:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:12:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:12:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:12:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:12:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:12:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:13:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:13:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:13:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:13:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:13:34 (#:amount 94501448 #:time 330))
(heartbeat 2015-06-17T10:13:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:13:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:14:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:14:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:14:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:14:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:14:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:14:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:15:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:15:05 (#:amount 92915616 #:time 327))
(heartbeat 2015-06-17T10:15:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:15:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:15:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:15:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:15:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:16:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:16:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:16:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:16:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:16:37 (#:amount 95129304 #:time 330))
(heartbeat 2015-06-17T10:16:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:16:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:17:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:17:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:17:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:17:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:17:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:17:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:18:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:18:07 (#:amount 93295600 #:time 332))
(heartbeat 2015-06-17T10:18:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:18:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:18:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:18:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:18:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:19:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:19:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:19:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:19:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:19:39 (#:amount 94452568 #:time 332))
(heartbeat 2015-06-17T10:19:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:19:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:20:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:20:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:20:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:20:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:20:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:20:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:21:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:21:09 (#:amount 93033304 #:time 330))
(heartbeat 2015-06-17T10:21:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:21:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:21:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:21:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:21:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:22:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:22:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:22:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:22:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:22:43 (#:amount 94740488 #:time 332))
(heartbeat 2015-06-17T10:22:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:22:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:23:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:23:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:23:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:23:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:23:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:23:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:24:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:24:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:24:15 (#:amount 93104360 #:time 329))
(heartbeat 2015-06-17T10:24:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:24:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:24:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:24:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:25:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:25:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:25:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:25:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:25:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:25:48 (#:amount 94788272 #:time 334))
(heartbeat 2015-06-17T10:25:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:26:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:26:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:26:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:26:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:26:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:26:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:27:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:27:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:27:19 (#:amount 93109088 #:time 332))
(heartbeat 2015-06-17T10:27:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:27:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:27:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:27:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:28:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:28:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:28:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:28:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:28:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:28:51 (#:amount 94877440 #:time 333))
(heartbeat 2015-06-17T10:28:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:29:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:29:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:29:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:29:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:29:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:29:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:30:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:30:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:30:22 (#:amount 92760000 #:time 327))
(heartbeat 2015-06-17T10:30:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:30:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:30:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:30:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:31:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:31:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:31:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:31:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:31:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:31:52 (#:amount 95304224 #:time 332))
(heartbeat 2015-06-17T10:31:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:32:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:32:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:32:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:32:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:32:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:32:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:33:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:33:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:33:22 (#:amount 92951696 #:time 327))
(heartbeat 2015-06-17T10:33:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:33:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:33:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:33:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:34:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:34:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:34:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:34:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:34:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:34:52 (#:amount 95104400 #:time 327))
(heartbeat 2015-06-17T10:34:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:35:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:35:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:35:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:35:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:35:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:35:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:36:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:36:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:36:21 (#:amount 92884048 #:time 326))
(heartbeat 2015-06-17T10:36:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:36:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:36:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:36:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:37:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:37:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:37:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:37:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:37:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:37:51 (#:amount 94996120 #:time 325))
(heartbeat 2015-06-17T10:37:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:38:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:38:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:38:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:38:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:38:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:38:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:39:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:39:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:39:20 (#:amount 93254616 #:time 325))
(heartbeat 2015-06-17T10:39:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:39:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:39:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:39:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:40:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:40:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:40:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:40:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:40:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:40:49 (#:amount 94323240 #:time 326))
(heartbeat 2015-06-17T10:40:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:41:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:41:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:41:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:41:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:41:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:41:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:42:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:42:11 (#:amount 93116352 #:time 326))
(heartbeat 2015-06-17T10:42:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:42:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:42:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:42:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:42:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:43:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:43:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:43:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:43:32 (#:amount 94995592 #:time 312))
(heartbeat 2015-06-17T10:43:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:43:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:43:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:44:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:44:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:44:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:44:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:44:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:44:53 (#:amount 92969264 #:time 280))
(heartbeat 2015-06-17T10:44:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:45:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:45:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:45:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:45:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:45:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:45:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:46:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:46:10 (#:amount 94892936 #:time 283))
(heartbeat 2015-06-17T10:46:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:46:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:46:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:46:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:46:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:47:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:47:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:47:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:47:32 (#:amount 92707720 #:time 279))
(heartbeat 2015-06-17T10:47:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:47:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:47:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:48:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:48:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:48:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:48:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:48:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:48:51 (#:amount 95401936 #:time 330))
(heartbeat 2015-06-17T10:48:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:49:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:49:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:49:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:49:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:49:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:49:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:50:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:50:08 (#:amount 93070760 #:time 326))
(heartbeat 2015-06-17T10:50:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:50:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:50:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:50:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:50:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:51:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:51:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:51:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:51:28 (#:amount 94817216 #:time 329))
(heartbeat 2015-06-17T10:51:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:51:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:51:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:52:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:52:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:52:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:52:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:52:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:52:51 (#:amount 92971552 #:time 312))
(heartbeat 2015-06-17T10:52:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:53:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:53:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:53:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:53:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:53:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:53:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:54:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:54:12 (#:amount 95037296 #:time 330))
(heartbeat 2015-06-17T10:54:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:54:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:54:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:54:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:54:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:55:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:55:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:55:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:55:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:55:43 (#:amount 93021256 #:time 335))
(heartbeat 2015-06-17T10:55:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:55:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:56:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:56:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:56:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:56:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:56:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:56:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:57:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:57:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:57:15 (#:amount 94754208 #:time 333))
(heartbeat 2015-06-17T10:57:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:57:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:57:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:57:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:58:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:58:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:58:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:58:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:58:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T10:58:47 (#:amount 92952136 #:time 334))
(heartbeat 2015-06-17T10:58:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:59:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:59:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:59:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:59:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:59:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T10:59:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:00:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:00:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:00:19 (#:amount 95033000 #:time 334))
(heartbeat 2015-06-17T11:00:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:00:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:00:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:00:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:01:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:01:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:01:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:01:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:01:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:01:50 (#:amount 93007648 #:time 330))
(heartbeat 2015-06-17T11:01:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:02:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:02:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:02:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:02:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:02:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:02:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:03:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:03:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:03:19 (#:amount 94850632 #:time 334))
(heartbeat 2015-06-17T11:03:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:03:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:03:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:03:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:04:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:04:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:04:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:04:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:04:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:04:51 (#:amount 92798904 #:time 331))
(heartbeat 2015-06-17T11:04:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:05:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:05:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:05:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:05:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:05:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:05:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:06:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:06:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:06:18 (#:amount 95313680 #:time 340))
(heartbeat 2015-06-17T11:06:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:06:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:06:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:06:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:07:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:07:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:07:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:07:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:07:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:07:50 (#:amount 92811280 #:time 329))
(heartbeat 2015-06-17T11:07:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:08:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:08:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:08:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:08:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:08:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:08:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:09:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:09:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:09:22 (#:amount 95197856 #:time 331))
(heartbeat 2015-06-17T11:09:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:09:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:09:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:09:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:10:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:10:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:10:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:10:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:10:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:10:54 (#:amount 93281872 #:time 331))
(heartbeat 2015-06-17T11:10:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:11:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:11:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:11:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:11:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:11:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:11:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:12:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:12:11 (#:amount 94492760 #:time 282))
(heartbeat 2015-06-17T11:12:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:12:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:12:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:12:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:12:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:13:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:13:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:13:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:13:26 (#:amount 93161224 #:time 332))
(heartbeat 2015-06-17T11:13:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:13:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:13:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:14:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:14:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:14:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:14:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:14:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:14:46 (#:amount 94592848 #:time 331))
(heartbeat 2015-06-17T11:14:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:15:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:15:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:15:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:15:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:15:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:15:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:16:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:16:09 (#:amount 93074800 #:time 282))
(heartbeat 2015-06-17T11:16:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:16:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:16:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:16:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:16:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:17:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:17:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:17:24 (#:amount 94831464 #:time 281))
(heartbeat 2015-06-17T11:17:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:17:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:17:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:17:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:18:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:18:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:18:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:18:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:18:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:18:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:18:55 (#:amount 93022280 #:time 332))
(heartbeat 2015-06-17T11:19:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:19:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:19:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:19:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:19:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:19:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:20:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:20:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:20:24 (#:amount 94983792 #:time 336))
(heartbeat 2015-06-17T11:20:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:20:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:20:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:20:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:21:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:21:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:21:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:21:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:21:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:21:54 (#:amount 92836840 #:time 329))
(heartbeat 2015-06-17T11:21:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:22:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:22:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:22:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:22:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:22:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:22:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:23:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:23:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:23:25 (#:amount 95125776 #:time 341))
(heartbeat 2015-06-17T11:23:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:23:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:23:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:23:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:24:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:24:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:24:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:24:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:24:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:24:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:24:56 (#:amount 93182384 #:time 329))
(heartbeat 2015-06-17T11:25:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:25:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:25:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:25:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:25:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:25:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:26:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:26:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:26:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:26:26 (#:amount 94616856 #:time 330))
(heartbeat 2015-06-17T11:26:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:26:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:26:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:27:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:27:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:27:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:27:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:27:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:27:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:27:59 (#:amount 93225400 #:time 329))
(heartbeat 2015-06-17T11:28:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:28:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:28:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:28:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:28:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:28:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:29:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:29:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:29:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:29:29 (#:amount 94499664 #:time 334))
(heartbeat 2015-06-17T11:29:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:29:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:29:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:30:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:30:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:30:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:30:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:30:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:30:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:30:56 (#:amount 93129696 #:time 330))
(heartbeat 2015-06-17T11:31:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:31:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:31:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:31:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:31:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:31:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:32:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:32:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:32:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:32:26 (#:amount 94642408 #:time 283))
(heartbeat 2015-06-17T11:32:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:32:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:32:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:33:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:33:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:33:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:33:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:33:43 (#:amount 92901112 #:time 280))
(heartbeat 2015-06-17T11:33:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:33:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:34:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:34:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:34:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:34:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:34:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:34:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:35:04 (#:amount 95099512 #:time 327))
(heartbeat 2015-06-17T11:35:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:35:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:35:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:35:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:35:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:35:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:36:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:36:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:36:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:36:27 (#:amount 92965592 #:time 327))
(heartbeat 2015-06-17T11:36:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:36:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:36:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:37:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:37:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:37:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:37:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:37:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:37:51 (#:amount 95054896 #:time 333))
(heartbeat 2015-06-17T11:37:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:38:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:38:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:38:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:38:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:38:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:38:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:39:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:39:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:39:22 (#:amount 92971936 #:time 328))
(heartbeat 2015-06-17T11:39:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:39:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:39:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:39:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:40:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:40:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:40:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:40:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:40:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:40:53 (#:amount 95131888 #:time 334))
(heartbeat 2015-06-17T11:40:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:41:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:41:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:41:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:41:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:41:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:41:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:42:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:42:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:42:24 (#:amount 92651376 #:time 329))
(heartbeat 2015-06-17T11:42:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:42:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:42:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:42:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:43:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:43:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:43:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:43:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:43:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:43:56 (#:amount 95450888 #:time 332))
(heartbeat 2015-06-17T11:43:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:44:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:44:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:44:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:44:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:44:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:44:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:45:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:45:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:45:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:45:28 (#:amount 93300736 #:time 329))
(heartbeat 2015-06-17T11:45:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:45:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:45:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:46:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:46:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:46:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:46:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:46:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:46:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:47:00 (#:amount 94369888 #:time 329))
(heartbeat 2015-06-17T11:47:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:47:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:47:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:47:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:47:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:47:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:48:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:48:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:48:21 (#:amount 92893448 #:time 330))
(heartbeat 2015-06-17T11:48:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:48:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:48:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:48:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:49:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:49:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:49:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:49:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:49:41 (#:amount 95151912 #:time 336))
(heartbeat 2015-06-17T11:49:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:49:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:50:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:50:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:50:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:50:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:50:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:50:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:50:58 (#:amount 93064328 #:time 282))
(heartbeat 2015-06-17T11:51:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:51:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:51:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:51:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:51:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:51:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:52:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:52:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:52:27 (#:amount 94680432 #:time 334))
(heartbeat 2015-06-17T11:52:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:52:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:52:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:52:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:53:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:53:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:53:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:53:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:53:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:53:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:53:59 (#:amount 92802256 #:time 331))
(heartbeat 2015-06-17T11:54:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:54:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:54:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:54:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:54:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:54:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:55:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:55:17 (#:amount 95286888 #:time 284))
(heartbeat 2015-06-17T11:55:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:55:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:55:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:55:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:55:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:56:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:56:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:56:21 (#:amount 93008680 #:time 283))
(heartbeat 2015-06-17T11:56:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:56:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:56:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:56:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:57:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:57:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:57:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:57:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:57:45 (#:amount 94885168 #:time 334))
(heartbeat 2015-06-17T11:57:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:57:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:58:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:58:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:58:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:58:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:58:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:58:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:59:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T11:59:17 (#:amount 92968168 #:time 331))
(heartbeat 2015-06-17T11:59:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:59:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:59:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:59:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T11:59:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:00:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:00:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:00:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:00:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:00:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:00:49 (#:amount 95115712 #:time 333))
(heartbeat 2015-06-17T12:00:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:01:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:01:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:01:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:01:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:01:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:01:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:02:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:02:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:02:20 (#:amount 92897776 #:time 328))
(heartbeat 2015-06-17T12:02:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:02:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:02:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:02:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:03:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:03:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:03:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:03:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:03:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:03:48 (#:amount 94815744 #:time 332))
(heartbeat 2015-06-17T12:03:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:04:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:04:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:04:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:04:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:04:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:04:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:05:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:05:17 (#:amount 92893696 #:time 330))
(heartbeat 2015-06-17T12:05:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:05:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:05:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:05:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:05:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:06:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:06:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:06:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:06:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:06:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:06:49 (#:amount 95193608 #:time 331))
(heartbeat 2015-06-17T12:06:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:07:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:07:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:07:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:07:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:07:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:07:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:08:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:08:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:08:20 (#:amount 92867720 #:time 331))
(heartbeat 2015-06-17T12:08:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:08:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:08:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:08:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:09:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:09:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:09:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:09:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:09:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:09:52 (#:amount 95008168 #:time 334))
(heartbeat 2015-06-17T12:09:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:10:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:10:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:10:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:10:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:10:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:10:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:11:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:11:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:11:22 (#:amount 92796496 #:time 332))
(heartbeat 2015-06-17T12:11:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:11:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:11:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:11:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:12:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:12:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:12:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:12:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:12:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:12:54 (#:amount 95364032 #:time 332))
(heartbeat 2015-06-17T12:12:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:13:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:13:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:13:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:13:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:13:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:13:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:14:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:14:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:14:25 (#:amount 93134040 #:time 334))
(heartbeat 2015-06-17T12:14:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:14:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:14:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:14:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:15:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:15:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:15:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:15:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:15:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:15:57 (#:amount 94744328 #:time 337))
(heartbeat 2015-06-17T12:15:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:16:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:16:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:16:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:16:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:16:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:16:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:17:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:17:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:17:28 (#:amount 93054928 #:time 329))
(heartbeat 2015-06-17T12:17:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:17:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:17:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:17:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:18:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:18:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:18:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:18:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:18:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:18:58 (#:amount 94618344 #:time 328))
(heartbeat 2015-06-17T12:18:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:19:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:19:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:19:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:19:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:19:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:19:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:20:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:20:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:20:28 (#:amount 92967704 #:time 333))
(heartbeat 2015-06-17T12:20:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:20:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:20:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:20:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:21:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:21:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:21:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:21:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:21:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:21:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:22:03 (#:amount 94988232 #:time 281))
(heartbeat 2015-06-17T12:22:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:22:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:22:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:22:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:22:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:22:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:23:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:23:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:23:21 (#:amount 93300504 #:time 330))
(heartbeat 2015-06-17T12:23:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:23:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:23:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:23:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:24:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:24:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:24:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:24:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:24:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:24:52 (#:amount 94473752 #:time 329))
(heartbeat 2015-06-17T12:24:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:25:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:25:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:25:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:25:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:25:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:25:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:26:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:26:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:26:22 (#:amount 92622256 #:time 329))
(heartbeat 2015-06-17T12:26:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:26:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:26:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:26:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:27:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:27:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:27:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:27:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:27:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:27:55 (#:amount 95685512 #:time 338))
(heartbeat 2015-06-17T12:27:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:28:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:28:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:28:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:28:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:28:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:28:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:29:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:29:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:29:26 (#:amount 92973880 #:time 327))
(heartbeat 2015-06-17T12:29:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:29:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:29:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:29:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:30:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:30:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:30:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:30:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:30:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:30:57 (#:amount 94979648 #:time 340))
(heartbeat 2015-06-17T12:30:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:31:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:31:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:31:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:31:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:31:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:31:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:32:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:32:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:32:26 (#:amount 93027440 #:time 329))
(heartbeat 2015-06-17T12:32:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:32:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:32:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:32:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:33:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:33:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:33:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:33:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:33:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:33:58 (#:amount 94924080 #:time 337))
(heartbeat 2015-06-17T12:33:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:34:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:34:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:34:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:34:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:34:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:34:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:35:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:35:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:35:28 (#:amount 93045272 #:time 330))
(heartbeat 2015-06-17T12:35:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:35:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:35:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:35:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:36:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:36:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:36:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:36:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:36:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:36:57 (#:amount 94732216 #:time 332))
(heartbeat 2015-06-17T12:36:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:37:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:37:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:37:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:37:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:37:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:37:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:38:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:38:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:38:28 (#:amount 93070560 #:time 328))
(heartbeat 2015-06-17T12:38:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:38:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:38:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:38:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:39:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:39:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:39:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:39:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:39:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:39:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:40:00 (#:amount 94782656 #:time 335))
(heartbeat 2015-06-17T12:40:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:40:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:40:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:40:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:40:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:40:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:41:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:41:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:41:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:41:29 (#:amount 93001136 #:time 330))
(heartbeat 2015-06-17T12:41:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:41:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:41:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:42:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:42:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:42:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:42:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:42:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:42:57 (#:amount 94855480 #:time 327))
(heartbeat 2015-06-17T12:42:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:43:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:43:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:43:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:43:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:43:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:43:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:44:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:44:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:44:21 (#:amount 92718792 #:time 326))
(heartbeat 2015-06-17T12:44:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:44:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:44:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:44:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:45:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:45:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:45:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:45:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:45:45 (#:amount 95551584 #:time 290))
(heartbeat 2015-06-17T12:45:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:45:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:46:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:46:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:46:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:46:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:46:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:46:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:47:04 (#:amount 93149552 #:time 280))
(heartbeat 2015-06-17T12:47:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:47:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:47:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:47:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:47:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:47:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:48:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:48:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:48:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:48:30 (#:amount 94418592 #:time 314))
(heartbeat 2015-06-17T12:48:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:48:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:48:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:49:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:49:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:49:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:49:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:49:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:49:54 (#:amount 93178400 #:time 333))
(heartbeat 2015-06-17T12:49:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:50:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:50:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:50:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:50:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:50:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:50:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:51:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:51:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:51:22 (#:amount 94543224 #:time 330))
(heartbeat 2015-06-17T12:51:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:51:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:51:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:51:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:52:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:52:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:52:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:52:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:52:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:52:54 (#:amount 92898176 #:time 330))
(heartbeat 2015-06-17T12:52:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:53:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:53:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:53:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:53:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:53:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:53:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:54:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:54:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:54:26 (#:amount 95209488 #:time 330))
(heartbeat 2015-06-17T12:54:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:54:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:54:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:54:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:55:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:55:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:55:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:55:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:55:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:55:57 (#:amount 92878000 #:time 332))
(heartbeat 2015-06-17T12:55:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:56:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:56:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:56:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:56:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:56:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:57:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:57:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:57:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:57:29 (#:amount 95064800 #:time 332))
(heartbeat 2015-06-17T12:57:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:57:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:57:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:58:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:58:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:58:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:58:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:58:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:58:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T12:58:59 (#:amount 92791912 #:time 327))
(heartbeat 2015-06-17T12:59:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:59:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:59:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:59:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:59:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T12:59:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:00:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:00:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:00:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:00:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:00:31 (#:amount 95324448 #:time 330))
(heartbeat 2015-06-17T13:00:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:00:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:01:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:01:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:01:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:01:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:01:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:01:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:02:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:02:00 (#:amount 92895496 #:time 328))
(heartbeat 2015-06-17T13:02:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:02:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:02:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:02:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:02:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:03:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:03:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:03:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:03:26 (#:amount 95048088 #:time 332))
(heartbeat 2015-06-17T13:03:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:03:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:03:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:04:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:04:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:04:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:04:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:04:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:04:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:04:56 (#:amount 93237968 #:time 330))
(heartbeat 2015-06-17T13:05:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:05:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:05:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:05:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:05:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:05:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:06:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:06:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:06:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:06:26 (#:amount 94528800 #:time 331))
(heartbeat 2015-06-17T13:06:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:06:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:06:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:07:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:07:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:07:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:07:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:07:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:07:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:07:56 (#:amount 92979672 #:time 328))
(heartbeat 2015-06-17T13:08:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:08:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:08:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:08:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:08:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:08:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:09:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:09:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:09:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:09:27 (#:amount 94929656 #:time 334))
(heartbeat 2015-06-17T13:09:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:09:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:09:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:10:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:10:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:10:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:10:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:10:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:10:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:10:54 (#:amount 93124504 #:time 333))
(heartbeat 2015-06-17T13:11:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:11:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:11:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:11:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:11:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:11:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:12:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:12:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:12:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:12:26 (#:amount 94713672 #:time 333))
(heartbeat 2015-06-17T13:12:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:12:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:12:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:13:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:13:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:13:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:13:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:13:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:13:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:13:56 (#:amount 92948784 #:time 328))
(heartbeat 2015-06-17T13:14:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:14:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:14:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:14:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:14:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:14:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:15:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:15:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:15:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:15:25 (#:amount 95061576 #:time 332))
(heartbeat 2015-06-17T13:15:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:15:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:15:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:16:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:16:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:16:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:16:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:16:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:16:50 (#:amount 92899352 #:time 330))
(heartbeat 2015-06-17T13:16:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:17:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:17:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:17:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:17:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:17:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:17:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:18:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:18:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:18:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:18:22 (#:amount 95103792 #:time 332))
(heartbeat 2015-06-17T13:18:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:18:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:18:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:19:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:19:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:19:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:19:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:19:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:19:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:19:54 (#:amount 92930072 #:time 330))
(heartbeat 2015-06-17T13:20:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:20:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:20:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:20:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:20:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:20:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:21:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:21:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:21:17 (#:amount 95301624 #:time 335))
(heartbeat 2015-06-17T13:21:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:21:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:21:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:21:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:22:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:22:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:22:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:22:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:22:40 (#:amount 92917432 #:time 329))
(heartbeat 2015-06-17T13:22:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:22:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:23:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:23:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:23:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:23:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:23:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:23:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:24:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:24:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:24:11 (#:amount 95118304 #:time 337))
(heartbeat 2015-06-17T13:24:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:24:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:24:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:24:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:25:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:25:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:25:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:25:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:25:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:25:43 (#:amount 92568288 #:time 330))
(heartbeat 2015-06-17T13:25:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:26:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:26:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:26:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:26:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:26:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:26:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:27:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:27:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:27:15 (#:amount 95736976 #:time 313))
(heartbeat 2015-06-17T13:27:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:27:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:27:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:27:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:28:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:28:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:28:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:28:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:28:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:28:42 (#:amount 93082688 #:time 331))
(heartbeat 2015-06-17T13:28:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:29:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:29:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:29:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:29:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:29:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:29:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:30:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:30:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:30:11 (#:amount 94798304 #:time 327))
(heartbeat 2015-06-17T13:30:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:30:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:30:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:30:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:31:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:31:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:31:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:31:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:31:40 (#:amount 93095656 #:time 330))
(heartbeat 2015-06-17T13:31:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:31:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:32:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:32:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:32:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:32:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:32:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:32:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:33:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:33:09 (#:amount 94813728 #:time 335))
(heartbeat 2015-06-17T13:33:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:33:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:33:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:33:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:33:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:34:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:34:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:34:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:34:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:34:38 (#:amount 92848632 #:time 328))
(heartbeat 2015-06-17T13:34:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:34:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:35:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:35:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:35:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:35:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:35:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:35:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:36:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:36:09 (#:amount 95136872 #:time 331))
(heartbeat 2015-06-17T13:36:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:36:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:36:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:36:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:36:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:37:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:37:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:37:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:37:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:37:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:37:42 (#:amount 93111544 #:time 329))
(heartbeat 2015-06-17T13:37:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:38:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:38:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:38:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:38:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:38:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:38:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:39:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:39:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:39:14 (#:amount 94669256 #:time 328))
(heartbeat 2015-06-17T13:39:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:39:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:39:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:39:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:40:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:40:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:40:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:40:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:40:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:40:44 (#:amount 93041936 #:time 328))
(heartbeat 2015-06-17T13:40:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:41:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:41:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:41:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:41:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:41:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:41:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:42:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:42:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:42:14 (#:amount 94916304 #:time 330))
(heartbeat 2015-06-17T13:42:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:42:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:42:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:42:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:43:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:43:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:43:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:43:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:43:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:43:44 (#:amount 93240536 #:time 327))
(heartbeat 2015-06-17T13:43:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:44:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:44:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:44:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:44:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:44:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:44:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:45:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:45:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:45:14 (#:amount 94506104 #:time 331))
(heartbeat 2015-06-17T13:45:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:45:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:45:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:45:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:46:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:46:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:46:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:46:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:46:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:46:44 (#:amount 93074064 #:time 325))
(heartbeat 2015-06-17T13:46:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:47:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:47:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:47:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:47:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:47:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:47:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:48:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:48:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:48:16 (#:amount 94759536 #:time 335))
(heartbeat 2015-06-17T13:48:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:48:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:48:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:48:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:49:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:49:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:49:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:49:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:49:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:49:47 (#:amount 92951440 #:time 334))
(heartbeat 2015-06-17T13:49:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:50:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:50:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:50:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:50:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:50:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:50:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:51:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:51:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:51:20 (#:amount 95232408 #:time 332))
(heartbeat 2015-06-17T13:51:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:51:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:51:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:51:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:52:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:52:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:52:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:52:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:52:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:52:50 (#:amount 92818888 #:time 331))
(heartbeat 2015-06-17T13:52:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:53:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:53:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:53:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:53:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:53:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:53:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:54:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:54:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:54:14 (#:amount 95180568 #:time 328))
(heartbeat 2015-06-17T13:54:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:54:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:54:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:54:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:55:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:55:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:55:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:55:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:55:32 (#:amount 92854600 #:time 281))
(heartbeat 2015-06-17T13:55:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:55:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:56:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:56:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:56:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:56:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:56:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:56:50 (#:amount 95048064 #:time 329))
(heartbeat 2015-06-17T13:56:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:57:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:57:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:57:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:57:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:57:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:57:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:58:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:58:08 (#:amount 93030472 #:time 331))
(heartbeat 2015-06-17T13:58:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:58:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:58:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:58:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:58:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:59:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:59:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T13:59:19 (#:amount 94897168 #:time 287))
(heartbeat 2015-06-17T13:59:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:59:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:59:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T13:59:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:00:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:00:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:00:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:00:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:00:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:00:45 (#:amount 93021688 #:time 282))
(heartbeat 2015-06-17T14:00:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:01:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:01:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:01:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:01:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:01:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:01:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:02:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:02:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:02:18 (#:amount 94983584 #:time 332))
(heartbeat 2015-06-17T14:02:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:02:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:02:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:02:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:03:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:03:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:03:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:03:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:03:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:03:44 (#:amount 93011776 #:time 330))
(heartbeat 2015-06-17T14:03:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:04:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:04:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:04:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:04:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:04:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:04:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:05:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:05:07 (#:amount 95121280 #:time 331))
(heartbeat 2015-06-17T14:05:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:05:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:05:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:05:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:05:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:06:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:06:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:06:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:06:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:06:37 (#:amount 92956312 #:time 331))
(heartbeat 2015-06-17T14:06:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:06:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:07:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:07:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:07:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:07:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:07:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:07:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:08:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:08:10 (#:amount 95042528 #:time 336))
(heartbeat 2015-06-17T14:08:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:08:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:08:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:08:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:08:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:09:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:09:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:09:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:09:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:09:40 (#:amount 92934960 #:time 337))
(heartbeat 2015-06-17T14:09:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:09:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:10:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:10:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:10:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:10:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:10:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:10:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:11:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:11:12 (#:amount 95100040 #:time 330))
(heartbeat 2015-06-17T14:11:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:11:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:11:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:11:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:11:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:12:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:12:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:12:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:12:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:12:42 (#:amount 93051208 #:time 328))
(heartbeat 2015-06-17T14:12:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:12:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:13:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:13:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:13:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:13:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:13:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:13:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:14:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:14:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:14:13 (#:amount 94875336 #:time 329))
(heartbeat 2015-06-17T14:14:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:14:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:14:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:14:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:15:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:15:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:15:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:15:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:15:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:15:43 (#:amount 93312224 #:time 334))
(heartbeat 2015-06-17T14:15:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:16:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:16:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:16:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:16:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:16:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:16:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:17:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:17:12 (#:amount 94555728 #:time 330))
(heartbeat 2015-06-17T14:17:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:17:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:17:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:17:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:17:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:18:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:18:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:18:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:18:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:18:41 (#:amount 92890496 #:time 329))
(heartbeat 2015-06-17T14:18:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:18:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:19:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:19:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:19:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:19:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:19:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:19:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:20:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:20:12 (#:amount 95161832 #:time 332))
(heartbeat 2015-06-17T14:20:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:20:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:20:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:20:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:20:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:21:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:21:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:21:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:21:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:21:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:21:43 (#:amount 92839168 #:time 329))
(heartbeat 2015-06-17T14:21:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:22:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:22:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:22:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:22:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:22:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:22:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:23:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:23:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:23:15 (#:amount 95417256 #:time 332))
(heartbeat 2015-06-17T14:23:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:23:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:23:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:23:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:24:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:24:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:24:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:24:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:24:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:24:48 (#:amount 93018984 #:time 333))
(heartbeat 2015-06-17T14:24:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:25:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:25:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:25:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:25:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:25:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:25:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:26:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:26:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:26:22 (#:amount 94844088 #:time 334))
(heartbeat 2015-06-17T14:26:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:26:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:26:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:26:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:27:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:27:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:27:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:27:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:27:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:27:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:27:56 (#:amount 93123928 #:time 332))
(heartbeat 2015-06-17T14:28:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:28:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:28:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:28:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:28:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:28:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:29:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:29:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:29:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:29:31 (#:amount 94753184 #:time 332))
(heartbeat 2015-06-17T14:29:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:29:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:29:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:30:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:30:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:30:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:30:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:30:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:30:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:31:02 (#:amount 93113320 #:time 331))
(heartbeat 2015-06-17T14:31:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:31:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:31:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:31:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:31:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:31:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:32:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:32:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:32:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:32:33 (#:amount 94526208 #:time 331))
(heartbeat 2015-06-17T14:32:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:32:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:32:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:33:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:33:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:33:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:33:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:33:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:33:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:34:02 (#:amount 92809728 #:time 332))
(heartbeat 2015-06-17T14:34:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:34:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:34:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:34:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:34:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:34:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:35:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:35:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:35:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:35:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:35:36 (#:amount 95215512 #:time 335))
(heartbeat 2015-06-17T14:35:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:35:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:36:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:36:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:36:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:36:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:36:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:36:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:37:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:37:06 (#:amount 92922464 #:time 331))
(heartbeat 2015-06-17T14:37:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:37:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:37:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:37:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:37:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:38:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:38:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:38:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:38:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:38:38 (#:amount 94926528 #:time 332))
(heartbeat 2015-06-17T14:38:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:38:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:39:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:39:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:39:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:39:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:39:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:39:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:40:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:40:11 (#:amount 92910728 #:time 332))
(heartbeat 2015-06-17T14:40:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:40:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:40:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:40:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:40:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:41:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:41:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:41:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:41:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:41:42 (#:amount 95232544 #:time 337))
(heartbeat 2015-06-17T14:41:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:41:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:42:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:42:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:42:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:42:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:42:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:42:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:43:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:43:13 (#:amount 92934888 #:time 326))
(heartbeat 2015-06-17T14:43:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:43:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:43:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:43:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:43:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:44:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:44:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:44:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:44:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:44:40 (#:amount 95140192 #:time 335))
(heartbeat 2015-06-17T14:44:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:44:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:45:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:45:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:45:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:45:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:45:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:45:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:46:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:46:10 (#:amount 93318648 #:time 326))
(heartbeat 2015-06-17T14:46:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:46:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:46:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:46:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:46:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:47:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:47:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:47:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:47:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:47:43 (#:amount 94526704 #:time 334))
(heartbeat 2015-06-17T14:47:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:47:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:48:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:48:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:48:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:48:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:48:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:48:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:49:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:49:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:49:17 (#:amount 93055240 #:time 329))
(heartbeat 2015-06-17T14:49:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:49:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:49:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:49:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:50:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:50:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:50:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:50:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:50:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:50:49 (#:amount 94884744 #:time 334))
(heartbeat 2015-06-17T14:50:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:51:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:51:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:51:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:51:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:51:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:51:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:52:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:52:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:52:21 (#:amount 93276072 #:time 330))
(heartbeat 2015-06-17T14:52:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:52:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:52:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:52:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:53:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:53:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:53:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:53:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:53:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:53:49 (#:amount 94413296 #:time 330))
(heartbeat 2015-06-17T14:53:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:54:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:54:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:54:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:54:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:54:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:54:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:55:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:55:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:55:20 (#:amount 92983536 #:time 335))
(heartbeat 2015-06-17T14:55:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:55:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:55:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:55:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:56:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:56:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:56:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:56:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:56:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:56:53 (#:amount 95049856 #:time 332))
(heartbeat 2015-06-17T14:56:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:57:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:57:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:57:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:57:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:57:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:57:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:58:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:58:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:58:22 (#:amount 93154872 #:time 330))
(heartbeat 2015-06-17T14:58:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:58:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:58:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:58:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:59:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:59:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:59:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:59:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T14:59:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T14:59:52 (#:amount 94661592 #:time 332))
(heartbeat 2015-06-17T14:59:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:00:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:00:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:00:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:00:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:00:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:00:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:01:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:01:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:01:23 (#:amount 93348920 #:time 335))
(heartbeat 2015-06-17T15:01:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:01:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:01:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:01:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:02:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:02:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:02:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:02:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:02:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:02:54 (#:amount 94410184 #:time 316))
(heartbeat 2015-06-17T15:02:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:03:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:03:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:03:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:03:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:03:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:03:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:04:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:04:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:04:16 (#:amount 93029520 #:time 317))
(heartbeat 2015-06-17T15:04:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:04:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:04:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:04:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:05:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:05:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:05:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:05:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:05:41 (#:amount 95005376 #:time 331))
(heartbeat 2015-06-17T15:05:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:05:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:06:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:06:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:06:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:06:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:06:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:06:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:07:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:07:11 (#:amount 92932256 #:time 328))
(heartbeat 2015-06-17T15:07:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:07:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:07:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:07:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:07:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:08:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:08:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:08:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:08:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:08:43 (#:amount 95054424 #:time 332))
(heartbeat 2015-06-17T15:08:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:08:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:09:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:09:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:09:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:09:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:09:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:09:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:10:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:10:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:10:15 (#:amount 92997720 #:time 331))
(heartbeat 2015-06-17T15:10:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:10:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:10:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:10:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:11:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:11:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:11:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:11:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:11:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:11:48 (#:amount 95092064 #:time 335))
(heartbeat 2015-06-17T15:11:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:12:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:12:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:12:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:12:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:12:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:12:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:13:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:13:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:13:20 (#:amount 92887048 #:time 331))
(heartbeat 2015-06-17T15:13:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:13:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:13:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:13:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:14:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:14:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:14:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:14:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:14:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:14:53 (#:amount 94983016 #:time 330))
(heartbeat 2015-06-17T15:14:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:15:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:15:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:15:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:15:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:15:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:15:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:16:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:16:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:16:25 (#:amount 92658224 #:time 331))
(heartbeat 2015-06-17T15:16:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:16:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:16:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:16:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:17:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:17:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:17:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:17:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:17:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:17:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:17:56 (#:amount 95502616 #:time 335))
(heartbeat 2015-06-17T15:18:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:18:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:18:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:18:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:18:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:18:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:19:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:19:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:19:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:19:30 (#:amount 93010552 #:time 333))
(heartbeat 2015-06-17T15:19:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:19:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:19:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:20:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:20:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:20:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:20:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:20:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:20:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:21:04 (#:amount 94712904 #:time 333))
(heartbeat 2015-06-17T15:21:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:21:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:21:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:21:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:21:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:21:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:22:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:22:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:22:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:22:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:22:36 (#:amount 92907128 #:time 330))
(heartbeat 2015-06-17T15:22:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:22:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:23:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:23:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:23:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:23:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:23:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:23:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:24:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:24:09 (#:amount 95297960 #:time 331))
(heartbeat 2015-06-17T15:24:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:24:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:24:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:24:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:24:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:25:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:25:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:25:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:25:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:25:42 (#:amount 92775808 #:time 329))
(heartbeat 2015-06-17T15:25:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:25:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:26:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:26:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:26:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:26:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:26:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:26:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:27:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:27:10 (#:amount 95394776 #:time 283))
(heartbeat 2015-06-17T15:27:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:27:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:27:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:27:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:27:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:28:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:28:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:28:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:28:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:28:39 (#:amount 93014608 #:time 331))
(heartbeat 2015-06-17T15:28:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:28:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:29:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:29:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:29:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:29:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:29:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:29:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:30:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:30:10 (#:amount 95033328 #:time 333))
(heartbeat 2015-06-17T15:30:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:30:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:30:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:30:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:30:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:31:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:31:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:31:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:31:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:31:35 (#:amount 92863760 #:time 332))
(heartbeat 2015-06-17T15:31:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:31:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:32:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:32:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:32:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:32:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:32:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:32:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:33:02 (#:amount 95226152 #:time 303))
(heartbeat 2015-06-17T15:33:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:33:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:33:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:33:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:33:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:33:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:34:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:34:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:34:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:34:31 (#:amount 93089416 #:time 328))
(heartbeat 2015-06-17T15:34:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:34:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:34:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:35:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:35:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:35:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:35:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:35:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:35:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:36:01 (#:amount 94897536 #:time 335))
(heartbeat 2015-06-17T15:36:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:36:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:36:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:36:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:36:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:36:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:37:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:37:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:37:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:37:28 (#:amount 93083936 #:time 316))
(heartbeat 2015-06-17T15:37:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:37:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:37:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:38:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:38:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:38:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:38:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:38:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:38:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:38:58 (#:amount 94752456 #:time 332))
(heartbeat 2015-06-17T15:39:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:39:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:39:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:39:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:39:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:39:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:40:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:40:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:40:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:40:29 (#:amount 93150648 #:time 329))
(heartbeat 2015-06-17T15:40:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:40:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:40:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:41:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:41:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:41:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:41:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:41:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:41:49 (#:amount 94764400 #:time 335))
(heartbeat 2015-06-17T15:41:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:42:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:42:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:42:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:42:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:42:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:42:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:43:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:43:06 (#:amount 93052608 #:time 283))
(heartbeat 2015-06-17T15:43:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:43:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:43:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:43:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:43:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:44:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:44:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:44:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:44:31 (#:amount 94853112 #:time 335))
(heartbeat 2015-06-17T15:44:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:44:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:44:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:45:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:45:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:45:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:45:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:45:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:45:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:46:02 (#:amount 92921872 #:time 329))
(heartbeat 2015-06-17T15:46:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:46:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:46:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:46:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:46:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:46:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:47:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:47:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:47:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:47:34 (#:amount 95221584 #:time 337))
(heartbeat 2015-06-17T15:47:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:47:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:47:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:48:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:48:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:48:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:48:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:48:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:48:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:49:05 (#:amount 92883624 #:time 332))
(heartbeat 2015-06-17T15:49:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:49:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:49:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:49:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:49:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:49:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:50:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:50:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:50:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:50:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:50:38 (#:amount 95294152 #:time 329))
(heartbeat 2015-06-17T15:50:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:50:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:51:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:51:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:51:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:51:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:51:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:51:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:52:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:52:11 (#:amount 92892320 #:time 332))
(heartbeat 2015-06-17T15:52:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:52:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:52:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:52:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:52:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:53:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:53:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:53:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:53:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:53:44 (#:amount 94870904 #:time 332))
(heartbeat 2015-06-17T15:53:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:53:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:54:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:54:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:54:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:54:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:54:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:54:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:55:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:55:14 (#:amount 93176008 #:time 328))
(heartbeat 2015-06-17T15:55:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:55:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:55:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:55:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:55:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:56:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:56:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:56:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:56:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:56:44 (#:amount 94578312 #:time 329))
(heartbeat 2015-06-17T15:56:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:56:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:57:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:57:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:57:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:57:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:57:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:57:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:58:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:58:14 (#:amount 93078080 #:time 330))
(heartbeat 2015-06-17T15:58:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:58:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:58:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:58:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:58:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:59:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:59:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:59:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:59:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T15:59:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T15:59:47 (#:amount 94646000 #:time 339))
(heartbeat 2015-06-17T15:59:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:00:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:00:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:00:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:00:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:00:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:00:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:01:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:01:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:01:17 (#:amount 92850656 #:time 330))
(heartbeat 2015-06-17T16:01:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:01:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:01:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:01:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:02:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:02:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:02:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:02:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:02:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:02:49 (#:amount 95272712 #:time 330))
(heartbeat 2015-06-17T16:02:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:03:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:03:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:03:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:03:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:03:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:03:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:04:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:04:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:04:19 (#:amount 93015480 #:time 336))
(heartbeat 2015-06-17T16:04:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:04:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:04:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:04:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:05:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:05:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:05:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:05:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:05:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:05:51 (#:amount 94982584 #:time 332))
(heartbeat 2015-06-17T16:05:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:06:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:06:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:06:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:06:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:06:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:06:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:07:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:07:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:07:22 (#:amount 93132896 #:time 329))
(heartbeat 2015-06-17T16:07:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:07:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:07:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:07:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:08:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:08:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:08:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:08:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:08:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:08:54 (#:amount 94749616 #:time 330))
(heartbeat 2015-06-17T16:08:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:09:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:09:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:09:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:09:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:09:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:09:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:10:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:10:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:10:25 (#:amount 93161352 #:time 328))
(heartbeat 2015-06-17T16:10:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:10:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:10:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:10:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:11:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:11:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:11:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:11:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:11:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:11:52 (#:amount 94739472 #:time 332))
(heartbeat 2015-06-17T16:11:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:12:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:12:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:12:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:12:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:12:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:12:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:13:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:13:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:13:23 (#:amount 93030136 #:time 331))
(heartbeat 2015-06-17T16:13:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:13:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:13:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:13:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:14:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:14:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:14:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:14:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:14:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:14:56 (#:amount 94795192 #:time 333))
(heartbeat 2015-06-17T16:14:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:15:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:15:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:15:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:15:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:15:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:15:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:16:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:16:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:16:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:16:27 (#:amount 93115552 #:time 329))
(heartbeat 2015-06-17T16:16:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:16:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:16:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:17:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:17:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:17:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:17:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:17:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:17:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:17:59 (#:amount 94684320 #:time 330))
(heartbeat 2015-06-17T16:18:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:18:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:18:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:18:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:18:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:18:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:19:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:19:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:19:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:19:30 (#:amount 92997272 #:time 334))
(heartbeat 2015-06-17T16:19:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:19:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:19:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:20:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:20:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:20:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:20:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:20:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:20:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:21:01 (#:amount 94849384 #:time 335))
(heartbeat 2015-06-17T16:21:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:21:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:21:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:21:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:21:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:21:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:22:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:22:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:22:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:22:32 (#:amount 93166336 #:time 331))
(heartbeat 2015-06-17T16:22:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:22:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:22:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:23:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:23:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:23:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:23:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:23:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:23:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:24:04 (#:amount 94750536 #:time 330))
(heartbeat 2015-06-17T16:24:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:24:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:24:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:24:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:24:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:24:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:25:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:25:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:25:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:25:30 (#:amount 92724424 #:time 329))
(heartbeat 2015-06-17T16:25:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:25:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:25:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:26:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:26:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:26:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:26:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:26:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:26:55 (#:amount 95492488 #:time 331))
(heartbeat 2015-06-17T16:26:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:27:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:27:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:27:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:27:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:27:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:27:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:28:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:28:15 (#:amount 93145664 #:time 281))
(heartbeat 2015-06-17T16:28:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:28:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:28:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:28:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:28:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:29:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:29:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:29:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:29:36 (#:amount 94538152 #:time 339))
(heartbeat 2015-06-17T16:29:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:29:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:29:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:30:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:30:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:30:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:30:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:30:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:30:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:31:03 (#:amount 93059424 #:time 331))
(heartbeat 2015-06-17T16:31:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:31:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:31:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:31:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:31:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:31:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:32:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:32:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:32:25 (#:amount 95091072 #:time 331))
(heartbeat 2015-06-17T16:32:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:32:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:32:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:32:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:33:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:33:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:33:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:33:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:33:42 (#:amount 93163208 #:time 329))
(heartbeat 2015-06-17T16:33:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:33:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:34:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:34:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:34:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:34:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:34:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:34:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:35:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:35:09 (#:amount 94686992 #:time 332))
(heartbeat 2015-06-17T16:35:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:35:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:35:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:35:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:35:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:36:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:36:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:36:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:36:37 (#:amount 93083072 #:time 331))
(heartbeat 2015-06-17T16:36:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:36:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:36:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:37:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:37:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:37:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:37:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:37:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:37:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:38:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:38:09 (#:amount 94806656 #:time 334))
(heartbeat 2015-06-17T16:38:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:38:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:38:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:38:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:38:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:39:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:39:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:39:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:39:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:39:40 (#:amount 92668920 #:time 329))
(heartbeat 2015-06-17T16:39:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:39:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:40:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:40:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:40:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:40:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:40:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:40:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:41:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:41:13 (#:amount 95429128 #:time 334))
(heartbeat 2015-06-17T16:41:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:41:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:41:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:41:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:41:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:42:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:42:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:42:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:42:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:42:43 (#:amount 93258176 #:time 327))
(heartbeat 2015-06-17T16:42:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:42:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:43:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:43:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:43:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:43:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:43:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:43:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:44:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:44:16 (#:amount 94544160 #:time 333))
(heartbeat 2015-06-17T16:44:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:44:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:44:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:44:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:44:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:45:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:45:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:45:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:45:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:45:47 (#:amount 93205856 #:time 329))
(heartbeat 2015-06-17T16:45:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:45:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:46:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:46:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:46:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:46:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:46:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:46:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:47:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:47:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:47:20 (#:amount 94635224 #:time 335))
(heartbeat 2015-06-17T16:47:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:47:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:47:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:47:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:48:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:48:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:48:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:48:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:48:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:48:53 (#:amount 93043608 #:time 335))
(heartbeat 2015-06-17T16:48:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:49:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:49:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:49:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:49:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:49:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:49:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:50:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:50:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:50:23 (#:amount 94961600 #:time 329))
(heartbeat 2015-06-17T16:50:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:50:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:50:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:50:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:51:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:51:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:51:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:51:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:51:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:51:53 (#:amount 92847400 #:time 333))
(heartbeat 2015-06-17T16:51:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:52:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:52:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:52:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:52:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:52:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:52:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:53:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:53:17 (#:amount 95503432 #:time 330))
(heartbeat 2015-06-17T16:53:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:53:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:53:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:53:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:53:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:54:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:54:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:54:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:54:36 (#:amount 93026344 #:time 282))
(heartbeat 2015-06-17T16:54:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:54:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:54:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:55:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:55:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:55:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:55:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:55:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:55:56 (#:amount 94894416 #:time 333))
(heartbeat 2015-06-17T16:55:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:56:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:56:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:56:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:56:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:56:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:56:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:57:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:57:13 (#:amount 92956248 #:time 326))
(heartbeat 2015-06-17T16:57:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:57:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:57:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:57:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:57:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:58:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:58:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:58:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:58:30 (#:amount 95201416 #:time 334))
(heartbeat 2015-06-17T16:58:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:58:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:58:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:59:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:59:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:59:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:59:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T16:59:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T16:59:55 (#:amount 93090104 #:time 324))
(heartbeat 2015-06-17T16:59:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:00:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:00:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:00:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:00:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:00:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:00:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:01:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:01:13 (#:amount 94893424 #:time 283))
(heartbeat 2015-06-17T17:01:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:01:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:01:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:01:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:01:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:02:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:02:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:02:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:02:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:02:40 (#:amount 93170024 #:time 331))
(heartbeat 2015-06-17T17:02:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:02:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:03:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:03:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:03:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:03:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:03:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:03:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:04:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:04:14 (#:amount 94533392 #:time 336))
(heartbeat 2015-06-17T17:04:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:04:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:04:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:04:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:04:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:05:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:05:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:05:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:05:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:05:46 (#:amount 93219256 #:time 329))
(heartbeat 2015-06-17T17:05:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:05:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:06:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:06:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:06:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:06:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:06:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:06:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:07:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:07:16 (#:amount 94632984 #:time 340))
(heartbeat 2015-06-17T17:07:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:07:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:07:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:07:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:07:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:08:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:08:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:08:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:08:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:08:47 (#:amount 92904296 #:time 332))
(heartbeat 2015-06-17T17:08:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:08:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:09:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:09:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:09:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:09:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:09:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:09:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:10:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:10:14 (#:amount 95207464 #:time 336))
(heartbeat 2015-06-17T17:10:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:10:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:10:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:10:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:10:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:11:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:11:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:11:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:11:32 (#:amount 92743472 #:time 280))
(heartbeat 2015-06-17T17:11:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:11:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:11:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:12:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:12:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:12:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:12:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:12:48 (#:amount 95393248 #:time 283))
(heartbeat 2015-06-17T17:12:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:12:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:13:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:13:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:13:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:13:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:13:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:13:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:14:07 (#:amount 93228848 #:time 329))
(heartbeat 2015-06-17T17:14:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:14:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:14:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:14:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:14:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:14:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:15:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:15:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:15:26 (#:amount 94479280 #:time 283))
(heartbeat 2015-06-17T17:15:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:15:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:15:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:15:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:16:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:16:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:16:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:16:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:16:44 (#:amount 93272104 #:time 326))
(heartbeat 2015-06-17T17:16:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:16:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:17:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:17:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:17:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:17:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:17:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:17:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:18:04 (#:amount 94577712 #:time 314))
(heartbeat 2015-06-17T17:18:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:18:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:18:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:18:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:18:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:18:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:19:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:19:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:19:24 (#:amount 92960704 #:time 327))
(heartbeat 2015-06-17T17:19:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:19:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:19:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:19:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:20:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:20:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:20:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:20:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:20:45 (#:amount 94907512 #:time 331))
(heartbeat 2015-06-17T17:20:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:21:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:21:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:21:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:21:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:21:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:21:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:22:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:22:08 (#:amount 93163512 #:time 327))
(heartbeat 2015-06-17T17:22:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:22:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:22:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:22:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:22:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:23:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:23:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:23:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:23:29 (#:amount 94787416 #:time 328))
(heartbeat 2015-06-17T17:23:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:23:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:23:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:24:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:24:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:24:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:24:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:24:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:24:40 (#:amount 92937160 #:time 328))
(heartbeat 2015-06-17T17:24:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:25:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:25:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:25:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:25:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:25:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:25:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:26:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:26:01 (#:amount 94954264 #:time 334))
(heartbeat 2015-06-17T17:26:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:26:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:26:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:26:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:26:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:27:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:27:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:27:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:27:29 (#:amount 92912632 #:time 326))
(heartbeat 2015-06-17T17:27:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:27:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:27:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:28:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:28:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:28:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:28:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:28:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:28:49 (#:amount 95129016 #:time 329))
(heartbeat 2015-06-17T17:28:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:29:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:29:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:29:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:29:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:29:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:29:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:30:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:30:09 (#:amount 92925552 #:time 278))
(heartbeat 2015-06-17T17:30:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:30:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:30:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:30:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:30:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:31:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:31:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:31:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:31:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:31:31 (#:amount 94952920 #:time 335))
(heartbeat 2015-06-17T17:31:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:31:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:32:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:32:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:32:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:32:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:32:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:32:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:33:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:33:03 (#:amount 93136032 #:time 332))
(heartbeat 2015-06-17T17:33:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:33:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:33:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:33:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:33:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:34:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:34:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:34:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:34:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:34:36 (#:amount 94943752 #:time 334))
(heartbeat 2015-06-17T17:34:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:34:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:35:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:35:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:35:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:35:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:35:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:35:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:36:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:36:08 (#:amount 92824312 #:time 330))
(heartbeat 2015-06-17T17:36:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:36:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:36:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:36:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:36:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:37:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:37:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:37:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:37:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:37:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:37:40 (#:amount 95140528 #:time 333))
(heartbeat 2015-06-17T17:37:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:38:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:38:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:38:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:38:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:38:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:38:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:39:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:39:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:39:12 (#:amount 93005648 #:time 331))
(heartbeat 2015-06-17T17:39:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:39:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:39:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:39:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:40:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:40:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:40:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:40:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:40:37 (#:amount 94803608 #:time 331))
(heartbeat 2015-06-17T17:40:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:40:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:41:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:41:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:41:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:41:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:41:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:41:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:42:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:42:08 (#:amount 92708152 #:time 333))
(heartbeat 2015-06-17T17:42:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:42:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:42:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:42:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:42:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:43:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:43:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:43:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:43:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:43:39 (#:amount 95296496 #:time 326))
(heartbeat 2015-06-17T17:43:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:43:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:44:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:44:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:44:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:44:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:44:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:44:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:45:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:45:05 (#:amount 93166104 #:time 328))
(heartbeat 2015-06-17T17:45:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:45:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:45:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:45:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:45:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:46:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:46:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:46:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:46:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:46:31 (#:amount 94626240 #:time 282))
(heartbeat 2015-06-17T17:46:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:46:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:47:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:47:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:47:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:47:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:47:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:47:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:48:00 (#:amount 93074552 #:time 330))
(heartbeat 2015-06-17T17:48:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:48:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:48:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:48:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:48:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:48:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:49:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:49:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:49:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:49:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:49:32 (#:amount 94627464 #:time 329))
(heartbeat 2015-06-17T17:49:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:49:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:50:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:50:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:50:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:50:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:50:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:50:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:51:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:51:02 (#:amount 93312800 #:time 330))
(heartbeat 2015-06-17T17:51:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:51:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:51:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:51:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:51:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:52:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:52:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:52:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:52:30 (#:amount 94514368 #:time 329))
(heartbeat 2015-06-17T17:52:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:52:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:52:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:53:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:53:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:53:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:53:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:53:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:53:50 (#:amount 93101448 #:time 279))
(heartbeat 2015-06-17T17:53:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:54:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:54:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:54:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:54:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:54:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:54:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:55:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:55:10 (#:amount 94549600 #:time 310))
(heartbeat 2015-06-17T17:55:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:55:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:55:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:55:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:55:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:56:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:56:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:56:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:56:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:56:32 (#:amount 93064488 #:time 279))
(heartbeat 2015-06-17T17:56:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:56:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:57:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:57:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:57:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:57:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:57:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:57:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:57:58 (#:amount 94644152 #:time 329))
(heartbeat 2015-06-17T17:58:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:58:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:58:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:58:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:58:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:58:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:59:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:59:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:59:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T17:59:26 (#:amount 93237928 #:time 278))
(heartbeat 2015-06-17T17:59:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:59:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T17:59:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:00:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:00:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:00:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:00:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:00:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:00:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:00:53 (#:amount 94505192 #:time 326))
(heartbeat 2015-06-17T18:01:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:01:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:01:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:01:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:01:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:01:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:02:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:02:06 (#:amount 93024648 #:time 285))
(heartbeat 2015-06-17T18:02:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:02:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:02:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:02:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:02:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:03:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:03:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:03:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:03:22 (#:amount 95001304 #:time 329))
(heartbeat 2015-06-17T18:03:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:03:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:03:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:04:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:04:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:04:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:04:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:04:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:04:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:04:52 (#:amount 92995184 #:time 330))
(heartbeat 2015-06-17T18:05:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:05:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:05:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:05:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:05:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:05:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:06:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:06:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:06:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:06:24 (#:amount 94917880 #:time 335))
(heartbeat 2015-06-17T18:06:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:06:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:06:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:07:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:07:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:07:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:07:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:07:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:07:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:07:53 (#:amount 93182344 #:time 329))
(heartbeat 2015-06-17T18:08:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:08:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:08:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:08:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:08:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:08:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:09:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:09:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:09:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:09:26 (#:amount 94537440 #:time 337))
(heartbeat 2015-06-17T18:09:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:09:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:09:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:10:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:10:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:10:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:10:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:10:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:10:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:10:58 (#:amount 93179200 #:time 329))
(heartbeat 2015-06-17T18:11:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:11:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:11:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:11:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:11:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:11:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:12:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:12:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:12:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:12:30 (#:amount 94610840 #:time 338))
(heartbeat 2015-06-17T18:12:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:12:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:12:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:13:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:13:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:13:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:13:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:13:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:13:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:14:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:14:03 (#:amount 93365568 #:time 333))
(heartbeat 2015-06-17T18:14:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:14:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:14:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:14:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:14:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:15:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:15:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:15:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:15:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:15:35 (#:amount 94194136 #:time 332))
(heartbeat 2015-06-17T18:15:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:15:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:16:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:16:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:16:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:16:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:16:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:16:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:17:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:17:07 (#:amount 93025448 #:time 330))
(heartbeat 2015-06-17T18:17:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:17:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:17:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:17:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:17:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:18:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:18:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:18:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:18:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:18:40 (#:amount 94901944 #:time 337))
(heartbeat 2015-06-17T18:18:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:18:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:19:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:19:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:19:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:19:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:19:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:19:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:20:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:20:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:20:12 (#:amount 93098976 #:time 330))
(heartbeat 2015-06-17T18:20:21 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:20:31 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:20:41 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:20:51 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:21:01 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:21:11 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:21:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:21:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:21:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:21:44 (#:amount 94600064 #:time 331))
(heartbeat 2015-06-17T18:21:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:22:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:22:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:22:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:22:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:22:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:22:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:23:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:23:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:23:13 (#:amount 93294568 #:time 328))
(heartbeat 2015-06-17T18:23:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:23:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:23:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:23:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:24:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:24:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:24:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:24:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:24:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:24:45 (#:amount 94409200 #:time 329))
(heartbeat 2015-06-17T18:24:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:25:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:25:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:25:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:25:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:25:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:25:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:26:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:26:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:26:16 (#:amount 93199024 #:time 330))
(heartbeat 2015-06-17T18:26:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:26:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:26:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:26:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:27:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:27:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:27:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:27:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:27:40 (#:amount 94611544 #:time 331))
(heartbeat 2015-06-17T18:27:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:27:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:28:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:28:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:28:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:28:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:28:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:28:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:29:01 (#:amount 93150264 #:time 326))
(heartbeat 2015-06-17T18:29:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:29:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:29:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:29:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:29:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:29:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:30:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:30:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:30:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:30:23 (#:amount 94596696 #:time 331))
(heartbeat 2015-06-17T18:30:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:30:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:30:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:31:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:31:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:31:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:31:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:31:41 (#:amount 93225792 #:time 326))
(heartbeat 2015-06-17T18:31:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:31:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:32:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:32:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:32:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:32:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:32:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:32:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:33:00 (#:amount 94608944 #:time 330))
(heartbeat 2015-06-17T18:33:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:33:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:33:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:33:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:33:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:33:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:34:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:34:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:34:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:34:22 (#:amount 93276048 #:time 325))
(heartbeat 2015-06-17T18:34:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:34:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:34:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:35:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:35:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:35:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:35:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:35:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:35:43 (#:amount 94186560 #:time 328))
(heartbeat 2015-06-17T18:35:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:36:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:36:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:36:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:36:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:36:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:36:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:37:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:37:06 (#:amount 93290288 #:time 330))
(heartbeat 2015-06-17T18:37:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:37:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:37:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:37:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:37:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:38:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:38:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:38:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:38:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:38:37 (#:amount 94313216 #:time 334))
(heartbeat 2015-06-17T18:38:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:38:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:39:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:39:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:39:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:39:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:39:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:39:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:40:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:40:08 (#:amount 92995552 #:time 337))
(heartbeat 2015-06-17T18:40:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:40:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:40:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:40:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:40:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:41:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:41:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:41:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:41:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:41:40 (#:amount 94925416 #:time 334))
(heartbeat 2015-06-17T18:41:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:41:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:42:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:42:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:42:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:42:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:42:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:42:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:43:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:43:09 (#:amount 92979240 #:time 333))
(heartbeat 2015-06-17T18:43:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:43:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:43:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:43:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:43:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:44:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:44:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:44:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:44:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:44:40 (#:amount 94939544 #:time 337))
(heartbeat 2015-06-17T18:44:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:44:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:45:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:45:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:45:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:45:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:45:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:45:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:46:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:46:12 (#:amount 92968928 #:time 332))
(heartbeat 2015-06-17T18:46:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:46:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:46:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:46:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:46:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:47:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:47:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:47:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:47:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:47:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:47:46 (#:amount 94974736 #:time 329))
(heartbeat 2015-06-17T18:47:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:48:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:48:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:48:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:48:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:48:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:48:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:49:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:49:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:49:15 (#:amount 92955152 #:time 328))
(heartbeat 2015-06-17T18:49:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:49:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:49:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:49:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:50:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:50:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:50:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:50:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:50:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:50:46 (#:amount 94973976 #:time 332))
(heartbeat 2015-06-17T18:50:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:51:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:51:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:51:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:51:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:51:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:51:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:52:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:52:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:52:18 (#:amount 92707768 #:time 331))
(heartbeat 2015-06-17T18:52:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:52:32 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:52:42 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:52:52 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:53:02 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:53:12 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:53:22 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:53:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:53:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:53:47 (#:amount 95527400 #:time 337))
(heartbeat 2015-06-17T18:53:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:54:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:54:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:54:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:54:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:54:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:54:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:55:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:55:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:55:19 (#:amount 92910048 #:time 329))
(heartbeat 2015-06-17T18:55:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:55:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:55:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:55:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:56:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:56:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:56:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:56:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:56:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:56:48 (#:amount 95040640 #:time 333))
(heartbeat 2015-06-17T18:56:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:57:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:57:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:57:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:57:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:57:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:57:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:58:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:58:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:58:19 (#:amount 93051304 #:time 330))
(heartbeat 2015-06-17T18:58:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:58:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:58:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:58:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:59:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:59:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:59:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:59:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T18:59:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T18:59:52 (#:amount 94695360 #:time 335))
(heartbeat 2015-06-17T18:59:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:00:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:00:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:00:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:00:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:00:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:00:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:01:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:01:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:01:20 (#:amount 92892480 #:time 330))
(heartbeat 2015-06-17T19:01:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:01:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:01:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:01:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:02:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:02:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:02:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:02:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:02:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:02:52 (#:amount 95036568 #:time 332))
(heartbeat 2015-06-17T19:02:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:03:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:03:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:03:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:03:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:03:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:03:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:04:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:04:10 (#:amount 93019896 #:time 282))
(heartbeat 2015-06-17T19:04:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:04:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:04:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:04:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:04:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:05:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:05:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:05:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:05:30 (#:amount 95042336 #:time 304))
(heartbeat 2015-06-17T19:05:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:05:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:05:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:06:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:06:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:06:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:06:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:06:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:06:51 (#:amount 93064504 #:time 328))
(heartbeat 2015-06-17T19:06:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:07:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:07:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:07:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:07:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:07:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:07:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:08:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:08:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:08:21 (#:amount 94835912 #:time 329))
(heartbeat 2015-06-17T19:08:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:08:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:08:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:08:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:09:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:09:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:09:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:09:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:09:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:09:50 (#:amount 93042848 #:time 327))
(heartbeat 2015-06-17T19:09:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:10:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:10:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:10:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:10:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:10:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:10:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:11:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:11:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:11:19 (#:amount 94887688 #:time 330))
(heartbeat 2015-06-17T19:11:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:11:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:11:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:11:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:12:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:12:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:12:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:12:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:12:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:12:48 (#:amount 92992360 #:time 325))
(heartbeat 2015-06-17T19:12:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:13:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:13:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:13:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:13:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:13:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:13:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:14:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:14:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:14:18 (#:amount 94902152 #:time 329))
(heartbeat 2015-06-17T19:14:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:14:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:14:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:14:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:15:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:15:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:15:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:15:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:15:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:15:47 (#:amount 93074296 #:time 329))
(heartbeat 2015-06-17T19:15:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:16:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:16:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:16:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:16:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:16:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:16:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:17:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:17:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:17:17 (#:amount 94805880 #:time 327))
(heartbeat 2015-06-17T19:17:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:17:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:17:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:17:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:18:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:18:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:18:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:18:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:18:40 (#:amount 93082560 #:time 330))
(heartbeat 2015-06-17T19:18:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:18:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:19:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:19:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:19:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:19:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:19:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:19:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:20:00 (#:amount 94739984 #:time 283))
(heartbeat 2015-06-17T19:20:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:20:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:20:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:20:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:20:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:20:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:21:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:21:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:21:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:21:24 (#:amount 92708656 #:time 326))
(heartbeat 2015-06-17T19:21:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:21:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:21:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:22:03 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:22:13 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:22:23 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:22:33 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:22:42 (#:amount 95525496 #:time 329))
(heartbeat 2015-06-17T19:22:43 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:22:53 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:23:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:23:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:23:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:23:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:23:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:23:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:24:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:24:07 (#:amount 92978624 #:time 335))
(heartbeat 2015-06-17T19:24:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:24:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:24:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:24:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:24:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:25:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:25:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:25:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:25:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:25:39 (#:amount 94813576 #:time 329))
(heartbeat 2015-06-17T19:25:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:25:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:26:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:26:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:26:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:26:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:26:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:26:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:27:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:27:12 (#:amount 93053808 #:time 331))
(heartbeat 2015-06-17T19:27:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:27:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:27:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:27:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:27:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:28:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:28:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:28:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:28:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:28:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:28:44 (#:amount 94950592 #:time 338))
(heartbeat 2015-06-17T19:28:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:29:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:29:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:29:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:29:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:29:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:29:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:30:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:30:14 (#:amount 93185016 #:time 332))
(heartbeat 2015-06-17T19:30:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:30:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:30:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:30:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:30:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:31:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:31:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:31:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:31:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:31:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:31:44 (#:amount 94781112 #:time 342))
(heartbeat 2015-06-17T19:31:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:32:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:32:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:32:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:32:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:32:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:32:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:33:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:33:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:33:16 (#:amount 92937120 #:time 331))
(heartbeat 2015-06-17T19:33:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:33:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:33:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:33:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:34:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:34:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:34:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:34:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:34:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:34:47 (#:amount 95038952 #:time 335))
(heartbeat 2015-06-17T19:34:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:35:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:35:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:35:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:35:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:35:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:35:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:36:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:36:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:36:17 (#:amount 92892832 #:time 333))
(heartbeat 2015-06-17T19:36:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:36:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:36:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:36:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:37:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:37:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:37:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:37:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:37:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:37:49 (#:amount 94955528 #:time 333))
(heartbeat 2015-06-17T19:37:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:38:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:38:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:38:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:38:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:38:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:38:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:39:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:39:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:39:19 (#:amount 93251784 #:time 332))
(heartbeat 2015-06-17T19:39:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:39:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:39:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:39:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:40:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:40:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:40:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:40:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:40:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:40:50 (#:amount 94421640 #:time 331))
(heartbeat 2015-06-17T19:40:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:41:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:41:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:41:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:41:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:41:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:41:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:42:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:42:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:42:20 (#:amount 92826496 #:time 329))
(heartbeat 2015-06-17T19:42:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:42:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:42:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:42:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:43:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:43:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:43:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:43:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:43:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:43:51 (#:amount 95176184 #:time 333))
(heartbeat 2015-06-17T19:43:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:44:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:44:14 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:44:24 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:44:34 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:44:44 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:44:54 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:45:04 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:45:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:45:21 (#:amount 92585168 #:time 331))
(heartbeat 2015-06-17T19:45:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:45:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:45:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:45:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:46:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:46:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:46:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:46:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:46:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:46:45 (#:amount 95793168 #:time 284))
(heartbeat 2015-06-17T19:46:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:47:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:47:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:47:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:47:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:47:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:47:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:48:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:48:06 (#:amount 92872432 #:time 328))
(heartbeat 2015-06-17T19:48:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:48:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:48:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:48:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:48:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:49:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:49:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:49:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:49:26 (#:amount 95221672 #:time 283))
(heartbeat 2015-06-17T19:49:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:49:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:49:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:50:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:50:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:50:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:50:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:50:41 (#:amount 93008800 #:time 282))
(heartbeat 2015-06-17T19:50:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:50:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:51:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:51:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:51:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:51:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:51:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:51:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:51:58 (#:amount 94860848 #:time 330))
(heartbeat 2015-06-17T19:52:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:52:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:52:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:52:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:52:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:52:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:53:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:53:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:53:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:53:29 (#:amount 92673576 #:time 332))
(heartbeat 2015-06-17T19:53:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:53:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:53:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:54:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:54:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:54:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:54:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:54:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:54:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:55:01 (#:amount 95659672 #:time 333))
(heartbeat 2015-06-17T19:55:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:55:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:55:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:55:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:55:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:55:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:56:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:56:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:56:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:56:32 (#:amount 93011576 #:time 336))
(heartbeat 2015-06-17T19:56:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:56:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:56:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:57:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:57:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:57:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:57:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:57:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:57:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:58:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:58:05 (#:amount 94915408 #:time 337))
(heartbeat 2015-06-17T19:58:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:58:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:58:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:58:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:58:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:59:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:59:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:59:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T19:59:32 (#:amount 93185720 #:time 329))
(heartbeat 2015-06-17T19:59:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:59:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T19:59:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:00:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:00:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:00:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:00:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:00:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:00:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:01:03 (#:amount 94588880 #:time 336))
(heartbeat 2015-06-17T20:01:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:01:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:01:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:01:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:01:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:01:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:02:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:02:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:02:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:02:25 (#:amount 92773696 #:time 329))
(heartbeat 2015-06-17T20:02:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:02:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:02:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:03:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:03:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:03:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:03:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:03:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:03:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:03:57 (#:amount 95600504 #:time 332))
(heartbeat 2015-06-17T20:04:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:04:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:04:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:04:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:04:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:04:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:05:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:05:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:05:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:05:29 (#:amount 92949928 #:time 329))
(heartbeat 2015-06-17T20:05:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:05:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:05:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:06:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:06:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:06:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:06:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:06:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:06:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:07:01 (#:amount 95040128 #:time 336))
(heartbeat 2015-06-17T20:07:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:07:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:07:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:07:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:07:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:07:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:08:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:08:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:08:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:08:30 (#:amount 93110840 #:time 335))
(heartbeat 2015-06-17T20:08:35 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:08:45 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:08:55 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:09:05 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:09:15 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:09:25 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:09:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:09:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:09:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:09:58 (#:amount 94560176 #:time 281))
(heartbeat 2015-06-17T20:10:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:10:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:10:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:10:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:10:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:10:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:11:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:11:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:11:21 (#:amount 92726048 #:time 328))
(heartbeat 2015-06-17T20:11:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:11:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:11:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:11:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:12:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:12:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:12:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:12:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:12:37 (#:amount 95592088 #:time 283))
(heartbeat 2015-06-17T20:12:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:12:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:13:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:13:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:13:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:13:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:13:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:13:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:13:57 (#:amount 93071576 #:time 329))
(heartbeat 2015-06-17T20:14:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:14:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:14:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:14:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:14:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:14:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:15:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:15:07 (#:amount 94624120 #:time 288))
(heartbeat 2015-06-17T20:15:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:15:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:15:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:15:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:15:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:16:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:16:11 (#:amount 92851920 #:time 282))
(heartbeat 2015-06-17T20:16:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:16:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:16:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:16:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:16:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:17:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:17:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:17:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:17:26 (#:amount 95262192 #:time 282))
(heartbeat 2015-06-17T20:17:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:17:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:17:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:18:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:18:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:18:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:18:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:18:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:18:51 (#:amount 92589776 #:time 327))
(heartbeat 2015-06-17T20:18:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:19:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:19:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:19:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:19:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:19:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:19:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:20:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:20:14 (#:amount 95825168 #:time 328))
(heartbeat 2015-06-17T20:20:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:20:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:20:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:20:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:20:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:21:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:21:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:21:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:21:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:21:43 (#:amount 93110584 #:time 328))
(heartbeat 2015-06-17T20:21:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:21:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:22:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:22:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:22:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:22:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:22:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:22:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:23:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:23:13 (#:amount 94608912 #:time 327))
(heartbeat 2015-06-17T20:23:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:23:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:23:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:23:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:23:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:24:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:24:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:24:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:24:28 (#:amount 92982784 #:time 279))
(heartbeat 2015-06-17T20:24:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:24:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:24:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:25:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:25:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:25:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:25:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:25:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:25:50 (#:amount 94951784 #:time 333))
(heartbeat 2015-06-17T20:25:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:26:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:26:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:26:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:26:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:26:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:26:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:27:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:27:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:27:21 (#:amount 93063488 #:time 333))
(heartbeat 2015-06-17T20:27:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:27:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:27:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:27:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:28:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:28:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:28:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:28:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:28:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:28:53 (#:amount 94772576 #:time 331))
(heartbeat 2015-06-17T20:28:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:29:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:29:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:29:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:29:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:29:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:29:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:30:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:30:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:30:24 (#:amount 93092912 #:time 333))
(heartbeat 2015-06-17T20:30:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:30:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:30:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:30:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:31:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:31:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:31:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:31:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:31:46 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:31:55 (#:amount 94843560 #:time 333))
(heartbeat 2015-06-17T20:31:56 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:32:06 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:32:16 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:32:26 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:32:36 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:32:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:32:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:33:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:33:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:33:25 (#:amount 93045504 #:time 331))
(heartbeat 2015-06-17T20:33:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:33:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:33:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:33:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:34:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:34:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:34:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:34:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:34:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:34:56 (#:amount 94959328 #:time 331))
(heartbeat 2015-06-17T20:34:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:35:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:35:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:35:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:35:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:35:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:35:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:36:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:36:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:36:25 (#:amount 93193632 #:time 329))
(heartbeat 2015-06-17T20:36:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:36:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:36:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:36:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:37:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:37:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:37:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:37:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:37:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:37:55 (#:amount 94357904 #:time 328))
(heartbeat 2015-06-17T20:37:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:38:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:38:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:38:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:38:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:38:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:38:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:39:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:39:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:39:24 (#:amount 92936696 #:time 331))
(heartbeat 2015-06-17T20:39:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:39:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:39:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:39:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:40:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:40:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:40:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:40:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:40:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:40:52 (#:amount 94886632 #:time 308))
(heartbeat 2015-06-17T20:40:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:41:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:41:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:41:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:41:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:41:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:41:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:42:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:42:09 (#:amount 92721744 #:time 327))
(heartbeat 2015-06-17T20:42:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:42:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:42:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:42:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:42:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:43:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:43:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:43:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:43:33 (#:amount 95457120 #:time 335))
(heartbeat 2015-06-17T20:43:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:43:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:43:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:44:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:44:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:44:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:44:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:44:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:44:56 (#:amount 92994488 #:time 332))
(heartbeat 2015-06-17T20:44:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:45:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:45:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:45:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:45:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:45:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:45:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:46:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:46:15 (#:amount 94896088 #:time 328))
(heartbeat 2015-06-17T20:46:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:46:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:46:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:46:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:46:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:47:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:47:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:47:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:47:35 (#:amount 92891496 #:time 330))
(heartbeat 2015-06-17T20:47:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:47:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:47:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:48:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:48:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:48:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:48:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:48:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:48:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:49:05 (#:amount 95138824 #:time 336))
(heartbeat 2015-06-17T20:49:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:49:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:49:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:49:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:49:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:49:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:50:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:50:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:50:25 (#:amount 92894288 #:time 326))
(heartbeat 2015-06-17T20:50:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:50:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:50:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:50:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:51:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:51:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:51:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:51:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:51:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:51:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:51:58 (#:amount 95047960 #:time 334))
(heartbeat 2015-06-17T20:52:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:52:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:52:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:52:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:52:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:52:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:53:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:53:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:53:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:53:28 (#:amount 93034856 #:time 329))
(heartbeat 2015-06-17T20:53:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:53:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:53:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:54:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:54:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:54:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:54:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:54:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:54:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:55:02 (#:amount 94986904 #:time 331))
(heartbeat 2015-06-17T20:55:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:55:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:55:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:55:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:55:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:55:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:56:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:56:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:56:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:56:35 (#:amount 93196400 #:time 330))
(heartbeat 2015-06-17T20:56:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:56:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:56:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:57:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:57:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:57:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:57:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:57:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:57:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:58:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:58:09 (#:amount 94684832 #:time 333))
(heartbeat 2015-06-17T20:58:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:58:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:58:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:58:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:58:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:59:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:59:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:59:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:59:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T20:59:42 (#:amount 93143768 #:time 330))
(heartbeat 2015-06-17T20:59:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T20:59:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:00:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:00:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:00:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:00:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:00:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:00:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:01:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:01:12 (#:amount 94613016 #:time 332))
(heartbeat 2015-06-17T21:01:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:01:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:01:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:01:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:01:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:02:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:02:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:02:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:02:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:02:42 (#:amount 93032800 #:time 332))
(heartbeat 2015-06-17T21:02:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:02:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:03:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:03:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:03:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:03:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:03:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:03:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:04:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:04:12 (#:amount 95014784 #:time 329))
(heartbeat 2015-06-17T21:04:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:04:27 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:04:37 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:04:47 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:04:57 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:05:07 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:05:17 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:05:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:05:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:05:43 (#:amount 93131256 #:time 328))
(heartbeat 2015-06-17T21:05:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:05:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:06:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:06:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:06:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:06:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:06:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:06:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:07:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:07:12 (#:amount 94516520 #:time 328))
(heartbeat 2015-06-17T21:07:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:07:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:07:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:07:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:07:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:08:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:08:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:08:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:08:37 (#:amount 92928496 #:time 279))
(heartbeat 2015-06-17T21:08:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:08:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:08:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:09:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:09:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:09:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:09:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:09:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:09:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:09:58 (#:amount 95260368 #:time 330))
(heartbeat 2015-06-17T21:10:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:10:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:10:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:10:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:10:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:10:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:11:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:11:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:11:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:11:29 (#:amount 92638240 #:time 330))
(heartbeat 2015-06-17T21:11:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:11:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:11:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:12:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:12:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:12:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:12:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:12:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:12:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:13:02 (#:amount 95752080 #:time 330))
(heartbeat 2015-06-17T21:13:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:13:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:13:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:13:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:13:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:13:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:14:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:14:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:14:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:14:33 (#:amount 93163472 #:time 335))
(heartbeat 2015-06-17T21:14:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:14:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:14:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:15:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:15:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:15:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:15:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:15:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:15:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:16:06 (#:amount 94572664 #:time 333))
(heartbeat 2015-06-17T21:16:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:16:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:16:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:16:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:16:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:16:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:17:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:17:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:17:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:17:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:17:38 (#:amount 93118016 #:time 331))
(heartbeat 2015-06-17T21:17:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:17:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:18:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:18:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:18:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:18:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:18:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:18:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:19:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:19:11 (#:amount 94806192 #:time 333))
(heartbeat 2015-06-17T21:19:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:19:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:19:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:19:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:19:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:20:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:20:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:20:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:20:36 (#:amount 93012472 #:time 332))
(heartbeat 2015-06-17T21:20:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:20:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:20:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:21:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:21:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:21:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:21:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:21:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:21:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:22:07 (#:amount 94935544 #:time 332))
(heartbeat 2015-06-17T21:22:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:22:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:22:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:22:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:22:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:22:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:23:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:23:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:23:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:23:37 (#:amount 93057288 #:time 327))
(heartbeat 2015-06-17T21:23:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:23:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:23:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:24:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:24:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:24:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:24:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:24:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:24:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:25:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:25:08 (#:amount 94791440 #:time 330))
(heartbeat 2015-06-17T21:25:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:25:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:25:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:25:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:25:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:26:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:26:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:26:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:26:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:26:41 (#:amount 93081648 #:time 329))
(heartbeat 2015-06-17T21:26:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:26:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:27:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:27:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:27:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:27:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:27:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:27:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:28:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:28:11 (#:amount 94706640 #:time 331))
(heartbeat 2015-06-17T21:28:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:28:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:28:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:28:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:28:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:29:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:29:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:29:28 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:29:38 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:29:43 (#:amount 93057168 #:time 329))
(heartbeat 2015-06-17T21:29:48 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:29:58 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:30:08 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:30:18 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:30:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:30:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:30:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:30:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:31:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:31:11 (#:amount 95004624 #:time 286))
(heartbeat 2015-06-17T21:31:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:31:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:31:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:31:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:31:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:32:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:32:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:32:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:32:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:32:40 (#:amount 93150048 #:time 327))
(heartbeat 2015-06-17T21:32:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:32:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:33:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:33:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:33:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:33:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:33:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:33:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:34:03 (#:amount 94568920 #:time 328))
(heartbeat 2015-06-17T21:34:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:34:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:34:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:34:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:34:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:34:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:35:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:35:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:35:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:35:36 (#:amount 93290832 #:time 328))
(heartbeat 2015-06-17T21:35:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:35:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:35:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:36:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:36:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:36:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:36:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:36:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:36:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:37:07 (#:amount 94254808 #:time 329))
(heartbeat 2015-06-17T21:37:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:37:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:37:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:37:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:37:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:37:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:38:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:38:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:38:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:38:33 (#:amount 92861912 #:time 328))
(heartbeat 2015-06-17T21:38:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:38:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:38:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:39:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:39:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:39:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:39:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:39:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:39:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:40:02 (#:amount 95278944 #:time 329))
(heartbeat 2015-06-17T21:40:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:40:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:40:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:40:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:40:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:40:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:41:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:41:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:41:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:41:31 (#:amount 93186352 #:time 281))
(heartbeat 2015-06-17T21:41:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:41:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:41:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:42:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:42:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:42:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:42:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:42:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:42:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:43:04 (#:amount 94493936 #:time 330))
(heartbeat 2015-06-17T21:43:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:43:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:43:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:43:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:43:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:43:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:44:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:44:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:44:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:44:30 (#:amount 92958960 #:time 332))
(heartbeat 2015-06-17T21:44:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:44:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:44:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:45:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:45:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:45:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:45:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:45:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:45:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:45:59 (#:amount 95042976 #:time 330))
(heartbeat 2015-06-17T21:46:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:46:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:46:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:46:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:46:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:46:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:47:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:47:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:47:25 (#:amount 93020128 #:time 327))
(heartbeat 2015-06-17T21:47:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:47:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:47:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:47:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:48:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:48:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:48:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:48:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:48:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:48:53 (#:amount 94812056 #:time 333))
(heartbeat 2015-06-17T21:48:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:49:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:49:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:49:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:49:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:49:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:49:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:50:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:50:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:50:21 (#:amount 92739176 #:time 326))
(heartbeat 2015-06-17T21:50:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:50:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:50:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:50:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:51:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:51:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:51:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:51:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:51:48 (#:amount 95466856 #:time 332))
(heartbeat 2015-06-17T21:51:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:51:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:52:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:52:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:52:29 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:52:39 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:52:49 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:52:59 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:53:09 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:53:19 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:53:20 (#:amount 93018744 #:time 326))
(heartbeat 2015-06-17T21:53:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:53:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:53:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:54:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:54:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:54:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:54:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:54:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:54:49 (#:amount 94815264 #:time 332))
(heartbeat 2015-06-17T21:54:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:55:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:55:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:55:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:55:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:55:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:55:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:56:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:56:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:56:15 (#:amount 93202720 #:time 326))
(heartbeat 2015-06-17T21:56:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:56:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:56:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:56:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:57:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:57:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:57:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:57:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:57:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:57:44 (#:amount 94552464 #:time 325))
(heartbeat 2015-06-17T21:57:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:58:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:58:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:58:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:58:30 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:58:40 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:58:50 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:59:00 (#:model "list-machine-2" #:type enum-mildly-unfair))
(heartbeat 2015-06-17T21:59:10 (#:model "list-machine-2" #:type enum-mildly-unfair))
(gc-major 2015-06-17T21:59:11 (#:amount 92941904 #:time 323))
(heartbeat 2015-06-17T21:59:20 (#:model "list-machine-2" #:type enum-mildly-unfair))
(finished 2015-06-17T21:59:27 (#:model "list-machine-2" #:type enum-mildly-unfair #:time-ms 86400001 #:attempts 6655434 #:num-counterexamples 0 #:rate-terms/s 77.03048521955456 #:attempts/cexp N/A))
| false |
dfde584e8e382aaf115e0f6a8240b60be2396f52 | 8988f7635f576fbd1659ee9d5e8f49dc7658ac84 | /parser.rkt | 64b508ecd03d4c90049089fc2535e1947cdebb06 | []
| no_license | jagen31/tonart-old | 326f731c16eccbfa44b0e0d58939145085fded1d | a85037ac8cd4179f414f7210756a70737281e7c8 | refs/heads/master | 2020-05-02T11:52:42.526969 | 2019-03-27T07:43:39 | 2019-03-27T07:45:32 | 177,943,075 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 9,109 | rkt | parser.rkt | #lang racket
(require parser-tools/lex (prefix-in : parser-tools/lex-sre)
parser-tools/yacc)
(provide string->score)
(define-tokens music
(id colon note rest measure sharp flat octave lbrocket rbrocket number slash eof))
(define get-token
(lexer-src-pos
["+" (token-sharp lexeme)]
["-" (token-flat lexeme)]
[">" (token-rbrocket lexeme)]
["<" (token-lbrocket lexeme)]
["o" (token-octave lexeme)]
[":" (token-colon lexeme)]
[(:+ numeric) (token-number (string->number lexeme))]
["/" (token-slash lexeme)]
[(:or "a" "b" "c" "d" "e" "f" "g") (token-note (string->symbol lexeme))]
["r" (token-rest lexeme)]
["|" (token-measure lexeme)]
[(:+ alphabetic) (token-id (string->symbol lexeme))]
[(eof) (token-eof lexeme)]
[whitespace (return-without-pos (get-token input-port))]))
(define (tokenizer src) (λ () (get-token src)))
#|
(define my-str
(open-input-string #<<blep
flute: o5 c c8 < b- a-4 > c < | b- b-8 a- g4 b-
clarinet: o4 e- e-8 d8 c d e- c | d2 c4 e-8 d
bassoon: o2 c r < f a- | g r e- r
flute: r8 a b > c d4 d8 c < | b1
clarinet: c2 f4 e- | d1
bassoon: f g a- b- | g1
blep
))|#
(define the-str #<<blep
flute: o5 e- d c < b | b- a a- g > | c1
oboe: g f e- g | g f+ f g | g1
clarinet: c < b > c d | c c < b d | e-1
bassoon: o2 c d e- f | e e- d b | c1
blep
)
#|
(h
1/3 (h : measure = []
1/4 (v '(e- g c c))
1/4 (v '(d f d b))
1/4 (v '(c e- c e-))
1/4 (v '(b g d f)))
1/3 (h : measure = []
1/4 (v '(b- g c e))
1/4 (v '(a f+ c e-))
1/4 (v '(a- f b d))
1/4 (v '(b d g g)))
1/3 (v : measure = [] '(e- g c c)))
|#
(define my-str (open-input-string the-str))
(port-count-lines! my-str)
(define my-parser
(parser
(grammar
(label [(id colon) $1])
(voices
[(label music voices) (cons (list 'voice $1 $2) $3)]
[(label music) (list (list 'voice $1 $2))])
(rational
[(number slash number) (/ $1 $3)]
[(number) $1])
(note-root
[(note) $1]
[(note-root flat) (list 'flat $1)]
[(note-root sharp) (list 'sharp $1)])
(music
[(note-root rational) (list (list 'note $1 (/ 1 $2)))]
[(note-root rational music) (cons (list 'note $1 (/ 1 $2)) $3)]
[(note-root) (list (list 'note $1 #f))]
[(note-root music) (cons (list 'note $1 #f) $2)]
[(rest rational) (list (list 'rest (/ 1 $2)))]
[(rest rational music) (cons (list 'rest (/ 1 $2)) $3)]
[(rest) (list (list 'rest #f))]
[(rest music) (cons (list 'rest #f) $2)]
[(octave number) (list (list 'octave $2))]
[(octave number music) (cons (list 'octave $2) $3)]
[(measure) (list 'measure)]
[(measure music) (cons 'measure $2)]
[(lbrocket) (list 'shift-down)]
[(lbrocket music) (cons 'shift-down $2)]
[(rbrocket) (list 'shift-up)]
[(rbrocket music) (cons 'shift-up $2)]))
(tokens music)
(src-pos)
(start voices)
(end eof)
(error (λ (tok-ok? tok-name tok-value start-pos end-pos)
(error 'parse
(format "~s ~s ~s ~s ~s"
tok-ok? tok-name tok-value start-pos end-pos))))))
(define (concat-voices voices)
(for/fold ([acc '()])
([voice voices])
(match voice
[`(voice ,name ,music)
(if (dict-has-key? acc name)
(dict-update acc name (λ (m) (append m music)))
(dict-set acc name music))])))
;; give every note a duration, filling them in from provided durations
;; (default is 1/4)
;; Give every note an octave from the marked octaves/shifts, deleting these
;; tokens (default is 4)
;; Give each note a voice, removing the initial voice marker, turning
;; the structure into a list of melodies
;; convert accidentals [(flat (sharp (sharp pitch)))] into a number
;; [1 in this case], put it in with the note
(define (create-values music)
(define (eval-accidental pitch)
(match pitch
[`(,(and mod (or 'flat 'sharp)) ,rest)
(match (eval-accidental rest)
[`(,note ,acc) `(,note ,((if (eq? mod 'sharp) add1 sub1) acc))])]
[pitch `(,pitch 0)]))
(for/list ([voice (in-list music)])
(define voice-name (car voice))
(define-values (o d notes)
(for/fold ([octave 4] [duration 1/4] [notes '()])
([note (in-list (cdr voice))])
(match note
[`(note ,value ,maybe-dur)
(define dur (or maybe-dur duration))
(define valued
`(ann (length ,dur is)
(ann (voice ,voice-name is)
(value (note ,@(eval-accidental value) ,octave)))))
(values octave dur (cons valued notes))]
[`(octave ,oct) (values oct duration notes)]
[(and mod (or 'shift-up 'shift-down))
(values ((if (eq? mod 'shift-up) add1 sub1) octave) duration notes)]
['measure (values octave duration (cons 'measure notes))])))
(reverse notes)))
(define parse-result (my-parser (tokenizer my-str)))
(define voices-concated (concat-voices parse-result))
(define values-created (create-values voices-concated))
;; Wrap each measure in a list and get rid of measure tokens
(define (group-measures music)
(define (☺ music)
(match music
[(list 'measure rest ...)
(cons '() (☺ rest))]
[(list other rest ...)
(define rest-☺ (☺ rest))
(cons (cons other (car rest-☺)) (cdr rest-☺))]
[_ '(())]))
(map ☺ music))
(define measures-grouped (group-measures values-created))
;; Group each set of corresponding notes from given voices vertically.
;; I would like to say that all notes in the vertical have to be the same
;; length but the fact of the matter is I think the lists just have to be
;; the same length... This will be revised heavily.
(define (group-vertical music)
(define (handle-voices . v)
(if (null? (cdr v))
`(h ,@(car v))
`(h ,@(apply map (λ m `(v ,@m)) v))))
(apply map handle-voices music))
(define verticals-grouped (group-vertical measures-grouped))
;; annotate each tree in the given list as a measure
(define (combine-measures music)
(if (null? (cdr music)) (car music) `(h ,@(map (λ (t) `(ann (measure is) ,t)) music))))
(define final-tree (combine-measures verticals-grouped))
;; add length annotations to the h's, assuming the children of each h get an equal proportion
;; of the total length ( :( ).
(define (create-lengths music)
(match music
[`(h ,children ...)
(define len (length children))
(define lengths (make-list len (/ 1 len)))
`(ann (lengths ,lengths) (h ,@(map create-lengths children)))]
[`(v ,children ...)
`(v ,@(map create-lengths children))]
[else music]))
(define done (create-lengths final-tree))
(define (count-lines-port p) (port-count-lines! p) p)
(define string->score
(compose
create-lengths
combine-measures
group-vertical
group-measures
create-values
concat-voices
my-parser
tokenizer
count-lines-port
open-input-string))
(define parse-only
(compose
my-parser
tokenizer
count-lines-port
open-input-string))
;; This poses some problems:
;; 1. The violin melody is not uniform with the accompaniment.
;; 2. The harmonic rhythm alternates between half and quarter (except for the end)
;; 3. The piece is in 3/4 (is that a problem?)
;;
;; group verticals ought to be able to group by the longest of the notes,
;; producing a list of lists which can later be turned into h's and values
;;
;; note: there's still a glaring issue exemplified by suspensions... we can't
;; cut suspended notes in half, otherwise they look exactly like two notes.
;;
;; The solutions I have thought of are either to represent a tie using an
;; annotation, represent a tie using a special "tied-value" struct, or use the
;; sum of all contiguous notes to group verticals.
;;
;; some silly things could be made to happen by syncopating the bass so the other
;; voices end up determining where the verticals are drawn, I think.
;;
(define the-str2 #<<blep
violin: o5 d8/3 < b8 > c+ d | e8/3 c+8 d c+ < | b8/3 a8 g4 | f+4/3
soprano: b2 b4 | a+2 b4 | b2 a4 | a4/3
alto: f+2 g4 | f+2 f+4 | g2 g4 | f+4/3
tenor: d2 c+4 | c+2 d4 | d2 c+4 | d4/3
bass: o3 b2 b4 | b2 b4 | g2 a4 | d4/3
blep
;; i iio/65 V i VI
)
#|
(h
1/4 (h : measure = []
2/3 (v ((h 3/8 d 1/8) b f+ d b))
1/3 (v ((h 1/8 c+ 1/8 d) b g c+ e)))
1/4 (h : measure = []
2/3 (v ((h 3/8 e 1/8 c+) a+ f+ c+ f+))
1/3 (v ((h 1/8 d 1/8 c+) b f+ d b)))
1/4 (h : measure = []
2/3 (v ((h 3/8 b 1/8 a) b g d b))
1/3 (v (g a g c+ a)))
1/4 (v : measure = [] (f+ a f+ d d)))
|#
;;(string->score the-str2)
;;(parse-only the-str2) | false |
39a65e875746e1a11dc85c5af0b1383974fb66ae | e88fcc18b5f5a2730365058d0bfe5c2c0c8f9b3b | /homework/4/hw4.rkt | f09aa44cae4f5515ace64e91ba4fcc9b8d0c3331 | []
| no_license | zhzy0077/Programming-Languages | 060961144c587ab1044a426fe184cc6a9ec66d70 | c05dc8d5972f81851d7efa97f253a4b56d48142e | refs/heads/master | 2021-01-01T03:44:13.231347 | 2016-05-20T08:17:27 | 2016-05-20T08:17:27 | 58,797,001 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,806 | rkt | hw4.rkt |
#lang racket
(provide (all-defined-out)) ;; so we can put tests in a second file
;; put your code below
(define (sequence low high stride)
(cond [(> low high) null]
[(<= (+ low stride) high)
(cons low (sequence (+ low stride) high stride))]
[#t (cons low null)]))
(define (string-append-map xs suffix)
(map (λ (str) (string-append str suffix)) xs))
(define (list-nth-mod xs n)
(cond [(< n 0) (error "list-nth-mod: negative number")]
[(null? xs) (error "list-nth-mod: empty list")]
[#t (let ([i (remainder n (length xs))])
(car (list-tail xs i)))]))
(define (stream-for-n-steps s n)
(cond [(> n 0) (cons (car (s))
(stream-for-n-steps (cdr (s)) (- n 1)))]
[#t null]))
(define (funny-number-stream)
(letrec ([foo (λ (num) (cons (if (= 0 (remainder num 5)) (- num) num)
(λ () (foo (+ 1 num)))))])
(foo 1)))
(define (dan-then-dog)
(letrec ([foo (λ (name) (cons (string-append name ".jpg")
(λ () (foo (if (string=? name "dan")
"dog" "dan")))))])
(foo "dan")))
(define (stream-add-zero s)
(letrec ([foo (λ (stream) (cons
(cons 0 (car (stream)))
(λ () (foo (cdr (stream))))))])
(λ () (foo s))))
(define (cycle-lists xs ys)
(letrec ([foo (λ (num) (cons (cons (list-nth-mod xs num)
(list-nth-mod ys num))
(λ () (foo (+ 1 num)))))])
(λ () (foo 0))))
(define (vector-assoc v vec)
(letrec ([find (λ (iter) (cond [(= iter (vector-length vec)) #f]
[(pair? (vector-ref vec iter))
(if (equal? (car (vector-ref vec iter)) v)
(vector-ref vec iter)
(find (+ 1 iter)))]
[#t #f]))])
(find 0)))
(define (cached-assoc xs n)
(letrec ([cache (make-vector n #f)]
[iter 0]
[assoc-with-set (λ (v) (let ([val-by-assoc (assoc v xs)])
(begin (vector-set! cache iter val-by-assoc)
(if (= n (+ 1 iter)) (set! iter 0)
(set! iter (+ 1 iter)))
val-by-assoc)))]
[find (λ (v) (let ([val-in-cache (vector-assoc v cache)])
(if val-in-cache val-in-cache (assoc-with-set v))))])
find))
(define-syntax while-less
(syntax-rules (do)
[(while-less e1 do e2)
(letrec ([to e1]
[foo (λ () (if (< e2 e1) (foo) #t))])
(foo))]))
| true |
0a1981d667134ba6b297ec78e71faa22a03dae27 | 2027a6b0aeb4b42fcc7f0bcc4dd318ef4f186cf1 | /ch3/ch3.rkt | 1d1c2bc4ca9c98bd5bf557a3fdbdfb0fa18a699f | []
| no_license | GavinFrazar/sicp | 0c74a95681c0757b7dac31637c60c3824006d5a0 | 22653f3d0f5b5bb85d3f5fba222f4f0955e560fe | refs/heads/master | 2021-06-25T22:37:29.444711 | 2021-01-08T02:39:05 | 2021-01-08T03:05:01 | 200,429,884 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,197 | rkt | ch3.rkt | #lang racket
;; Exercise 3.1
(define (make-accumulator init-val)
(let ([acc init-val])
(λ (val)
(begin (set! acc (+ val acc))
acc))))
;; Exercise 3.2
(define (make-monitored f)
(define counter 0)
(define (get-counter)
counter)
(define (reset-counter)
(set! counter 0))
(define (dispatch msg)
(cond [(and (symbol? msg)
(eq? msg 'how-many-calls?))
(get-counter)]
[(and (symbol? msg)
(eq? msg 'reset-counter))
(reset-counter)]
[else (begin (set! counter (+ counter 1))
(f msg))]))
dispatch)
;; Exercise 3.3
(define (make-account balance password)
(define (withdraw amount)
(if (>= balance amount)
(begin (set! balance
(- balance amount))
balance)
"Insufficient funds"))
(define (deposit amount)
(set! balance (+ balance amount))
balance)
(define (dispatch m)
(cond [(eq? m 'withdraw) withdraw]
[(eq? m 'deposit) deposit]
[else (error "Unknown request:
MAKE-ACCOUNT" m)]))
(define (check-pass p m)
(if (eq? p password)
(dispatch m)
(λ (amount) "Incorrect password")))
check-pass)
;; Exercise 3.4
(define (make-account-2 balance password)
(define failed-passwords 0)
(define (call-the-cops)
(error "Cops called for too many password fails"))
(define (withdraw amount)
(if (>= balance amount)
(begin (set! balance
(- balance amount))
balance)
"Insufficient funds"))
(define (deposit amount)
(set! balance (+ balance amount))
balance)
(define (dispatch m)
(cond [(eq? m 'withdraw) withdraw]
[(eq? m 'deposit) deposit]
[else (error "Unknown request:
MAKE-ACCOUNT" m)]))
(define (check-pass p m)
(if (eq? p password)
(begin (set! failed-passwords 0)
(dispatch m))
(begin (set! failed-passwords (+ 1 failed-passwords))
(if (> failed-passwords 7)
(call-the-cops)
(λ (amount) "Incorrect password")))))
check-pass)
| false |
a672e6fdfc9e02852d111ccf30fd2d182ea028ff | 0d545e1a9bdd6732aa7da5ffc70bb6fddfd7ce27 | /my_project/Y-combinator.rkt | 0a1c9eee1d91614366a7629a4ea677c6b407d9ee | [
"MIT"
]
| permissive | kanyu/course_CS61AS | a382df8aef57909bb7b3c1de8b8a36d815e0c2f8 | 58e3a19befcfa6bf0bd3a6b3a85cd4a550a0a4e1 | refs/heads/master | 2020-03-31T15:03:59.108611 | 2017-12-15T09:14:39 | 2017-12-15T09:14:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 783 | rkt | Y-combinator.rkt | #lang lazy
;; Y-comninator
;; use define
(define length
(lambda (lst)
(cond
((null? lst) 0)
(else (add1 (length (cdr lst)))))))
;; test
(define alst '(1 2 3 4 5 6 7 8 9))
(length alst)
;; poor man Y
( ((lambda (leng)
(lambda (lst)
;; (displayln lst)
(cond
((null? lst) 0)
(else (add1 ((leng leng) (cdr lst)))))))
(lambda (leng)
(lambda (lst)
(displayln lst)
(cond
((null? lst) 0)
(else (add1 ((leng leng) (cdr lst))))))))
alst)
;; abstract Y
(((lambda (f)
((lambda (x) (f (x x)))
(lambda (x) (f (x x)))))
(lambda (leng)
(lambda (lst)
(cond
((null? lst) 0)
(else (add1 (leng (cdr lst))))))))
alst)
(displayln alst)
((λ (x) (+ 3 x))
2)
| false |
2ae91cff23aaa0729915523b8e59c542db6a5274 | c83b277957534624cfae99573ffa30c1e879c4bc | /unlike-assets-lib/unlike-assets/private/unlike-compiler.rkt | 3255235f42c396cf46f92b4a2cb26381ee2f5f44 | [
"MIT"
]
| permissive | pmatos/unlike-assets | f8cdef05f9b0f8bb6c5dc247738ca2c1bd374075 | 7179aca2b7a265bb65e6450d1972d2c3f9c0e3d3 | refs/heads/master | 2022-04-25T09:15:34.992993 | 2020-04-12T06:26:06 | 2020-04-12T06:26:06 | 257,580,137 | 0 | 0 | MIT | 2020-04-21T11:56:08 | 2020-04-21T11:56:07 | null | UTF-8 | Racket | false | false | 3,260 | rkt | unlike-compiler.rkt | #lang racket/base
(provide (all-defined-out))
(require
[only-in racket/generic generic-instance/c]
[only-in net/url url?]
racket/contract
racket/class
racket/path
racket/sequence
"../logging.rkt"
"assets.rkt")
(define unclear/c string?)
(define clear/c (or/c string? symbol? path? url? (generic-instance/c gen:equal+hash)))
(define fulfilled/c (not/c procedure?))
(define advance/c (recursive-contract (-> clear/c (instanceof/c (subclass?/c unlike-compiler%)) unlike-asset/c)))
(define unlike-asset/c (or/c advance/c fulfilled/c))
(define ripple/c (-> clear/c clear/c (non-empty-listof unlike-asset/c) unlike-asset/c))
(define unlike-compiler%
(class object% (super-new)
;; Fields -------------------------
(define assets (new assets%))
(define changing #f)
;; Public -------------------------
(abstract delegate)
(define/public (clarify unclear) unclear)
(define/public (lookup clear) (send assets lookup/latest clear))
(define/public (has? clear) (send assets has? clear))
(define/public (add! clear [dependent-clear #f] [ripple #f])
(send assets add! clear (delegate clear))
(when dependent-clear
(send assets make-responsible!
clear dependent-clear
(or ripple (λ (from to history) (delegate to))))))
(define/public (compile! #:changed [changed null]
#:removed [removed null]
#:strict? [strict? #t])
(change-guard 'compile! (λ _
(for ([ua removed]) (remove! ua strict?))
(for ([ua (remove* removed changed)]) (change! ua (delegate ua) strict?))
(let loop ()
(define next (send assets get-first-advanceable))
(if next
(begin (advance! next) (loop))
(send assets ->hash))))))
;; Private -------------------------
(define/private (change-guard sym proc)
(when changing (error sym "busy"))
(dynamic-wind (λ _ (set! changing #t)) proc (λ _ (set! changing #f))))
(define/private (remove! clear strict?)
(if (has? clear)
(begin
(for ([dependent (send assets get-dependents clear)])
(change! dependent (delegate dependent) #t))
(send assets remove! clear))
(when strict?
(error 'remove! "~a does not exist" clear))))
(define/private (change! clear asset strict?)
(if (has? clear)
(begin
(when asset (send assets update! clear asset))
(for ([dependent (send assets get-dependents clear)])
(define old dependent)
(define ripple-ok? (send assets regress! clear dependent (delegate dependent)))
(unless ripple-ok?
(<warning "A change to ~a did not relate to the history of ~a. Rebuilding from scratch..."
(format-clear clear)
(format-clear dependent)))
(unless (eq? old (lookup dependent))
(change! dependent #f #t))))
(when strict?
(error 'change! "~a does not exist" clear))))
(define/private (advance! clear-name)
(send assets progress! clear-name ((lookup clear-name) clear-name this)))))
| false |
6e4e123f3ac960ba08029b252074c870399293dc | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/call-an-object-method.rkt | 86a42aa7b948ad4146c5053d4e2b108aa920c094 | []
| no_license | dlaststark/machine-learning-projects | efb0a28c664419275e87eb612c89054164fe1eb0 | eaa0c96d4d1c15934d63035b837636a6d11736e3 | refs/heads/master | 2022-12-06T08:36:09.867677 | 2022-11-20T13:17:25 | 2022-11-20T13:17:25 | 246,379,103 | 9 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 69 | rkt | call-an-object-method.rkt | #lang racket/gui
(define timer (new timer%))
(send timer start 100)
| false |
a50bf56b9a051377b1e128137717a0f298ca12a9 | e1cf61b84282c33b7a245f4d483883cf77739b91 | /se3-bib/grid-map-module.rkt | bda17882417573fe40d39fd01f5bf772bbc52878 | []
| no_license | timesqueezer/uni | c942718886f0366b240bb222c585ad7ca21afcd4 | 5f79a40b74240f2ff88faccf8beec7b1b3c28a7c | refs/heads/master | 2022-09-23T21:57:23.326315 | 2022-09-22T13:17:29 | 2022-09-22T13:17:29 | 71,152,113 | 0 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 21,371 | rkt | grid-map-module.rkt | #lang racket
#|
################################################################################
## ##
## This file is part of the se3-bib Racket module v3.0 ##
## Copyright by Leonie Dreschler-Fischer, 2010 ##
## Ported to Racket v6.2.1 by Benjamin Seppke, 2015 ##
## ##
################################################################################
|#
(provide paint-map ; paint a pix map image
draw-contour-map
; draw the contours of connected regions of a pix map image
*the-current-pixmap*; the current pix map to be painted
*smiley-map* ; a sample image
*pixel-width*
make-empty-map make-constant-map ; contructor
map-rows map-cols ;the size of the current map
map-field ; retrieve a cell of the pix-map
for-each-coord-do for-each-row-col-do; traverse the current map
make-map-coord map-coord-row map-coord-col in-bounds?
equal-coord?
print-map-coord display-position
; contructor and accessors for grid coordinates
canvas-pos-lower-left-corner canvas-pos-upper-left-corner
canvas-pos-lower-right-corner canvas-pos-upper-right-corner
canvas-pos-center ; map grid-coordinates to the canvas positions
*the-current-color-map*; the current color map
*bw-color-map* ; a sample color map
set-pix-map
make-color-map ; construct a color map
color-map-look-up ; an acessor for color entries
set-color-map
init-drawing ; create a canvas and set the parameters
draw-cell ; paint one square cell of the pixmap
; set-cell ; paint one square cell of the pixmap to a specific color
draw-marker draw-big-marker draw-plain-marker
; draw a circular marker at the center of the cell
; region growing
region-list region-pos region-nodes
neighbors neighbor-list neighbors-of
make-node node-pos node-info display-node retrieve-node
neighbor-list->edge-list
pixmap->connectivity-graph
; constructor, accessors for nodes of a graph
make-graph graph-nodes graph-edges
make-edge node1 node2 display-edge
draw-edge draw-edges
draw-node draw-nodes big-marker-node
draw-graph *nikolaus* *niko-map*
)
(require
2htdp/image
(except-in 2htdp/universe space)
lang/posn
se3-bib/tools-module
se3-bib/vector-graphics-module)
#|
This module provides function for painting pixels on a grid
of cells. Pixmap images can be specified as a matrix of ascii-characters -
the ascii-characters will be mapped to colors using a color map.
The rows and columns of the grid are numbered starting by one.
|#
(define *smiley-map*
(vector
"......."
".*...*."
"......."
"...*..."
"......."
".*...*."
"..***.."))
(define *house-pix-map*
(vector
"1111111"
"1111111"
"2222333"
"2222333"
"2226333"
"4444555"
"4444555"))
(define (make-empty-map rows cols)
; create a pixmap initialized with spaces
(make-vector rows
(make-string cols #\space)))
(define (make-constant-map rows cols background)
; create a pixmap initialized with the background character given
(make-vector rows
(make-string cols background)))
(define *the-current-pixmap* *smiley-map*)
(define (set-pix-map pix-map)
(set! *the-current-pixmap* pix-map))
(define-struct map-coord (row col))
; a structure with two fields
; constructor make-map-coord
; accessors: map-coord-row, map-coord-col
(define (equal-coord? pos1 pos2)
(and (equal? (map-coord-row pos1) (map-coord-row pos2))
(equal? (map-coord-col pos1) (map-coord-col pos2))
))
(define (print-map-coord pos)
(let (( printer (list "row: " (map-coord-row pos)
" col: " (map-coord-col pos))))
(display printer)
printer))
(define (display-position coord)
(display (list "row: " (map-coord-row coord)
" col:" (map-coord-col coord) " ")))
(define (map-rows map)
; how many rows has the map?
(vector-length map))
(define (map-cols map)
; how many columns has the map?
(string-length (vector-ref map 1)))
(define (in-bounds? coord)
(and (<= 1 (map-coord-row coord)
(map-rows *the-current-pixmap*))
(<= 1 (map-coord-col coord)
(map-cols *the-current-pixmap*))))
(define (map-field coord)
; retrieve a square of the map
(if (in-bounds? coord)
(string-ref (vector-ref *the-current-pixmap*
(sub1 (map-coord-row coord) ))
(sub1 (map-coord-col coord) ))
#\space))
(define (for-each-coord-do p)
; perform (p coord) on each cell of the map
(let* ((rows (map-rows *the-current-pixmap*))
(cols (map-cols *the-current-pixmap*)))
(do ((row 1 (add1 row) ))
((> row rows) #t)
(do ((col 1 (add1 col) ))
((> col cols) #t)
(p (make-map-coord row col))))))
(define (for-each-row-col-do p)
; perform (p row col) on each cell of the maze
(let* ((rows (map-rows *the-current-pixmap*))
(cols (map-cols *the-current-pixmap*)))
(do ((row 1 (add1 row) ))
((> row rows) #t)
(do ((col 1 (add1 col) ))
((> col cols) #t)
(p row col)))))
; ==================================================
; drawing functions and constants
; ==================================================
(define *pixel-width* 12)
(define *line-color* 'black)
(define *background-color* 'white)
(define (set-pixel-width)
(let ((max-no-map-cells (max
(map-rows *the-current-pixmap*)
(map-cols *the-current-pixmap*)))
(max-screen-cells 400))
(set! *pixel-width* (quotient max-screen-cells max-no-map-cells ))))
(define (canvas-pos-lower-left-corner coord)
; lower left corner
(make-posn (* (map-coord-col coord) *pixel-width*)
(* (add1 (map-coord-row coord)) *pixel-width*)))
(define (canvas-pos-lower-right-corner coord)
; lower left corner
(make-posn (* (add1 (map-coord-col coord)) *pixel-width*)
(* (add1 (map-coord-row coord)) *pixel-width*)))
(define (canvas-pos-upper-left-corner coord)
; lower left corner
(make-posn (* (map-coord-col coord) *pixel-width*)
(* (map-coord-row coord) *pixel-width*)))
(define (canvas-pos-upper-right-corner coord)
; lower left corner
(make-posn (* (add1 (map-coord-col coord)) *pixel-width*)
(* (map-coord-row coord) *pixel-width*)))
(define (canvas-pos-center coord)
; the center of the square grid cell
(make-posn (round (* (+ (map-coord-col coord) 0.5) *pixel-width*))
(round (* (+ (map-coord-row coord) 0.5) *pixel-width*))))
;=================================================================
(define (make-color-map
pixel-codes; a list of characters
colors; a list of colors (see draw.ss)
)
(map cons pixel-codes colors))
(define (make-color-pixel-map
color-map
pix-size )
; a table of colored squares to paint the pixels
(map (lambda (code-color-pair)
(cons (car code-color-pair)
(square pix-size
'solid
(cdr code-color-pair))))
color-map))
(define *bw-color-map*
(make-color-map (list #\. #\*) (list 'white 'black)))
(define *house-color-map* (make-color-map
(list #\1 #\2 #\3 #\4 #\5 #\6)
(list 'red 'green 'blue 'yellow 'black 'red)))
(define *the-current-color-map* *bw-color-map*)
(define *the-current-color-pixel-map*
(make-color-pixel-map
*bw-color-map*
*pixel-width*))
(define (set-color-map map)
(set! *the-current-color-map* map)
(set! *the-current-color-pixel-map*
(make-color-pixel-map map *pixel-width*))
)
(define (color-map-look-up pixel-code)
(let ((encoding
(assoc pixel-code *the-current-color-map*)))
(if encoding (cdr encoding)
*background-color*)))
(define (color-map-look-up-map pixel-code map)
(let ((encoding
(assoc pixel-code map)))
(if encoding (cdr encoding)
*background-color*)))
(define (pixel-map-look-up pixel-code )
(let ((pixel
(assoc pixel-code *the-current-color-pixel-map*)))
(if pixel (cdr pixel)
(square *pixel-width*
'solid
*background-color*))))
(define (cellcolor coord)
; retrieve the color code of the cell
(color-map-look-up (map-field coord)))
(define (cellpix coord)
; retrieve the color rectangle of the cell
(pixel-map-look-up (map-field coord)))
(define (draw-cell coord) ; draw one square of the map
(let* ([x (round (* (+ (map-coord-col coord) 0.5) *pixel-width*))]
[y (round (* (+ (map-coord-row coord) 0.5) *pixel-width*))]
[pix (cellpix coord)])
(unless (equal? pix #f)
(set-scene! (place-image pix x y (get-scene) ))
) ))
#|
(define (set-cell coord) ; draw one square of the map
(draw-solid-rect
(canvas-pos-upper-left-corner coord)
*pixel-width* *pixel-width* (cellcolor coord)))
|#
(define (draw-plain-marker coord color)
; draw a circular marker at the center of the cell without a border
(let*
([x (round (* (+ (map-coord-col coord) 0.5) *pixel-width*))]
[y (round (* (+ (map-coord-row coord) 0.5) *pixel-width*))]
[r (max (- (quotient *pixel-width* 2) 2) 3)];ensure at leat 3 pixel radius
[thecolor (if (equal? color 'none)
*line-color*
color) ];Farbe
[pix (circle r 'solid thecolor)])
(unless (equal? color 'none)
(set-scene!
(place-image pix x y (get-scene))
))))
(define (marker-with-border
coord
color
inner-radius
border-thickness)
; draw a circular marker at the center of the cell without a border
(let*
([x (round (* (+ (map-coord-col coord) 0.5) *pixel-width*))]
[y (round (* (+ (map-coord-row coord) 0.5) *pixel-width*))]
[r (max (- (quotient *pixel-width* 2) 2) 3)];ensure at leat 3 pixel radius
[thecolor (if (equal? color 'none)
*line-color*
color) ];Farbe
[pix1 (circle (+ r border-thickness) 'solid thecolor)]
[pix2 (circle r 'solid *background-color*)])
(unless (equal? color 'none)
(set-scene!
(place-image pix2 x y
(place-image pix1 x y (get-scene)))))))
(define (draw-marker coord color)
; draw a circular marker at the center of the cell with a border
; sized to fit into a single cell
(let* ((inner-radius (round (* 0.9 *pixel-width*)))
(border 1)); 1 pixel border
(marker-with-border coord color inner-radius border)))
(define (draw-big-marker coord color)
; draw a circular marker at the center of the cell with a border
(let* ((inner-radius (round (* 1.5 *pixel-width*)))
(border 2)) ;2 pixels border
(marker-with-border coord color inner-radius border)))
(define (draw-the-frame)
; draw the outer border of the map
(let ((upper-left (canvas-pos-upper-left-corner (make-map-coord 1 1)))
(upper-right (canvas-pos-upper-right-corner
(make-map-coord 1 (map-cols *the-current-pixmap*))))
(lower-left (canvas-pos-lower-left-corner
(make-map-coord (map-rows *the-current-pixmap*) 1)))
(lower-right (canvas-pos-lower-right-corner
(make-map-coord (map-rows *the-current-pixmap*)
(map-cols *the-current-pixmap*)))))
(draw-poly
(list upper-left upper-right lower-right lower-left) *line-color*)))
(define (is-boundary? pos1 pos2)
(not (equal? (map-field pos1) (map-field pos2))))
(define (draw-upper-boundary pos)
(draw-solid-line
(canvas-pos-upper-left-corner pos)
(canvas-pos-upper-right-corner pos)
*line-color*))
(define (draw-left-boundary pos)
(draw-solid-line
(canvas-pos-upper-left-corner pos)
(canvas-pos-lower-left-corner pos)
*line-color*))
(define (draw-contour-map)
(draw-the-frame)
(for-each-row-col-do
(lambda (row col)
(let ((pos-this-pixel (make-map-coord row col)))
(when (> col 1)
(let ((pos-pixel-left (make-map-coord row (sub1 col))))
(when (is-boundary? pos-this-pixel pos-pixel-left)
(draw-left-boundary pos-this-pixel))))
(when (> row 1)
(let ((pos-pixel-up (make-map-coord (sub1 row) col)))
(when (is-boundary? pos-this-pixel pos-pixel-up)
(draw-upper-boundary pos-this-pixel))))))))
;;; =========================================================================
;;; region operations
;;; =========================================================================
(define (region-list)
(let ((the-regions '()))
(for-each-coord-do
(lambda (coord)
(let ((the-region-code (map-field coord)))
(when (not (member the-region-code the-regions))
(set! the-regions (cons the-region-code the-regions))))))
the-regions))
(define (region-pos reg)
(let ((size 0)
(row-sum 0)
(col-sum 0))
(for-each-row-col-do
(lambda (r c)
(let ((code (map-field (make-map-coord r c))))
(when (equal? code reg)
(set! size (add1 size))
(set! row-sum (+ row-sum r))
(set! col-sum (+ col-sum c))))))
(make-map-coord
(quotient row-sum size)
(quotient col-sum size))))
(define (region-nodes)
(let* ((regions (region-list))
(region-poss (map region-pos regions)))
(map make-node regions region-poss)))
(define (neighbors region)
; traverse the pixmap and construct a list of all neighbors of the region
(let* ((the-neighbors '())
(cols (map-cols *the-current-pixmap*))
(rows (map-rows *the-current-pixmap*))
(in-region?
(lambda (r c)
(let ((the-pix (map-field (make-map-coord r c))))
(equal? region the-pix))))
(is-neighbor?
(lambda (r c)
(if (not (in-region? r c))
(map-field (make-map-coord r c)); return the neighbor if found
#f))))
(for-each-row-col-do
(lambda (r c)
(when (and (< 1 r rows) (< 1 c cols) (in-region? r c))
(let ((neighbor-up (is-neighbor? (sub1 r) c))
(neighbor-down (is-neighbor? (add1 r) c))
(neighbor-left (is-neighbor? r (sub1 c)))
(neighbor-right (is-neighbor? r (add1 c)))
(check (lambda (neighbor) ; check if new
(when (and neighbor
(not (member neighbor the-neighbors)))
(set! the-neighbors
(cons neighbor the-neighbors))))))
(check neighbor-up) ; the pixel one step up
(check neighbor-left) ; the pixel one step left
(check neighbor-down) ; the pixel one step down
(check neighbor-right) ; the pixel one step right
))))
the-neighbors))
(define (neighbor-list regions)
; an assoc list to retrieve the neighbors of a region
(map cons
regions
(map neighbors regions)))
(define (neighbors-of region neighbor-list)
(let ((entry (assoc region neighbor-list)))
(if entry (cdr entry) '())))
(define (neighbor-list->edge-list neighbor-list node-list)
(let* ((region-codes (map car neighbor-list))
(neighbor-codes (map cdr neighbor-list))
(code->node (lambda (code)
(retrieve-node code node-list)))
(edgelist
(apply append
(map (lambda (region its-neighbors)
(let ((region-node (code->node region))
(neighbor-nodes (map code->node its-neighbors)))
(map (curry make-edge region-node)
neighbor-nodes)))
region-codes neighbor-codes))))
edgelist))
(define (pixmap->connectivity-graph pixmap)
(let* ((the-region-nodes (region-nodes))
(the-neighbor-list
(neighbor-list (map node-info the-region-nodes)))
(edges (neighbor-list->edge-list the-neighbor-list the-region-nodes))
(the-graph (make-graph the-region-nodes edges)))
the-graph))
;;; =========================================================================
;;; connection graph
;;; =========================================================================
(define (make-node info pos)
(vector info pos))
(define (node-pos node) (vector-ref node 1))
(define (node-info node) (vector-ref node 0))
(define (retrieve-node info node-list)
(let ((the-nodes (filter (lambda (node)
(equal? info (node-info node)))
node-list)))
(if (not (null? the-nodes)) (car the-nodes) #f)))
(define (display-node node)
(display "node: ")
(display (node-info node))
(display-position (node-pos node)) (display " "))
(define (make-graph
the-nodes ; a list of nodes
the-edges ; a list of tupels (dotted pairs) of references to the nodes
)
(list the-nodes the-edges))
(define (graph-edges graph) (cadr graph))
(define (graph-nodes graph) (car graph))
(define (make-edge node1 node2) (vector node1 node2))
(define (node1 edge) (vector-ref edge 0))
(define (node2 edge) (vector-ref edge 1))
(define (display-edge edge)
(display #\newline)(display (list? edge))
(display "Edge from: ") (display-node (node1 edge))
(display "to: ") (display-node (node2 edge)))
(define (draw-edge edge)
(let ((pos-node1 (canvas-pos-center (node-pos (node1 edge))))
(pos-node2 (canvas-pos-center (node-pos (node2 edge)))))
(draw-solid-line pos-node1 pos-node2 *line-color*)))
(define (draw-edges graph)
(map draw-edge (graph-edges graph)))
(define (big-marker-node info color graph)
(let* ((node (retrieve-node info (graph-nodes graph)))
(coord (node-pos node)))
(draw-big-marker coord color)))
(define (draw-node node color-table)
;retrieve the node and draw a big marker
(let ((color (color-map-look-up-map (node-info node) color-table))
(coord (node-pos node)))
(draw-big-marker coord color)))
(define (draw-nodes graph color-table)
(map (curryr draw-node color-table)
(graph-nodes graph)))
(define (draw-graph graph color-table)
(draw-edges graph)
(draw-nodes graph color-table))
(define *nikolaus*
(let* ((k1 (make-node #\1 (make-map-coord 1 4)))
(k2 (make-node #\2 (make-map-coord 4 2)))
(k3 (make-node #\3 (make-map-coord 4 6)))
(k4 (make-node #\4 (make-map-coord 7 2)))
(k5 (make-node #\5 (make-map-coord 7 6)))
(nodes (list k1 k2 k3 k4 k5))
(edges (list (make-edge k1 k2)
(make-edge k1 k3)
(make-edge k2 k3)
(make-edge k2 k4)
(make-edge k4 k5)
(make-edge k5 k2)
(make-edge k3 k4)
(make-edge k3 k5))))
(make-graph nodes edges)))
(define *niko-map* (make-color-map
(list #\1 #\2 #\3 #\4 #\5)
(list 'red 'green 'blue 'yellow 'black)))
(define (paint-map)
(for-each-coord-do draw-cell)
(display-result)
)
(define (init-drawing
pix-map ; the pixmap image to be drawn
color-map ; the color table to use
drawing-color ; the drawing color for additional lines
background-color) ; the background color
(set-pix-map pix-map)
(set-pixel-width)
(set-color-map color-map)
(set! *line-color* drawing-color)
(set! *background-color* background-color)
(start (* *pixel-width* (+ (map-cols *the-current-pixmap*) 2))
(* *pixel-width* (+ (map-rows *the-current-pixmap*) 2))) )
#|
(define (test11)
(init-drawing
*smiley-map* ; the pixmap image to be drawn
*bw-color-map* ; the color table to use
'green ; the drawing color for additional lines
'white)
(paint-map)
(draw-graph *nikolaus* *niko-map*))
(define (test12)
(init-drawing
*house-pix-map* ; the pixmap image to be drawn
*house-color-map* ; the color table to use
'black ; the drawing color for additional lines
'white)
(paint-map)
(let ((thegraph (pixmap->connectivity-graph *house-pix-map*)))
(draw-graph thegraph *house-color-map*)))
(define (test13)
(init-drawing
*house-pix-map* ; the pixmap image to be drawn
*house-color-map* ; the color table to use
'black ; the drawing color for additional lines
'white)
(paint-map)
(draw-contour-map)
(let ((thegraph (pixmap->connectivity-graph *house-pix-map*)))
(draw-graph thegraph *house-color-map*)))
|#
| false |
60fa0cda7bc0de29dce80ecb38654abce4916646 | 791c282fc32d9b64edb87f566bdae25157adc4c1 | /stlc-infer.rkt | c630503adb3d2cd3acef2e465c6d32d10baa2032 | []
| no_license | tenwz/MyPLZoo | 217edec5147e9d807b4c4ab54bf6e36540c43259 | 60203b7be9dafde04065eadf5a17200fc360cf26 | refs/heads/master | 2023-03-16T08:25:05.205167 | 2018-04-19T03:54:49 | 2018-04-19T03:54:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 10,587 | rkt | stlc-infer.rkt | #lang racket
;; Type Inference for Simply Typed Lambda Calculus
;; Guannan Wei <[email protected]>
(require rackunit)
(require racket/set)
(require "share.rkt")
;; Expressions
(struct NumE (n) #:transparent)
(struct BoolE (b) #:transparent)
(struct IdE (id) #:transparent)
(struct PlusE (l r) #:transparent)
(struct MultE (l r) #:transparent)
(struct LamE (arg body) #:transparent)
(struct AppE (fun arg) #:transparent)
;; Types
(struct NumT () #:transparent)
(struct BoolT () #:transparent)
(struct VarT (name) #:transparent)
(struct ArrowT (arg result) #:transparent)
;; Values
(struct NumV (n) #:transparent)
(struct BoolV (b) #:transparent)
(struct ClosureV (arg body env) #:transparent)
;; Environment & Type Environment
(struct Binding (name val) #:transparent)
(define lookup (make-lookup 'lookup Binding? Binding-name Binding-val))
(define ext-env cons)
(struct TypeBinding (name type) #:transparent)
(define type-lookup (make-lookup 'type-lookup TypeBinding? TypeBinding-name TypeBinding-type))
(define ext-tenv cons)
;; Parsers
(define (parse s)
(match s
[(? number? x) (NumE x)]
['true (BoolE #t)]
['false (BoolE #f)]
[(? symbol? x) (IdE x)]
[`(+ ,l ,r) (PlusE (parse l) (parse r))]
[`(* ,l ,r) (MultE (parse l) (parse r))]
[`(let ([,var ,val]) ,body)
(AppE (LamE var (parse body)) (parse val))]
[`(λ (,var) ,body) (LamE var (parse body))]
[`(,fun ,arg) (AppE (parse fun) (parse arg))]
[else (error 'parse "invalid expression")]))
;; Fresh Number Generator
(define (counter)
(define count 0)
(define (inner)
(set! count (add1 count))
count)
inner)
(define fresh-n (counter))
;; Type Inference
(struct Eq (fst snd) #:transparent)
(define (type-subst in src dst)
(match in
[(NumT) in]
[(BoolT) in]
[(VarT x) (if (equal? src in) dst in)]
[(ArrowT t1 t2) (ArrowT (type-subst t1 src dst)
(type-subst t2 src dst))]))
(define (unify/subst eqs src dst)
(cond [(empty? eqs) eqs]
[else (define eq (first eqs))
(define eqfst (Eq-fst eq))
(define eqsnd (Eq-snd eq))
(cons (Eq (type-subst eqfst src dst)
(type-subst eqsnd src dst))
(unify/subst (rest eqs) src dst))]))
(define (occurs? t in)
(match in
[(NumT) #f]
[(ArrowT at rt) (or (occurs? t at) (occurs? t rt))]
[(VarT x) (equal? t in)]))
(define not-occurs? (compose not occurs?))
(define (unify-error t1 t2)
(error 'type-error "can not unify: ~a and ~a" t1 t2))
(define (unify/helper substs result)
(match substs
['() result]
[(list (Eq fst snd) rest ...)
(match* (fst snd)
[((VarT x) t)
(if (not-occurs? fst snd)
(unify/helper (unify/subst rest fst snd) (cons (Eq fst snd) result))
(unify-error fst snd))]
[(t (VarT x))
(if (not-occurs? snd fst)
(unify/helper (unify/subst rest snd fst) (cons (Eq snd fst) result))
(unify-error snd fst))]
[((ArrowT t1 t2) (ArrowT t3 t4))
(unify/helper `(,(Eq t1 t3) ,(Eq t2 t4) ,@rest) result)]
[(x x) (unify/helper rest result)]
[(_ _) (unify-error fst snd)])]))
(define (unify substs) (unify/helper (set->list substs) (list)))
(define (type-infer exp tenv const)
(match exp
[(NumE n) (values (NumT) const)]
[(BoolE b) (values (BoolT) const)]
[(PlusE l r)
(define-values (lty lconst) (type-infer l tenv (set)))
(define-values (rty rconst) (type-infer r tenv (set)))
(values (NumT)
(set-add (set-add (set-union lconst rconst) (Eq lty (NumT))) (Eq rty (NumT))))]
[(MultE l r)
(define-values (lty lconst) (type-infer l tenv (set)))
(define-values (rty rconst) (type-infer r tenv (set)))
(values (NumT)
(set-add (set-add (set-union lconst rconst) (Eq lty (NumT))) (Eq rty (NumT))))]
[(IdE x)
(values (type-lookup x tenv) const)]
[(LamE arg body)
(define new-tvar (VarT (fresh-n)))
(define-values (bty bconst)
(type-infer body (ext-tenv (TypeBinding arg new-tvar) tenv) const))
(values (ArrowT new-tvar bty) bconst)]
[(AppE fun arg)
(define-values (funty funconst) (type-infer fun tenv (set)))
(define-values (argty argconst) (type-infer arg tenv (set)))
(define new-tvar (VarT (fresh-n)))
(values new-tvar (set-add (set-union funconst argconst) (Eq funty (ArrowT argty new-tvar))))]))
(define (reify substs ty)
(define (lookup/default x sts)
(match sts
['() x]
[(list (Eq fst snd) rest ...)
(if (equal? fst x)
(lookup/default snd substs)
(lookup/default x rest))]))
(match ty
[(NumT) (NumT)]
[(BoolT) (BoolT)]
[(VarT x)
(define ans (lookup/default ty substs))
(if (ArrowT? ans) (reify substs ans) ans)]
[(ArrowT t1 t2)
(ArrowT (reify substs t1) (reify substs t2))]))
(define (typecheck exp tenv)
(set! fresh-n (counter))
(define-values (ty constraints) (type-infer exp tenv (set)))
(reify (unify constraints) ty))
;; Interpreter
(define (interp expr env)
(match expr
[(IdE x) (lookup x env)]
[(NumE n) (NumV n)]
[(BoolE b) (BoolV b)]
[(PlusE l r) (NumV (+ (NumV-n (interp l env)) (NumV-n (interp r env))))]
[(MultE l r) (NumV (* (NumV-n (interp l env)) (NumV-n (interp r env))))]
[(LamE arg body) (ClosureV arg body env)]
[(AppE fun arg)
(match (interp fun env)
[(ClosureV n body env*) (interp body (ext-env (Binding n (interp arg env)) env*))])]))
(define mt-env empty)
(define mt-tenv empty)
(define (run prog)
(define prog* (parse prog))
(typecheck prog* mt-tenv)
(interp prog* mt-env))
;; Tests
(module+ test
(check-equal? (type-subst (VarT 'x) (VarT 'x) (NumT))
(NumT))
(check-equal? (unify/subst (list (Eq (VarT 'a) (NumT))) (VarT 'a) (NumT))
(list (Eq (NumT) (NumT))))
(check-equal? (unify/subst (list (Eq (VarT 'a) (VarT 'a))) (VarT 'a) (NumT))
(list (Eq (NumT) (NumT))))
(check-equal? (unify/subst (list (Eq (VarT 'b) (VarT 'a))) (VarT 'a) (NumT))
(list (Eq (VarT 'b) (NumT))))
(check-equal? (unify/helper (list (Eq (ArrowT (VarT 't1) (VarT 't1))
(ArrowT (NumT) (VarT 't2))))
(list))
(list (Eq (VarT 't2) (NumT)) (Eq (VarT 't1) (NumT))))
(check-equal? (unify/helper (list (Eq (VarT 'a1) (ArrowT (NumT) (VarT 'a2)))
(Eq (ArrowT (VarT 'a1) (VarT 'a2))
(ArrowT (ArrowT (VarT 'a3) (VarT 'a3)) (VarT 'a4))))
(list))
(list (Eq (VarT 'a4) (NumT)) (Eq (VarT 'a2) (NumT))
(Eq (VarT 'a3) (NumT)) (Eq (VarT 'a1) (ArrowT (NumT) (VarT 'a2)))))
(check-exn exn:fail?
(λ () (unify (list (Eq (VarT 'a1) (ArrowT (VarT 'a1) (VarT 'a2)))))))
(check-values-equal? (type-infer (parse '{λ {x} {+ x 1}}) empty (set))
(values (ArrowT (VarT 1) (NumT))
(set (Eq (NumT) (NumT)) (Eq (VarT 1) (NumT)))))
(check-values-equal? (type-infer (parse '{λ {x} {λ {y} {+ x y}}}) empty (set))
(values (ArrowT (VarT 2) (ArrowT (VarT 3) (NumT)))
(set (Eq (VarT 3) (NumT)) (Eq (VarT 2) (NumT)))))
(check-values-equal? (type-infer (parse '{{λ {x} x} 1}) empty (set))
(values (VarT 5)
(set (Eq (ArrowT (VarT 4) (VarT 4)) (ArrowT (NumT) (VarT 5))))))
(check-values-equal? (type-infer (parse '{{λ {f} {f 0}} {λ {x} x}}) empty (set))
(values (VarT 9)
(set (Eq (VarT 6) (ArrowT (NumT) (VarT 7)))
(Eq (ArrowT (VarT 6) (VarT 7))
(ArrowT (ArrowT (VarT 8) (VarT 8)) (VarT 9))))))
(check-values-equal? (type-infer (parse '{λ {x} x}) empty (set))
(values (ArrowT (VarT 10) (VarT 10))
(set)))
(check-equal? (typecheck (parse '{{λ {f} {f 0}} {λ {x} x}}) mt-tenv)
(NumT))
(check-equal? (typecheck (parse '{λ {x} {λ {y} {+ x y}}}) mt-tenv)
(ArrowT (NumT) (ArrowT (NumT) (NumT))))
; λf.λu.u (f u) :: ((a -> b) -> a) -> (a -> b) -> b
(check-equal? (typecheck (parse '{λ {f} {λ {u} {u {f u}}}}) mt-tenv)
(ArrowT (ArrowT (ArrowT (VarT 3) (VarT 4)) (VarT 3))
(ArrowT (ArrowT (VarT 3) (VarT 4)) (VarT 4))))
; λx.λy.x (x y) :: (a -> a) -> a -> a
(check-equal? (typecheck (parse '{λ {x} {λ {y} {x {x y}}}}) mt-tenv)
(ArrowT (ArrowT (VarT 2) (VarT 2))
(ArrowT (VarT 2) (VarT 2))))
; λx.λy.x (y x) :: (a -> b) -> ((a -> b) -> a) -> b
(check-equal? (typecheck (parse '{λ {x} {λ {y} {x {y x}}}}) mt-tenv)
(ArrowT
(ArrowT (VarT 3) (VarT 4))
(ArrowT (ArrowT (ArrowT (VarT 3) (VarT 4)) (VarT 3))
(VarT 4))))
;; λx.λy.y (y x) :: a -> (a -> a) -> a
(check-equal? (typecheck (parse '{λ {x} {λ {y} {y {y x}}}}) mt-tenv)
(ArrowT (VarT 4) (ArrowT (ArrowT (VarT 4) (VarT 4)) (VarT 4))))
(check-equal? (run '{{{λ {x} {λ {y} {+ x y}}} 3} 7})
(NumV 10))
;; (a -> (b -> c)) -> (a -> b) -> (a -> c)
(define S '{λ {x} {λ {y} {λ {z} {{x z} {y z}}}}})
(check-equal? (typecheck (parse S) mt-tenv)
(ArrowT (ArrowT (VarT 3) (ArrowT (VarT 5) (VarT 6)))
(ArrowT (ArrowT (VarT 3) (VarT 5))
(ArrowT (VarT 3) (VarT 6)))))
;; a -> b -> a
(define K '{λ {x} {λ {y} x}})
(check-equal? (typecheck (parse K) mt-tenv)
(ArrowT (VarT 1) (ArrowT (VarT 2) (VarT 1))))
;; (a -> b) -> (a -> a)
(check-equal? (typecheck (parse `(,S ,K)) mt-tenv)
(ArrowT (ArrowT (VarT 6) (VarT 5)) (ArrowT (VarT 6) (VarT 6))))
;; a -> a
(check-equal? (typecheck (parse `((,S ,K) ,K)) mt-tenv)
(ArrowT (VarT 6) (VarT 6)))
(check-exn exn:fail? (λ () (typecheck (parse '{{λ {id} {{id id} 3}} {λ {x} x}}) mt-tenv)))
(check-exn exn:fail? (λ () (typecheck (parse '{λ {x} {λ {y} {{x y} x}}}) mt-tenv)))
(check-exn exn:fail? (λ () (run '{{λ {x} {x x}} {λ {x} {x x}}})))
(check-exn exn:fail? (λ () (run '{+ 3 true})))
)
| false |
84a02bfc23b79a52cdc74244b87dd0b8aaff1815 | 50351efbc42a3272199f1ef76dd284a0eb8226d9 | /landau/backrun.rkt | c047b13515a47ee34d12ea4e976f0e8c309c90c8 | [
"Apache-2.0"
]
| permissive | S1ckick/dd_landau | f35b39e68cd8dea47f2e55c14ff3005a19df2688 | 9cf39225e074ebb99f37a605e9840cb3965a08ec | refs/heads/master | 2023-05-28T17:02:02.328302 | 2021-06-13T09:53:31 | 2021-06-13T09:53:31 | 361,839,616 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 125,699 | rkt | backrun.rkt | #lang racket/base
;; TODO move the module to syntax-analyser directory
(require (for-syntax racket/base
racket/contract
racket/fixnum
racket/flonum
racket/function
racket/list
racket/match
racket/pretty
racket/set
racket/syntax
syntax/location
syntax/parse
"environment.rkt"
(only-in "process-actions-list.rkt" splice-nested)
)
(only-in "process-actions-list.rkt" process!)
"environment.rkt"
"type-utils.rkt"
racket/contract/region
racket/function
racket/stxparam
racket/flonum
racket/fixnum
racket/unsafe/ops
"common-for-syntax.rkt")
(define-syntax-parameter current-variables #f)
(define-syntax-parameter function-name #f)
(define-syntax-parameter function-return-value #f)
(define-syntax-parameter function-return-type #f)
(define-syntax-parameter current-arguments #f)
(define-syntax-parameter dx-names-set #f)
(define-syntax-parameter real-vars-table #f)
(define-syntax-parameter module-funcs-table-parameter #f)
;; NOTE: Same logic as in semantics.rkt
(define-syntax-parameter func-call-box 'func-call-box-not-set)
(define-syntax-parameter func-is-called-inside-argument #f)
(define-for-syntax slice-idx-name-GLOBAL 'slice_idx)
(define-for-syntax df-slice-idx-name-GLOBAL 'df_slice_idx)
(define-for-syntax dx-slice-idx-name-GLOBAL 'dx_slice_idx)
(define-for-syntax func-slice-idx-name-GLOBAL 'func_slice_idx)
(define-for-syntax funcs-info-GLOBAL (make-hash))
(define func_slice_idx #f)
(define df_slice_idx #f)
(define dx_slice_idx #f)
(define slice_idx #f)
(begin-for-syntax
(define-syntax-class plus-or-minus
(pattern "+")
(pattern "-"))
(define-syntax-class mul-or-div
(pattern "*")
(pattern "/"))
(define-syntax-class colon
(pattern ":")))
(define-for-syntax (copy-syntax-properties src dst)
(define props (syntax-property-symbol-keys src))
(foldl
(lambda (prop-key result-stx)
(define prop-value (syntax-property src prop-key))
(syntax-property result-stx prop-key prop-value))
dst
props))
(define-for-syntax (local-expand-opaque stx)
(local-expand stx 'expression '())
#| (let-values |#
#| (((expanded opaque) (syntax-local-expand-expression stx))) |#
#| (define opaque-with-props (copy-syntax-properties expanded opaque)) |#
#| (with-syntax ((stx-opaque-with-props opaque-with-props) |#
#| (stx-expanded expanded)) |#
#| (displayln (format "~a ~a ~a" stx expanded opaque-with-props)) |#
#| (displayln (format "~a ~a" (syntax-property-symbol-keys expanded) |#
#| (syntax-property-symbol-keys opaque-with-props))) |#
#| (if (atom-number expanded) |#
#| expanded |#
#| opaque-with-props))) |#
)
(define-for-syntax (evaluate expanded-syntax)
(define ns (make-base-namespace))
;; NOTE: Racket generates some inner defined functions during the macro expansion.
;; They should be defined in the local namespace.
(eval '(require (rename-in racket/private/list (reverse alt-reverse))) ns)
(eval '(require racket/unsafe/ops) ns)
(eval '(require racket/fixnum) ns)
(eval '(define (check-range a b step)
(unless (real? a) (raise-argument-error 'in-range "real?" a))
(unless (real? b) (raise-argument-error 'in-range "real?" b))
(unless (real? step) (raise-argument-error 'in-range "real?" step))) ns)
(eval (syntax->datum expanded-syntax) ns))
(define/contract-for-syntax
(any->expanded-type v stx)
(-> any/c syntax?
landau-type/c)
(cond
((syntax? v) (eval (syntax->datum (expand-type v))))
(else (eval (syntax->datum (expand-type (datum->syntax stx v)))))))
(define-for-syntax (is-int-index stx)
(is-type stx 'int-index))
(define-for-syntax (is-func? stx)
(match (syntax->datum stx)
((list 'func _ ...) #t)
(_ #f)))
(define/contract-for-syntax
(range-casting-check stx r-value-type lvalue-outer-prod-range)
(-> syntax? (list/c base-type/c (list/c (or/c syntax? fixnum?))) (or/c syntax? fixnum?)
syntax?)
(when (is-slice? r-value-type)
(with-syntax ((rvalue-slice-range (get-slice-range r-value-type)))
#`(unless (fx= #,lvalue-outer-prod-range #,#'rvalue-slice-range)
(raise-syntax-error
#f
(format
"can not cast right-hand side range ~v to the left-hand side range ~v"
#,#'rvalue-slice-range #,lvalue-outer-prod-range) #'#,stx)))))
(define-syntax (program stx)
(syntax-parse stx
[(_ body ...)
(let* ((program-terms (syntax-e #'(body ...)))
(top-level-decl (filter (compose not is-func?) program-terms))
(funcs (filter is-func? program-terms))
(fake-src-pos 0)
(tld (if (empty? top-level-decl)
#'(void)
(local-expand-opaque (datum->syntax stx (cons 'begin top-level-decl))))))
;; NOTE: Evaluate top level constants and parameters declarations
(eval tld (current-namespace))
(datum->syntax
stx
(cons 'list
(list funcs-info-GLOBAL
(cons 'list
(let
#| module-funcs-table (-> (hash/c symbol? function-inline-template/c)) |#
((module-funcs-table (make-hash)))
(for/list ((fnc (in-list funcs)))
(let ((fnc-name (symbol->string
(syntax->datum (caddr (syntax-e fnc)))))
(dx-names-set-val (make-hash))
(real-vars-table-val (make-hash)))
#`(syntax-parameterize
((dx-names-set '#,dx-names-set-val)
(real-vars-table '#,real-vars-table-val)
(module-funcs-table-parameter '#,module-funcs-table))
(cons (var-symbol #,fnc-name #,fake-src-pos)
(call-with-values
(thunk
(process!
#,fnc
#,dx-names-set-val
#,real-vars-table-val))
list)))))))))))]))
(define (throw-if-bundle-mistype bundl-1 bundl-2)
(unless (equal? (car bundl-1) (car bundl-2))
(error "bug: bundles have different type")))
(define-for-syntax (expand-range rng-stx rng)
(if rng
(begin
(cadr (syntax->datum
(local-expand-opaque (datum->syntax #'rng-stx rng)))))
#f))
(define-for-syntax (check-proper-getter idx-stx slice-colon expanded-range expanded-idx name-str stx)
(if expanded-range
(begin
(unless (or (syntax->datum idx-stx) slice-colon)
(raise-syntax-error
#f
(format "Expect an index or a slice, ~a is an array." name-str) stx))
(when expanded-idx (throw-if-not-type 'int-index expanded-idx "")))
(begin
(when (syntax->datum idx-stx)
(raise-syntax-error
#f
(format "Do not expect index, ~a is not an array." name-str) stx))
(when slice-colon
(raise-syntax-error
#f
(format "Do not expect slice, ~a is not an array." name-str) stx)))))
(begin-for-syntax
(define-syntax-class type-spec
#:attributes (t)
(pattern
((~literal type) t:expr)))
(define-syntax-class arg-spec
#:attributes (name type)
(pattern
(_ type:type-spec name:id))
(pattern
({~literal other-argument} "," type:type-spec name:id))))
(define-syntax (func stx)
(syntax-parse stx
(({~literal func} type:expr name:id "(" ({~literal arglist} arg*:arg-spec ...) ")"
"{" body "}")
(let* ((args (make-hash))
(func-return-type (parse-type (syntax->datum #'type)))
(func-name-str (symbol->string (syntax->datum #'name)))
(func-return-value (gensym_ func-name-str))
(fake-src-pos 0)
(func-return-range (atom-number (type-range (expand-type (datum->syntax #'type func-return-type)))))
(func-args
(for/list ((argname (in-list (syntax-e #'(arg*.name ...))))
(argtype (in-list (syntax->datum #'(arg*.type ...)))))
(check-duplicate-argument-name args (syntax->datum #'name)
(syntax->datum argname) argname)
(datum->syntax argname (add-argument! args (syntax->datum argname)
(parse-type argtype)))
(define parsed-type (parse-type-to-syntax argtype))
(list (symbol->string (syntax->datum argname)) parsed-type)))
(func-args-declaration (for/list ((name-type-pair (in-list func-args)))
(match name-type-pair
((list name-str type)
(begin
(quasisyntax/loc
stx
(list 'var-decl
'#,(var-symbol name-str fake-src-pos)
'#,(to-landau-type stx type))))))))
(func-args-expanded
(for/list ((arg (in-list func-args)))
(let* ((arg-name (car arg))
(arg-type (syntax-e (cadr arg)))
(arg-base-type (syntax->datum (cadr arg-type)))
(arg-range-expanded
(atom-number
(local-expand-opaque (datum->syntax stx (syntax->datum (caddr arg-type)))))))
(cons arg-base-type arg-range-expanded))))
(func-parameters-info
(for/list ((argname (in-list (syntax-e #'(arg*.name ...))))
(parsed-arg (in-list func-args)))
(match parsed-arg
((list _ argtype)
(list
(var-symbol
(symbol->string (syntax->datum argname))
;; NOTE: use fake-src-pos because parameters always have unique names inside a single function
fake-src-pos)
(to-landau-type stx argtype))))))
(func-return-vs (var-symbol func-name-str fake-src-pos)))
(when (hash-has-key? BUILT-IN-FUNCTIONS func-name-str)
(raise-syntax-error #f "function name shadows built-in function" #'name))
(hash-set! ;; FIXME why use var-symbol with 0? Why dont we use just function name?
funcs-info-GLOBAL
func-return-vs
(func-info func-return-value (length func-args) func-args-expanded (car func-return-type) func-return-range))
(with-syntax ((func-return-var-declaration-stx
(quasisyntax/loc
stx
(list 'var-decl '#,func-return-vs '#,(to-landau-type stx func-return-type))))
(func-args-declaration-stx (quasisyntax/loc stx (list #,@func-args-declaration)))
(expanded-function-body
(extract
(local-expand
#`(syntax-parameterize
((current-variables
(new-variables-nesting
(syntax-parameter-value #'current-variables)))
(current-arguments '#,args)
(function-name (syntax->datum #'name))
(function-return-value '#,func-return-value)
(function-return-type '#,func-return-type))
body) 'expression (list)))))
;; NOTE: Evaluate expanded function body to the nested lists of actions
;; TODO do not evaluate. Use semantics approach. write unexpanded stx instead of actions list
(define func-body-evaluated (evaluate #'expanded-function-body))
(hash-set!
(syntax-parameter-value #'module-funcs-table-parameter)
(syntax->datum #'name)
(function-inline-template func-body-evaluated
func-parameters-info
func-return-vs))
(quasisyntax/loc
stx
(list
#,#'func-args-declaration-stx
#,#'func-return-var-declaration-stx
#,#'expanded-function-body)))))))
(define/contract-for-syntax
(search-name-backrun stx name)
(-> (syntax/c any/c) (syntax/c symbol?)
;; NOTE: real constants are not propagated in backrun
(values (syntax/c (or/c symbol? integer? false/c)) type/c boolean? integer?))
(let
((fake-src-pos 0)
(is-const #t)
(is-not-const #f)
(name_ (syntax->datum name))
(func-name (syntax-parameter-value #'function-name)))
(let-values
(((value type const? src-pos)
(cond
((hash-has-key? constants name_)
(let ((c (hash-ref constants name_)))
(values
(datum->syntax stx
(constant-value c))
(constant-type c)
is-const
fake-src-pos)))
(else
(begin
(unless (syntax-parameter-value #'current-variables)
(raise-syntax-error #f "name not found" name))
(let ((var (search-variable
name_ (syntax-parameter-value #'current-variables))))
(cond
(var
(values (datum->syntax stx (variable-symbol var))
(variable-type var) #f (variable-src-pos var)))
((equal? name_ func-name)
(let ((func-return-value (syntax-parameter-value #'function-return-value)))
(values
(datum->syntax stx func-return-value)
(syntax-parameter-value #'function-return-type)
is-not-const
fake-src-pos)))
(else
(let ((arg (search-argument
name_ (syntax-parameter-value #'current-arguments))))
(cond
(arg
(values
(datum->syntax stx (argument-symbol arg))
(argument-type arg)
is-not-const
fake-src-pos))
(else
(cond
((hash-has-key? parameters name_) (raise-syntax-error #f "parameters can not be used in expression" name))
(else (raise-syntax-error #f "name not found" name))))))))))))))
; (println (format "~a -> ~a" name value))
(values value type const? src-pos))
))
;; TODO: Check types. They are available after zero'th compiler run
;; NOTE: Now assume, that all get-value's are real (dual potentially) variables
(define-syntax (get-value stx)
(syntax-parse stx
(({~literal get-value} name:id
(~optional
(~or*
(~seq "[" (~optional index-start #:defaults ((index-start #'#f)))
slice-colon:colon
(~optional index-end #:defaults ((index-end #'#f))) "]")
(~seq "[" index "]"))))
(let*-values
(((name_) (syntax->datum #'name))
((name-str) (symbol->string name_))
((index_) (if (attribute index) (syntax->datum #'index) #f))
((slice-colon_) (attribute slice-colon))
;; NOTE: stx-pos is provided for variables only
((value full-type const? src-pos) (search-name-backrun stx #'name))
((getter) (let ()
(define _type (expand-type-to-datum (datum->syntax stx full-type)))
(make-getter-info (if (attribute index) #'index #'#f)
(if (attribute slice-colon) #'slice-colon #'#f)
_type)))
((maybe-array-range) (cadr full-type))
((base-type) (car full-type))
((array-range) (atom-number #`#,(expand-range
(if (attribute index) #'index #'#f)
(if (equal? maybe-array-range '()) #f maybe-array-range))))
((index-expanded) (if (attribute index)
(local-expand-opaque #'index)
#f)))
;;FIXME pass getter-info as syntax property?
#| (displayln "FIXME: check getter in get-value") |#
#| (displayln (format "~a get-value: name: ~a ~a" (syntax-line #'name) name-str (syntax->datum stx))) |#
;; FIXME Do not fail array get-value without index of slice. Array can be passed to a function: f(arr)
#| (check-proper-getter |#
#| (if (attribute index) #'index #'#f) (attribute slice-colon) array-range index-expanded name-str stx) |#
#| (displayln "full-type:") |#
#| (displayln (expand-type (datum->syntax stx full-type))) |#
(with-syntax-property
'full-type (to-landau-type stx full-type)
(with-syntax-property
'get-value-name name_
(with-syntax-property
'getter-info getter
(with-syntax ((value value)
(name-symb (var-symbol (symbol->string name_) src-pos)))
(let*-values
(((index-start-stx slice-range index-range-checks)
(if slice-colon_
(slice-helper stx #'index-start #'index-end array-range)
(values #f #f #f)))
((result)
(match (list (getter-info-type getter) base-type)
((list 'var 'real)
(if const?
(is-real (syntax/loc stx (list)))
(is-real (syntax/loc stx (list (list 'array-ref name-symb 0))))))
((list 'array 'real)
(with-syntax-property
'landau-type (to-landau-type stx full-type)
(if const?
(syntax/loc stx (list))
;; NOTE: idx do not make sense and should not be used. Use -1 to indicate this.
(syntax/loc stx (list (list 'array-ref name-symb -1))))))
((list 'cell 'real)
(with-syntax* ((index-expanded-stx index-expanded)
(expanded-range array-range)
(range-check-stx (range-check-stx stx #'index-expanded-stx #'expanded-range)))
;; NOTE: (cadr (cadr ... because expanded looks like that: '(#%app '4)
;; NOTE: can't do check in transmormer phase because loop variable is not resolved by that time.
;; Need to insert check-bounds code in generated code
(throw-if-not-type 'int-index #'index-expanded-stx
"Indexes expected to be expressions with 'int constants and/or loop variables")
(begin
(is-real
(if const?
(quasisyntax/loc
stx
(begin
range-check-stx
(list)))
(quasisyntax/loc
stx
(begin
range-check-stx ;; TODO: add src-loc
(list (list 'array-ref #,#'name-symb #,#'index-expanded-stx))
(list (list 'array-ref #,#'name-symb #,#'index-expanded-stx)))))))))
((list 'slice 'real)
(with-syntax*
((slice-range-stx slice-range)
(index-range-checks-stx index-range-checks)
(slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,index-start-stx slice-idx-synt)))
(is-type_ (landau-type 'real #'slice-range-stx)
(if const?
(quasisyntax/loc
stx
(begin
#,#'index-range-checks-stx
(list)))
(quasisyntax/loc
stx
(begin
#,#'index-range-checks-stx
(list (list 'array-ref name-symb full-idx))))))))
((list 'var 'int)
(is-int (syntax/loc stx '())))
((list (or 'cell 'slice) (or 'int 'int-index))
(raise-syntax-error stx "int arrays are not supported yet" #'name-symb))
((list 'var 'int-index)
(is-int-index (syntax/loc stx value))))
))
result)))))))))
(define-for-syntax (range-check stx idx range)
(begin
(println idx)
(println range)
(when (fx>= idx range)
(raise-syntax-error
#f
(format "index ~a out of range: expect [0, ~a)" idx range) stx))))
(define-for-syntax (range-check-stx stx idx range)
#`(when (fx>= #,idx #,range)
(raise-syntax-error
#f
(format "index ~a out of range: expect [0, ~a)" #,idx #,range) #'#,stx)))
;; TODO: refactor to reduce bindings duplication
(define-syntax (der-apply stx)
(syntax-parse stx
[(_ ({~literal get-value} func-name:id
(~optional
(~or*
(~seq "[" (~optional func-index-start #:defaults ((func-index-start #'#f)))
func-slice-colon:colon
(~optional func-index-end #:defaults ((func-index-end #'#f))) "]")
(~seq "[" func-ret-idx "]"))))
"="
value
"'"
({~literal get-value} dx-name:id
(~optional
(~or*
(~seq "[" (~optional dx-index-start #:defaults ((dx-index-start #'#f)))
dx-slice-colon:colon
(~optional dx-index-end #:defaults ((dx-index-end #'#f))) "]")
(~seq "[" dx-idx "]")))))
(let* ((name-1-dat (symbol->string (syntax->datum #'func-name)))
(name-2-dat (symbol->string (syntax->datum #'dx-name)))
(arr-1-range (check-real-func-existence #'func-name 'get-range))
(arr-2-range (check-real-arg-or-parameter-existence #'dx-name 'get-range))
(func-type (search-function #'func-name))
(dx-type (search-arg-or-parameter #'dx-name))
(func-getter (make-getter-info (if (attribute func-ret-idx) #'func-ret-idx #'#f)
(if (attribute func-slice-colon) #'func-slice-colon #'#f)
(to-landau-type stx func-type)))
(dx-getter (make-getter-info (if (attribute dx-idx) #'dx-idx #'#f)
(if (attribute dx-slice-colon) #'dx-slice-colon #'#f)
(to-landau-type stx dx-type)))
(func-ret-idx-expanded (if (attribute func-ret-idx)
(local-expand-opaque #'func-ret-idx)
#f))
(dx-idx-expanded (if (attribute dx-idx)
(local-expand-opaque #'dx-idx)
#f))
(expanded-range
(atom-number
#`#,(expand-range (if (attribute func-ret-idx) #'func-ret-idx #'#f)
(if (equal? arr-1-range '()) #f arr-1-range))))
(expanded-range-dx
(atom-number
#`#,(expand-range (if (attribute dx-idx) #'dx-idx #'#f)
(if (equal? arr-2-range '()) #f arr-2-range))))
(value-type (syntax-property
(local-expand-opaque #'value)
'landau-type))
(func-slice-colon_ (attribute func-slice-colon))
(dx-slice-colon_ (attribute dx-slice-colon))
(throw-slice-cast-error (thunk
(raise-syntax-error
#f
(format "the right-hand side is slice, but the left-hand one is not") stx))))
(check-proper-getter (if (attribute func-ret-idx) #'func-ret-idx #'#f)
(attribute func-slice-colon)
expanded-range
func-ret-idx-expanded
name-1-dat
stx)
(check-proper-getter (if (attribute dx-idx) #'dx-idx #'#f)
(attribute dx-slice-colon)
expanded-range-dx
dx-idx-expanded
name-2-dat
stx)
(let*-values
(((func-index-start-stx func-slice-range func-index-range-checks)
(if func-slice-colon_
(slice-helper stx #'func-index-start #'func-index-end expanded-range)
(values #f #f #f)))
((dx-index-start-stx dx-slice-range dx-index-range-checks)
(if dx-slice-colon_
(slice-helper stx #'dx-index-start #'dx-index-end expanded-range-dx)
(values #f #f #f))))
(with-syntax* ((dx-name-str name-2-dat) ;; NOTE: Do not need src-pos for dx
(func-index-range-checks func-index-range-checks)
(dx-index-range-checks dx-index-range-checks))
(match (list (getter-info-type func-getter) "<- value /" (getter-info-type dx-getter))
((list 'var "<- value /" 'var)
(begin
(throw-if-r-value-is-slice stx #'value)
(quasisyntax/loc stx
(list 'der-apply
(car #,#'value) ;; get-value according to the grammar
(list 'array-ref #,#'dx-name-str 0)))))
((list 'var "<- value /" 'cell)
(begin
(throw-if-r-value-is-slice stx #'value)
(quasisyntax/loc stx
(begin
#,(range-check-stx stx dx-idx-expanded expanded-range-dx)
(list 'der-apply
(car #,#'value) ;; get-value according to the grammar
(list 'array-ref #,#'dx-name-str #,dx-idx-expanded))))))
((list 'var "<- value /" 'slice)
(throw-slice-cast-error))
((list 'cell "<- value /" 'var)
(begin
(throw-if-r-value-is-slice stx #'value)
(quasisyntax/loc stx
(begin
#,(range-check-stx stx func-ret-idx-expanded expanded-range)
(list 'der-apply
(car #,#'value) ;; get-value according to the grammar
(list 'array-ref #,#'dx-name-str 0))))))
((list 'cell "<- value /" 'cell)
(begin
(throw-if-r-value-is-slice stx #'value)
(quasisyntax/loc stx
(begin
#,(range-check-stx stx func-ret-idx-expanded expanded-range)
#,(range-check-stx stx dx-idx-expanded expanded-range-dx)
(list 'der-apply
(car #,#'value) ;; get-value according to the grammar
(list 'array-ref #,#'dx-name-str #,dx-idx-expanded))))))
((list 'cell "<- value /" 'slice)
(throw-slice-cast-error))
((list 'slice "<- value /" 'var)
(with-syntax*
((value-slice-range (coerce-to-fixnum (get-slice-range value-type)))
(func-slice-range func-slice-range)
(slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(rvalue-outer-prod-range #'value-slice-range)
(r-value-type value-type))
#| (displayln (format "slice <- value / var: ~a" ) ) |#
(quasisyntax/loc
stx
(begin
#,#'func-index-range-checks
(unless (fx= rvalue-outer-prod-range 1)
(unless (fx= rvalue-outer-prod-range func-slice-range)
(raise-syntax-error
#f
(format "can not cast right-hand side range ~v to the left-hand side range ~v"
rvalue-outer-prod-range
func-slice-range)
#'#,stx)))
(for/list ((#,#'slice-idx-synt (in-range 0 #,#'func-slice-range)))
(list 'der-apply
(car #,#'value)
(list 'array-ref #,#'dx-name-str 0)))))))
((list 'slice "<- value /" 'cell)
(with-syntax*
((dx-idx-expanded dx-idx-expanded)
(func-slice-range func-slice-range)
(slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,func-index-start-stx slice-idx-synt))
(value-slice-range (coerce-to-fixnum (get-slice-range value-type))))
(quasisyntax/loc
stx
(begin
#,#'func-index-range-checks
(unless value-slice-range
(unless (fx= value-slice-range func-slice-range) ;; Bug is here
(raise-syntax-error
#f
(format "can not cast right-hand side range ~v to the left-hand side range ~v"
value-slice-range
func-slice-range)
#'#,stx)))
(for/list ((#,#'slice-idx-synt (in-range 0 #,#'func-slice-range)))
(list 'der-apply
(car #,#'value)
(list 'array-ref #,#'dx-name-str #,#'dx-idx-expanded)))))))
((list 'slice "<- value /" 'slice)
(with-syntax*
((func-slice-range func-slice-range)
(dx-slice-range dx-slice-range)
(value-slice-range (coerce-to-fixnum (get-slice-range value-type)))
(rvalue-outer-prod-range #'(fx* value-slice-range dx-slice-range))
(slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(dx-slice-idx-synt (datum->syntax stx dx-slice-idx-name-GLOBAL))
(dx-full-idx #`(+ #,dx-index-start-stx dx-slice-idx-synt)))
(quasisyntax/loc
stx
(begin
#,#'func-index-range-checks
#,#'dx-index-range-checks
(unless (fx= rvalue-outer-prod-range func-slice-range)
(raise-syntax-error
#f
(format "can not cast right-hand side range ~v to the left-hand side range ~v"
rvalue-outer-prod-range
func-slice-range)
#'#,stx))
(for/list ((#,#'slice-idx-synt (in-range 0 #,#'value-slice-range)))
(for/list ((#,#'dx-slice-idx-synt (in-range 0 #,#'dx-slice-range)))
(list 'der-apply
(car #,#'value)
(list 'array-ref #,#'dx-name-str #,#'dx-full-idx)))))))))
)))]))
(define-for-syntax (coerce-to-fixnum x)
(if (equal? #f x)
1
x))
;; TODO: refactor to reduce code duplication
(define-syntax (discard stx)
(syntax-parse stx
[(_ "discard" ({~literal get-value} df-name:id
(~optional
(~or*
(~seq "[" (~optional df-index-start #:defaults ((df-index-start #'#f)))
df-slice-colon:colon
(~optional df-index-end #:defaults ((df-index-end #'#f))) "]")
(~seq "[" df-idx "]"))))
"'"
({~literal get-value} dx-name:id
(~optional
(~or*
(~seq "[" (~optional dx-index-start #:defaults ((dx-index-start #'#f)))
dx-slice-colon:colon
(~optional dx-index-end #:defaults ((dx-index-end #'#f))) "]")
(~seq "[" dx-idx "]")))))
(let* ((name-1-dat (symbol->string (syntax->datum #'df-name)))
(name-2-dat (symbol->string (syntax->datum #'dx-name)))
(df-range (check-real-var-existence #'df-name 'get-range))
(dx-range (check-real-arg-or-parameter-existence #'dx-name 'get-range))
(df-idx-expanded (if (attribute df-idx)
(local-expand-opaque #'df-idx)
#f))
(dx-idx-expanded (if (attribute dx-idx)
(local-expand-opaque #'dx-idx)
#f))
(expanded-range-df (atom-number
#`#,(expand-range
(if (attribute df-idx) #'df-idx #'#f)
(if (equal? df-range '()) #f df-range))))
(expanded-range-dx (atom-number
#`#,(expand-range
(if (attribute dx-idx) #'dx-idx #'#f)
(if (equal? dx-range '()) #f dx-range))))
(df-slice-colon_ (attribute df-slice-colon))
(dx-slice-colon_ (attribute dx-slice-colon)))
(check-proper-getter
(if (attribute df-idx) #'df-idx #'#f)
(attribute df-slice-colon)
expanded-range-df
df-idx-expanded
name-1-dat
stx)
(check-proper-getter
(if (attribute dx-idx) #'dx-idx #'#f)
(attribute dx-slice-colon)
expanded-range-dx
dx-idx-expanded
name-2-dat
stx)
(let*-values (((v0 v1 v2 df-name-src-pos) (search-name-backrun stx #'df-name))
((v3 v4 v5 dx-name-src-pos) (search-name-backrun stx #'dx-name))
((dx-index-start-stx dx-slice-range dx-index-range-checks)
(if dx-slice-colon_
(slice-helper stx #'dx-index-start #'dx-index-end expanded-range-dx)
(values #f #f #f)))
((df-index-start-stx df-slice-range df-index-range-checks)
(if df-slice-colon_
(slice-helper stx #'df-index-start #'df-index-end expanded-range-df)
(values #f #f #f))))
(with-syntax* ((df-name-symb (var-symbol name-1-dat df-name-src-pos))
(dx-name-symb (var-symbol name-2-dat dx-name-src-pos))
(df-slice-range df-slice-range)
(dx-slice-range dx-slice-range)
(dx-index-range-checks dx-index-range-checks)
(df-index-range-checks df-index-range-checks))
(hash-set! (syntax-parameter-value #'dx-names-set) (symbol->string (syntax->datum #'dx-name)) #t)
(cond
((and (attribute df-idx) (attribute dx-idx))
(quasisyntax/loc stx
(begin
#,(range-check-stx stx df-idx-expanded expanded-range-df)
#,(range-check-stx stx dx-idx-expanded expanded-range-dx)
(when (and (equal? df-name-symb dx-name-symb) (equal? #,df-idx-expanded #,dx-idx-expanded))
(raise-syntax-error
#f
(format "Can not override annotation: ~a[~a] ' ~a[~a] == 1.0"
df-name-symb #,df-idx-expanded dx-name-symb #,dx-idx-expanded) #'#,stx))
(list 'discard
(list 'array-ref #,#'df-name-symb #,df-idx-expanded)
(list 'array-ref #,#'dx-name-symb #,dx-idx-expanded)))))
((and (attribute df-idx) (not (attribute dx-idx)))
(cond
(dx-slice-colon_
(with-syntax*
((df-idx-expanded df-idx-expanded)
(dx-slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,dx-index-start-stx dx-slice-idx-synt))
(lvalue-outer-prod-range #'dx-slice-range)
(r-value-exp
(local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
(quasisyntax/loc
stx
(begin
#,#'dx-index-range-checks
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
(for/list ((#,#'dx-slice-idx-synt (in-range 0 #,#'dx-slice-range)))
(list 'discard
(list 'array-ref #,#'df-name-symb #,#'df-idx-expanded)
(list 'array-ref #,#'dx-name-symb #,#'full-idx)))))))
(else
(begin
(throw-if-r-value-is-slice stx #'der-value)
(quasisyntax/loc stx
(begin
#,(range-check-stx stx df-idx-expanded expanded-range-df)
(list 'discard
(list 'array-ref #,#'df-name-symb #,df-idx-expanded)
(list 'array-ref #,#'dx-name-symb 0))))))))
((and (not (attribute df-idx)) (attribute dx-idx))
(cond
(df-slice-colon_
(with-syntax*
((dx-idx-expanded dx-idx-expanded)
(df-slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,df-index-start-stx df-slice-idx-synt))
(lvalue-outer-prod-range #'df-slice-range)
(r-value-exp
(local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
(quasisyntax/loc
stx
(begin
#,#'df-index-range-checks
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
(for/list ((#,#'df-slice-idx-synt (in-range 0 #,#'df-slice-range)))
(list 'discard
(list 'array-ref #,#'df-name-symb #,#'full-idx)
(list 'array-ref #,#'dx-name-symb #,#'dx-idx-expanded)))))))
(else (quasisyntax/loc stx
(begin
#,(range-check-stx stx dx-idx-expanded expanded-range-dx)
(list 'discard
(list 'array-ref #,#'df-name-symb 0)
(list 'array-ref #,#'dx-name-symb #,dx-idx-expanded)))))))
((and (not (attribute df-idx)) (not (attribute dx-idx)))
(cond
((and df-slice-colon_ dx-slice-colon_)
(with-syntax*
((df-slice-idx-synt (datum->syntax stx df-slice-idx-name-GLOBAL))
(dx-slice-idx-synt (datum->syntax stx dx-slice-idx-name-GLOBAL))
(df-full-idx #`(+ #,df-index-start-stx df-slice-idx-synt))
(dx-full-idx #`(+ #,dx-index-start-stx dx-slice-idx-synt))
(lvalue-outer-prod-range #'(* df-slice-range dx-slice-range))
(r-value-exp
(local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
(quasisyntax/loc
stx
(begin
#,#'df-index-range-checks
#,#'dx-index-range-checks
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
(for/list ((#,#'df-slice-idx-synt (in-range 0 #,#'df-slice-range)))
(for/list ((#,#'dx-slice-idx-synt (in-range 0 #,#'dx-slice-range)))
(list 'discard
(list 'array-ref #,#'df-name-symb #,#'df-full-idx)
(list 'array-ref #,#'dx-name-symb #,#'dx-full-idx))))))))
(df-slice-colon_
(with-syntax*
((df-slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,df-index-start-stx df-slice-idx-synt))
(lvalue-outer-prod-range #'df-slice-range)
(r-value-exp
(local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
;(displayln (format "full-idx ~a\nlvalue-outer-prod-range ~a\nr-value-exp ~a\nr-value-type ~a" #'full-idx #'lvalue-outer-prod-range #'r-value-exp #'r-value-type))
(quasisyntax/loc
stx
(begin
#,#'df-index-range-checks
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
(for/list ((#,#'df-slice-idx-synt (in-range 0 #,#'df-slice-range)))
(list 'discard
(list 'array-ref #,#'df-name-symb #,#'full-idx)
(list 'array-ref #,#'dx-name-symb 0)))))))
(dx-slice-colon_
(with-syntax*
((dx-slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,dx-index-start-stx dx-slice-idx-synt))
(lvalue-outer-prod-range #'dx-slice-range)
(r-value-exp
(local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
(quasisyntax/loc
stx
(begin
#,#'dx-index-range-checks
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
(for/list ((#,#'dx-slice-idx-synt (in-range 0 #,#'dx-slice-range)))
(list 'discard
(list 'array-ref #,#'df-name-symb 0)
(list 'array-ref #,#'dx-name-symb #,#'full-idx)))))))
(else
(begin
(throw-if-r-value-is-slice stx #'der-value)
(quasisyntax/loc stx
(list 'discard
(list 'array-ref #,#'df-name-symb 0)
(list 'array-ref #,#'dx-name-symb 0)))))))))))]))
(define-for-syntax (get-expanded-slice-index-start index-start)
(let* ((index-start-expanded (if (syntax->datum index-start)
(local-expand-opaque index-start)
(is-type_ 'int-index #'0)))
(index-start-expanded_ (if (atom-number index-start-expanded)
(atom-number index-start-expanded)
index-start-expanded)))
(values index-start-expanded index-start-expanded_)))
(define-for-syntax (get-expanded-slice-index-end stx index-end array-range-stx)
(let* ((index-end-expanded (if (syntax->datum index-end)
(begin
(local-expand-opaque index-end))
(is-type_ 'int-index (datum->syntax stx array-range-stx))))
(index-end-expanded_ (if (atom-number index-end-expanded)
(atom-number index-end-expanded)
(begin
; (println (format "index-end-expanded ~a" index-end-expanded))
index-end-expanded))))
(values index-end-expanded index-end-expanded_)))
(define-for-syntax (slice-helper stx dx-index-start dx-index-end expanded-range-dx)
(let*-values
(((dx-index-start-stx dx-index-start-number) (get-expanded-slice-index-start dx-index-start))
((dx-index-end-stx dx-index-end-number) (get-expanded-slice-index-end stx dx-index-end expanded-range-dx)))
(throw-if-not-type 'int-index
dx-index-start-stx
"Indexes expected to be expressions with 'int constants and/or loop variables")
(throw-if-not-type 'int-index
dx-index-end-stx
"Indexes expected to be expressions with 'int constants and/or loop variables")
#| (define dx-index-end-number-atom (atom-number dx-index-end-number)) |#
#| (define dx-index-start-number-atom (atom-number dx-index-start-number)) |#
(with-syntax*
((slice-range (quasisyntax/loc stx
(fx- #,dx-index-end-number
#,dx-index-start-number))))
(when (exact-integer? dx-index-start-number)
(when (fx< dx-index-start-number 0)
(raise-syntax-error
#f
(format "index must be nonnegative") stx)))
(when (exact-integer? dx-index-end-number)
(when (fx> dx-index-end-number expanded-range-dx)
(raise-syntax-error
#f
(format "slice end index ~a is out of range [0, ~a)" dx-index-end-number expanded-range-dx) stx)))
; (println "foo")
(with-syntax ((index-range-checks
(quasisyntax/loc
stx
(begin
;; NOTE: if index is not expanded to a number in compile time, insert check in runtime
#,(when (not (exact-integer? dx-index-start-number))
#`(when (fx< #,dx-index-start-number 0)
(raise-syntax-error
#f
(format "index must be nonnegative") #'#,stx)))
#,(when (not (exact-integer? dx-index-end-number))
#`(when (fx> #,dx-index-end-number #,expanded-range-dx)
(raise-syntax-error
#f
(format "slice end index ~a is out of range [0, ~a)" #,dx-index-end-number #,expanded-range-dx) #'#,stx)))))))
(values dx-index-start-stx #'slice-range #'index-range-checks)))))
(define-for-syntax (throw-if-r-value-is-slice stx r-value-stx)
(with-syntax*
((r-value-exp
(local-expand-opaque r-value-stx))
(r-value-type (syntax-property #'r-value-exp 'landau-type)))
(when (is-slice? (syntax->datum #'r-value-type))
(raise-syntax-error #f
(format "the right-hand side is slice, but the left-hand one is not") stx))))
;; TODO: refactor to reduce bindings duplication
(define-syntax (der-annot stx)
(syntax-parse stx
[(_ ({~literal get-value} df-name:id
(~optional
(~or*
(~seq "[" (~optional df-index-start #:defaults ((df-index-start #'#f)))
df-slice-colon:colon
(~optional df-index-end #:defaults ((df-index-end #'#f))) "]")
(~seq "[" df-idx "]"))))
"'"
({~literal get-value} dx-name:id
(~optional
(~or*
(~seq "[" (~optional dx-index-start #:defaults ((dx-index-start #'#f)))
dx-slice-colon:colon
(~optional dx-index-end #:defaults ((dx-index-end #'#f))) "]")
(~seq "[" dx-idx "]"))))
"="
der-value)
(let* ((name-1-dat (symbol->string (syntax->datum #'df-name)))
(name-2-dat (symbol->string (syntax->datum #'dx-name)))
(df-range (check-real-var-existence #'df-name 'get-range))
(dx-range (check-real-arg-or-parameter-existence #'dx-name 'get-range))
(df-type (search-var #'df-name))
(dx-type (search-arg-or-parameter #'dx-name))
(df-getter (make-getter-info (if (attribute df-idx) #'df-idx #'#f)
(if (attribute df-slice-colon) #'df-slice-colon #'#f)
(to-landau-type stx df-type)))
(dx-getter (make-getter-info (if (attribute dx-idx) #'dx-idx #'#f)
(if (attribute dx-slice-colon) #'dx-slice-colon #'#f)
(to-landau-type stx dx-type)))
(df-idx-expanded (if (attribute df-idx)
(local-expand-opaque #'df-idx)
#f))
(dx-idx-expanded (if (attribute dx-idx)
(local-expand-opaque #'dx-idx)
#f))
(expanded-range-df (atom-number #`#,(expand-range
(if (attribute df-idx)
#'df-idx
#'#f)
(if (equal? df-range '())
#f
df-range))))
(expanded-range-dx (atom-number #`#,(expand-range
(if (attribute dx-idx)
#'dx-idx
#'#f)
(if (equal? dx-range '())
#f
dx-range))))
(df-slice-colon_ (attribute df-slice-colon))
(dx-slice-colon_ (attribute dx-slice-colon)))
(check-proper-getter (if (attribute df-idx) #'df-idx #'#f)
(attribute df-slice-colon)
expanded-range-df
df-idx-expanded
name-1-dat stx)
(check-proper-getter (if (attribute dx-idx) #'dx-idx #'#f)
(attribute dx-slice-colon)
expanded-range-dx
dx-idx-expanded
name-2-dat stx)
(let*-values (((v0 v1 v2 df-name-src-pos) (search-name-backrun stx #'df-name))
; ((v3 v4 v5 dx-name-src-pos) (search-name-backrun stx #'dx-name))
((dx-index-start-stx dx-slice-range dx-index-range-checks)
(if dx-slice-colon_
(slice-helper stx #'dx-index-start #'dx-index-end expanded-range-dx)
(values #f #f #f)))
((df-index-start-stx df-slice-range df-index-range-checks)
(if df-slice-colon_
(slice-helper stx #'df-index-start #'df-index-end expanded-range-df)
(values #f #f #f))))
(with-syntax* ((df-name-symb (var-symbol name-1-dat df-name-src-pos))
;; NOTE: Do not need src-pos for dx
(dx-name-symb name-2-dat)
(df-slice-range df-slice-range)
(dx-slice-range dx-slice-range)
(dx-index-range-checks dx-index-range-checks)
(df-index-range-checks df-index-range-checks))
(hash-set! (syntax-parameter-value #'dx-names-set) (symbol->string (syntax->datum #'dx-name)) #t)
(match (list (getter-info-type df-getter)
(getter-info-type dx-getter)
"<- der-value")
((list 'var 'var "<- der-value")
(begin
(throw-if-r-value-is-slice stx #'der-value)
(quasisyntax/loc stx
(begin
der-value
(list 'der-annot
(list 'array-ref #,#'df-name-symb 0)
(list 'array-ref #,#'dx-name-symb 0))))))
((list 'var 'cell "<- der-value")
(begin
(throw-if-r-value-is-slice stx #'der-value)
(quasisyntax/loc stx
(begin
der-value
#,(range-check-stx stx dx-idx-expanded expanded-range-dx)
(list 'der-annot
(list 'array-ref #,#'df-name-symb 0)
(list 'array-ref #,#'dx-name-symb #,dx-idx-expanded))))))
((list 'var 'slice "<- der-value")
(with-syntax*
((dx-slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,dx-index-start-stx dx-slice-idx-synt))
(lvalue-outer-prod-range #'dx-slice-range)
(r-value-exp (local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
(quasisyntax/loc
stx
(begin
#,#'dx-index-range-checks
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
(let ((#,#'slice-idx-synt 0))
der-value
(for/list ((#,#'dx-slice-idx-synt (in-range 0 #,#'dx-slice-range)))
(let ((#,#'slice-idx-synt #,#'dx-slice-idx-synt))
(list 'der-annot
(list 'array-ref #,#'df-name-symb 0)
(list 'array-ref #,#'dx-name-symb #,#'full-idx)))))))))
((list 'cell 'var "<- der-value")
(begin
(throw-if-r-value-is-slice stx #'der-value)
(quasisyntax/loc stx
(begin
der-value
#,(range-check-stx stx df-idx-expanded expanded-range-df)
(list 'der-annot
(list 'array-ref #,#'df-name-symb #,df-idx-expanded)
(list 'array-ref #,#'dx-name-symb 0))))))
((list 'cell 'cell "<- der-value")
(begin
(throw-if-r-value-is-slice stx #'der-value)
(quasisyntax/loc
stx
(begin
der-value
#,(range-check-stx stx df-idx-expanded expanded-range-df)
#,(range-check-stx stx dx-idx-expanded expanded-range-dx)
(when (and (equal? df-name-symb dx-name-symb) (equal? #,df-idx-expanded #,dx-idx-expanded))
(raise-syntax-error
#f
(format "Can not override annotation: ~a[~a] ' ~a[~a] == 1.0" df-name-symb #,df-idx-expanded dx-name-symb #,dx-idx-expanded) #'#,stx))
(list 'der-annot
(list 'array-ref #,#'df-name-symb #,df-idx-expanded)
(list 'array-ref #,#'dx-name-symb #,dx-idx-expanded))))))
((list 'cell 'slice "<- der-value")
(with-syntax*
((df-idx-expanded-stx df-idx-expanded)
(dx-slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,dx-index-start-stx dx-slice-idx-synt))
(lvalue-outer-prod-range #'dx-slice-range)
(r-value-exp (local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
(quasisyntax/loc
stx
(begin
#,#'dx-index-range-checks
#,(range-check-stx stx df-idx-expanded expanded-range-df)
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
(let ((#,#'slice-idx-synt 0))
der-value
(for/list ((#,#'dx-slice-idx-synt (in-range 0 #,#'dx-slice-range)))
(list 'der-annot
(list 'array-ref #,#'df-name-symb #,#'df-idx-expanded-stx)
(list 'array-ref #,#'dx-name-symb #,#'full-idx))))))))
((list 'slice 'var "<- der-value")
(with-syntax*
((df-slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,df-index-start-stx df-slice-idx-synt))
(lvalue-outer-prod-range #'df-slice-range)
(r-value-exp (local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
(quasisyntax/loc
stx
(begin
#,#'df-index-range-checks
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
(let ((#,#'slice-idx-synt 0))
der-value
(for/list ((#,#'df-slice-idx-synt (in-range 0 #,#'df-slice-range)))
(list 'der-annot
(list 'array-ref #,#'df-name-symb #,#'full-idx)
(list 'array-ref #,#'dx-name-symb 0))))))))
((list 'slice 'cell "<- der-value")
(with-syntax*
((dx-idx-expanded-stx dx-idx-expanded)
(df-slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(full-idx #`(+ #,df-index-start-stx df-slice-idx-synt))
(lvalue-outer-prod-range #'df-slice-range)
(r-value-exp (local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
(quasisyntax/loc
stx
(begin
#,#'df-index-range-checks
#,(range-check-stx stx dx-idx-expanded expanded-range-dx)
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
;; assign placeholder value to slice variable which result is ignored.
(let ((#,#'slice-idx-synt 0))
der-value
(for/list ((#,#'df-slice-idx-synt (in-range 0 #,#'df-slice-range)))
(list 'der-annot
(list 'array-ref #,#'df-name-symb #,#'full-idx)
(list 'array-ref #,#'dx-name-symb #,#'dx-idx-expanded-stx))))))))
((list 'slice 'slice "<- der-value")
(with-syntax*
((df-slice-idx-synt (datum->syntax stx df-slice-idx-name-GLOBAL))
(dx-slice-idx-synt (datum->syntax stx dx-slice-idx-name-GLOBAL))
(slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(df-full-idx #`(+ #,df-index-start-stx df-slice-idx-synt))
(dx-full-idx #`(+ #,dx-index-start-stx dx-slice-idx-synt))
(lvalue-outer-prod-range #'(fx* df-slice-range dx-slice-range))
(r-value-exp (local-expand-opaque #'der-value)))
(define r-value-type (syntax-property #'r-value-exp 'landau-type))
#| (displayln (format "r-value-type ~a" r-value-type)) |#
(quasisyntax/loc
stx
(begin
#,#'df-index-range-checks
#,#'dx-index-range-checks
#,(range-casting-check stx r-value-type #'lvalue-outer-prod-range)
;; assign placeholder value to slice variable which result is ignored.
(let ((#,#'slice-idx-synt 0))
der-value ;; to trigger range checks
(for/list ((#,#'df-slice-idx-synt (in-range 0 #,#'df-slice-range)))
(for/list ((#,#'dx-slice-idx-synt (in-range 0 #,#'dx-slice-range)))
(list 'der-annot
(list 'array-ref #,#'df-name-symb #,#'df-full-idx)
(list 'array-ref #,#'dx-name-symb #,#'dx-full-idx))))))))))
)))]))
(define-syntax (single-term stx)
(syntax-parse stx
[(_ body)
(syntax/loc stx body)]))
;; FIXME Add new context for variables
(define-syntax (expr-body stx)
(syntax-parse stx
[(_ body ...)
(syntax/loc stx
(list body ...))]))
(define-syntax (func-body stx)
(syntax-parse stx
[(_ body ...)
(syntax/loc stx
(list body ...))]))
(define-for-syntax (binary-op-cast op1 op2 stx)
(let ((type1 (syntax-property op1 'landau-type))
(type2 (syntax-property op2 'landau-type))
(op1-atom (atom-number op1))
(op2-atom (atom-number op2)))
; (println (format "~a ~a" type1 type2))
(match (list type1 type2)
((list 'int 'int)
(values op1 op2 'int))
((list 'real 'real)
(values op1 op2 'real))
((list 'int 'real)
(values (datum->syntax
op1 (if op1-atom (exact->inexact op1-atom) `(exact->inexact ,op1)) op1)
op2 'real))
((list 'real 'int)
(values op1 (datum->syntax
op2 (if op2-atom (exact->inexact op2-atom) `(exact->inexact ,op2)) op2)
'real))
((list 'int-index 'int-index)
(values op1 op2 'int-index))
((list 'int 'int-index)
(values op1 op2 'int))
((list 'int-index 'int)
(values op1 op2 'int))
((list 'real 'int-index)
(values op1 (datum->syntax
op2 (if op2-atom (exact->inexact op2-atom) `(exact->inexact ,op2)) op2)
'real))
((list 'int-index 'real)
(values (datum->syntax
op1 (if op1-atom (exact->inexact op1-atom) `(exact->inexact ,op1)) op1)
op2 'real))
(`(,(? is-slice? type1) ,(? is-slice? type2))
(let ((range1 (get-slice-range type1))
(range2 (get-slice-range type2))
(slice-type1 (get-slice-type type1))
(slice-type2 (get-slice-type type2)))
(match (list slice-type1 slice-type2)
((list 'real 'real)
(values
#`(if (equal? #,range1 #,range2)
#,op1
(raise-syntax-error #f (format "cannot cast ranges ~v and ~v" #,range1 #,range2) #'#,stx))
op2
type1))
(else
(raise-syntax-error #f (format "cannot1 cast ~v and ~v" slice-type1 slice-type2) stx)))))
(`(,(? is-slice? type1) ,(? (compose not is-slice?) type2))
(let ((range1 (get-slice-range type1))
(slice-type1 (get-slice-type type1)))
(match (list slice-type1 type2)
((list 'real 'int)
(values
op1
;; TODO: check it; compare with
(datum->syntax op2 (if op2-atom (exact->inexact op2-atom) `(exact->inexact ,op2)) op2)
type1))
((list 'real 'int-index)
(values
op1
(datum->syntax op2 (if op2-atom (exact->inexact op2-atom) `(exact->inexact ,op2)) op2)
type1))
((list 'real 'real) (values op1 op2 type1))
(else
(raise-syntax-error #f (format "cannot cast ~v and ~v" slice-type1 type2) stx)))))
(`(,(? (compose not is-slice?) type1) ,(? is-slice? type2))
(let ((range2 (get-slice-range type2))
(slice-type2 (get-slice-type type2)))
(match (list slice-type2 type1)
((list 'real 'int)
(values
(datum->syntax op1 (if op1-atom (exact->inexact op1-atom) `(exact->inexact ,op1)) op1)
op2
type2))
((list 'real 'int-index)
(values
(datum->syntax op1 (if op1-atom (exact->inexact op1-atom) `(exact->inexact ,op1)) op1)
op2
type2))
((list 'real 'real) (values op1 op2 type2))
(else
(raise-syntax-error #f (format "cannot cast ~v and ~v" slice-type2 type1) stx)))))
(else
(raise-syntax-error #f (format "cannot cast ~v and ~v. op1: ~v, op2: ~v." type1 type2 op1 op2) stx)))))
(define-syntax (expr stx)
(syntax-parse stx
((_ expr1 op:plus-or-minus expr2)
(let* ((expr1-expanded (local-expand #'expr1 'expression (list)))
(expr2-expanded (local-expand #'expr2 'expression (list)))
(expr1-is-int-index (equal? (syntax-property expr1-expanded 'landau-type) 'int-index))
(expr2-is-int-index (equal? (syntax-property expr2-expanded 'landau-type) 'int-index))
(op (syntax->datum #'op)))
(let*-values (((expr1-casted expr2-casted type) (binary-op-cast expr1-expanded expr2-expanded stx))
((expr1-atom) (atom-number expr1-casted))
((expr2-atom) (atom-number expr2-casted)))
(cond
((equal? type 'real)
(is-real
(if (and expr1-atom expr2-atom)
(quasisyntax/loc stx #,((if (equal? op "+") fl+ fl-) expr1-atom expr2-atom))
(with-syntax* ((e1 (if (and (equal? #f expr1-atom) (not expr1-is-int-index))
expr1-casted
#'(list)))
(e2 (if (and (equal? #f expr2-atom) (not expr2-is-int-index))
expr2-casted
#'(list))))
(syntax/loc stx (append e1 e2))))))
((is-slice? type)
(is-type_ type (with-syntax* ((e1 (if (and (equal? #f expr1-atom) (not expr1-is-int-index))
expr1-casted
#'(list)))
(e2 (if (and (equal? #f expr2-atom) (not expr2-is-int-index))
expr2-casted
#'(list))))
(syntax/loc stx (append e1 e2)))))
((equal? type 'int)
(is-int
(syntax/loc stx '())))
((equal? type 'int-index)
(is-int-index
(if (and expr1-atom expr2-atom)
(quasisyntax/loc stx #,((if (equal? op "+") fx+ fx-) expr1-atom expr2-atom))
(quasisyntax/loc stx (#,(if (equal? op "+") #'fx+ #'fx-) #,expr1-expanded #,expr2-expanded)))))
(else
(raise-syntax-error #f (format "unsupported type: ~v" type) stx))))))
[(_ "(" expr1 ")")
(syntax/loc stx
expr1)]
[(_ expr1)
(with-syntax ((expanded (local-expand #'expr1 'expression (list))))
(syntax-track-origin (syntax/loc stx expanded) #'expr1 #'expr))]))
(define/contract-for-syntax
(arity-check func-name n-expected n-provided stx)
(-> string? integer? integer? (syntax/c any/c) void?)
(unless (equal? n-expected n-provided)
(raise-syntax-error
#f
(format "function ~a expects ~a parameters, but ~a provided" func-name n-expected n-provided)
stx)))
(define/contract-for-syntax
(ref->var-symbol ref)
(-> backrun-ref/c var-symbol/c)
(match ref
((list _ vs _) vs)))
(define/contract-for-syntax
(bind-parameters-to-arguments inlined-function-name actions-list bindings)
(-> string? (listof any/c) (hash/c var-symbol/c (or/c func-arg-binding/c (symbols 'constant)))
(listof any/c))
(define flat-actions-list (reverse (splice-nested actions-list)))
(define msg-template "bug: not self-sufficent function should not contain ~a term")
(define (rebind-ref _inlined-function-name ref bindings)
(define var-name (match ref ((list _ (var-symbol name _) _) name)))
(define (is-constant? _name)
(hash-has-key? constants (string->symbol _name)))
(match ref
((list 'array-ref vs idx)
;; NOTE: If there is no such a key, then the key is a
; local variable and should not be changed.
;; NOTE: Need to either preserve or override the idx depending on the arg type:
;; var -> preserve (really does not matter, because it is 0 in both cases)
;; cell -> override
;; array -> preserve
(match (hash-ref bindings vs (thunk 'not-a-function-parameter))
((func-arg-binding 'var (list 'array-ref arg-vs arg-idx))
(list 'array-ref arg-vs idx))
((func-arg-binding 'cell (list 'array-ref arg-vs arg-idx))
(list 'array-ref arg-vs arg-idx))
((func-arg-binding 'array (list 'array-ref arg-vs arg-idx))
(list 'array-ref arg-vs idx))
('not-a-function-parameter
(cond
((is-constant? var-name) (list 'array-ref vs idx))
;; NOTE: inlined function's local variables are prepanded with _
(else (match ref
((list 'array-ref (var-symbol name src-pos) ref-idx)
(list 'array-ref (var-symbol (make-inlined-variable-name _inlined-function-name name) src-pos) ref-idx))))))
('constant 'constant)))))
(define (rebind-refs-list _inlined-function-name refs-list bindings)
(filter (lambda (x) (not (equal? x 'constant)))
(for/list ((ref (in-list refs-list)))
(rebind-ref _inlined-function-name ref bindings))))
(for/list ((action (in-list flat-actions-list)))
(match action
((list 'func-assign func-ref refs-list)
(list 'assign
(rebind-ref inlined-function-name func-ref bindings)
(rebind-refs-list inlined-function-name refs-list bindings)))
((list 'assign l-val-ref refs-list)
(list 'assign (rebind-ref inlined-function-name l-val-ref bindings)
(rebind-refs-list inlined-function-name refs-list bindings)))
((list 'var-decl vs type)
(list 'var-decl
;; NOTE: inlined function's local variables are prepanded with _
(match vs
((var-symbol name src-pos)
(var-symbol (make-inlined-variable-name inlined-function-name name) src-pos)))
type))
((list 'der-annot ref-1 ref-2)
(error (format msg-template 'der-annot)))
((list 'der-apply df dx)
(error (format msg-template 'der-apply)))
((list 'discard df dx)
(error (format msg-template 'discard))))))
(define/contract-for-syntax
(add-function-return-variable-binding! bindings
func-name-fake-vs
func-name-true-vs
func-getter)
(-> (hash/c var-symbol/c (or/c func-arg-binding/c (symbols 'constant)))
var-symbol/c
var-symbol/c
getter-info/c
void?)
(hash-set! bindings
func-name-fake-vs
(func-arg-binding (getter-info-type func-getter) (list 'array-ref
func-name-true-vs
0))))
(define-syntax (func-call stx)
(syntax-parse stx
((_ function-name "(" ({~literal parlist} par*:par-spec ...) ")")
(let* ((func-str (symbol->string (syntax->datum #'function-name)))
(fake-src-pos 0)
;; NOTE: funcs-info-GLOBAL use var-symbol/c as keys.
; For functions src-pos is always 0. It does not make sense
; and should be changed later.
(func-name-fake-vs (var-symbol func-str fake-src-pos))
;; NOTE: True src-pos is used to generate distinct
; return variables for each func-call (inlining).
(true-src-pos (syntax-position #'function-name))
;; NOTE: return var name is modified to handle ambiguity.
; In semantics.rkt name is modified in the same way
(function-return-variable-name (format "~a~a" func-str true-src-pos))
(func-name-true-vs (var-symbol function-return-variable-name true-src-pos))
(func-pars-list (for/list ((par-value (in-list (syntax-e #'(par*.par-value ...)))))
par-value))
(par-list-len (length func-pars-list))
(builtin-functions (hash-keys BUILT-IN-FUNCTIONS)))
;; FIXME: Check func name, type, casting conditions
(if (member func-str builtin-functions)
;; NOTE: Built-in functions
(let ((expected-arity (length (hash-ref BUILT-IN-FUNCTIONS func-str))))
(if (equal? func-str "pow")
(begin
(arity-check func-str expected-arity par-list-len stx)
(with-syntax* ((expr1 (car func-pars-list))
(expr2 (cadr func-pars-list))
(expanded1 (local-expand #'expr1 'expression (list)))
(expanded2 (local-expand #'expr2 'expression (list))))
(with-syntax-property 'getter-info (getter-info 'var #f)
(is-type_ 'real
(syntax/loc stx (append expanded1 expanded2))))))
(begin
(arity-check func-str expected-arity par-list-len stx)
(with-syntax* ((expr1 (car func-pars-list))
(expanded1 (local-expand #'expr1 'expression (list))))
(with-syntax-property 'getter-info (getter-info 'var #f)
(is-type_ 'real
(syntax/loc stx expanded1)))))))
;; NOTE: User-defined functions
;; FIXME perform checks
(let*
((func-info (if (hash-has-key? funcs-info-GLOBAL func-name-fake-vs)
(hash-ref funcs-info-GLOBAL func-name-fake-vs)
(raise-syntax-error #f (format "function ~a is not defined." func-str) stx)))
(type (if (func-info-output-range func-info)
(landau-type (func-info-output-base-type func-info)
(func-info-output-range func-info))
(landau-type (func-info-output-base-type func-info))))
(func-getter (if (func-info-output-range func-info)
(getter-info 'array #f)
(getter-info 'var #f)))
(subfunc-call-box-value (make-state (list)))
(func-call-box-value (syntax-parameter-value #'func-call-box)))
(with-syntax
((slice-idx-synt (datum->syntax stx slice-idx-name-GLOBAL))
(pars-list-expanded
(for/list ((par (in-list func-pars-list)))
(with-syntax*
((par par))
(extract
(local-expand
#`(syntax-parameterize
((func-call-box #,subfunc-call-box-value)
(func-is-called-inside-argument #t))
par) 'expression (list)))))))
#| (displayln "FIXME: check if funciton local var are in der-table if they need a derivative after inlining") |#
;; NOTE: inline funciton body and bind it's parameters to the passed arguments
#| (displayln "FIXME: generate normalizied arg variables in semantics.rkt") |#
(define current-func-arg-normalizations (make-state (list)))
(define module-funcs-table (syntax-parameter-value #'module-funcs-table-parameter))
(define args
(for/list ((arg-number (in-naturals))
(arg (syntax-e #'pars-list-expanded)))
(define evaluated-arg (evaluate arg))
(match evaluated-arg
((list) 'constant)
((list (list ref vs n))
(begin
(define _getter (syntax-property arg 'getter-info))
(unless _getter
(error (format "bug: arg: ~a has no getter property" arg)))
(define getter (getter-info-type _getter))
(func-arg-binding getter (list ref vs n))))
((list refs ...)
(begin
;; NOTE semantics.rkt can't handle expressions inside an argument
;; TODO handle them
(raise-syntax-error
#f
"expressions are not allowed inside function arguments" stx)
(define args-norms (read-state current-func-arg-normalizations))
(define norm-arg-vs (var-symbol
(make-norm-arg-name func-str arg-number)
(syntax-position arg)))
(define norm-arg-ref (list 'array-ref norm-arg-vs 0))
(define arg-normalization
(list 'assign
norm-arg-ref
refs))
(write-state! current-func-arg-normalizations
(append args-norms
(list arg-normalization)))
(define arg-getter-type 'var)
(func-arg-binding arg-getter-type norm-arg-ref))))))
(define args-types
(for/list ((arg (syntax-e #'pars-list-expanded)))
(define _arg-getter (syntax-property arg 'getter-info))
(define _arg-name (syntax-property arg 'get-value-name))
(define _arg-type (to-landau-type stx (syntax-property arg 'landau-type)))
(match _arg-getter
(#f (list 'constant (to-landau-type stx _arg-type)))
(_ (begin
(define _arg-full-type
(syntax-property arg 'full-type))
(list _arg-getter _arg-full-type))))))
(define func-template (hash-ref module-funcs-table (string->symbol func-str)))
(define func-template-parameters-vs
(for/list ((par (in-list (function-inline-template-.parameters func-template))))
(match par
((list par-vs _) par-vs))))
#| (displayln (format "args-types: ~a" args-types)) |#
#| (displayln (format "pars-types: ~a" (function-inline-template-.parameters func-template))) |#
(define (landau-type->string t)
(match t
((list b (list)) (format "~a" b))
((list b (list n)) (format "~a[~a]" b n))))
(define (check-arguments _stx _func-str expected-types given-types)
(define expected-n (length expected-types))
(define given-n (length given-types))
(unless (equal? expected-n given-n)
(raise-syntax-error
#f
(format "function ~a arity mismatch: expected ~a, given: ~a"
_func-str expected-n given-n) _stx))
(for ((arg-n (in-naturals))
(expected-type-info (in-list expected-types))
(given-type-info (in-list given-types)))
(define expected-type
(match expected-type-info
((list _ type) type)))
(define-values (given-type given-getter)
(match given-type-info
((list getter type) (values type getter))))
(when (equal? given-getter 'slice)
(raise-syntax-error
#f
(format "function ~a argument type mismatch: argument slices are not implemented"
_func-str) _stx))
(unless (equal? expected-type given-type)
(raise-syntax-error
#f
(format
"function ~a argument type mismatch: argument ~a expected to be ~a, given: ~a"
_func-str arg-n (landau-type->string expected-type) (landau-type->string given-type))
_stx))))
(check-arguments stx func-str (function-inline-template-.parameters func-template) args-types)
(define/contract bindings
(hash/c var-symbol/c (or/c func-arg-binding/c (symbols 'constant)))
(make-hash (zip cons
func-template-parameters-vs
args)))
(add-function-return-variable-binding! bindings
func-name-fake-vs
func-name-true-vs
func-getter)
;; NOTE: function's return variable (unique to an each call) declaration
(define current-function-return-var-decl
(list 'var-decl func-name-true-vs (to-landau-type stx type)))
(define inlined-function
(bind-parameters-to-arguments
func-str
(function-inline-template-.actions-list func-template)
bindings))
(unless (equal? func-call-box-value 'func-call-box-not-set)
(begin
(define updated-inlinded-func-actions-list
(append
;; NOTE: func-call list from children
(read-state subfunc-call-box-value)
;; NOTE: func-call list from neighbors
;; on the same call depth level
(read-state func-call-box-value)
;; NOTE: if argument includes multiple variables
; then it is assigned to the new variable and that variable
; substitutes the argument.
(read-state current-func-arg-normalizations)
(list current-function-return-var-decl)
inlined-function))
#| (displayln (format "updated-inlinded-func-actions-list: ~a" updated-inlinded-func-actions-list)) |#
(write-state! func-call-box-value updated-inlinded-func-actions-list)))
#| (displayln (format "~a: func-call-box-value:" func-str)) |#
#| (pretty-print func-call-box-value) |#
(with-syntax-property
'full-type (to-landau-type stx type)
(with-syntax-property
'get-value-name (string->symbol function-return-variable-name)
(with-syntax-property
'getter-info func-getter
(if (syntax-parameter-value #'func-is-called-inside-argument)
;; NOTE: Function called inside the argument of another function.
; Return a link to the function's return-variable.
; Actions of assignation to the variable are appended to the
; list of actions and written to `func-call-box-value`.
; The list of actions is then fetched during the `assignation` macro expansion
; and prepanded to the assignation action.
(match (getter-info-type func-getter)
('array
(with-syntax-property
'landau-type (to-landau-type stx type)
(quasisyntax/loc
stx
(list (list 'array-ref #,func-name-true-vs 0)))))
(_
(with-syntax-property
'landau-type (func-info-output-base-type func-info)
(quasisyntax/loc
stx
(list (list 'array-ref #,func-name-true-vs 0))))))
;; NOTE: This function call is top-level and in case of
; function returns an array, return-value is inserted
; into the loop, where the output array is copied to the
; assignation left-hand side variable.
(match (getter-info-type func-getter)
('array
(with-syntax-property
'landau-type (to-landau-type stx type)
(quasisyntax/loc
stx
(list (list 'array-ref #,func-name-true-vs #,#'slice-idx-synt)))))
(_ (with-syntax-property
'landau-type (func-info-output-base-type func-info)
(quasisyntax/loc
stx
(list (list 'array-ref #,func-name-true-vs 0)))))))))))))))))
(define-syntax (term stx)
(syntax-parse stx
((_ expr1 op:mul-or-div expr2)
(let* ((expr1-expanded (local-expand #'expr1 'expression (list)))
(expr2-expanded (local-expand #'expr2 'expression (list)))
(expr1-is-int-index (equal? (syntax-property expr1-expanded 'landau-type) 'int-index))
(expr2-is-int-index (equal? (syntax-property expr2-expanded 'landau-type) 'int-index))
(op (syntax->datum #'op)))
(let*-values (((expr1-casted expr2-casted type) (binary-op-cast expr1-expanded expr2-expanded stx))
((expr1-atom) (atom-number expr1-casted))
((expr2-atom) (atom-number expr2-casted)))
(cond
((equal? type 'real)
(is-real
(if (and expr1-atom expr2-atom)
(quasisyntax/loc stx #,((if (equal? op "*") fl* fl/) expr1-atom expr2-atom))
(with-syntax* ((e1 (if (and (equal? #f expr1-atom) (not expr1-is-int-index))
expr1-casted
#'(list)))
(e2 (if (and (equal? #f expr2-atom) #t (not expr2-is-int-index))
expr2-casted
#'(list))))
(syntax/loc stx (append e1 e2))))))
((is-slice? type)
(is-type_ type (with-syntax* ((e1 (if (and (equal? #f expr1-atom) (not expr1-is-int-index))
expr1-casted
#'(list)))
(e2 (if (and (equal? #f expr2-atom) #t (not expr2-is-int-index))
expr2-casted
#'(list))))
(syntax/loc stx (append e1 e2)))))
((equal? type 'int)
(is-int
(syntax/loc stx '())))
((equal? type 'int-index)
(is-int-index
(if (and expr1-atom expr2-atom)
(quasisyntax/loc stx #,((if (equal? op "*") fx* fxquotient) expr1-atom expr2-atom))
(quasisyntax/loc stx (#,(if (equal? op "*") #'fx* #'fxquotient) #,expr1-expanded #,expr2-expanded)))))
(else
(raise-syntax-error #f (format "unsupported type: ~v" type) stx))))))
[({~literal term} term1)
(with-syntax ((expanded (local-expand #'term1 'expression (list))))
; (println #'expanded)
; (println (format "term type: ~a" (syntax-property #'expanded 'landau-type)))
; (println (format "term type emitted: ~a" (syntax-property (syntax-track-origin (syntax/loc stx expanded) #'term1 #'expr) 'landau-type)))
; (println "")
(syntax-track-origin (syntax/loc stx expanded) #'term1 #'expr))]))
(define-syntax (element stx)
(syntax-parse stx
[(_ number)
(with-syntax* ((expanded (local-expand #'number 'expression (list)))
(atom_ (atom-number #'expanded))
(type (syntax-property #'expanded 'landau-type)))
(let ((type_ (syntax->datum #'type))
(atom (syntax->datum #'atom_)))
(match type_
('int-index
(syntax-track-origin (syntax/loc stx expanded) #'number #'expr))
('real
(if atom
(is-type_ 'real #'(list))
(is-type_ 'real #'expanded)))
('int (is-type_ type_ #'(list)))
(else
(cond
((is-slice? type_)
(syntax-track-origin (syntax/loc stx expanded) #'number #'expr))
(else (error (format "bug: unknown type: ~a" type_))))))))]
[(_ "(" expr-stx ")")
(syntax/loc stx
expr-stx)]
))
(define-syntax (factor stx)
(syntax-parse
stx
[({~literal factor} primary "^" factor)
(error "^ operator is not implemented")]
[({~literal factor} primary)
(with-syntax* ((expanded (local-expand #'primary 'expression (list)))
(atom_ (atom-number #'expanded))
(type (syntax-property #'expanded 'landau-type)))
(let ((type_ (syntax->datum #'type))
(atom (syntax->datum #'atom_)))
(match type_
('int-index ;; FIXME: what is #'expr?
(syntax-track-origin (syntax/loc stx expanded) #'primary #'expr))
('real
(if atom
(is-type_ 'real #'(list))
(is-type_ 'real #'expanded)))
('int (is-type_ type_ #'(list)))
(else
(cond
((is-slice? type_) ;; FIXME: what is #'expr?
(syntax-track-origin (syntax/loc stx expanded) #'primary #'expr))
(else (error (format "bug: unknown type: ~a" type_))))))))]))
(define-syntax (primary stx)
(syntax-parse stx
[(_ ((~literal unop) p-or-m) primary)
(let ((op (syntax->datum #'p-or-m)))
(with-syntax*
((expanded (local-expand #'primary 'expression (list))))
(let ((expanded-basic-type (syntax-property #'expanded 'landau-type))
(atom (atom-number #'expanded)))
(cond
((equal? expanded-basic-type 'int-index)
(is-type_ expanded-basic-type
(if atom
(quasisyntax/loc stx
#,((if (equal? op "+") fx+ fx-) 0 atom))
(datum->syntax stx
`(,(if (equal? op "+") #'fx+ #'fx-) 0 ,#'expanded)))))
(else (syntax/loc stx
expanded))))))]
[(_ primary)
(with-syntax* ((expanded (local-expand #'primary 'expression (list)))
(atom_ (atom-number #'expanded))
(type (syntax-property #'expanded 'landau-type)))
(let ((type_ (syntax->datum #'type))
(atom (syntax->datum #'atom_)))
(match type_
('int-index ;; FIXME: what is #'expr?
(syntax-track-origin (syntax/loc stx expanded) #'primary #'expr))
('real
(if atom
(is-type_ 'real #'(list))
(is-type_ 'real #'expanded)))
('int (is-type_ type_ #'(list)))
(else
(cond
((is-slice? type_) ;; FIXME: what is #'expr?
(syntax-track-origin (syntax/loc stx expanded) #'primary #'expr))
(else (error (format "bug: unknown type: ~a" type_))))))))]))
(define-syntax (number stx)
(syntax-parse stx
(((~literal number) number-stx)
(syntax-property
#'number-stx
'landau-type
(if (exact? (syntax->datum #'number-stx))
'int-index
'real)
#t))))
;; TODO: add checks as in semantics (assignation to a const, handle assignation to int, etc)
;; FIXME: Make array-return funciton assignation logic as in semantics assignation
(define-syntax (assignation stx)
(syntax-parse stx
(((~literal assignation) name:id
getter:getter-cls
((~literal mut-assign) op) value:expr)
(let* ((op_ (syntax->datum #'op))
(getter-for-splice (syntax-e #'getter))
(binop (match op_
("+=" "+")
("-=" "-")
("*=" "*")
("/=" "/"))))
(match op_
((or "+=" "-=")
(datum->syntax
stx
`(assignation ,#'name ,@getter-for-splice "="
(expr
(expr
(term
(factor
(primary
(element
(get-value ,#'name ,@getter-for-splice)))))) ,binop ,#'value))))
((or "*=" "/=")
(datum->syntax
stx
`(assignation ,#'name ,@getter-for-splice "="
(expr
(term
(term
(factor
(primary
(element
(get-value ,#'name ,@getter-for-splice))))) ,binop ,#'value))))
))))
(((~literal assignation) name:id
getter:getter-cls
"=" value:expr)
(let*-values (((name_) (syntax->datum #'name))
((func-name) (syntax-parameter-value #'function-name))
((func-basic-type) (car (syntax-parameter-value #'function-return-type)))
((slice-colon_) (syntax->datum #'getter.slice-colon))
((fake-src-pos) (values 0))
((symbol type src-pos)
(cond
((hash-has-key? constants name_)
(raise-syntax-error #f "assignation to constant is not allowed" #'name))
((search-argument name_ (syntax-parameter-value #'current-arguments))
(raise-syntax-error #f "assignation to argument is not allowed" #'name))
((hash-has-key? parameters name_) (raise-syntax-error #f "assignation to parameter is not allowed" #'name))
((equal? name_ func-name)
(let ((func-return-value (syntax-parameter-value #'function-return-value)))
(values
(datum->syntax stx func-return-value)
(syntax-parameter-value #'function-return-type)
fake-src-pos)))
(else
(let ((var (search-variable name_ (syntax-parameter-value #'current-variables))))
(cond
(var
(values (datum->syntax stx (variable-symbol var))
(variable-type var)
(variable-src-pos var)))
(else
(raise-syntax-error #f "variable not found" #'name)))))))
((maybe-array-range) (cadr type))
((func-inline-list) (make-state (list))))
(with-syntax* ((index-exp (local-expand-opaque #'getter.index))
(index-start-expanded (if slice-colon_
(if (syntax->datum #'getter.index-start)
(local-expand-opaque #'getter.index-start)
(is-type_ 'int-index #'0))
#f))
(index-end-expanded (if slice-colon_
(if (syntax->datum #'getter.index-end)
(local-expand-opaque #'getter.index-end)
(is-type_ 'int-index (datum->syntax stx (car maybe-array-range))))
#f))
(value-exp_ (extract
(local-expand
#`(syntax-parameterize
;; NOTE: func-call mutate list inside state. Resulted list
; constains spliced actions list of inlined functions
; called in the right-hand side of the current assignation
((func-call-box #,func-inline-list))
value) 'expression (list))))
(value-exp #'value-exp_))
(define value-type (syntax-property #'value-exp_ 'landau-type))
(define-values
(value-base-type value-range)
(match value-type
((list b (list n)) (values b n))
(b (values b #f))))
#| (displayln (format "value-type ~a value-base-type ~a value-range ~a" value-type value-base-type value-range)) |#
;; NOTE: Indexes are resolved at zeroth pass
(let* ((err-msg "index must be an integer expression of constants and loop variables")
(throw-if-not-int-index
(lambda (idx-stx idx-expanded-stx)
(unless (equal? (syntax-property idx-expanded-stx 'landau-type) 'int-index)
(raise-syntax-error #f err-msg idx-stx)))))
(when (syntax->datum #'getter.index)
(throw-if-not-int-index #'getter.index #'index-exp))
(when (and (not slice-colon_) (is-slice? value-type))
(raise-syntax-error
#f
"the right-hand expression is a slice, but the left-hand one is not. A slice must be assigned to a slice"
stx))
(when slice-colon_
(when (syntax->datum #'index-start-expanded)
(throw-if-not-int-index #'getter.index-start #'index-start-expanded))
(when (syntax->datum #'index-end-expanded)
(throw-if-not-int-index #'getter.index-end #'index-end-expanded))))
#| (displayln (format "~a func-inline-list:" name_)) |#
#| (pretty-print (read-state func-inline-list)) |#
;; FIXME use func-inline-list in generation
;; NOTE: code generation part
(with-syntax (;; NOTE: list of assignations of inlined functions called in the right-hand side
(func-inline-list-stx (datum->syntax stx `(#%datum ,(read-state func-inline-list))))
(name-symb (var-symbol
(symbol->string (syntax->datum #'name))
src-pos)))
#| (displayln "func-inline-list-stx") |#
#| (pretty-print #'func-inline-list-stx) |#
(let ((assign-label
(cond
((and (equal? func-name name_) (equal? func-basic-type 'real))
'func-assign)
(else 'assign))))
(cond
((syntax->datum #'getter.index)
(begin
(when (equal? maybe-array-range '())
(raise-syntax-error #f (format "Variable ~a is not an array." name_) #'name))
(with-syntax* ((index-expanded
(local-expand-opaque #'getter.index))
(expanded-range
(cadr
(syntax->datum
(local-expand
(datum->syntax #'getter.index maybe-array-range) 'expression (list))))))
;; NOTE: (cadr (cadr ... because expanded looks like that: '(#%app '4)
;; NOTE: can't do check in transmormer phase because loop variable is not resolved by that time.
;; Need to insert check-bounds code in generated code
(quasisyntax/loc
stx
(if (fx>= #,#'index-expanded #,#'expanded-range)
(raise-syntax-error
#f
(format "index ~a out of range: expect [0, ~a)"
#,#'index-expanded
#,#'expanded-range)
#'#,stx)
(list
#,#'func-inline-list-stx
(list '#,assign-label (list 'array-ref name-symb #,#'index-expanded) value-exp)))))))
(slice-colon_
(let ((slice-idx-symb 'slice_idx))
(when (equal? maybe-array-range '())
(raise-syntax-error #f (format "Variable ~a is not an array." name_) #'name))
(with-syntax* ((slice-idx-synt (datum->syntax stx slice-idx-symb))
(expanded-range
(cadr
(syntax->datum
(local-expand (datum->syntax #'stx maybe-array-range) 'expression (list)))))
(index-start-expanded_ (if (atom-number #'index-start-expanded)
(atom-number #'index-start-expanded)
#'index-start-expanded))
(index-end-expanded_ (if (atom-number #'index-end-expanded)
(atom-number #'index-end-expanded)
#'index-end-expanded))
(lvalue-slice-range #'(fx- index-end-expanded_
index-start-expanded_))
(rvalue-slice-range value-range))
(quasisyntax/loc
stx
(begin
(when (fx< #,#'index-start-expanded 0)
(raise-syntax-error
#f
(format "index must be nonnegative, given: ~v"
#,#'index-start-expanded)
#'#,stx))
(when #,#'rvalue-slice-range
(unless (fx= #,#'lvalue-slice-range #,#'rvalue-slice-range)
(raise-syntax-error
#f
(format "can not cast right-hand side range ~v to the left-hand side range ~v"
#,#'rvalue-slice-range
#,#'lvalue-slice-range)
#'#,stx)))
(when (fx> #,#'index-end-expanded #,#'expanded-range)
(raise-syntax-error
#f
(format "slice end index ~a is out of range: expect [0, ~a)"
#,#'index-end-expanded
#,#'expanded-range)
#'#,stx))
(list
#,#'func-inline-list-stx
(for/list ((slice-idx-synt (in-range 0 #,#'lvalue-slice-range)))
(list '#,assign-label
(list
'array-ref
name-symb
(fx+ #,#'index-start-expanded slice-idx-synt))
value-exp))))))))
(else
(quasisyntax/loc stx
(list
#,#'func-inline-list-stx
(list '#,assign-label (list 'array-ref name-symb 0) value-exp))))))))))))
(define-syntax (decl-block stx)
(syntax-parse stx
[(_ body ...)
(syntax/loc stx
(list body ...))]))
(define-syntax (var-decl stx)
(syntax-parse stx
(({~literal var-decl};; if expr is array get-value, then emit declaration and assigantion syntax objects
((~literal type) ((~literal array-type) basic-type "[" num "]")) name:id (~seq "=" value:expr))
(datum->syntax stx `(decl-block
(var-decl (type (array-type ,#'basic-type "[" ,#'num "]")) ,#'name)
(assignation ,#'name "[" ":" "]" "=" ,#'value))))
(({~literal var-decl}
type:expr name:id (~optional (~seq "=" value:expr)
#:defaults ((value #'notset))))
(let* ((name_ (syntax->datum #'name))
(type-datum (syntax->datum #'type))
(type (to-landau-type stx (parse-type type-datum)))
(name-vs (var-symbol (symbol->string name_) (syntax-position #'name))))
(check-duplicate-variable-name name_ #'name)
(add-variable! (syntax-parameter-value #'current-variables) #'name type)
#| (add-real-var! #'name type stx (syntax-parameter-value #'real-vars-table)) |#
(if (equal? (syntax->datum #'value) 'notset)
(quasisyntax/loc stx
(list 'var-decl #,name-vs '#,(to-landau-type stx type)))
(quasisyntax/loc stx
(list
(list 'var-decl #,name-vs '#,(to-landau-type stx type))
#,(datum->syntax
stx `(assignation ,#'name "=" ,#'value)) )))))))
;; NOTE: Copied from semantics. Maybe need to reduce code duplication
(define-for-syntax (check-duplicate-constant name stx)
(when (hash-has-key? constants name)
(raise-syntax-error #f "duplicate constant declaration" stx)))
(define-for-syntax (check-duplicate-parameter name stx)
(when (hash-has-key? parameters name)
; (print parameters)
(raise-syntax-error #f "duplicate parameter declaration" stx)))
;; TODO: change int to int-index and prohibit int arrays
(define-syntax (constant stx)
(syntax-parse stx
(({~literal constant} "const" type name:id "=" (~or value:expr (~seq "{" ({~literal parlist} arr-item*:par-spec ...) "}")))
(let* ((type-parsed (parse-type (syntax->datum #'type)))
(base-type (car type-parsed))
(type (if (and (not (is-array-type? type-parsed))
(equal? base-type 'int))
(list 'int-index (cadr type-parsed))
type-parsed)))
; (displayln #'(list par ...))
(check-duplicate-constant (syntax->datum #'name) stx)
(cond
((is-array-type? type-parsed)
(begin
(when (or (equal? base-type 'int)
(equal? base-type 'int-index))
(raise-syntax-error #f "integer constant arrays are not implemented" stx))
(let*
((expanded-list
(for/list ((arr-item (in-list (syntax-e #'(arr-item*.par-value ...)))))
(begin
(local-expand-opaque arr-item)))
))
(hash-set! constants (syntax->datum #'name)
(constant 'constant-name-placeholder type 'constant-array-placeholder))
(syntax/loc stx '()))))
(else
(let* ((expanded (local-expand-opaque #'value))
(value (atom-number expanded))
(value-type (syntax-property expanded 'landau-type))
(value
(cond
((and (equal? base-type 'int-index) (equal? value-type 'real))
(raise-syntax-error #f "real value is not allowed for integer constant" stx))
((and (equal? base-type 'real) (equal? value-type 'int-index))
(exact->inexact value))
(else value))))
(hash-set! constants (syntax->datum #'name)
(constant value type #f))
(syntax/loc stx '())))
)))))
(define-syntax (parameter stx)
(syntax-parse stx
(({~literal parameter} "parameter" "[" size "]" name:id)
(check-duplicate-parameter (syntax->datum #'name) stx)
(let* ((expanded-size (local-expand-opaque #'size)))
(hash-set! parameters (syntax->datum #'name)
(list expanded-size))
(syntax/loc stx '())))))
(define-syntax (print stx)
(syntax-parse stx
(({~literal print} "print" str expr)
(begin
;; FIXME: Check if slice
(syntax/loc stx '())))
(({~literal print} "print" expr)
(begin
;; FIXME: Check if slice
(syntax/loc stx '())))))
(define-syntax (for-expr stx)
(syntax-parse stx
[ (_ "for" ({~literal loop-var-decl} name:id "=" "[" start:expr ":" stop:expr "]") pat:expr-body-cls)
(let ((name_ (syntax->datum #'name))
(type (list 'int-index '())))
(check-duplicate-variable-name name_ #'name)
(let* ((new-vars-layer (new-variables-nesting
(syntax-parameter-value #'current-variables)))
(sym (add-variable! new-vars-layer #'name type))
(err-msg "Only integer expressions of constant and loop variables are allowed for ranges"))
(with-syntax ([symm (datum->syntax stx sym)]
[start-val (local-expand-opaque #'start)]
[stop-val (local-expand-opaque #'stop)])
(throw-if-not-type 'int-index #'start-val err-msg)
(throw-if-not-type 'int-index #'stop-val err-msg)
(quasisyntax/loc stx
(begin
;(writeln (format "stop-val: ~v" (syntax->datum #'stop-val)))
(syntax-parameterize
[(current-variables
'#,new-vars-layer)]
(for/list ([symm (in-range start-val stop-val)])
pat.body)))))))]))
(define-syntax (bool-expr stx)
(syntax-parse stx
[(_ b-expr1 "or" b-expr2) #'(or b-expr1 b-expr2)]
[(_ b-term) #'b-term]))
(define-syntax (bool-term stx)
(syntax-parse stx
[(_ b-term1 "and" b-term2) #'(and b-term1 b-term2)]
[(_ b-factor) #'b-factor]))
(define-syntax (bool-factor stx)
(syntax-parse stx
[(_ "(" b-expr ")") #'b-expr]
[(_ "(" n1 ({~literal comp-op} op) n2 ")")
(with-syntax* (
(val1 (local-expand-opaque #'n1))
(val2 (local-expand-opaque #'n2)))
(throw-if-not-type 'int-index #'val1 "Only 'int allowed inside the `if` condition.")
(throw-if-not-type 'int-index #'val2 "Only 'int allowed inside the `if` condition.")
(quasisyntax/loc stx #,(match (syntax->datum #'op)
["==" (syntax/loc stx (equal? n1 n2))]
["!=" (syntax/loc stx (not(equal? n1 n2)))]
[">" (syntax/loc stx (> n1 n2))]
[">=" (syntax/loc stx (>= n1 n2))]
["<=" (syntax/loc stx (<= n1 n2))]
["<" (syntax/loc stx (< n1 n2))])))]
[(_ "not" b-factor) #'(not b-factor)]))
; TODO: Do I need to check if it is not using outer variables?
(define-syntax (if-expr stx)
(syntax-parse stx
[({~literal if-expr} "if" b-expr "{" body-true ... "}" "else" "{" body-false ... "}")
(syntax/loc stx
(match b-expr
[#f (list body-false ...)]
[#t (list body-true ...)]
[else (raise-syntax-error #f "not a boolean in if-expr")]))]
[({~literal if-expr} "if" b-expr "{" body ... "}")
(syntax/loc stx
(match b-expr
[#f '()]
[#t (list body ...)]
[else (raise-syntax-error #f "not a boolean in if-expr")]))]))
;; FIXME: check variable shadowing other functions names
(define-for-syntax (check-duplicate-variable-name name stx-name)
#| (displayln "FIXME: commented argument shadowing check") |#
(when (search-variable name (syntax-parameter-value #'current-variables))
(raise-syntax-error #f "duplicate variable declaration" stx-name))
(when (hash-has-key? constants name)
(raise-syntax-error #f "variable name shadows constant" stx-name))
(when (hash-has-key? parameters name)
(raise-syntax-error #f "variable name shadows parameter" stx-name))
#| (when (hash-has-key? (syntax-parameter-value #'current-arguments) name) |#
#| (raise-syntax-error #f "variable name shadows argument" stx-name)) |#
(when (equal? (syntax-parameter-value #'function-name) name)
(raise-syntax-error #f "variable name shadows function" stx-name)))
(define-for-syntax (check-duplicate-argument-name args funcname name stx-name)
(when (equal? funcname name)
(raise-syntax-error #f "argument name shadows function" stx-name))
(when (hash-has-key? parameters name)
(raise-syntax-error #f "variable name shadows parameter" stx-name))
(when (hash-has-key? args name)
(raise-syntax-error #f "duplicate argument" stx-name))
(when (hash-has-key? constants name)
(raise-syntax-error #f "argument name shadows constant" stx-name)))
(define-for-syntax (search-function name)
(let*
((name_ (syntax->datum name))
(err-msg "Derivative can be written only to the real function return variable")
(type_
(cond
((hash-has-key? constants name_)
(raise-syntax-error
#f
err-msg #'name))
(else
(let ((var (search-variable
name_ (syntax-parameter-value #'current-variables))))
(cond
(var
(raise-syntax-error
#f
err-msg #'name))
(else
(let ((arg (search-argument
name_ (syntax-parameter-value #'current-arguments))))
(cond
(arg
(raise-syntax-error
#f
err-msg #'name))
((equal? (syntax-parameter-value #'function-name) (syntax->datum name))
(syntax-parameter-value #'function-return-type))
(else
(raise-syntax-error #f "name not found" name)))))))))))
type_))
(define-for-syntax (search-arg-or-parameter name)
(let*
((name_ (syntax->datum name))
(type_
(cond
((hash-has-key? constants name_)
(raise-syntax-error
#f
"constant can not be inside the derivative anotation or application. Expect a real argument." name))
(else
(let ((var (search-variable
name_ (syntax-parameter-value #'current-variables))))
(cond
(var
(raise-syntax-error
#f
"Variable can not be inside the derivative anotation or application. Expect a real argument." name))
(else
(let ((arg (search-argument
name_ (syntax-parameter-value #'current-arguments))))
(cond
(arg
(argument-type arg))
((equal? (syntax-parameter-value #'function-name) (syntax->datum name))
(syntax-parameter-value #'function-return-type))
((hash-has-key? parameters name_) (list 'real (hash-ref parameters name_)))
(else
(raise-syntax-error #f "name not found" name)))))))))))
type_))
(define-for-syntax (search-var name)
(let*
((name_ (syntax->datum name))
(type_
(cond
((hash-has-key? constants name_)
(raise-syntax-error
#f
"constant can not be inside the derivative annotation or discard. Expect a real argument or a variable."
name))
(else
(let ((var (search-variable
name_ (syntax-parameter-value #'current-variables))))
(cond
(var
(variable-type var))
(else
(let ((arg (search-argument
name_ (syntax-parameter-value #'current-arguments))))
(cond
(arg
(argument-type arg))
((equal? (syntax-parameter-value #'function-name) (syntax->datum name))
(syntax-parameter-value #'function-return-type))
(else
(raise-syntax-error #f "name not found" name)))))))))))
type_))
(define-for-syntax (check-if-real name type err-msg)
(unless (equal? type 'real)
(raise-syntax-error #f err-msg name)))
(define-for-syntax (check-real-func-existence name (get-range #f))
(define err-msg "Derivative can be written only to the real function return variable")
(define type (any->expanded-type (search-function name) name))
(define type-base (get-type-base type))
(define type-range (get-type-range type))
(check-if-real name type-base err-msg)
(if get-range
(if (equal? type-range '())
#f
type-range)
type))
;; TODO same function as check-real-func-existence except err-msg. Refactor.
(define-for-syntax (check-real-arg-or-parameter-existence name [get-range #f])
(define err-msg "only real function arguments are allowed be inside the derivative anotation or application")
(define type-like-anything (search-arg-or-parameter name))
(define type (any->expanded-type type-like-anything name))
(define type-base (get-type-base type))
(define type-range (get-type-range type))
(check-if-real name type-base err-msg)
(if get-range
(if (equal? type-range '())
#f
type-range)
type))
;; TODO same function as check-real-func-existence except err-msg. Refactor.
(define-for-syntax (check-real-var-existence name [get-range #f])
(define err-msg "only real arguments or variables are allowed be inside the derivative discard")
(define type (any->expanded-type (search-var name) name))
(define type-base (get-type-base type))
(define type-range (get-type-range type))
(check-if-real name type-base err-msg)
(if get-range
(if (equal? type-range '())
#f
type-range)
type))
(define-syntax (get-derivative stx)
(syntax-parse stx
((_ get-value-1 "'" get-value-2)
(syntax/loc stx (list 'get-derivative get-value-1 get-value-1)))))
;; NOTE:
;; non-array dx arguments are casted to single-cell array
| true |
43a6429c16a89cba0223513ed3a26f2be3e33091 | 1a328ee76c68df01ce7202c36cfa5b2be8635f19 | /info.rkt | 0dcbcb0adfe08acb77a79827fe96df8993ba6dc0 | [
"MIT"
]
| permissive | alan-turing-institute/nocell-prototype | 588ba4c5d1c75bedbe263d5c41383d2cf2c78ff3 | f7cf876611b3bd262c568aff6a5e3401b15fb4a7 | refs/heads/master | 2023-07-15T17:33:16.912043 | 2021-09-03T14:37:46 | 2021-09-03T14:37:46 | 155,192,911 | 3 | 1 | MIT | 2020-09-15T10:53:44 | 2018-10-29T10:27:03 | Racket | UTF-8 | Racket | false | false | 342 | rkt | info.rkt | #lang info
(define collection "nocell")
(define deps '("base" "rackunit-lib" "parsack" "sxml" "git://github.com/rmculpepper/gamble"))
(define pkg-desc "A language for building probabilistic spreadsheets")
(define version "0.0")
(define pkg-authors '(ots22 tamc triangle-man))
(define scribblings '(("scribblings/nocell.scrbl" (multi-page))))
| false |
2a3be3febc38ca342d3282309393f72c99cac103 | 799b5de27cebaa6eaa49ff982110d59bbd6c6693 | /soft-contract/utils/syntax.rkt | be8a252813a9ac2320328e645f651ad7fe70a931 | [
"MIT"
]
| permissive | philnguyen/soft-contract | 263efdbc9ca2f35234b03f0d99233a66accda78b | 13e7d99e061509f0a45605508dd1a27a51f4648e | refs/heads/master | 2021-07-11T03:45:31.435966 | 2021-04-07T06:06:25 | 2021-04-07T06:08:24 | 17,326,137 | 33 | 7 | MIT | 2021-02-19T08:15:35 | 2014-03-01T22:48:46 | Racket | UTF-8 | Racket | false | false | 107 | rkt | syntax.rkt | #lang racket/base
(provide (all-defined-out))
(define (in-syntax-list stx) (in-list (syntax->list stx)))
| false |
df0ef747e8a4b8b2844a1e612f40b7835087a4be | 0884f0d8c2cd37d8e3a6687e462862e4063b9aa4 | /src/trove/json.js.rkt | 57a4c3f017d3f7771c92644d07b41648ea9624cb | []
| no_license | brownplt/pyret-docs | 988becc73f149cbf2d14493c05d6f2f42e622130 | 6d85789a995abf8f6375cc7516406987315972d1 | refs/heads/horizon | 2023-08-17T03:32:51.329554 | 2023-08-10T20:44:14 | 2023-08-10T20:44:14 | 61,943,313 | 14 | 20 | null | 2023-09-12T20:40:41 | 2016-06-25T12:57:24 | Racket | UTF-8 | Racket | false | false | 2,691 | rkt | json.js.rkt | #lang scribble/base
@(require "../../scribble-api.rkt" "../abbrevs.rkt")
@(define (sref s)
(a-id s (xref "json-structs" s)))
@(append-gen-docs
'(module "json"
(path "build/phase1/trove/json.js")
(fun-spec (name "j-obj") (arity 0))
(fun-spec (name "j-arr") (arity 0))
(fun-spec (name "j-num") (arity 0))
(fun-spec (name "j-str") (arity 0))
(fun-spec (name "j-bool") (arity 0))
(fun-spec (name "j-null") (arity 0))
(fun-spec (name "is-j-obj") (arity 1))
(fun-spec (name "is-j-arr") (arity 1))
(fun-spec (name "is-j-num") (arity 1))
(fun-spec (name "is-j-str") (arity 1))
(fun-spec (name "is-j-bool") (arity 1))
(fun-spec (name "is-j-null") (arity 1))
(fun-spec (name "read-json") (arity 1))
))
@docmodule["json"]{
@ignore[(list "j-obj" "j-arr" "j-num" "j-str" "j-bool" "j-null")]
@para{
This module re-exports the constructors from @sref["JSON"],
which defines the result of parsing a JSON expression.
}
@function["read-json" #:args '(("json-str" ""))
#:contract (a-arrow (a-id "String" (xref "<global>" "String"))
(a-id "JSON" (xref "json-structs" "JSON")))]{
Reads a @emph{JSON expression} as a string, and returns it as a Pyret value.
A JSON expression is a string that satisfies the following grammar:
@verbatim{
JSON = "{" <string> ":" JSON "," ... <string> ":" JSON "}"
| "[" JSON "," ... JSON "]"
| <number>
| <string>
| <boolean>
| null
}
The first form parses to a @sref["j-obj"] containing a
@(a-id StringDict (xref "string-dict" StringDict)) with the strings
before the colons as keys and the results of converting the JSON
expressions after the colons as values.
The second form parses to a @sref["j-arr"] containing the nested
sub-expression results as a list.
Numbers become @sref["j-num"]s, strings become
@sref["j-str"]s, the strings @pyret{true} and @pyret{false} become
@sref["j-bool"]s, and the string @pyret{null} becomes @sref["j-null"].
@examples{
import json as J
import string-dict as SD
p = J.read-json
check:
p("0") is J.j-num(0)
p('"a"') is J.j-str("a")
p("[]") is J.j-arr([list:])
p("{}") is J.j-obj([SD.string-dict:])
p("true") is J.j-bool(true)
p("false") is J.j-bool(false)
p("null") i J.j-null
p('{"foo": 1, "baz": true}') is
J.j-obj([SD.string-dict: "foo", J.j-num(1), "baz", J.j-bool(true)])
p('[1,2,3]') is J.j-arr([list: J.j-num(1), J.j-num(2), J.j-num(3)])
p('[[[]]]') is J.j-arr([list: J.j-arr([list: J.j-arr([list:])])])
p('[5, null, {"hello": "world"}]') is
J.j-arr([list: J.j-num(5), J.j-null,
J.j-obj([SD.string-dict: "hello", J.j-str("world")])])
end
}
| false |
6be0fa64ab101b78ed162e920c56c2f18285c099 | 92b6b71dfad391a4fa2899b3ffdb7a349a3ee832 | /Player/strategy-interface.rkt | 0344c3e8251c9f3cc99641e714d207cc0aa13b7e | [
"Apache-2.0"
]
| permissive | Gnaily/Fish | e62aa9c57a12aed1d5e7340eaa51cefc3dddb288 | 9ecc45c09de57aab8d0598d98e658757180e8793 | refs/heads/master | 2023-05-15T09:14:27.240830 | 2021-06-11T00:50:02 | 2021-06-11T00:50:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 9,496 | rkt | strategy-interface.rkt | #lang racket
;; specify a strategt class with contract
;; A strategy is defined as two methods:
;; -- one for helping a player pick a place during the placement phase of the game
;; -- another for helping a player move a penguin to a new place during the proper playing phase.
;; also provide some common auxiliaries for defining strategies:
;; -- a selection function for filtering results compared to some value
;
;
; ; ;;;
; ; ;
; ;;; ; ; ;;;;; ;;; ;;;; ; ;; ;;;; ;
; ;; ; ; ; ; ;; ; ;; ; ;; ; ; ;
; ; ;; ;;; ; ; ;; ; ; ; ; ;
; ;;;;;; ; ; ;;;;;; ; ; ; ;;;; ;
; ; ;;; ; ; ; ; ; ; ; ;
; ; ; ; ; ; ; ; ; ; ; ;
; ;;;; ; ; ;;; ;;;; ; ; ; ;;;; ;;
;
;
;
(require (only-in Fish/Common/rules tree?))
(require (only-in Fish/Common/game-state fishes? turn? move/c))
(require (only-in Fish/Common/board posn/c))
(provide
(contract-out
(base-strategy%
(class/c
(place-penguin
;; place a penguin on an available position, searching from the origin going right, then down
(->m fishes? posn/c))
(move-penguin
;; SANITY CHECK: the color of this player is the color of the first player in the state
;; reteturn action, lexicograpphically closest to ORIGIN
#; #false ;; -- when the state is final
#; turn? ;; -- when a player can skip or move
(->m tree? (or/c #false turn?)))
(inner
(choose
;; abstract
;; chooses an element of the list using the given tie-breaker function
(->m real? (-> [listof any/c] any) [listof [list/c any/c real?]] any/c)))
(evaluate
;; abstract
;; determines the value of a turn that ends up in the given tree situation
{->m turn? tree? real?})))
(select
#;(select r cmp l)
;; select the elements x of l for which (cmp r x) holds
(-> real? (-> real? real? boolean?) (listof (list/c any/c real?)) (listof any/c)))))
;
; ; ;
; ; ; ;
; ; ;
; ;;;; ;;; ;;;; ;;; ; ;; ;;;; ;;; ; ;; ;;; ;;; ;;; ;;;
; ;; ;; ;; ; ;; ;; ;; ; ;; ; ;; ;; ;; ; ;; ; ;; ; ; ;; ; ; ;
; ; ; ; ;; ; ; ; ;; ; ; ; ; ; ;; ; ; ; ; ; ;; ;
; ; ; ;;;;;; ; ; ;;;;;; ; ; ; ; ;;;;;; ; ; ; ; ;;;;;; ;;;
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;
; ;; ;; ; ;; ;; ; ; ; ;; ;; ; ; ; ;; ; ; ; ;
; ;;;; ;;;; ;;;; ;;;; ; ; ;;;; ;;;; ; ; ;;;; ;;;;; ;;;; ;;;
; ;
; ;
; ;
(require (except-in Fish/Common/rules tree?))
(require (except-in Fish/Common/game-state fishes? turn? move/c))
(require (except-in Fish/Common/board posn/c))
(module+ test
(require rackunit))
;
;
; ; ;
; ; ;
; ;;; ;;;;; ;;;; ;;;; ;;;;; ;;; ;;;; ; ;
; ; ; ; ;; ; ; ; ;; ; ;; ; ; ;
; ; ; ; ; ; ; ;; ; ; ; ;
; ;;; ; ; ;;;; ; ;;;;;; ; ; ; ;
; ; ; ; ; ; ; ; ; ; ; ;
; ; ; ; ; ; ; ; ; ;; ;; ;;
; ;;; ;;; ; ;;;; ;;; ;;;; ;;;; ;
; ; ;
; ; ; ;
; ;; ;;
(define base-strategy%
(class object%
(super-new)
;; use left-to-right, top-down traversal to find the first highest-value spot
(define/public (place-penguin s)
(define spot* (state-board-traverse s board-lr-td (λ (x y) (list y x))))
(when (empty? spot*)
(error 'place-penguin "not enough spots for placing penguins"))
(choose first spot*))
(define/public (move-penguin t)
(cond
[(final? t) #false]
[else
(define steps+value (map-branches t 0 (λ (trn tree) (evaluate trn tree))))
(choose tie-breaker steps+value)]))
(define/public (evaluate trn tree)
0)
(define/pubment (choose tie-breaker steps+value)
(define the-max (max-map second steps+value))
(define others
(inner (error 'base-strategy% "abstract method: choose")
choose
the-max tie-breaker steps+value))
(if (empty? others) (tie-breaker (select the-max = steps+value)) (random-choice others)))))
(define (max-map f lox) (apply max (map f lox)))
(define (select the-max = fish-steps)
(filter-map (λ (x) (and (= (second x) the-max) (first x))) fish-steps))
#; {[NEListof X] -> X}
(define (random-choice lst)
(list-ref lst (random (length lst))))
;
;
; ; ; ;
; ; ; ;
; ; ; ;
; ;;;;;; ;;; ;;;; ; ;;; ;;;; ;;;; ;;; ; ; ;;;; ;;;;
; ; ; ; ; ;; ;; ;; ; ; ; ; ; ; ; ; ; ;; ;
; ; ; ;;;;;; ; ; ; ;;;;;; ; ;;; ;;;;;; ;
; ; ; ; ; ; ; ; ;;;;; ;;; ; ;
; ; ; ; ; ; ; ; ; ; ; ; ; ;
; ; ; ;; ; ;; ;; ; ;; ; ; ;; ; ; ;; ; ;
; ;;; ;;;;; ;;;;; ; ;;; ; ;;;;; ;;; ; ; ; ;;;;; ;
;
;
;
;
#;
(tie-breaker
;; implemen a tie breaker if there are serveal equally valued player actions:
;; in order, apply the following "filters" to reduce the list:
;; top-most row of `from` field, `left-most` column of `from`, top-most for `to`, left-most for to
(-> (and/c (listof turn?) cons?) turn?))
(define (tie-breaker lop)
(define-syntax whittle-down-to-1
(syntax-rules ()
[(_ x)
(cond [(empty? (rest x)) (first x)] [else (error 'tie-breaker "catastrophe!! ~a" x)])]
[(_ x f g ...)
(cond [(empty? (rest x)) (first x)] [else (define y (f x)) (whittle-down-to-1 y g ...)])]))
(whittle-down-to-1
lop
(closest-to-origin-by posn-row first)
(closest-to-origin-by posn-column first)
(closest-to-origin-by posn-row first flip-from-and-to)
(closest-to-origin-by posn-column first flip-from-and-to)))
#; { [Lisy Posn Posn] -> [List Posn Posn] }
(define flip-from-and-to [match-lambda [[list from to] [list to from]]])
#; { {Listof (->) [List Posn Posn]} -> [List Posn Posn] }
(define ((closest-to-origin-by . sel*) lop)
(define sel (apply compose sel*))
(define sorted-by-row (sort lop < #:key sel))
(define lowest-row (sel (first sorted-by-row)))
(define all-lowest (takef sorted-by-row (λ (x) (= (sel x) lowest-row))))
all-lowest)
;; ---------------------------------------------------------------------------------------------------
(module+ test
(define just-0-0 '[[0 1][0 3]])
(check-equal? (tie-breaker `{,just-0-0}) just-0-0 "a")
(check-equal? (tie-breaker `{ [[0 1] [0 8]] [[0 1] [0 3]] [[1 0] [2 0]] }) just-0-0 "b")
(check-equal? (tie-breaker `{ [[0 1] [0 8]] [[0 1] [0 3]] }) just-0-0 "c")
(check-equal? (tie-breaker '{ [[0 1] [2 0]] [[0 1] [3 0]] }) '[ [0 1] [2 0] ] "BUG")
(check-exn #px"catastrophe" (λ () (tie-breaker `{ [[0 1] [0 3]] [[0 1] [0 3]] }))))
;; ---------------------------------------------------------------------------------------------------
| true |
373f9b746c8192eb9c4e59148cfb5695ffbcdac4 | 0d4287c46f85c3668a37bcb1278664d3b9a34a23 | /陈乐天/Week1/homework1-c.rkt | f41e39f1b210c94c584fa6451540a2eaf386ed04 | []
| no_license | siriusmax/Racket-Helper | 3e55f8a69bf005b56455ab386e2f1ce09611a273 | bf85f38dd8d084db68265bb98d8c38bada6494ec | refs/heads/master | 2021-04-06T02:37:14.261338 | 2017-12-20T04:05:51 | 2017-12-20T04:05:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 801 | rkt | homework1-c.rkt | #lang racket
(define (outerloop i n numbers)
(define (my-list-ref list position)
(if (or (< position 0) (>= position (length list)))
0
(list-ref list position)))
(define (innerloop j newnumbers)
(if (= j i)
(begin (display #\newline) newnumbers)
(begin
(let ((newitem (+ (my-list-ref numbers j) (my-list-ref numbers (- j 1)))))
(if (= j 0)
(void)
(display " "))
(display newitem)
(innerloop (+ j 1) (append newnumbers (list newitem)))))))
(define newnumbers (innerloop 0 empty))
(if (= i n)
(void)
(outerloop (+ i 1) n newnumbers)))
(define (loop)
(let ((n (read)))
(if (eq? n eof)
(void)
(begin (outerloop 1 n (list 1)) (loop)))))
(loop) | false |
83b2177e20d502852b921ba25e0216d0287237b2 | 0d4287c46f85c3668a37bcb1278664d3b9a34a23 | /陈乐天/Week2/homework2-07.rkt | 0edef0a5102578e13d97aaca8f09d9fc303e59a3 | []
| no_license | siriusmax/Racket-Helper | 3e55f8a69bf005b56455ab386e2f1ce09611a273 | bf85f38dd8d084db68265bb98d8c38bada6494ec | refs/heads/master | 2021-04-06T02:37:14.261338 | 2017-12-20T04:05:51 | 2017-12-20T04:05:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 290 | rkt | homework2-07.rkt | #lang racket
(define (dowork a)
(if (pair? a)
(append (dowork (car a)) (dowork (cdr a)))
(if (null? a)
empty
(list a))))
(define (myloop)
(let ((a (read)))
(if (eq? a eof)
(void)
(begin (displayln (dowork a)) (myloop)))))
(myloop) | false |
95741ccd400bb5410390c666d442394bfc233bb6 | bb6ddf239800c00988a29263947f9dc2b03b0a22 | /solutions/exercise-1.12.rkt | 0528932fb570635ab70fe39b06fe1537a640fd9d | []
| no_license | aboots/EOPL-Exercises | f81b5965f3b17f52557ffe97c0e0a9e40ec7b5b0 | 11667f1e84a1a3e300c2182630b56db3e3d9246a | refs/heads/master | 2022-05-31T21:29:23.752438 | 2018-10-05T06:38:55 | 2018-10-05T06:38:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 617 | rkt | exercise-1.12.rkt | #lang eopl
;; Exercise 1.12 [★] Eliminate the one call to subst-in-s-exp in subst by replacing it by its definition and
;; simplifying the resulting procedure. The result will be a version of subst that does not need subst-in-s-exp. This
;; technique is called inlining, and is used by optimizing compilers.
(define subst
(lambda (new old slist)
(if (null? slist)
'()
(cons (let ([sexp (car slist)])
(if (symbol? sexp)
(if (eqv? sexp old) new sexp)
(subst new old sexp)))
(subst new old (cdr slist))))))
(provide subst)
| false |
f9cdb5b64538e689ba61cc44aed06c8b741cb0ac | 5f792140b853f40e3c7be559c2a412d7b8296c96 | /2021/day02/day02.rkt | 4ccfa5b1eb5de9aa4c7b936beb3521df208c63f2 | [
"Unlicense"
]
| permissive | winny-/aoc | 9d53666faf341f1cc2016a3d21e93d7f4064a72b | f986cacf14d81d220030bca94e99ec8179861e1b | refs/heads/master | 2022-12-05T00:19:47.570034 | 2022-12-04T09:55:11 | 2022-12-04T09:55:11 | 225,185,486 | 7 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,074 | rkt | day02.rkt | #lang racket
(struct Instruction [what mag] #:transparent)
(define (read-instruction [ip (current-input-port)])
(match* ((read) (read))
[((? eof-object? e) _) e]
[(_ (? eof-object? e)) e]
[(what mag) (Instruction what mag)]))
(define (part1 ls)
(for/fold ([hor 0]
[dep 0]
#:result (* hor dep))
([i ls])
(match-define (struct Instruction (what msg)) i)
(match what
['forward (values (+ msg hor) dep)]
['up (values hor (- dep msg))]
['down (values hor (+ dep msg))])))
(define (part2 ls)
(for/fold ([hor 0]
[dep 0]
[aim 0]
#:result (* hor dep))
([i ls])
(match-define (struct Instruction (what msg)) i)
(match what
['forward (values (+ msg hor) (+ dep (* aim msg)) aim)]
['up (values hor dep (- aim msg))]
['down (values hor dep (+ aim msg))])))
(module+ main
(define ls (port->list read-instruction))
(part1 ls)
(part2 ls))
;; Local Variables:
;; compile-command: "racket day02.rkt < sample.txt"
;; End:
| false |
d0ec0b294376567395db286528dde340eb011b0a | 984517f608fbf27db901c8800ec95945be9c12c8 | /fun-calls/L3/semantics.rkt | 3f42e035f18e9774b486da980fe096d5642f319a | []
| no_license | daniellerozenblit/mystery-languages | 0bd0e33f88d664e642aa3ee7db940eeccafd2770 | dfa6cd5e35b4b2e7dcc8b376b67cbac8e3acf89c | refs/heads/master | 2022-12-13T22:33:12.581515 | 2020-09-09T13:04:24 | 2020-09-09T13:04:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,098 | rkt | semantics.rkt | #lang racket
(require [for-syntax syntax/parse] mystery-languages/utils mystery-languages/common)
(require [for-syntax racket])
(provide #%datum #%top)
(provide + - * /
< <= > >=
= <>
defvar
++
if and or not)
(provide deffun)
(provide [rename-out (cobol-app #%app)])
(provide [rename-out (wrapping-mb #%module-begin)])
(provide [rename-out (reset-top-level #%top-interaction)])
(define-syntax (wrapping-mb e)
(syntax-case e ()
[(_ d-or-e ...)
#'((reset-top-level d-or-e) ...)]))
(define-syntax (reset-top-level e)
(syntax-case e ()
[(deffun H B) e]
[(defvar V B)
#'(defvar V (reset-top-level e))]
[b
#'(begin (set! return-frames (box empty))
b)]))
(define-syntax (cobol-app e)
(syntax-case e ()
[(_ f a ...)
(with-syntax ([base-name (syntax->datum #'f)])
(if (member (syntax->datum #'f) (unbox locally-defined-functions))
#'(let ([return-point
(assoc 'base-name (unbox return-frames))])
(if return-point
((second return-point) (f a ...))
(begin0
(let/cc k
(set-box! return-frames
(cons (list 'base-name k)
(unbox return-frames)))
(f a ...))
(remove-frame 'base-name))))
#'(f a ...)))]))
(define-syntax (deffun stx)
(syntax-parse stx
[(_ (fname:id arg:id ...) body:expr ...+)
(with-syntax ([base-name (syntax->datum #'fname)])
(set-box! locally-defined-functions
(cons (syntax->datum #'fname) (unbox locally-defined-functions)))
#'(define (fname arg ...) body ...))]))
(define return-frames (box empty))
(define (remove-frame fun-name)
(set-box! return-frames
(remove fun-name
(unbox return-frames)
(λ (n p)
(equal? n (first p))))))
(define-for-syntax locally-defined-functions (box '()))
| true |
4caf0c3c720d012998a37bc8d66f7f9f814d43d5 | 2990b0841b63f300a722107933c01c7237a7976b | /all_xuef/程序员练级+Never/Fun_Projects/cs173-python/rython/python-objects.rkt | 0ca5aeb85432b411dbf3260e2324bd54184fad83 | []
| no_license | xuefengCrown/Files_01_xuef | 8ede04751689e0495e3691fc5d8682da4d382b4d | 677329b0189149cb07e7ba934612ad2b3e38ae35 | refs/heads/master | 2021-05-15T04:34:49.936001 | 2019-01-23T11:50:54 | 2019-01-23T11:50:54 | 118,802,861 | 1 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 11,817 | rkt | python-objects.rkt | #lang plai-typed
(require "python-core-syntax.rkt")
(define (obj-type)
(CObject (VStr "none")
(VNone)
(make-hash (list (values "%setattr"
(CFunc (list 'self 'id 'val) (CSetField
(CId 'self)
(CId 'id)
(CId 'val))))
(values "%getattr"
(CFunc (list 'self 'id) (CGetField
(CId 'self)
(CId 'id))))
(values "%eq"
(CFunc (list 'self 'id)
(CId 'False)))
(values "%ne"
(CFunc (list 'self 'id)
(CId 'False)))
(values "%gt"
(CFunc (list 'self 'id)
(CId 'False)))
(values "%ge"
(CFunc (list 'self 'id)
(CId 'False)))
(values "%lt"
(CFunc (list 'self 'id)
(CId 'False)))
(values "%le"
(CFunc (list 'self 'id)
(CId 'False)))
(values "%is"
(CFunc (list 'self 'id)
(CId 'False)))
))))
#|
(define (exn-type message)
(CObject (make-hash (list (values "%class"
(obj-type))
(values "%primval"
message)
(values "%str"
(CFunc empty message))
))))
|#
(define (none-type)
(CObject (VStr "none")
(VNone)
(make-hash (list (values "%class"
(obj-type))
(values "%str"
(CFunc (list 'self)
(%to-object (VStr "None"))))
))))
(define (str-type primval)
(CObject (VStr "string")
primval
(make-hash (list (values "%class"
(obj-type))
(values "%len"
(CFunc (list 'self)
(CPrim1 'len
(CId 'self))))
(values "%eq"
(CFunc (list 'self 'right)
(CPrim2 'seq
(CId 'self)
(CId 'right))))
(values "%ne"
(CFunc (list 'self 'right)
(CPrim2 'sne
(CId 'self)
(CId 'right))))
(values "%gt"
(CFunc (list 'self 'right)
(CPrim2 'sgt
(CId 'self)
(CId 'right))))
(values "%ge"
(CFunc (list 'self 'right)
(CPrim2 'sge
(CId 'self)
(CId 'right))))
(values "%lt"
(CFunc (list 'self 'right)
(CPrim2 'slt
(CId 'self)
(CId 'right))))
(values "%le"
(CFunc (list 'self 'right)
(CPrim2 'sle
(CId 'self)
(CId 'right))))
(values "%str"
(CFunc (list 'self) (CId 'self)))
))))
(define (int-type primval)
(CObject (VStr "int")
primval
(make-hash (list (values "%class"
(obj-type))
(values "%add" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'numplus
(CId 'self)
(CId 'right))))
(values "%sub" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'numsub
(CId 'self)
(CId 'right))))
(values "%mul" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'nummul
(CId 'self)
(CId 'right))))
(values "%div" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'numdiv
(CId 'self)
(CId 'right))))
(values "%floordiv" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'numfloordiv
(CId 'self)
(CId 'right))))
(values "%mod" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'nummod
(CId 'self)
(CId 'right))))
(values "%or" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'or
(CId 'self)
(CId 'right))))
(values "%and" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'and
(CId 'self)
(CId 'right))))
(values "%le" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'le
(CId 'self)
(CId 'right))))
(values "%lt" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'lt
(CId 'self)
(CId 'right))))
(values "%ge" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'ge
(CId 'self)
(CId 'right))))
(values "%gt" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'gt
(CId 'self)
(CId 'right))))
(values "%eq" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'eq
(CId 'self)
(CId 'right))))
(values "%is" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'eq
(CId 'self)
(CId 'right))))
(values "%ne" ;;assumes right side is an object
(CFunc (list 'self 'right)
(CPrim2 'ne
(CId 'self)
(CId 'right))))
(values "%not"
(CFunc (list 'self)
(CIf (CId 'self)
(CId 'False)
(CId 'True))))
(values "%str"
(CFunc (list 'self)
(%to-object (VStr (type-case PrimVal primval
[VNum (n) (to-string n)]
[else "42"])))))
))))
(define (bool-type primval)
(CObject (VStr "bool")
primval
(make-hash (list (values "%class"
(int-type primval))
(values "%str"
(CFunc (list 'self)
(%to-object (VStr
(type-case PrimVal primval
[VNum (n) (cond
[(= 0 n) "False"]
[else "True"])]
[else "True"])))))
))))
(define (%to-object (val : PrimVal)) : CExp
(type-case PrimVal val
[VNum (n) (int-type val)]
[VTrue () (bool-type (VNum 1))]
[VFalse () (bool-type (VNum 0))]
[VStr (s) (str-type val)]
;;[CError (exn) (exn-type exn)]
[else (error 'to-object "not implemented object yet")])) | false |
ea8276e87df283c32f29646a39d87979ed8e32e6 | c180d49b9f3785b2d0b75df262339aaae352639d | /_src/posts/2018-10-04-lab9.scrbl | a7567ff1592c6d9415f52949d457f4347074d40b | []
| no_license | abriggs914/CS2613 | 4180d304bf8e1fa0b5d675a341204e1ade65889f | aac085b409bb0e9fbd530274347f9f7bbed95694 | refs/heads/master | 2020-03-29T04:22:42.375054 | 2018-12-11T16:06:47 | 2018-12-11T16:06:47 | 149,317,591 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,325 | scrbl | 2018-10-04-lab9.scrbl | #lang scribble/manual
Title: Lab9
Date: 2018-10-04T12:17:54
Tags: Lab9
Today our lab was focused on Javascript again. Mainly on module testing, like in racket, and type conversion. This led us to the topic of binding and assigning values, between racket and JS. Although they are similar in that you can set a value to a variable and use it several times. One key difference is that once something is bound in racket, you can not change the type that it expects. In Js however, because data types are so lacks, we might not even get an error during executon. I also just like the syntax layout of JS assignments. the bracket and line spacing just looks better to me than racket's syntax.
We also have a pre-defined return value, in an assignment. Sometimes in racket, the return value can be anything. Personally I prefer the syntax to that of racket, because I can tell where and when the return is supposed to be called, but in racket, sometimes it is too easy to get caught in the brackets. I am also more comfortable running jasmine tests than that of a module+ test in racket. Jasmine seems to be user-friendly in that you can print multiple information lines and check that there was 100% line coverage. The GUI is easy to read and contains a lot of valuable information for checking the tests.
<!-- more -->
| false |
22699354b19ec6dab0d3df9125e0985d3997b1f2 | d1beee618d659e47b2e401a651040de2d7ab982f | /orm/base.rkt | d3c02b29c16cf1fa03b755434a2b77c07c294921 | []
| no_license | sindoc/metacima | 77cee62e71c7cdc0a4073f96cc87309938e7eb38 | ea07ac19e456b98c4d38b263888c6df9533b1464 | refs/heads/master | 2021-01-25T10:07:30.404313 | 2012-07-20T16:26:28 | 2012-07-20T16:28:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,874 | rkt | base.rkt | #lang racket
(require
(for-syntax
racket
"../common/utils/debug.rkt"
"public.rkt"
"../common/syntax.rkt")
"../common/syntax.rkt"
"public.rkt")
(provide
(all-defined-out)
(all-from-out
"public.rkt"))
(define-syntax (init-model stx)
(syntax-case stx (table)
((_ (table table-name))
(with-syntax
((orm-table (gensym "orm-table")))
#'(begin
(super-new)
(define orm-table
(make-orm-table (symbol->string table-name) null))
(define/override (orm:table) orm-table)
(define/public (notify callback field)
(unless (null? callback)
(apply
callback
(list
(send this orm:table)
field))))
(field* id 'id))))))
(define-for-syntax (fetch-joins props)
(define datum (syntax->datum props))
(define lst (if (null? datum) datum (car datum)))
(define found (assoc 'join lst))
(if (false? found)
#f
(make-orm-join (cadr found))))
(define-syntax (field* stx)
(syntax-case stx (join)
((_ name type . props)
(with-syntax
((name- (make-id stx "~a-" #'name))
(get-name (make-id stx "get-~a" #'name))
(set-name (make-id stx "set-~a" #'name))
(joins (fetch-joins #'props)))
#`(begin
(init (name null))
(define name- name)
(define/public (get-name) name-)
(define/public (set-name new-name (callback null))
(set! name- new-name)
(send this notify callback name-))
(let ((table (send this orm:table)))
(set-orm-table-columns!
table
(cons (apply make-orm-column
(list 'name name type (eq? type 'id) joins))
(orm-table-columns table))))))))) | true |
a4903171be3f20f984addc58ca7467661322d808 | 01aa2748b9bda8f85bf36e89805e0f0809c8a454 | /scripts/rules.rkt | 829f3e58cefcecdecd2347b2faca53d1600d2bc5 | []
| no_license | ShobhitSamuelSingh/ax | 45cf891f6b34946aa698261a29dfebf6478e7b1f | 5a7e4b9d2ef88b9d1910e5bcc0524c570c8dc490 | refs/heads/master | 2022-03-25T06:07:38.668439 | 2020-01-09T19:31:01 | 2020-01-09T19:52:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,201 | rkt | rules.rkt | #lang s-exp "./sexp-yacc.rkt"
#:start <top>
[<top> (init <init> ...)
#:after "end_init(s, it);\n"
(log <str>)
#:before "begin_log(it);\n"
(die <str>)
#:before "begin_die(it);\n"
(set-root <node>)
#:after "set_root(s, it);\n"]
[<init> (window-size <len> <len>)
#:before "begin_win_size(it);\n"]
[<node> (rect <r-attr> ...)
#:before "begin_node(it, AX_NODE_RECTANGLE);\n"
(container <c-children> <c-attr> ...)
#:before "begin_node(it, AX_NODE_CONTAINER);\n"
(text <str> <t-attr> ...)
#:before "begin_node(it, AX_NODE_TEXT);\nbegin_text(it);\n"]
[<r-attr> (size <len> <len>)
#:before "begin_rect_size(it);\n"
(fill <color>)
#:before "begin_fill(it);\n"
<flex-attr>]
[<c-children> (children <node> ...)
#:before "begin_children(it);\n"
#:after "end_children(it);\n"]
[<c-attr> (main-justify <justify>) #:before "begin_main_justify(it);\n"
(cross-justify <justify>) #:before "begin_cross_justify(it);\n"
(background <color>) #:before "begin_background(it);\n"
single-line #:op "cont_set_single_line(it, true);\n"
multi-line #:op "cont_set_single_line(it, false);\n"
<flex-attr>]
[<t-attr> (font <str>) #:before "begin_font(it);\n"
(color <color>) #:before "begin_text_color(it);\n"
<flex-attr>]
[<flex-attr> (grow <int>) #:before "begin_grow(it);\n"
(shrink <int>) #:before "begin_shrink(it);\n"
(self-cross-justify <justify>) #:before "begin_self_justify(it);\n"]
[<str> STR #:op "string(s, it, ~a);\n"]
[<int> INT #:op "integer(s, it, ~a);\n"]
[<len> <int>]
[<color> (rgb <int> <int> <int>) #:before "begin_rgb(it);\n"
<str>
none #:op "color(it, AX_NULL_COLOR);\n"]
[<justify> start #:op "justify(it, AX_JUSTIFY_START);\n"
end #:op "justify(it, AX_JUSTIFY_END);\n"
center #:op "justify(it, AX_JUSTIFY_CENTER);\n"
evenly #:op "justify(it, AX_JUSTIFY_EVENLY);\n"
around #:op "justify(it, AX_JUSTIFY_AROUND);\n"
between #:op "justify(it, AX_JUSTIFY_BETWEEN);\n"]
| false |
6b45b77d0967be48c8732f1810f636b150ec4d91 | 734ae96ec1d1dbabc614e0633f4e406245a6f443 | /tests/test-expander.rkt | 36a97d31ec5462fb2b0161b7847dafe1163f5af6 | [
"MIT"
]
| permissive | alehed/rex | 4f989e16d119e3223efc46ceae15f90de7e3e401 | e3b41f706b4b72ea5f168b0f2a2600d77ee07ea0 | refs/heads/master | 2021-01-12T13:12:40.033409 | 2018-06-10T11:18:43 | 2018-06-10T11:18:43 | 72,149,733 | 9 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 487 | rkt | test-expander.rkt | #lang racket/base
(require racket/contract
rackunit
rex/expander)
(define/contract (contains-range range char)
((listof (listof char?)) char? . -> . boolean?)
(and (char>=? char (car (car range)))
(char<=? char (cadr (car range)))))
(check-true (contains-range GLOB #\a))
(check-true (contains-range GLOB #\null))
(check-true (contains-range GLOB (integer->char 256)))
;; don't support unicode yet
(check-false (contains-range GLOB (integer->char 1000)))
| false |
970c4af63e14331ae9fc4250d7d200cb6361e3ea | f9d7d9fa5c4129d7f5f9dde67b5a418f5c0371d3 | /info.rkt | 87ba01e042b73956a04f390ede163afd277db8c5 | []
| no_license | kazzmir/x11-racket | 20f96394df9997b9b681f405492b9d0ac41df845 | 97c4a75872cfd2882c8895bba88b87a4ad12be0e | refs/heads/master | 2021-07-16T04:13:17.708464 | 2021-03-10T15:22:41 | 2021-03-10T15:22:41 | 6,407,498 | 8 | 1 | null | 2013-08-14T03:43:00 | 2012-10-26T17:14:33 | Racket | UTF-8 | Racket | false | false | 232 | rkt | info.rkt | #lang setup/infotab
(define collection 'multi)
(define deps '("base" "rackunit-lib" "compatibility-lib" "scheme-lib"))
(define test-omit-paths
'("x11/test" ; these are not actual tests
"xlambda/xlambda.rkt"
"main.rkt"))
| false |
f88f9619d8656296f167e71efa7255b1b8700f78 | f9a7eaaf181190c38519c71c2984a980363a160f | /example/space/define.rkt | adca7d5bcf549885f582712745137ebfbaa59070 | []
| no_license | racket-tw/pdb | 6e7f6dfe17dee970448a0e3696eff12691edb929 | 78492b8259ebe816cb9c16a3826541b3c8d51b6c | refs/heads/main | 2023-06-18T19:15:28.486126 | 2021-07-22T12:45:53 | 2021-07-22T12:45:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 329 | rkt | define.rkt | #lang racket/base
(require (for-syntax racket/base))
(provide (for-space soup kettle)
kettle)
(define-syntax (define-soup stx)
(syntax-case stx ()
[(_ id rhs)
#`(define #,((make-interned-syntax-introducer 'soup)
#'id)
rhs)]))
(define-soup kettle 'soup)
(define kettle 'default)
| true |
8bf7ec2c92e1f0cf3110d4b5041f8777c316b19c | ba5d180f5ca8e7e5b4afaa8f9d98d877d02a7551 | /define-match-spread-out/scribblings/define-match-spread-out.scrbl | 68f9eff7b7327ca9410b78fe887610b0b102aa4b | [
"MIT"
]
| permissive | AlexKnauth/define-match-spread-out | 8ef5a25467a0c5dce79815b170b1e048c7bed2ab | 9cba18f354fc03a84e2c26d5ae6cdcdc36d4d960 | refs/heads/master | 2022-01-27T00:31:12.684033 | 2022-01-07T14:41:55 | 2022-01-07T14:41:55 | 35,991,197 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,428 | scrbl | define-match-spread-out.scrbl | #lang scribble/manual
@(require scribble-code-examples
(for-label racket/base
racket/contract/base
define-match-spread-out
defpat/match-case-lambda
))
@title{define-match-spread-out}
source code: @url{https://github.com/AlexKnauth/define-match-spread-out}
@defmodule[define-match-spread-out]{
This file provides the @racket[define*] form, which allows function
definitions to be spread out across a file.
}
@defform[(define* (f-id args) body ...)
#:grammar
([args
(code:line arg-pat ...)
(code:line @#,racketparenfont{.} rest-id)
(code:line arg-pat ... @#,racketparenfont{.} rest-id)])]{
A version of @racket[define] that allows definitions to be spread
across a file. Each @racket[arg-pat] can be an arbitrary
@racket[match] pattern, and if the given argument values don't match
the patterns in the first form in the file, it tries matching them
against the patterns in second form, and so on.
The patterns of all of the @racket[define*] forms in the file so far
are collected into a single @racket[match*-case-lambda] form.
@code-examples[#:lang "racket/base" #:context #'here]{
(require define-match-spread-out)
(define* (f #t) 2)
(f #t)
(define* (f #f) 3)
(f #t)
(f #f)
(define* (f _) 0)
(f #t)
(f "non-boolean stuff")
(define* (f x y) x)
(f #t)
(f "two" "arguments")
}}
| false |
1f9f6e43dd8fea15990468959056f55fc6f0359a | 2b1821134bb02ec32f71ddbc63980d6e9c169b65 | /lisp/racket/SPD/10a/circle-fractal.rkt | c24b3f3beab497de24b7e6660517ac76f4657d7f | []
| no_license | mdssjc/study | a52f8fd6eb1f97db0ad523131f45d5caf914f01b | 2ca51a968e254a01900bffdec76f1ead2acc8912 | refs/heads/master | 2023-04-04T18:24:06.091047 | 2023-03-17T00:55:50 | 2023-03-17T00:55:50 | 39,316,435 | 3 | 1 | null | 2023-03-04T00:50:33 | 2015-07-18T23:53:39 | Java | UTF-8 | Racket | false | false | 3,878 | rkt | circle-fractal.rkt | ;; The first three lines of this file were inserted by DrRacket. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-intermediate-reader.ss" "lang")((modname circle-fractal) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f () #f)))
;; circle-fractal.rkt
;; Generative Recursion P1 - Circle Fractal
;; Design a function to draw a circle fractal.
(require 2htdp/image)
;; PROBLEM :
;;
;; Design a function that will create the following fractal:
;;
;;
;; [Circle Fractal Image]
;;
;;
;; Each circle is surrounded by circles that are two-fifths smaller.
;;
;; You can build these images using the convenient beside and above
;; functions if you make your actual recursive function be one that
;; just produces the top leaf shape. You can then rotate that to
;; produce the other three shapes.
;;
;; You don't have to use this structure if you are prepared to use
;; more complex place-image functions and do some arithmetic. But the
;; approach where you use the helper is simpler.
;;
;; Include a termination argument for your design.
;; =================
;; Constants:
(define STEP (/ 2 5))
(define TRIVIAL-SIZE 5)
;; =================
;; Functions:
;; Number -> Image
;; draws a fractal with leaves coming out of all four directions
(check-expect (circle-fractal (/ TRIVIAL-SIZE STEP))
(local [(define center (circle (/ TRIVIAL-SIZE STEP) "solid" "blue"))
(define leaf (circle TRIVIAL-SIZE "solid" "blue"))]
(above leaf
(beside leaf center leaf)
leaf)))
(check-expect (circle-fractal (/ TRIVIAL-SIZE (sqr STEP)))
(local [(define center (circle (/ TRIVIAL-SIZE (sqr STEP)) "solid" "blue"))
(define leaf-center (circle (/ TRIVIAL-SIZE STEP) "solid" "blue"))
(define leaf-leaf (circle TRIVIAL-SIZE "solid" "blue"))
(define top-leaf (above leaf-leaf
(beside leaf-leaf leaf-center leaf-leaf)))]
(above top-leaf
(beside (rotate 90 top-leaf) center (rotate -90 top-leaf))
(rotate 180 top-leaf))))
(define (circle-fractal n)
(local [(define top-leaf (draw-leaf (* n STEP)))
(define center (circle n "solid" "blue"))]
(above top-leaf
(beside (rotate 90 top-leaf) center (rotate -90 top-leaf))
(rotate 180 top-leaf))))
;; Number -> Image
;; draws the top leaf
(check-expect (draw-leaf TRIVIAL-SIZE)
(circle TRIVIAL-SIZE "solid" "blue"))
(check-expect (draw-leaf (/ TRIVIAL-SIZE STEP))
(local [(define center (circle (/ TRIVIAL-SIZE STEP) "solid" "blue"))
(define leaf (circle TRIVIAL-SIZE "solid" "blue"))]
(above leaf
(beside leaf center leaf))))
(check-expect (draw-leaf (/ TRIVIAL-SIZE (sqr STEP)))
(local [(define center (circle (/ TRIVIAL-SIZE (sqr STEP)) "solid" "blue"))
(define leaf (draw-leaf (/ TRIVIAL-SIZE STEP)))]
(above leaf
(beside (rotate 90 leaf) center (rotate -90 leaf)))))
;; Termination Argument
;; trivial case: size is less than TRIVIAL-SIZE
;; reduction step: reduce size by STEP and recurse on that to
;; build leaves
;; argument: reduction step reduces size of leaves so eventually
;; it will be less than TRIVIAL-SIZE
; <template as gen-rec>
(define (draw-leaf n)
(if (<= n TRIVIAL-SIZE)
(circle n "solid" "blue")
(local [(define center (circle n "solid" "blue"))
(define leaf (draw-leaf (* n STEP)))]
(above leaf
(beside (rotate 90 leaf) center (rotate -90 leaf))))))
| false |
48bc030c29e6f81b242e3f4254028352f4ee224f | b3dc4d8347689584f0d09452414ffa483cf7dcb3 | /rash-demos/info.rkt | b57209fcbfaa90b0a56ca85dd3f1fe515ad073fa | [
"MIT",
"Apache-2.0"
]
| permissive | willghatch/racket-rash | 75e336d985bf59b4adfe5d5a7bd68d31cf2fe7db | 42460a283ce2d7296257b068505cd4649052f67c | refs/heads/master | 2023-06-17T16:16:26.126945 | 2023-02-24T18:13:25 | 2023-02-24T18:17:02 | 65,781,414 | 556 | 43 | NOASSERTION | 2021-03-09T17:17:29 | 2016-08-16T02:37:13 | Racket | UTF-8 | Racket | false | false | 694 | rkt | info.rkt | #lang info
(define collection 'multi)
(define deps '(("base" #:version "6.12")
"rash"
"basedir"
"shell-pipeline"
"linea"
"udelim"
"scribble-lib"
"scribble-doc"
"racket-doc"
"rackunit-lib"
"readline-lib"
;; for the make demo
"make"
;; for csv-file->dicts in demo/setup
"csv-reading"
;; temporarily
"text-table"
))
(define test-omit-paths '("demo/use-make-dumb-example.rkt"))
(define version "0.2")
(define license '(Apache-2.0 OR MIT))
| false |
1168c2e619966fb357575a321eaa41358694a68a | 80d084444b9512b231abd28454b01fc2c127e6cf | /thesis-test-examples/real-example/chairdna.rkt | cb9527aeec9c3237ad605386ad72207200c3ec97 | []
| no_license | guilhemferr/thesis | 9d851779ff0be374518bcd3d92db1b9e18071cf6 | 9b9b50b5258947f4fe673ef8f24c0b3a4a67395b | refs/heads/master | 2022-05-01T12:52:31.086551 | 2019-09-18T14:10:19 | 2019-09-18T14:15:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,390,933 | rkt | chairdna.rkt | #reader(lib"read.ss""wxme")WXME0108 ##
#|
This file uses the GRacket editor format.
Open this file in DrRacket version 6.3.0.3 or later to read it.
Most likely, it was created by saving a program in DrRacket,
and it probably contains a program with non-text elements
(such as images or comment boxes).
http://racket-lang.org/
|#
32 7 #"wxtext\0"
3 1 6 #"wxtab\0"
1 1 8 #"wximage\0"
2 0 8 #"wxmedia\0"
4 1 34 #"(lib \"syntax-browser.ss\" \"mrlib\")\0"
1 0 16 #"drscheme:number\0"
3 0 44 #"(lib \"number-snip.ss\" \"drscheme\" \"private\")\0"
1 0 36 #"(lib \"comment-snip.ss\" \"framework\")\0"
1 0 93
(
#"((lib \"collapsed-snipclass.ss\" \"framework\") (lib \"collapsed-sni"
#"pclass-wxme.ss\" \"framework\"))\0"
) 0 0 43 #"(lib \"collapsed-snipclass.ss\" \"framework\")\0"
0 0 19 #"drscheme:sexp-snip\0"
0 0 36 #"(lib \"cache-image-snip.ss\" \"mrlib\")\0"
1 0 68
(
#"((lib \"image-core.ss\" \"mrlib\") (lib \"image-core-wxme.rkt\" \"mr"
#"lib\"))\0"
) 1 0 29 #"drscheme:bindings-snipclass%\0"
1 0 101
(
#"((lib \"ellipsis-snip.rkt\" \"drracket\" \"private\") (lib \"ellipsi"
#"s-snip-wxme.rkt\" \"drracket\" \"private\"))\0"
) 2 0 88
(
#"((lib \"pict-snip.rkt\" \"drracket\" \"private\") (lib \"pict-snip.r"
#"kt\" \"drracket\" \"private\"))\0"
) 0 0 34 #"(lib \"bullet-snip.rkt\" \"browser\")\0"
0 0 25 #"(lib \"matrix.ss\" \"htdp\")\0"
1 0 22 #"drscheme:lambda-snip%\0"
1 0 29 #"drclickable-string-snipclass\0"
0 0 26 #"drracket:spacer-snipclass\0"
0 0 57
#"(lib \"hrule-snip.rkt\" \"macro-debugger\" \"syntax-browser\")\0"
1 0 26 #"drscheme:pict-value-snip%\0"
0 0 45 #"(lib \"image-snipr.ss\" \"slideshow\" \"private\")\0"
1 0 38 #"(lib \"pict-snipclass.ss\" \"slideshow\")\0"
2 0 55 #"(lib \"vertical-separator-snip.ss\" \"stepper\" \"private\")\0"
1 0 18 #"drscheme:xml-snip\0"
1 0 31 #"(lib \"xml-snipclass.ss\" \"xml\")\0"
1 0 21 #"drscheme:scheme-snip\0"
2 0 34 #"(lib \"scheme-snipclass.ss\" \"xml\")\0"
1 0 10 #"text-box%\0"
1 0 32 #"(lib \"text-snipclass.ss\" \"xml\")\0"
1 0 1 6 #"wxloc\0"
0 0 148 0 1 #"\0"
0 75 1 #"\0"
0 10 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 0 9
#"Standard\0"
0 75 10 #"Monospace\0"
0 16 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 -1 -1 2 24
#"framework:default-color\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 255 255 255 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 150 0 150 0 0 0 -1 -1 2 15
#"text:ports out\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 150 0 150 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 93 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 255 0 0 0 0 0 -1
-1 2 15 #"text:ports err\0"
0 -1 1 #"\0"
1 0 -1 -1 93 -1 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 175 0 0 0 -1 -1 2 17
#"text:ports value\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 175 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 34 139 34 0 0 0 -1
-1 2 27 #"Matching Parenthesis Style\0"
0 -1 1 #"\0"
1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 34 139 34 0 0 0 -1
-1 2 1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 37
#"framework:syntax-color:scheme:symbol\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 38
#"framework:syntax-color:scheme:keyword\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 194 116 31 0 0 0 -1 -1 2
38 #"framework:syntax-color:scheme:comment\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 194 116 31 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 37
#"framework:syntax-color:scheme:string\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 35
#"framework:syntax-color:scheme:text\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 39
#"framework:syntax-color:scheme:constant\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 49
#"framework:syntax-color:scheme:hash-colon-keyword\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 42
#"framework:syntax-color:scheme:parenthesis\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 36
#"framework:syntax-color:scheme:error\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 36
#"framework:syntax-color:scheme:other\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 16
#"Misspelled Text\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 81 112 203 0 0 0 -1 -1 2
38 #"drracket:check-syntax:lexically-bound\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 81 112 203 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 28
#"drracket:check-syntax:set!d\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 37
#"drracket:check-syntax:unused-require\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 36
#"drracket:check-syntax:free-variable\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 68 0 203 0 0 0 -1 -1 2 31
#"drracket:check-syntax:imported\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 68 0 203 0 0 0 -1 -1 2 47
#"drracket:check-syntax:my-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 116 0 0 0 0 -1 -1 2 50
#"drracket:check-syntax:their-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 116 0 0 0 0 -1 -1 2 48
#"drracket:check-syntax:unk-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 139 142 28 0 0 0 -1 -1 2
49 #"drracket:check-syntax:both-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 139 142 28 0 0 0 -1 -1 2
26 #"plt:htdp:test-coverage-on\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 2 27
#"plt:htdp:test-coverage-off\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 4 1
#"\0"
0 70 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 4 4 #"XML\0"
0 70 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 2 37 #"plt:module-language:test-coverage-on\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 38
#"plt:module-language:test-coverage-off\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 4 1
#"\0"
0 71 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 0 255 0 0 0 -1
-1 4 1 #"\0"
0 71 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 0 255 0 0 0 -1
-1 4 1 #"\0"
0 71 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 100 0 0 0 0 -1
-1 0 1 #"\0"
0 75 9 #"Consolas\0"
0.0 12 90 -1 90 -1 3 -1 0 1 0 1 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
255 255 1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
255 255 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 150 0 150 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 93 -1 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 255 0 0 0 0
0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 175 0 0
0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 38 38 128 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 194 116 31 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 41 128 38 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 132 60 36 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 255 0 0 0 0
0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 81 112 203 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 178 34 34 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 68 0 203 0 0
0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 116 0 0 0
0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 139 142 28 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 92 -1 93 -1 -1 0 1 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 255 165 0 0
0 0 -1 -1 0 1 #"\0"
0 75 12 #"Courier New\0"
0.0 9 90 -1 90 -1 3 -1 0 1 0 1 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255 255
255 1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 38 38 128 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 194 116 31 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 41 128 38 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 132 60 36 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 255 0 0 0 0
0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 81 112 203 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 178 34 34 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 68 0 203 0 0
0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 116 0 0 0
0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 139 142 28 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 255 165 0 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 34 139 34 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 176 48 96 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 200 0 0 0 0
0 -1 -1 0 1 #"\0"
0 75 12 #"Courier New\0"
0.0 10 90 -1 90 -1 3 -1 0 1 0 1 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
255 255 1 -1 4 1 #"\0"
0 71 1 #"\0"
1.0 0 -1 -1 93 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 255 0 0 0 0
0 -1 -1 2 1 #"\0"
0 70 1 #"\0"
1.0 0 -1 -1 93 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 148 0 211 0
0 0 -1 -1 2 1 #"\0"
0 70 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 255 0 0
0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
255 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 0.0 0.0 0.0 255 165 0 0
0 0 -1 -1 0 1 #"\0"
0 75 10 #"Monospace\0"
0.0 15 90 -1 90 -1 3 -1 0 1 0 1 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
255 255 1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 150 0 150 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 93 -1 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 255 0 0 0 0
0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 175 0 0
0 -1 -1 0 1 #"\0"
0 75 10 #"Monospace\0"
0.0 11 90 -1 90 -1 3 -1 0 1 0 1 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
255 255 1 -1 0 1 #"\0"
0 75 10 #"Monospace\0"
0.0 16 90 -1 90 -1 3 -1 0 1 0 1 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
255 255 1 -1 0 1 #"\0"
0 75 10 #"Monospace\0"
0.0 17 90 -1 90 -1 3 -1 0 1 0 1 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
255 255 1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 4 32 #"widget.rkt::browser-text% basic\0"
0 70 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 4 59
#"macro-debugger/syntax-browser/properties color-text% basic\0"
0 70 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 103 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 190 190 190
0 0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 255 0 0 0 0
0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 255 0 0
0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 107 142 35 0
0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 100 0 0 0
0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 139 0 0 0 0
0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 100 149 237
0 0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 65 105 225 0
0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 70 130 180 0
0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 47 79 79 0 0
0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 139 0 0
0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 75 0 130 0 0
0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 160 32 240 0
0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 255 165 0 0
0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 250 128 114
0 0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 184 134 11 0
0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 128 128 0 0
0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 169 169 169
0 0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 224
255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 0 255 224
255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 0 255 255
228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 107 142 35
224 255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 107 142 35
255 228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 100 0 224
255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 100 0 255
228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 70 130 180
224 255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 47 79 79 255
228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 0 139 255
228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 47 79 79 224
255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 70 130 180
255 228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 255 165 0
224 255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 250 128 114
255 228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 184 134 11
255 228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 255 165 0
255 228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 128 128 0
224 255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 250 128 114
224 255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 128 128 0
255 228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 255 0 0 224
255 255 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 169 169 169
255 228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 255 0 0 255
228 225 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 169 169 169
224 255 255 -1 -1 0 8869 0 28 3 12 #"#lang racket"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 7 #"require"
0 0 24 3 1 #" "
0 0 14 3 13 #"rosetta/rhino"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 17 3 2 #";("
0 0 17 3 7 #"require"
0 0 17 3 1 #" "
0 0 17 3 16 #"rosetta/autocad)"
0 0 24 29 1 #"\n"
0 0 17 3 38 #";(require \"../rhinoceros/backend.rkt\")"
0 0 24 29 1 #"\n"
0 0 17 3 35 #";(require \"../autocad/backend.rkt\")"
0 0 24 29 1 #"\n"
0 0 17 3 36 #";(require \"../sketchup/backend.rkt\")"
0 0 24 29 1 #"\n"
0 0 17 3 16 #";(backend rhino)"
0 0 24 29 1 #"\n"
0 0 17 3 18 #";(backend autocad)"
0 0 24 29 1 #"\n"
0 0 17 3 54 #";(backend rhino5) ;;only for 64-bit Operating System"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 14 3 7 #"provide"
0 0 24 3 1 #" "
0 0 14 3 5 #"chair"
0 0 24 3 1 #" "
0 0 14 3 9 #"new-chair"
0 0 24 3 1 #" "
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 9 #"var-value"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 14 3 16 #"available-chairs"
0 0 24 3 1 #" "
0 0 14 3 12 #"select-chair"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 14 3 23 #"reset-values-from-excel"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 14 3 12 #"zoom-extents"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 38 #";ChairDNA version 1.2 (September 2015)"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 95
(
#";-------------------------------------------------------------------"
#"---------------------------"
) 0 0 24 29 1 #"\n"
0 0 17 3 30 #";------GENERAL FUNCTIONS------"
0 0 24 29 1 #"\n"
0 0 17 3 95
(
#";-------------------------------------------------------------------"
#"---------------------------"
) 0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 18 #";DEGREES > RADIANS"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 3 #"deg"
0 0 24 3 2 #") "
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 3 #"deg"
0 0 24 3 1 #" "
0 0 14 3 2 #"pi"
0 0 24 3 2 #") "
0 0 21 3 3 #"180"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 14 #";POINT-IN-LINE"
0 0 24 29 1 #"\n"
0 0 17 3 22 #";f = between 0 and 100"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 13 #"point-in-line"
0 0 24 3 1 #" "
0 0 14 3 2 #"P0"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 1 #" "
0 0 14 3 1 #"f"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 3 #"p+v"
0 0 24 3 1 #" "
0 0 14 3 2 #"P0"
0 0 24 3 2 #" ("
0 0 14 3 3 #"v*r"
0 0 24 3 2 #" ("
0 0 14 3 3 #"p-p"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 1 #" "
0 0 14 3 2 #"P0"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 1 #"f"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 23 #";INTERSECTION LINE-LINE"
0 0 24 29 1 #"\n"
0 0 17 3 33 #";intersection of 2 lines in space"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 18 #"intersection-lines"
0 0 24 3 1 #" "
0 0 14 3 2 #"p1"
0 0 24 3 1 #" "
0 0 14 3 2 #"p2"
0 0 24 3 1 #" "
0 0 14 3 2 #"p3"
0 0 24 3 1 #" "
0 0 14 3 2 #"p4"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 24 #"nearest-point-from-lines"
0 0 24 3 1 #" "
0 0 14 3 2 #"p1"
0 0 24 3 1 #" "
0 0 14 3 2 #"p2"
0 0 24 3 1 #" "
0 0 14 3 2 #"p3"
0 0 24 3 1 #" "
0 0 14 3 2 #"p4"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 61
#";POLAR ANGLE OF THE PERPENTICULAR TO THE TANGENT TO 2 CIRCLES"
0 0 24 29 1 #"\n"
0 0 17 3 2 #"#;"
0 0 24 29 1 #"\n"
0 2 163 4 1 #"\0"
2 -1.0 -1.0 0.0 0.0 0 76 500
(
#"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\2Z\0\0\0023\b"
#"\6\0\0\0\330\240\267x\0\0 \0IDATx\234\354\275\333\267\34\307u"
#"\346\371\355\310\3\256\236\277\242gH\0"
#"\264d\251\347\321\"\0\251W?\330$"
#"H\311\262E\257\351\31\236*\270{\331\4HK&A\332\335\17\323m/\257\266"
#"g<3\253E\2\224l\21\24\3556Qu\330\335\253\5\332\226(\0R\373\245"
#"G\274\330\3634\323\36Y\".\224\347\317\260q2\366<DFVT\234\310\254"
#"\254:u\311\313\367\343\2\3179UY\231Y\221q\371b\357\35;DU\25\204"
#"\20B\b!d\355\230]\337\0!\204\20BH_\241\320\"\204\20B\b\331\20"
#"\24Z\204\20B\b!\e\202B\213\20B\b!dCPh\21B\b!\204l"
#"\b\n-B\b!\204\220\rA\241E\b!\204\20\262!(\264\b!\204\20B"
#"6\4\205\26!\204\20B\310\206\240\320\"\204\20B\b\331\20\24Z\204\20B\b"
#"!\e\202B\213\20B\b!dCPh\21B\b!\204l\b\n-B\b!"
#"\204\220\rA\241E\b!\204\20\262!\272!\264\324\375S\325\342W\v\v\235?"
#"Duvl\361Sa\1\0y\360\272\206\347C\360\23\266\370\a\250\346\3563\305"
#"\265\312\353jp\315\371\313\227\237\235\177"
#"{vN\253G\217S\240\370\36\263\343"
#"\374\367\234;\217\316\177\257\331\367#\204"
#"\220\335\243:\337\307\251\357\323\346\372)"
#";\353\27\325\365\313\233\357\377\202~Y"
#"s(\200\274|m\361\370\340\357\327\375<,^\360cBq\36;\353\311s\377"
#"\2355\237\275O\6O\353\205\226\252B"
#"\5\200X\210\b\4\0` \220\262\202"
#"\303*\4\2\265\177\17\225\242\201"
#"\210-\216\265\310`\335\353\352\344\223B\1\1\4\200"
#"\n \352\316\t\270S\n2\230\342X\1 \242\356"
) 500
(
#"\30\21\327\t\250{cv>\270\236&h\254\2@a\0\30\250\2F\334\275\270"
#"\327\\\3\24\213\342{\b\24\246\350\0r\210H\331\211\b,T\334\375[h\364"
#"\375\330\220\t!;\244\20\36\"\326\367\240\0\f,\f\240\6\220C\210u\307Y"
#"5E_\v@\200\314\346\307\356\377f\23`\v\353'\327s\202\317\314\204\224d"
#"\20\0\231\225BH\271\276\270n|\20"
#"\377Q\5T\263\242\337\27\270\377\214\23"
#"o\306}\a\201E\6\343>+\305\373\204\240\3B\v\"\20=\0040kPr"
#"\367\3538g\36\303k\37\273J\177\357"
#"\353\237\203\30\201\331\373'\270\362\261\23"
#"<\242ECW\3\340'x\355\254\2011{\310$\2031\3065\4\21\30\21\234"
#"\373\332]X\344P\30\210\0\267/e0\346!w\316\263_\307}[4\36\5"
#"Dr'\374\340\4Yi\5\23\327\b\303\231\231h\16\340\20\0207\3\202\225\242"
#"\243\371\30\257\2343\220L\220\211@\262"
#"=\30\21\354\311\t\30\263\2073\257\335\tD\224\23kb\25\6\337\307E9\203"
#"\257\335s\337O;\360\370\b!\375E"
#"\241\260\367\257\3401\363Y\274v\37\200"
#"\32(\200\277\275\372Y\30#\20\371\34"
#"\276v\37P\344\20\261\260\242\0>\306"
#"\325\263\2\311\376\301\261\373?E!\326`\212\311,\220\213uf*u\375c\6"
#"\213B\353\271\377\31uBM\321h|\370\334\225\277u\23rQ\270\376\\p\373"
#"\222@$\203\354\235\2009\363\n\356\31"
#")\257\247x\200\34\206\36\aR\322\372"
#"\221\332\265\235=7\213\220\242%\235\374"
#"\n\336?|\17_>)\20\271\211\177\373\342{\270xS\241\366}\\~\370\320"
#"\177\310\233\214\240z\b@\361\330\325\217"
#"`5\207U\205Zu\326\262\273\257B_<\215_\273\225\1\0>\276"
#"\372\30\316\377\360\337\342\236\346\320\374"
#">^\305\2138\371\374\367\334LI"
) 500
(
#"\0\350^i)Sq3&Q?\343)\204`qy\225\f\260{\220\302\2\247"
#"\306M\223\254:\313\330\231+w\335\275"
#"\350\3w_\366\20\366\316\253\320\27\37"
#"\305\3637\335lK5w\3476\202\233\227\316\343M\21@r6bB\310\316\21"
#"\21\230\207_\306\a\366}|\345\244\272"
#">\27\357\342\177\177\351}<{3\207"
#"\352\a\370\312\303\326Y\223\324\300\300Y"
#"\223r\21\234\271\362\243c\367\177\6\342"
#"&\276\205\266\22+00\320l\346\255Pu\"L\0007\351-\304\2337Y\325"
#"\215\17\17\356]\205\276t\n\317\335B"
#"!\354\366\360\223+gq\376\207\257\340"
#"\256\315\241\17>\302\25\371M<z\361V1\36X\bN S\320\343@JZ"
#"/\264\200\303b6\341Z\223j\321@L\346f*\367?\302_\343,>y\32"
#"\316\212\4'\230\\{6PU\210\374\3ha\242v\347@a\225\262\300\311\27"
#"\360\257.\2o\374\371w \270\215\337\177\351/q\351\267^\302#\0T\376["
#"\274\370[\277\2\274\361-|\17\245\31"
#"\253\260]\e\210\32\310\335\327\3603{"
#"\317\342\273\316\334\5\305^\351;\f&UE\a\344b\313D\4\17\305JI\25"
#"\242\2\234z\1\277}1\303\353\177~\323\2118dP|\27\317\213\301So\b"
#"\\1\270\237\2B\b\331%\266\350w"
#"\255\263,\251\201\334\377\t~\244g\360"
#"\323\247\\\330\204\30\347b\3\n\253\222"
#"\30\30\350\274E~\305\376\317j\21\212"
#"a\200L\1\334\277\212\177,\317\343{8t\257\213sk\346\345\275\232B_\315"
#"\274$u\343\203y\370\313\370\237\237\5"
#"\336\374\263\357\272\317\331\357\341\367_\372"
#"\0\317\376\326K8)\0\314#x\361"
#"__\204\276\371\247\370\276\232\302]\350'\345\35\30^\311Vh\177M\320"
#"=h\21\225\230\3\20\261\300\275+8'g\361\332\355?\300\347N\376\v"
) 500
(
#"|\210\367q\371\244@\236\277\5\265\306"
#"\315$\264\210\203\202\300\352\241k\310\342"
#"L\314R\306o\25\35675\200>\4\334\375\e\374H\317\340\23\217\24\202\b\6"
#"\372\304/\341W\361&\376\354\266k\224"
#"\271;)T\36\270\306t\352+\370\253\303_\300\267\305\300H\206sW\357\0x"
#"\0\0\330\203\217\243\362\226/7\243\23=,\332\2407/{\213W\21|\217\334"
#"uN(fe\267\277\203k\317}\az\367\25|\306\2j\346\"5\t!d"
#"'(\f\360\361k8'g\361\265{\n\334\271\212\263'_\300{\331\373x\361"
#"\264\300<\177\253\260\34\331\331\314\320\272"
#"\230\327\f\207\307\356\377\234\245jv,"
#"N\275\200\377b\177\1\357\230\207\220\311"
#"\t\234\271\372\267\0\214\23a\245\360\261"
#"\320\"\376c\321\370 \222A\f`e\317\335\353O~\214\37\311Y\374\364#\276"
#"\0\fp\376\347\361\253\370c\374\351-_*\6\336@@\b\320\5\241%p\263"
#"\30)\202\30\2750\202@O}\5\357\335{\5?#gp\345N\16}\375<"
#"\304\300\305\t\224\301\356\26\"\nc\202"
#" \364 ]o]\302\347\377\310\342\331/>\16\275\377c|\200\237\306\251S"
#"\316\331\227\27B)\203)\242\344\3255"
#"X\0\300\211\342\247\201\225'pMs"
#"\344z\210\337\376\233O\302d\377\r\314"
#"\271+\270\27\304Q\345\305\275\224\201\364"
#"\305\214I\374*\25o0\273\371\2>"
#"\377M\301\257~\341\361\362=\234\177\35"
#"\366\eO\1\232\273\31\236\17\312dC"
#"&\204\264\2\3\v\201>\372\"\336\373"
#"\3505\234\313\317\340\352\35\205\276\376\270"
#"s\247\351\211\302\362\345\334\200\256\3\333"
#"[K\377gm\260\212\320\nD\36\307\353\366\1\254\315\361\333?<\5c\f\262"
#"s\257\341\216\17%\1 \222\315\202\352\353\306\207\333\277"
#"\206'\257\1\317}\361q\367\332G?\302\373\372I<"
) 500
(
#"z\322]Q\vg\241h^\234\333\a\343\357\315\2\377\311\340i\275\320\362+>"
#"\0\0\246X\215\342\375\354V\vs\257"
#"\314\32\212\2\271w\253\25A\361\242\300"
#"!\24\37^~\264\230\241\b\304d\20\311\220=\371\6\236}Wq\355\311C\370"
#"\300K_(N\330\271\23\375?w~\22\254\"9\234kD\245\311\34\212\307\257"
#"\35\"\317\377\16\207o\1\277l\316\341"
#"\265\273\0\324\24\326\255Bl\301\0V"
#"\360\301\345S\356>\314\t\30\311\\\360"
#"\350\347\277\201\213\357\36\342\215'g\263"
#"+w\r\270\317\311\3\327\5(]\207\204\220\335\"\305\252C/OD\1\311\16"
#"\v\21\38k\225\231\233\24\n\16\241"
#"\242x\357\345G\326\322\377\25\306/w\aF\na\347BL\236x\343\1\16m"
#"\216\374O,\376\2719\213\253\367fB"
#"J\212\343j\307\207\363\327\360\2537s"
#"\374\341\371C\367=\212k\225\337G\244Xc)\370\353;\367\2348\24:\e\310"
#"<\255\27Z3\251\203\322\365m\5\220"
#"b\0310\344\20\6\271\363\253\27\215\313"
#"})\337\372\334\222a\243\6\217]\375"
#"1\324\346.\320\361\316U\234\201\305\231"
#"+\367q\355\t \207\201\344\n\230\303"
#"\262!\303\270Y\227\25\305\247\36}$"
#"\270+\277\272\244\350\4\324\24\313\215\r"
#"n=\227\271\325+\27\24\377N\337\303"
#"\213\247P\254:4\263{\202\201Q\305\331\253\37Cm\16\253\177\a\275s\25g"
#"\258\367\352G\370\306\223\6\26y\361\245g\346n\210\201\5\260WN\r\327]"
#"\332\204\20\262\4E?\244P\27\342!"
#"\0004+\372\353\300\322\344-\371E\17"
#"\226Y\340\354\225u\364\177n\342:\353"
#"\n\355\234E\352\366\245\f\231<\204\354"
#"\237\1\323\303\17\361\302I\177?> \276~|\370\231+?\3067\237\b\276"
#"SaU\23\227\4\242\270\r\347\4\375\364\251\223\0\366P.\210\342L\230\24"
) 500
(
#"\264^h\1(S+\300\2704\tF3\267\204\27\342b\253\324-\340u\201\222"
#"n\345\237\252\237\362\30@N@\212\250"
#"+\0243$}\344\327\361\376\255\213\370"
#"\340\362#x\356{EA\234\3764\316\330\37\341\336=\270N\3\26V\36\270x"
#"\202\342o\267\302\305\273&]\3\267\362"
#"m\\\224\fF\4\277\373\211\273\256\241\276\367\22N\27q\4.\0>\20e\232"
#"\303\212\24\235I\321\340O\276\200\367n^\302{/=\212\347n\1F\263Y\300"
#">\340\216\23A\346_W\24K\245\t!dW8\1\4\bD\264\24H\2\201"
#"\315d\343\375_\356\2070\257\351\324\300"
#"\352\367\360\2749\1#\202\377\345\23\367"
#"\221\333\a8|\3772\376;\343\322<"
#"Xu\2\313\331\335\352\307\207\277|\3514.\335\266@\221\303QN}\ng\361"
#"\177\343\316\275bLR\240\274\v\2433"
#"\301\307\256\231\4tCh\2410\325\252\313ob\345\1L\20\330\b\4\16?\343"
#"\202\330\313\344\242\0\240\26*\n\330\f"
#"\376+\213\b\364\361\327q\363\222\301\265"
#"\363\27\335\252\302S'\361i|\200\277"
#"\271\347\372\16\5`n\3779\336\300\257"
#"\342\213O\302\5L\272\213\241\b\213\207"
#"\334{\r\237\223o\343K\2528T\213"
#"\367^\374\207\345\262a\37\4\352\342\n"
#"\212\345\312r\b\221\f\3067\304r\326"
#"\363\0\372\3047p\363\242\301\eO>"
#"\207[\345\252\302\331#Rk\221\213\272@N\201O\305G\b!;a\226\375\274"
#"H\227\203\254\20Z\nce\343\375_\6\37s\5\0\26\270\377\n\316e\357\340"
#"\347\2134\r\377\347\345\207a\24\20\353"
#"DU\246\200\21\27\313\345\23\365\324\215"
#"\17\357^\4\336x\352\313\370\276\302M"
#"\342O>\212\237\306_\341\277\336\233\2112s\353;x\3\317\342\27\237p"
#"\253\26\3759f\31\350\311\320i\275\320*\223\314\18\24\08\204\311\37\2"
) 500
(
#" \256q\240\230\354\24\353U\2002n"
#"\275H\267\200\"\220\36\310\274<R\267*PDp\3767\276\212\263\362M<y"
#"\3516,~\26\277x\321\340\332\357]"
#"\301}\0b\177\202+\277\367M\340\331\247q\36\0\304%(u9\357\2124\22"
#"'\277\202\37\350\233xB\335bd\243\202CDy\256\264\310/\243\6\242{\310"
#"\275\305\315\2135X\250\234\200\210\342\374o~\25\347p\rO^|\27\263-,"
#"l\231\342\342\204\n\214\344\305]\354\255"
#"\277\300\t!\244!R\244\263q\23\320"
#"\"\271\216\240\260\0\371\211\356\6\373?"
#"\235\235_\325\0'_\306\373\366\32\236"
#",\2\245\24Z\204\336\26\23o\37\337[\344d\\4><\365\eW\361\31}"
#"\35O\\z\267\b\342\177\2_\270\244\370\223\177s\5\367`\240r\aW\177\357"
#"\r\340\322/\342\361\"\346\313\307\21\233"
#"\366\17\257dKt\240&\370\340\302\34{\200[qb\376\336\345Q)\234\344\326"
#"ZX)\222\327\1\263-{`\313\355ul\221\355\327u\4'\212F\b\344\247"
#".\343\255W\317@\337x\22\377\370\312"
#"\377\207\237\275v\210\233\237z\31'E"
#"\220e\217\342\345\237\276\t}\343\211\331"
#"\326;e\354\27\240p\1\364\342W\315"
#"(\240\205\a?L\353\0\277\35\203\237"
#"\1\241\260\230\333Yz\a\370\237'/"
#"\343\217\257\234\205\371\346\317\343\354\325\277"
#"\235\255\306Q@Ep\b\2132\e\37gL\204\220\35c\215\337#\326\365f\271"
#"\261\345\276\207\233\356\377\334v9\305b"
#"$\277\222\273p\3519\253\227\353\267]"
#"\276,\227\273\253\334\326\247\301\370\200S"
#"/\340\255\327\316\0o~\1g\257\334"
#"\a`\361\324\353\212\357\374\243\337\300)"
#"\311`\314\243x\351\223\357B\277q\36\252E\362\324\242\34\30\331A<\242"
#"s;%\267\24\r~z\227\234\302\231\241u\257\230N\271\31S.n\313\5"
) 500
(
#"\370\304\246\5\26\271\263B\225~\177S.+\226\"\221\250\23I\300l+\5\27"
#"t\237KV\230\250g\253Y\374\3573C1f\263%\370U\2179\200\254\234\315"
#"\35y\37\263\373./h\374\31]\222"
#"\275\314\a\332\253\357\250\202c\347OD"
#"\b!\333'\350\213TKcQ\360\372\346\372?\327\177\37\2\272\347\372~[\334"
#"\200\240\370<\346V\1\372\311\371\254\357"
#"\367w\221\36\37\312\240\373\340g\331\255"
#"\a\347v\277\27\202\23.)\252\226\271"
#"\271\310\320\351\200\320r\rQ\241\305^S&\250\330\305!G~wfd+("
#"\5\22|\345\17\316,E\342\272\2601\270\220H-e\227kw\352\222\344\25\263"
#"!\337\21\314:\17\177>\343\4X\271"
#"\352e\3768\300\340\20\212\275\260\205\a"
#"\367d\213\357U&\314Kt@V\213\305\220\345u\b!d7\204\363\275Y7"
#"\\\364\331\305$v\223\375_8\26\314"
#"\217\v\26\263@\372=\314u\376\22\337"
#"w\315\370\0\343bs\305g\262\177\0\321\23\201H+V=j\356rs\251\217"
#"[9\32cF\206K\353\205\326Q=\25\314\200\212\31D^x\303%\365\241#"
#"\257\315\331\240\346\17)\32\324\314\0326"
#"\333\313\320]/<6\207\337\r~\356\334e\247\202\271\331[yH9\23\v;"
#"\212\342:~\357\304@\\\372\325.\212\371\316'\27\213,\262\332\21BH\ep"
#"\261\265a\377\265\241\376\317_O\\<\226\223K\266\374mv\311\330*\26y="
#"\26\215\17^\341E\207\3731\251\34'\2o\2073\16\260\203&\35\20Z\204\20"
#"B\b!]\205vMB\b!\204\220\rA\241E\b!\204\20\262!(\264\b"
#"!\204\20B6\4\205\26!\204\20B\310\206\240\320\"\204\20B\b\331\20\24Z"
#"\204\20B\b!\e\202B\213\20B\b!dC"
#"Ph\21\304\251\324\326\221Z\215\351\331\b!\204"
) 500
(
#"\20\n-\2\34\311^\274l6\343PT\371\337\231\21\231\20B\b\241\320\"p"
#"\342\3508\26(/\252\270\211*!\204"
#"\0202\17\205\26\201\210\333X\333\213\255eDWxl(\270\b!\204\20B\241"
#"E\2\274\330Z\306*\25\213+Z\265\b!\204\220\31\24Z\4\300\314}\30Z"
#"\266\226\371\254\27W\24Y\204\20B\310\fQ\372y\b!\204\20B6\302\336\256"
#"o\200\354\26U\305x<N\276\267\214uKUqpp\260\316[#\204\20B"
#":\17\205V\313\t\335y\241[n\325X\250\321h4\367y\21\301t:\255\275"
#"\366\262\347\16\251:w\25U\327d\354\27!\204\220.B\327aKh*$\302"
#"\343\352>\223\22=@s\341\263\254\260"
#"\251:~\231\373\240\310\"\204\20\3227"
#"(\264v\314:D\204w\377\205\347\n"
#"\205\3142\327X\365~\216k\375\252\23\200M\305%!\204\20\3226(\264Z@"
#"\235xHeZ\17\335\211\243\321\250t"
#"\377\255K\220\254j\315j\342\346\254z\317\v\257&\2\221b\213\20BHW\240"
#"\320\352 \343\361\30\326Z\30c0\231L*\217;\256%kS\202\246\356Z\241"
#"\245k\331\370.B\b!\244mPhu\204e\5\310*\"\251\312\"\265\314u"
#"\326y]\377\235E\244\24\224\264f\21B\b\351\22\24Z-\304\213\t\237vA"
#"U\217\270\324\200jw\342\252Bg]\367\275\3129\27\t\266\321h\4U\2051"
#"\6\327\257_\247\330\"\204\20\322\t("
#"\264Z@,\222R\361J\253\236s\331\343vm1jr}\37\370O\327\"!"
#"\204\220\266C\241\265\3\252\304\4\5\304"
#"Q\352\204\327q\312k\327\202\222\20B"
#"\3100\240\320\3322)\v\322\205\v\27"
#"`\255ef\365\n\26\211\242\330\2\270\2525\217\20B\bY7\24"
#"Z[\"\25\277\264LJ\3\262xe\244\217\343:88`9\22"
) 500
(
#"B\bi\5\24Z;b4\32\321E\270\4\213r\215\205\357\355\357\357\323:H"
#"\b!\244\25\230]\337\300\20\210\265\354"
#"\376\376~\345\0264d\236\252\25\226!"
#"\376=k-\0\340\340\340\240\264n\245\316E\b!\204l\vZ\2646L\274\242"
#"\260\312\332BWW=\253\244\257\240\325"
#"\220\20B\310\256\241Ek\303xQ\340"
#"c\262\274\310\252\262\312P\367\246\t\313"
#"\218ZN\251r\233N\247\225\233Z\23B\b!\333\200BkK\304\326\225*"
#"\253\f\255Z\325\204b\312[\267\302\277SL&\23\212-B\b!;\203\256\303"
#"\r\263\277\277_n\372Lv\307:\222\300\22B\b!\313B\241\265fR\251\e"
#"\30\177\265;R+\22)|\t!\204l\v\n\255cR\225\37\253n \247\360"
#"\332\ra@\375x<>\362\214\216\263_$!\204\20\222\202BkM\324\255*"
#"\344\300\335\36\342\4\247\261\305\221\317\212"
#"\20B\310:a0\374\232\210-Y^\277\206V\22\262\e\252\202\350'\223\t\306"
#"\343\361\334k|V\204\20B\326\t-"
#"Zk\2029\233\332O\225\345\212\317\216"
#"\20B\310\246\240Ek\r\244\342}\352"
#"\240\266\335>u\356\3010\337\26\237\r!\204\220uB\241uLF\243\21&\223"
#"\311\302\1:v%\222\355\22\226y\252"
#"\374\247\323i\351F$\204\20B\326\5"
#"\205\326\nx\321\24\272\234\26\r\320q"
#"fs\322\36\302\230\255&\311Mi\365\"\204\20\322\24\n\255%\b\3\246\2536"
#"\206&\335\"\345F\34\217\307s\357\327"
#"\35O\b!\204\324A\241\265\200\3246"
#"/\341\236\205\244\333\304\253\fUu\316"
#"\262\25\213*\356II\b!d\31\270\352pIRy\262Hw\251\263P\371\370"
#";Z\260\b!\204\254\n-Z\r\b\265\2501,\262>\21Z\264\350"
#"&$\204\20\262nh\321Z\2\346[\32\36\264j\21B\b9\0164\317"
) 500
(
#"\254@\225\5\204t\223E\317\223\"\213\20B\310\252Ph5$\336\27\217n\245"
#"\376P\227z#^\205H\b!\204,\3\205\26\352-S\252\232\314\227\265\262\310"
#"R\377\343\260\374\35\n(\36@\1\250"
#"\346\356u\5\0;;\246\304\316~\322\240\266\25\256_\277\216\361xL\v&!"
#"\204\220\245a\214\326\2\326\23\227e\1"
#"\230\302\n\226\3\330\233\211\251P\352\26"
#"O\"\27\v\201\302 +?\2570\20\5T\334\337\242\305\aiT\333(\241\5"
#"\363\302\205\v\230L&G\336#\204\20"
#"B\252\240E\253\206\365\5\277\273bv"
#"\203r!\262\344\20j\356\340\265\307\4"
#"\"\305\277L F\260'\31\366\314\t"
#"\234\275z\247\374\274\300\211,\1 \370"
#"\v<g\36\303\253\37\257\341\326H-\261\233\230[)\21B\bY\6\n\255\202"
#"\330\260\227\332(zu\343\237\305\314\345"
#"\207\302\n\265\a\201\2015\202\237\271z"
#"\37\252\n\315\25V\25\252\n\373\321\25"
#"\340\362O\341\371\233\26Z|^\0@\201\357]|\34\327 \310h\213\3348\241"
#"\240\232L&e\274V\234\350\224\20B\bIA\241U\20['\264\20<u\307"
#"4\307`\276\250g\361U\2\205\261y"
#"\21\247\245\20X\367\326\251\257\340_]"
#"\22\274\376g\267\235 S\3\305m<\227\t\236\370&\0d\241t#\e\"\316"
#"\2635\235N+\263\306\23B\b!1\24Z\230\267TYkK\227\341z\aR"
#"\e\3743\205U\313:w\240\b\254( >h\313\2j\234%\313\br\0F"
#"\0\271\375\35\\{\366]\350\335\257\343,\24F\3625\336\37I\21Z\264B7"
#"\"\255Y\204\20B\232@\241\205y\253E\230\371}\321`\332d\260uG\24\342"
#"J\235e+\3103\217\314\272\330+\3\201\372\0w5\300\255g\361\205"
#"7\4\27\277x\336\271\b\255B\237\370\32\364\332\343P\375{@\0\253"
) 500
(
#"\331\221\353\221\365\222\22U\241\v\221\20"
#"B\b\251co\3277\320\6B\253E\270\227a\235E\253y0ta\305R\3"
#"\210\267h\355\301\215\3359\254\b>\274|\nr\0310Z:\16\1\30\\\274i"
#"\361\372\23\n\25\205\210\201@\234\245K"
#"N\0\232\203\236\253\355\20>gZ\263\b!\204,\303\340,Z\251A2\\Q"
#"\326\324]\330\3448U\205\370\370,\361\327\336+V\16\242p\25\2g^\275\17"
#"\233[\344\326\"\277\367*>\3\301\231+wq\355\274;\306\247rPUg\375"
#"\322C(\4\302\1\177\343T\325\227\272D\246\24b\204l\217U\332\ew\367 "
#"\333d\20B+\fl\257\262H\250jr\245\341\262\347\367\177\373k\1\26\252>"
#"\306g\226\27\v\310!x\bF\25*\207\20Q\250X\230\207/\343\303[\317\342"
#"\203\313\217\340\331[(s:8\21\250N\233I\6\221\23~\35\"\331 u\26"
#"\254\311d\202\321h\264\306E\23\204\220"
#"e\211S\257\304\277\307\257\305q\227\251"
#"\317\256K\200-\272\247E\367\332\344\274"
#"\244\375\f\302u\30[\254D\244\\9\26\37\323$wVl\371\n\177?\272E"
#"\217\t\\|E\254V\251o-\36\230"
#"\314\211'\235\35\247\217\277\216\333\27\337"
#"\304\371'\237\307/\351\37\340\347\340\\"
#"\207\n\201H\21\324E\327\341\326Xd"
#"\361\344\226L\204\354\236\260\35.\323N"
#"\343>{\235\3558\234\250\305\213i\352"
#"v\31Y\324\247\260\257\351\26\203\260h"
#"\1\351A2\24T\341\373\243\321\b\243"
#"\321\b\373\373\373s\202l\336R\225\346"
#"h\343\t\2230\30\0\207\360\351\35\24"
#"\26{\310\241R\270\26\213\b-\21\301"
#"\343\377\342\2538#\257\343\211\213\337\207"
#"\250\v\240w\3661\201f9,\224\256\303-R\325\351\371t\17\354\370\b"
#"\331\35\251\276\271.L$\365\332\246"
#"\332\260\27o\313\354\223\e\37\23\177\27"
) 500
(
#"Z\264\272\305 ,Zux\2615\36\217a\255-\343ob\341\5\24i\30\212"
#"c\302\367\3759\322B\314\314\32\230\5"
#"\304\24E.\200B\200\34\310\254\23`"
#"\242{\305\353\200<\374\"\376\344\325w"
#"p\352\362y\234\373\324=\274\367\225\207"
#"\1#\20\b\344\320\302\300\"\347\340\276qR\263\\Z\257\bi\27)!\263l"
#"\e\215\373\357\330\353\261\352}\205\343J"
#"x\376\360\272\361k\213\254^\354\177\272"
#"\305`\367:\f]\204\307\335j'\24bG\213\323b:}\eG,[\n@"
#",r\30d\n\250XH \312\0\353\254V\310P\356m(\200*\346\266\343!"
#"\333\241j6j\255\2051\246\254C\24a\204\354\236x\333\254\370w\3773\25B"
#"\342\373\360\365l\2776\243J\270\255\373"
#":\244}\f\306\242\25[\250\342Aq\231\0012>6\264h\245\3161\32]\200"
#"\217\317\0225P)\334\207pb\351\372\364\355r{\35\21\301!r\354!\203\201"
#"\333~G0s\35\272\325\212>e\304\36\325\326\226H\5\317\212\b\2141s\342"
#"\232\"\213\220\335\23\307\320z\367~<\21Nm\263\266\2516\234\22T\252Zk"
#"9\343\344\255\37\f\322\242Ue\315Z"
#"g\205N\236\253\260b\251\206fm\213\361\376?C\16Ef\0k\17ap\2"
#"V\334\261F-T\37\302\364\340\315B"
#"re\345\271h\325\332.\251\270\211\360"
#"\357M\325%BHs\366\367\367\e\307"
#"\343\246\376n\23q\330\312\301\301A\253"
#"\357\227\244\31\214E\253\212MY#\222\347\22`~\25\242\373{rp}\341\371"
#"|\203\253\n\310\257\353Hv\312\234 "
#"\264\205X\24\2479\265<\4\342c\323\312,\372\355\23\222Uq\22U1\26\204"
#"\220\31M\4\316\"/CU\337\346\305\225\252\226\t\247\353V\t\327\375"
#"\335&\342\211\333\376\376\376\234\25\235"
#"\26\257n0\b\241\0257\336\220e"
) 500
(
#"W\203\354\212E~\374*\3238\200\271"
#"\316\247\212e:\265\245\334\254\202\"\260"
#",\a\260\a\243\376\265\34\220l.&M`\312\377CL\253DV\35m\2553"
#"\204\264\211&V\244*\221\225\np\17]na\377\266\2114\r\273\306\177\227X"
#"D\206\26\257\353\327\257\257e\34k\3638\330U\6\355:\\\24\4\337\246\nW"
#"w/u\301\236\236\2249=$.\a\177|\225\245\254y\331X(L\221h\265"
#"\260Z\25\"\v@\21\203\6\267E\221\277\2168\313V>s\224v\206\361x\214"
#"\311d\2\240]\365\207\220]\262Jj"
#"\203\324\261\241e\277j\3628\304v\247"
#"\252s;U\254\303\3031\304r\334\24\275\267hUYj\232\320\246JV7\e"
#"L\375\236r-\326}\237\330\"V\265\304\271j\211r%\305j\3119\363Tx"
#"\277s\357\37\302oQ\0045\310\304'"
#"xm7\341\363\260v\266\272\264M\365"
#"\207\220]\20[\227\352\304V\352X\340\250[p\221\vrH\355.,\263\320\215"
#"\330D\22069/Y\17\275\27Z\251\31Q\327\2\n\327\221\271x\221[p2"
#"\231\324.{\366\204\345\327\354\302p\256"
#"C\b \26\266\260R\251\372\270,\367"
#"\236(\240\241\273\260\e\217\246\362\331t"
#"\251~\21\262)R\355\241\252/JY\340SB!\25c\325\205\360\217U\251\23"
#"\226U\361f\276?\a\26\v\325\24}"
#"+\303]\323{\241\225\212\317\362f\326\256\254D\211\eUS7b\25M\22\344"
#"\305\302\253\256q\327a\0250\242n\373 \0\231\2nA@\21\30/\nU "
#"\227\"\31\253\373\24\254\32\230v\24\177-q\3314qI\02324\352DP("
#"\b|\240w*\346j\321\371\303\237M"
#"?\327\5\352\202\367\233\304\262\205ey\\K\27Y\215\336\v\255\330"
#"\244\34\n\207\252\343R\177\267\211\252"
#"N\253\351\254\256\352\275*\27d|"
) 500
(
#"\276\320=\266\b\23\374\0370\201\245\312\24\257\nDP\304by!)Nd\251"
#"i\275e\253\3173iB\326A\235%>\214-\n\3\275CVmW}i\217"
#"u}K\323q\313\237#\234\0\372p"
#"\221\311d\302\376k\303\264?\0\346\230"
#"\244\32\255w\177u\225E3\303\224\220\364\237;\316\265\252RK\324~^\0("
#"p\357\352\31\354\211@\214@$\203\310"
#"\31\274v\17\230e\314\267\301\371o\341Ys\26W?n\377:\215T\231{\253"
#"\26!C\247n\0\37\217\307\245g\301/ \1\216'\220\372\270\266k\325\362H"
#"\245.\n_\363\345>\32\215J\261\e"
#"z}\310\372\350\275\320J\271\r\273\256"
#"\334\233\334\177\235\20[\365Z^\244\316"
#"\271\305\324\255$,~\205\3370\273\374"
#"[?\302\225s\6\247\377\343?\305G\252\260V\241\372\0w\256\30\274xJp"
#"\351\226)\2163\305\265,n_|\nob\226g\253+t\275^\21\262n\252"
#"\332\304h4\302d2Y~q\315\212\327\e\"M\307\200\351tZN\16\353\274"
#"%duz/\264\200yq\25o\231B\232\223\24\251b\vAtX\36\3\240"
#"LH\372\275K\237\300\313\270\202\273\37"
#"\274\210\207\341\305\223\301\251\27\337\303\335"
#"W\316\341\217~\367\n\356\302\a\305\337"
#"\304s\362\20\236|3\3T\240\35\3514\343\372\304\372E\206L]\375\37\215F"
#"\214al\31\241%\276*\rP\225\227"
#"\2044\243\3671Z\300\321\340A\262\32\225\215M\0`\257PWn\23l\267\254"
#"\360/\360g\337\4~\345\346\v8Y\344\323\2f\202\355\221\227\376\v\16_2"
#"\356x\1\354\255?\305\265K\337\201\376"
#"\346]|\366\364\177@W\36U\227\342"
#"\373\b\3314uV,\237\202\200\264\207\320\353sppP\206=\304b"
#"\230\261\250\253\323{\213V\330\250\275"
#"\37\232\263\251\3259\332I\206\342\311"
) 500
(
#"%\37U\30\b2\340\356\217\360\3278"
#"\203O\237\362\257\301\245xpy\35\334"
#"\6\333\252P\30\25050\347\257A\277q\36P\3\253\266s\2253\216\177`\234"
#"\26\31\22U\361=\241\25\213\3u\273"
#"H\305q\205\256\304\30Z\266V\243\367"
#"\26\255\272\225\206dy\222+\207\0\210(\24\271;\246LB\232\1\370\4N\236"
#"\364\a\346P\311\220\301B\305Y\262\4"
#"\205E\313\0\260\2k\362\"\35D\346"
#"\317\274\205o\265\368\200\220!\223Z"
#"\251\34\273\t\331F\332E\335\363\b\305"
#"V\274\347\"Y\216\336\v-\240:\305\3iNm\322\274\"\356J\313\224\rN"
#"\"\251\344\0~\210\273\367\25O>\"\200dE\376R\205\213{\27'\260\324\270"
#"mw\214u\2260q\326,\253\335xF\254Od\350\304+\222\353\274\al/"
#"\335\301?\277*w\"i\306 \204V\234\242\200\215|9R\263S_\206\26\n"
#"#\nx\327\240\346\0002\210\2\362\310i|\32\37\342G\37\t\3600\240\205k"
#"QPl&mn\343Y\363o\360\351;\37\340\205\223\3619\244\23\tK\1\212"
#"wBB\201\225\3479\336~\373\355\344ql'\355\243I\262n\n\256\343\321\265"
#"0\230\225\250J\224G\232\221\312\301R"
#"\276\247p\26\251`s\350\322\20\245O"
#"\342\345\327\316\340\215\377\365\n\356{7"
#"\241\32Xqy\342\357]\371]\274\251\377=N\237t\eH\273\317\0\200\201J"
#"\16\325\346\211Qw\r\a\0172tF"
#"\243\21\256_\277\216\267\337~\273\262\177"
#"e\bG\373H\211\254\252gT\27\277E\252\351\275\320\212+L\223\274-}\357"
#"\bVIJW\233$UP\304Z\0010R\4\304+ \300\351_\177\v\257\350"
#"\3138u\356\17q\17pnA\25\334\177\355,N\277\364!\236\275\375"
#"\r<\241YP\21s@\2134\246\322\355\352\311\16\211\364\205\272\4\310"
) 500
(
#"\313\246l\340\244\244\275\304[\31\325\t"
#".\357\36\256;\216\251o\34\275w\35zu>\36\217\223\356\303*\263i_L"
#"\334\361\367\360\337m\331\357W\347z\265"
#"\326\302\30s\344x\21\201U\305\345\367,N?'8-\277^\246x\20|\6"
#"\257\334U\\~\2708\36\26\260\6\271"
#"\311\0Q\354\351\336,\23j\317\350K"
#"\335\"\303\240n\222\3453\273\3071Z"
#"\254\337\375\240n,\364Y\345\201\352`"
#"\371\370\363C\255\27\275\27Z)Sh"
#"\370\360S9\220\372$\266\342\357\321d"
#"\5f\374\375\0275\224Xd\251\352\221\304\260\347_?\204\275&\0r(N8"
#"aU,*TU\210\25\250\0012\265\320\223/\341\a\366\5@,\372btM"
#"\225a\37\352\27\351?\251\372\32\17\260"
#"\254\307\375\245\256\277\362\317\177\177\177\37"
#"\a\a\a\311q35\366\f\255\276\364c@\347\310\225\0\0 \0IDAT"
#"\24\253\241*\275C]\334V\337\324w"
#"\312\2U\367\335\226\21\233)\3016/"
#"\262\254\v\202\27\1\254\1\354\t\347\26"
#",b\265\334\365\24\20)\362l\1\n"
#"\227\6\242O\244\266\264\350K\375\"\303 \24Y>V\207\f\203E\375\225Ot"
#"Zu\\\325Ds(\364^h\1\315\205\323\20\366wj\"\240\342FQ\27\323"
#"Ue\21\234a 0P\25\344\6@\221!\v\342\22B\344\376\232\2(,\240"
#"\6\306\2322\361i\37H\305)Pd"
#"\221\256\241\252\215c\261\372\330w\16\221"
#"\330\370\20\276\26\37\347\343\266\26\215\23"
#"\251s\366\35\321\201\264\210\252\207*\""
#"\260\326\16v\360K\271\21S\342\351\231"
#"g\236\301\301\301\301\334\353\241\0\363n"
#"\330#\325\311:k\225\272\230\371b\17\304C\300\356\1Y :\324\211-)s"
#"\224\36\2\272\327\245|\245I\342\201i\250\365\214t\233"
#"U\226\365\263\256\367\207e\334~\343\361\30\326\332#\343E"
) 500
(
#"x\236\241\321{\241\345\37\2541\6\326\316\247\vH\5\355\245>\337'R\25="
#"\374\356\261\5+\\LP\265\367U\370"
#"{|\376\34\326Y\260`\240\232\27\331"
#"\342\275\240r\317\303k+\367\323\270d\247p) \372\320$SV\200\241v8"
#"\244{,\273}\16\353v\377i\362\214"
#"\353\254\237C\253#\375\360\315\324\220\362"
#"\a\207B\302\377\313\363|\356o\37\307"
#"\264\350_\327X\344?\217\217\215\3\351"
#"\303\317\244,Y\361y\\\342\6\343\366"
#"6\224\"\221\251zWa\361^\271\22\321o\313\3\30\25\0270\337S\272Xw"
#"\310\360H%)^\4\353v?I-(\253#N\1\21\322\344\363}\242\367B"
#"+\305\242\216 \264\344,\372\327D\214"
#"\255#\227\310\272+e\225\37\275\312\215"
#"X\265\222$\376L\345}J\360S\312\37\356\274\0fU\321\4\307\17\262z\22"
#"\322\n\226\311\215\325W\214\344\345\3579"
#"\0\250\235e\235\31\216N\0\220\16)YD\230\2\"d\225EV]fp#"
#"Y\225{p\231\364\a\361g\353\376Y"
#"k\221eY\351\276\24\221\362\357\360\265"
#"\272{]\267\2315\376\216Uqj\376;\0GS8\204\237K\211\261\246\345\227"
#"\n\222\354[##\244kPd9\24\17\1p\"\313-\342\231\365\203\35\331\212"
#"u\347\304\211\233\233\214\261}\263x\r"
#"Bh\211\b\366\367\367\313\337S\357\307"
#"\277\257K\330\210H\351\226\364b&t"
#"S\372\337S\2260/\310\374\317\343\n"
#"\221\272\364\25\251\30\253\320=\232\212o"
#"\363\2575q!6\241\312JF\b\331\36\24Y\363\344\0002\5\0\v\325\274\260"
#"\300[\b\273\250\205\370~<\24[M"
#"\203\352\373\344\202\36\214\320Z4p\307"
#"\"&\25<\177\234\353\373s\247\254g\341{\251\2701/\320b\313X\323"
#"\230\261X\374T\225E\225\233p4\32\315\255 \251k(\353h\34C\v\224"
) 500
(
#"$\244-PdEH\261\230G\254\213)\225\fP\340\320\307?\220Z\302\2617"
#"\26[Cb\20BK\365h\246\362\370\375P<\244V\317\255\343\36b1T\25"
#"\230\36\36\37\342\5\327\2621c\241\253"
#"2\274n\312\204\233\272~\370ZU9\372mxh\211\"\244\233Pd\35%\213"
#"\2723\301! @\6Z\335\233\22\216#u\373\277\366\271<\a!\264\0\34\211"
#"%\n\211-4\233V\333u\301\361M\357\241N4\246\342\304RB,\313\262\362"
#"Z\336R\26\306b\305b\257\316\312\327"
#"\324\34\334\344;\rm\266C\310\256\241"
#"\310J\363@\25\222\31\250\232\302U\270"
#"\a\2772Z\30\244\325\210\330pQ%"
#"\266\372\334\357\367>\217\26\340\36\340h"
#"4\302\365\353\327\e\2578\\\247\3530>w\323\367bK\333\272\256\eZ\355b"
#"+T\3528\0x\346\231g\312\277}\331\370\317\326\235oU&\223Io\32\36"
#"\a1\322fX?\3531f\17\271\375{\344\20dnsV@\342\325\322\244\216"
#"\324X\266J\22\334\256\322\373M\245="
#"M\305\312\262\253\346\226\241\356\372\361\352"
#"\273E.\306e\257\233\372\376)a\227"
#"r\233\212\b\336~\373\355\205\253 \327"
#"\21\304\316N\237\220\355\301\366\266\0u"
#"{\257\212\32\354\225]^\221^Y\r\343\264\32\22/t\22\2212\t\356\20\352"
#" \345x\v\331\204\v\263\356\\)Wj\374\373\262\256\325\1\30JW\206eC"
#"\332\300\20\6\270c3\333\262b\3765Pd\255J<\276\244\322?\364\215\336\v"
#"\255T\240\367*\237\355\vq\232\b\277\2321v\1\306\307\2\363qnup\325"
#"`5,\e\262mR\375\30E\26i\23^l\365\265\177\354\275\320\n\203\273\233"
#">\300\324\n\301\256R'\26S\253\17\303`\371X\244\2061ZU"
#"\v\n\302\363.\213\237\325T\255J\351*\353(\eBV!5pQ"
) 500
(
#"d\255F\335\"&r<\374\212\304\361x\334\313r\355\275\320\252\243.\237T_"
#"\36\366*.\303\2240\b_\363\201\360u\364\245\374\326A_gi\244\375\244R"
#"\264\204?I3R\251p\330\246\217O"
#"j\234\331d\234\364\256\30\204\320\252\23T\3411}z\260\213H\245nHu&"
#"@:f,\216\331\212;pvB\363\34\307\205M\310q\361\355q<\36c:"
#"\235\262}.\311\266R\377\f\215x\274"
#"\231L&\265\273\270t\225A\t\255E"
#"\371\253\342\244\245}\"\216\273\212\305Q"
#"\234p\264J\30\304\277\327\245\207\350["
#"\31\256J\223D\265\204l\32\3572d"
#"\273\\\r\226\333f\210\373\303\203\203\203"
#"\336\205\217\fBh5MoP\365Z\237\250\312\315\225\212\321J\21\316\354|>"
#"\255\324\261\253\270\313|\334H\237\342G"
#"\206f)%\355$\214\313\352{\37\267)\3728\1o\3\2512\255\313 \337E"
#"z\237G+\f\340\0362q\200{\312m\b,v\375\245\374\347\214_\250\306\273"
#"j<\214\327\"\333\204\365\355\370\254+"
#"q4I3\2042\355\275\372\360\"\313\307%\204\e2\17\201E\301\257a\6\374"
#"X<\305\302\311\37\233\262\322\364\325\345"
#"\272n\206R\357H;\20\221#b\237\220.\320'\253Vo\204V]\260\261\27"
#"\6\373\373\373\225\373\376\365U\200U\315"
#"\304\374k\241\310\252\263b\251*\362<"
#"\257=\237\317\3115$V\25\226\24\244d]\244\352\222\177m4\32a2\231l"
#"\373\226\bY\va~\255.\323\e\241"
#"U\25oT\227\200\323\277\347\203\301\303\277\373DJ@eY\326x/\307\252U"
#"\210\341{\3765/\306\206\3022\301\377"
#"t\255\222M\260(\326\264o\375\31\31\26}\360\226\364Fh\18\"\252<\376"
#"\367\272\314\346}]~\237\372.\336\222\265h%\234"
#"\210\340\323\237\376\364\302cR\347^\327\346\322]\240"
) 500
(
#"J\310\307\3641?\fi\37\2415\213"
#"\251\34H\327\361\253\20\273\\\217{#"
#"\264BW\240\377;\246j\226\27\272\302"
#"\372\26\360\30\213\251\224U/\365s\25B\301\321$\251i_h\232\371=tY"
#"Sl\221uP\325\317\355\357\3573\225"
#"\3\351\r\223\311\4\343\361\270\374\273k"
#"\365\272\363#a\325\0\227\212\267\n\203"
#"\353R\203c\337DV\210\27?\251 "
#"\367\324O\317\357\374\316\357\224\277\327U"
#"\356\270\354\372\350\202\255#%\360\303\301"
#".\236\b\364\265\236\221\355\222\22\355\243"
#"\321\b\a\a\a\265\375\331\220\332&\351"
#">MR3\265\231\316\v\255:\353\300"
#"2\302\300\237\253o\324\271R\227\245\256"
#"\254\207P\226U\304\3025.\363\224%"
#"\221\220u\320d\21K|\274\177\217\220.\361\326[ouv\25b\347\205\26\260"
#"\\\247\321\304\242\320\247\1\361\270qA"
#"\251@\370e\202\276\207@\\\306\313\344 #\3448\304u-\3360:5\1b"
#"\375#]\304\207\242\254#\314e\333t^h-[\350M\216\353\353loQ\326"
#"\367\252\3174ym\231\367\373J\323\357=\324\362!\233%\26YU\260\376-O"
#"\237\303J\272\304t:\305x<\356\234[\274\363Bk\225\214\275m|\20\233&"
#"L]\341\223\270\206\302\213\356-B\b!mg:\235\342\302\205\v\0\32293"
#"\333(\210;/\264\200j\253K\325\212\234\241\n\212\360;\347y~D|y\1"
#"\346E\30iFj\345fS\353\2!\353\200\331\337I\237\211\307k\237\3\262*"
#"6\270m\343{/\204\32621C\223\311\244\36399V%\265\27225#\360"
#"IGo\334\270\261\365{\354\"a\334\37\3237\220m\323\327D\313\204x\342>"
#"\365\340\340\240t!V\35\337&z!\264\26\5\266\247\266\213\31\32\241"
#"\265\245I\242\322\266\232`\333J\34\b?\224\34bd\367xkV[g"
) 500
(
#"\363\204\34\207T\32&\377\263+cToF\203e\224\355\220\262\226{b\361\264"
#"(%\6\2552\315\241\230'm\242+\203\17!M\250r\17vi\37\304\336\b"
#"\255E\235K\3700\352\266\342\3513\261%+\225!~\b\311[\327M\235\e\226"
#"\220M\302M\243\311\320\351\3028\325\e\241\345Yd\331R\325\322\277;DRY"
#"\341\343\337S\307\222\305\3702\344\36sd[pBD\206\214O\367\320vz'"
#"\264\26\305\27\r\335%\326\245\334#]"
#"\203eH\266\311\376\376>\16\16\16v}\e\r\260@\3214\\\23q+\306\342"
#"\326\242\376\330\342\375#\a\20\322\220\266"
#"\365\305\275\21ZU\333\240T\275\357W\37.:\327\20h\22\273E\26#\"\245"
#"5\213\345H6I\347,Yb\213{\266\320b\330\21\5r\300\t*\5\212e"
#"$\0\fr\34\2b\327r\351T\210\304\262\237\347j\342\366r\375\372\365#c"
#"y\333\332\306\336\256o`\35\244V\322"
#"\245\266\216Y\366\\\235\353\314Vd\35\373 \222yX\216d\223t)oV\16"
#" \203\201\2\20\25\2108m%\0\262\342\27\253\200\302\"\3\0\30\2305\16M"
#"q\177^\265x%t\375\247\306\220g"
#"\236yf\220\v\251\332\316\262\273\235\354"
#"\202^X\264\326\231\25>\265)\360\320"
#"`\16\255\346,\332\270\234\220u\320\345"
#"\272d\0\300\272\237V\24\n\353\254W\202\302je!\2dZ\354e\ag\355"
#"R\254\307\242\345\251\v\233\20\21\354\357"
#"\357\227\226\221\270\274\247\323i)l\273"
#"\374,\372Jl\325j\3333\352\205E\313\323\304\2\25\316h\374\362\320xf8"
#"T\201E\226'\254O\241\333\260\v\263,\322\35B\253\314x<\356\316JC\5"
#"\240\246\234\322\v\4b\0050\316\205(j\274\317\320\5p\211)E"
#"\230\254\331\16\220j\227\341\340\354\343\335\374kU\26C\346\31l\37"
) 500
(
#"\261\5\262m\317\246\363B+\254\360\313"
#"n\352\3336\325\333\6\206\232\372\3428"
#"\204\345U\347\236 \344\270\254\2621\374"
#"N\21\v\21SZ\251D\340D\227\32\347B\24@\221\303@\0001e\273q\356"
#"\3065\337JB`\245\304T\352\265&"
#"\211\236\311n\360\317\346\340\340\240Lw"
#"\322\266\347\323y\327a<\310\325\221\212"
#"\333\232N\247\330\337\337_xl\337\361"
#"\337\2271\b\253\21\246t\240\310\"\233"
#"\242sy\263\356\275\206\307\314c\370\332"
#"=\205\225\34\n\213C\0\220\303\"\6>\307\367\236{\bF2\210\21d\231\201"
#"\221\f\377\344\312\235\215\254:\34\217\307"
#"\330\337\337\307t:-\313\261n\341T"
#"U\30\t\373\310\366P\225\320\264Mt\336\242\25\22\3575\27\aA.J\3710"
#"\344\31\313\320\26\0l\2\272\f\t\2118y\31\37\332\313\205E+\3\324b\317"
#"\0\300\36\240\n\203\fO|\343\333\270"
#"t\355\213\310o\35\342\332\343\200\210\365"
#"Q\\k\303\a\270_\277~\375H\177_7PWM\234\330\306\333\211\317&\320"
#"\266\205\"\235\267h\305\254\"\232\272\222"
#"\364\214\354\216&A\357\354|\311\246i"
#"\237%\305B5\237\375\216\"\210\275\314"
#"\227e\313\25\206\0\312\21Ga\3\241"
#"s\36\177\240\177\16s\336\340\354\325\273"
#"P\25\30\350\321<[\t\313\223\205\2\32\\\267|\263\b\17S-\a\336\320\245"
#"\264L[e2\347\356\260\310\362\270\366"
#"\347V\324\263\271\312\352\353~P\35;/\264\326Qpl43\230+&M]"
#"\307|\341\302\205\326\315\240H\377\360\t"
#"J\333\324>\355\275?\304Y\363Y|"
#"\355\325\347!r\2F\4\331\331\257\343"
#"\216\0\n\3{\357\353\370\254\234\305+\367- @\16\23$/U\344\2(n"
#"\343\327\344\v\270&\212\17_:\r\363\271\253\270\257G\207"
#"\246T,\244\24\261]\202\"x\336\237[\0161~f\274"
) 500
(
#"\2214\30\314\251\325n\302=\0207\36$/n\22\241b\221\243\250~RL/"
#"\314Liu^h\245L\272>\301\3342\347\250K`:4h\231\251'\256["
#"\326\332\332\367\t9\16\261\305\264U\355"
#"S\16a\344C\\~\331\342V\236\303\352GxE_\304O]\372.\4\26F"
#"\4\n\340\204u\"\310\300\rJ\2\3"
#"\21A\206\217\361\265s_\300\265K\337"
#"\205\315-T\357\340\325\374%\234|\336"
#"}\336\343\313\340\210\365Xs\344a\346"
#"y\1\0\213\361\350\237a\372\366\344\330"
#"\"+\325\226\31\207\331\36\342z\21\22\267\227\272cW\276>|N8\203\254H"
#"\272\253\232\303 s\253m\v:/\264\200t\1.\333\b\330h\34\"\202o}"
#"\353[\234\261\325\20\326\225\361x<\267"
#"\r\n;`\262n\332\274J\332X\27\334~\361\3465<!\200\3404._\377"
#"*\36{\343\367\361\332=\3\253\n1\316\251\247R\254<t\31\265\334\bu\373"
#"\177\303\213\357\377\f\256\376\346y@\4"
#"\252\17\343\305\337~\36\370\346wp[MRd\316\225\203d\310`\312,\362\242"
#"\3003\2431\246\223\364\312\301e\211\333"
#"\262\265\26\306\30\266\361\226P\27C\27"
#"/j\250\22^\307\272\276\372hB[\254\240}\0\221\254\264ly:/\264\352"
#"\202\32\227-Hor\34:\341\226\23$M,\356\343\1\241\215\203\"\351\36\276"
#"\36\215F\243\226\356k\370\20\366p\26"
#"?u\332\247j\0p\362\223\370G\370\0?\274\v\30XX\v\330L\235\205J"
#"\374w2\263\343\317\374S<y\322B,`E \217\374\24>c\377\6w\356"
#"\247\267\6\233\213\277Uo\3652\209\304h<\302\333\323\3w\235(\341\351:"
#"\3723N@\333G\352\271N&\223\271\270\353Tv\202u\324\207\\"
#"|\320\241\257\23'\0\305\221T\273\235\27Zu\201\212\253\26\344P\e"
) 500
(
#"R\270j\216\"\253\36\237I\332\273&"
#"\270*\211l\202e\322\327\354\4\371{"
#"\250Z\210\357sm\16\250\e\200\2548"
#"\253\225`\17\231\25\334{\355\263\20\223"
#"!3\6b\4\347\256\336\203\250\201H1Y\21u\331\3415\207\30\v\325\243\253"
#"\377b\264\30\350\236\31\355Cu\17\323"
#"\351u\267\237\17\200M\rol\333\355\243\351~\226\3536 d(\366\353D\6"
#"\321\274\234Ld\201;\e\350\201\320\2"
#"\322\371\261R\2577\301\257@le\247"
#"\266A\342\300\301\241}\377E\304\345\322"
#"^\v\3\351#\355\2650\e\b\376\n"
#"?\374\250\230\303\233\f\366\343\37\343G"
#"\372+\370\245\307\r\254\261\20\344P\1"
#"N\276\360\3\250\315aUa\255\342\375\27O\2\247~\ng\336\177\a7\357\271"
#"\311\235\n\240\37\337\305\207\366Q\234:"
#"U\21\227\0250\36=\203\v\243\261\263"
#"b\25\367\223\233\342x\255\337\302g\331>\216}c{i\232\236h\23\36\207\f"
#"@.\0$\3\212==\275\305\326\323\v\241U\227\37k\335\347\354+\\\302\\"
#"O+\3\221\311 h\263\250W\311\0"
#"(\336\370\371K\370\276\5\200\217\361\265"
#"\v/\343\275\213_\304\317\t\240\330\203"
#"\300\35\343>\20\364+\n\340\344\223\370"
#"\322\331\37\340\362\377\361\27pq[w"
#"\361\332\357\276\16<\3734\236\324\372\240"
#"\363\361x\214\353\323\267\360\326\344z\261"
#"\304\336\245y\310P\30\265\244zx["
#"E\270\262\355\267\237\320XP\227\266i].\340\254XYXZ\266\2q/\301"
#"\351{\221\260t\335\263\275\252=\20\207\6;\26G\\\277\3742{B\206\216h"
#"\216\\\316\340\325W\4Oe\342\3227\\\3726\364\365'\0\0052\5\16\345\1"
#"L\261\206\320\210\5` z\b\225=\0\247\361\362\17\356\342\241s\217B\214"
#"u\203\323\305\233\320\327\317C\345\20\222"
#"\30\242B\353\273\301\211Y\320\261\337'"
) 500
(
#"\21\6fA\327\305\276\255\2774u\267\257%F\313\316\304|\6\4u\20s\301"
#"\360\275\20Z\241:]5\303y\323="
#"\352\206\260\227\235\210p\317\303\200\260\34"
#"\332l] \335c\231~\244\215}\216\205q+\257>\377M\34\376\372\eP\23"
#"\366\277\26x\344\5|\220\177\271\30s\\\266+'\271\366 \352R=@N\342"
#"\313\357?\300\227gr\314\35\255{s\203\225GDv6\21\246\225\277[\264e"
#"aW/\\\207\0\312\0\356U\3\341c\327P\325\36\210Cp!\371%\314d"
#"\2360\370\235\220u\260h\366\35/\270h\333@o`\221!\203X\v\30)\244"
#"T1YS\343\22:J\6-2\275\227qNP\227\356\301\213\252Bd\251O"
#"\375\0\224\"\253j\357\301m\227E\270X\250m\317\201\2449888\342>\334"
#"\305\263\353\325h\272\316\6\240\25288"
#"88\"\266\206\20\20\271J\322\327\276"
#"\243\252\24\237d#\324\211\207.\254fU\34B\305\a\1[\330b\35\226\21\24"
#"[\2248\353\270B]&w\30@\304\271\t\375v%\0\240\316\355\242E\206w"
#"_\22\361vj\243\321\250\334\263p["
#"\204V\2216XH\310j\354\352\331\365"
#"\302u\350Y\247K\257\312r\25'\316\353C\203\vgj7n\334(_7\306"
#"Pl\25\214\307cL&\223\336<s\322\36\302\276dQ.\300\266\r\370z\362"
#"2\336\323\27\234\230\202\1\324\270\331{"
#"\0317\345\342\254,\324\t\253\"wV\31(\354\255V\200s5\302\24.\305\244"
#"\327p'.\303\252rnC\371\223\345\330\325\363\352\325\24}]{P\205\237\17"
#"\223\230Ve\232\355:\261\373\202I7\347\t-\16}y\346\244]\244\332\\j"
#"o\303\330\272\263kD\1\v\1\324\314\262a\v\340v{s\261"
#"X.\265P\261/\241\315!\0\254h\271\374\335B\3Q\345\362\20"
) 500
(
#"I\261\31u\210\27Y\333\356\227\342gS%\212I;I%\"\337v\35\352\225"
#"\320\362\34\267\1\304\237\367\313D\343N"
#"\256\217B\204\201\360\363\250j\271i\364"
#"\20\334\306d\373\304B*\265\355Lk"
#"Q\205Q\347\360s\377\17\227\267\27\303"
#"\213)\264\227\0j2\270=\17\25P\27\267e4+>g\20\346!\n\367:"
#"\fE\326\256\312\243\257}\376\20\210\237"
#"\335\266\353Po\204\326q\255Y\213>\27o:\335'\213V\f;\224\31\336e"
#"\b\364\313]L\332Cl1Y\24 \337\246\266\251\306\205\271\213H\221\5\36P"
#"\3151\237\260\321\302\307a\t,\16\305"
#"\305a\t\2128\255b\223i\177\254\377"
#"\230\26\257\215\307\343\235\213,O\3533"
#"\365\223$\273\256;\275\20Z\353H\271"
#"\260\314\22\353u\36G\332A\325\363\252\vF\3463&\353$N#2\235N\223"
#"\375\322\256\305F\210 \330`Y\0\267"
#"\347`6\373\23\356\265\331Pc\260\207"
#"\231\205\313\177\6s\307\6\247\v\257\325"
#"\202\357\275K\253\bY\37t\35.\311"
#"\272\342\262\2320\235Nq\341\302\5\0\213\e\31\255B\335\"\365<G\243Qi"
#"\315\212\331\365\f\211\364\213T\320;\251"
#"o\203\273\200m\276\233\304a\37t\35"
#".I\235%k\335\235\225\252\302\332\372"
#"\375\263B\330(\273M\235\333\206\317\226"
#"\254\223.\244q\330\25m\20\235m\270\a\262<\376\271\35\34\34`4\32q\325"
#"\341q\20\21\30c\216\210\240u\26\252\27s\251\334Z\244_\250je\6xZ"
#"*\311&\31b\335\252\262\346\325\271O"
#"\267M\e\356\201,O\330_\357\262m\365Bh\1\233w\345\204\347\366\3528u"
#"\17]\305\347\320\32b\207\22?7\277"
#"\312\260\352\30\246\277 \233\300\367aC\333g\265j1@[&5m\270"
#"\a\262:\276>\371\274\220\314\f\177\f\266\235%8\2653x\37DJ\e\324"
) 500
(
#"\377\266\t;\364\252\230\220\324\314\250\17"
#"\317\233\264\207!\327\247x\242\274\277\277"
#"\217\311dRY&\333\354\237\206\374\\"
#"\372\304.\267o\352\215\320\332\246@\360"
#"\r/N\371\320'\206\326\271\324Y\22:\225\327\210t\236!Mr<q\233\362"
#"\333]U\271\25\267=\261N\275\306~"
#"\240\e\244\362\3241\30\376\230l\243\0"
#"\303\a\327W\2615\264\316\336\347\352\211"
#"\211\e\345\320\312\205l\237\241\17\340~"
#"/C \275H`\233mp\233\253\332\311f\250\332\371d\233\364Nhm\2038"
#"C|*\305\177\25]i\260]\354\354WY\"\357\3\337\253\226\220s5\30\331"
#"&C\213\317\2\322\355\264\256\235m\263"
#"\rVY\261c\1V\365\223\264\207T\270\317\266\240\320Z\3>f\253j?\245"
#".&\271\353bG\261\312\314\245\312\222"
#"E\b\331<q;m\243\320\254\22\202"
#"\341\275\307\1\374\264\202\265\217x\257\342"
#"m\322+\241\265\253\212\355\e\325t:\235K\375\0207\27667\274\256[n\352"
#"\2\325\253\312}\177\177\277u\235:!C\242\355\375LJ4-\352\307\271UW"
#"\373\210\237\343\266\205p/\204V<\213"
#"\330\205\240\361\215*\314\263\25[\262\332"
#"\232\26 ,\263\256\315\304\26-\t\17;\274\360\365T\236\254.}oB\372@"
#"U[m\v\261\305*u\217\313\272>\311\366\361\343B\270\310b\233\317hok"
#"W\332\22\273\250\340\361C\v\363l\2456Cm[#\314\262\f7n\334\0\0"
#"Xk\313|#] \325\1\306e\35\2767\36\217a\255\255LFJ\b\331\36"
#"a\373\254J\22\334\26\252\6\347:\21FvKj\\\b\2152\333z^\275\20"
#"Z\2734\325V]\327\273\244\274\340\252"
#"\313\t\263kB\253P\34\340\331\326{\216\251\253\3\276\23\a\332\375\34"
#"\b\31\"\241\265\241\315}N*\6\264j\202\27\36CvG\3353\241E"
) 500
(
#"k\t\274\333kW\25z\321u\275\340\32\217\307\230L&G\\Ymj\210]"
#"\f\332\af\345Xu\317\276\354\227\355\b\333\366|\b\351+\"\2km\353\332"
#"[\225\2530\16W\251\263t\221\366\261"
#"\355\276\275\3631Zm\254\314)\267\233\317\267\325f\27bHW\\\207u\rf"
#"<\36\2279y\226\355\b)\262\b\331.mlo\251E5a,p\354\5\b"
#"\351J\37:\24\302\354\0\333\256k\235\267h\205\264\305ZTu\3350\5D\270"
#"\332\255\311\fi\27~\345.\4\306W"
#"\225\305q\227\211\267\261\323'\244\257\264"
#"1\255CL\335$\231\26\255\366\263\313"
#"\347\321y\213\26\220N\243\320\326J>"
#"\235N\347\322@T\371\372c\201S\367\336\246h\213\310Z6\377I\27:mB"
#"\b!\303\240\27\26\255.\306\26\35\34"
#"\34\224YjS\256\255\272\357\261\316\357"
#"\330\0261UG\323\325\"\343\361\2704\17\23B\b!m\240\363B\313\30\3k"
#"\355N\\k\307\305\357\347u\341\302\5"
#"\08\22,\17l\336e\30\306\30\244\256\333&\352\334\204\0\216\b\2546~\a"
#"B\b!\303\242\363B+\25\227\325\205\0016\274G/\260\274\313+\225naS"
#"\337GD\312\34Z\341\275\2651\227Vjua\\f!m\257\3\204\20B\372"
#"O\347\205VH\34\307\324\226\201\266I"
#"\316\25\21\231[\21\21Z\267\266\235\237"
#"\245\255A\360\261\300\2fV\254\266<kB\b!$\244\27B\253\355n\257X"
#"d\325\255*\364\326\231.e\226\337&af\3676\212AB\b!$\244\27B"
#"+\0260m\22\"\361=5I\335\340\5\27\3406>\16\377\36*\336\322\347\27"
#"\16\324\211\353\266\tmB\b!\303\245\263B+5\230\266qp]&\337J\352"
#"=\277\367\227\267p\1G\203\276C\326i\335["
#"\326\205\270n\2013\32\215\346,}\361\275U\375"
) 500
(
#"\335\306z@\b\351\27\"\2\301a\371w\16 S\v\25\3\1\0\5\300\256\210"
#"\240#BkYQ\3257\213\206OY\20n\276\352\251K|\n,':ba"
#"U'\2626)t\275\365\312\1777\272\b\t\31\6\273\354\273\27];\334\213\321"
#"\347k\4\\\277w\250\212\f\0\304@"
#"\241\20\bT\250\263\210\243\23B\253I\372\201x\245^\237\210ES\270o_\30"
#"\313\225\22W\313t\\M\5\315\242\325"
#"\235\313v\226\252\212\v\27.\224\327\17"
#"\5\326.\26\3\20Bv\303\256bm\233L\34+'\241\2d\n@,\0\300"
#"\300\0\260\0205TZ\4@G\204V"
#"\225\310\362\203\275\265\26\306\230\344\261}"
#"#\376~^\224x\301\345;\0cL)\310\232\270\23\343\224\16\"\325\233\274."
#"Z\325Y\365\276\177m\177\177\377H\372"
#"\210\324\367\250\212\271\352\363\363%d\210"
#"\254{2U\367\371\252\3760\356\223\342"
#"\211g\312S\220\3\316E\210\34\205M\v\242@.\6\31\273)R\320\t\241\25"
#"\16\270\341\337\36/\262R\357\365\215*"
#"\301\224\212\333\362\242%t\t\306\226/"
#"\237C\313'~m\22\264\37\337G\352\370\330\342\26\336\207_1Xe\r\v?"
#"\337\245\334h\204\220\325\250\332rl\225"
#"\363,\362j\304\375T8a\257\263\320"
#"\207\375\220\377\231\251\365'r?p\b\310^?\366\266#k\243\23B\313\23\n"
#"\206!\16\274Ub\246\312\372\23\273\340"
#"\0\224\326$k]\a\361\316;\357\0\0\276\364\245/\225\347\254r!\326Y\305"
#"\252vD\257\n\334\257:\227\2777/\236W\2115#\204\f\217&cB\235;"
#"0u\256\252\276\265|M\274{\320@"
#"\24\200\354\1\260\20\30\6\303\223\222N"
#"\t-\240zs\345\276\v\257:\367\337\"\267Z\330Q\370U\214\252\212"
#"\267\337~\273\24X7n\3348b\325\n\t-S\376\234\241\350\365\347m"
) 500
(
#"z\377\251\373\3P\212\254eL\377\204"
#"\220\356\342\373\226p3\370U\332xU"
#"\337\27\367U\361\371\353\342\263B\261\225"
#"\274\37U\b2(,\254\270\350,\201\201\302\26F.\332\266H\a\205V\25}"
#"\37x\27\271O\2279G\352\363O?\375t\345\347\16\16\16\216t\200\313v\204"
#"ME\323\"\327$E\26!\375g\3256\336\324b\25\3679M&\202IA\6"
#"\201\"\207h\20\223\245\205'\221\301\360"
#"\244\2403r\273i\332\201\276\263(\376"
#"`\e\327\17\177\256\353|\333\276.!"
#"d\2634\355\263\233\246q\251\23M\241"
#"\345*\374\327\224&\375J\362\30\361bk~\25\"@\221\325&R\26\315m\322"
#"\t\213V\312\314;d\261u\\h\25"
#"\"\204\254\233\272\325\301u\375Mh\245"
#"\257Z\204\23\236\243\251\325j[4Y\325MvK\\w\266\375|:a\321j"
#"\342Z\"\325\254kE\17!\204\244Xf\2\\\325\37U\t\24c\f\262,\203"
#"\310,\5C\225\325j\27\242+%0w-\376\310b\266\371\214:!\264\200\243"
#"&\277p\345\34\251'4\251\23B\310\272\211S\03749\326\243\352v\276\b\27"
#"\301\304\356\300<\317\313\24\f)b\253"
#"\330\256\341d\266\35\304u!\\p\261"
#"\315g\324\t\241\25\aB{\321\300\312\274\230\260\3jK'D\b\351/\313\306"
#";\205}S\225\305*^\f\344I\t\254]\366s\354_\333E\354\322\335\25\235"
#"\20Z\261\357\236\2\2539u+i|\262RB\b9.\261\30\252\e\330RV"
#"+\21\267kD\352sU\202KD\222V\256]\215\21m\31\330\311<\2736\314"
#"tBh\1\353Io0T\302\6\37\317\374\b!d]\324%\372\254Z\35\350"
#"\205R\350\251\210\305Z*\330\334\37\37o\366\274K\342\276\226\264\203"
#"]\327\215\316\b-O\225\t\231TS\265\"\206eH\bY\a\261 "
) 500
(
#"2\306\224\242*\313\262\244\260\362\237\213"
#"\335\210\341.\23\251\0012\225D4\265"
#"bq[\375\es\374u\203\224\200\337\26\235\23ZdyR\26-v\b\204\264"
#"\207m\17\0\263\353\4n7\5`g\31\241\226\271\23/z\274\300\252\22V\376"
#"\330\324\357\251 \345*\361\224\352\277\216"
#"$\23\335R\37\227\262\340\221v\302\364"
#"\16KB\241\260\32\234}\21\322>\352,8\307%u\276Y\333\237\r\1V\36"
#"\0F\0U\227\335\34\2666\351h\335"
#"\352\300U\357\317\307\\\371my\342\362h{\237\305~\265\275\214F#L&\23"
#"\0\264h5\206\263\206\346T\255\310a\31\22\262{\302v8\235N1\36\217\327"
#"z\376\372\4\237\26p\272\n\6'\220"
#"\243\330\353\264\330B&\264\322\204\271\254"
#"b\253\325q\342>\303\317\244\366Z]&\310~\327\354:\26\2104\203\26-\262"
#"\21\252\314\365\204\220\335\22\273\30661"
#"PWY\205\24\6*\200\24og\301\220 ff\2552\306\314\345\262J\211\236"
#"u\334\267\210\224.\304\370\376c\267O"
#"[\5\r\373\327\366\262\253\272\323I\241\305Y\3!\244/\304\"h\23\3u\325"
#"\0#\0D\355\334qF\24\222\31hn\347,V\3419R\26\254\343\334\267?"
#"_Jd\305\347n\343\252i\306hu\213mk\210N\t-V\340\343\343;\4"
#"\346\320\"\244\35lS0\304b\300H"
#"\6\311\36\202dA\234\225\5\36\344\326"
#"\305kU\234\243\336\35\271\332}\205\347\230L&e\234V|\2356\t\254\24m"
#"\277\277!\222J\e\262\315\347\324)\241"
#"\305dp\307\207\235\0!\355!v\301\251\272\355hR\"c\35\304\253\3\37h"
#"\16\315\377\16j\347\255T{\250\336\336"
#"\254>\270~5Ri\36\252\356\277\352\36\332B\233\357m\250\304\v\300"
#"h\321j\b\5CsR\361\24,?BvO]\36\250u\235\277*"
) 500
(
#"Q\250\252\"S\0\">\263\3\\p|\356b\267j\316\271\356A*\365\275\353"
#"\26\6\2649|\204}k\373\bW\34zh\321J\320\326F\325v\252\3229t"
#"\301\4O\310\20\310\1\227N\241\20<"
#"(b\246V\351\361\342,\354\251\225\201"
#"s\b\0\30\b\274\247\320\0\222\271\330"
#"\255\232\353l\253\357\260\310\1X\227\356"
#"+\272}\221\366\214\tm\311LO\252"
#"\331\345x\327\31\241\305J\274\32\241\310"
#"\212\313\217\345I\310\216Q\300\250B\345"
#"\20\252\305\352?1\316\232\323\320}\30"
#"\272\2\263,+W\5\366\241}\37L"
#"\336\306\376\370\2`\16\1\231i\255\303"
#"\235\336\325Q\230\233\260\335\354\272-\354"
#"\355\364\352K\300J\274:\273\362K\23"
#"B\26 \200\250\300w\305\n\205\205\""
#"\3\220\232\a\253\352\\\36+\377Z\212"
#"\276\364\231\242\6\300\36\24\207\20\354A"
#"\1\354)\340\254o\273\275\267\24})"
#"\367>\261\353\347\321)\213\26Y\2350\320\225eIHKP\0R\4\236\213k"
#"\237\231\32\27#\245\271{9p\5\356"
#"\355\355\301Z\333\310j\325\213v\256\300"
#"t\372\307\330\37\217 \205\30\25\233c\241os\a\320\252\325~veh\350\214"
#"\320Je6'\315\331FRDB\310\222\204c\262\315\241\260EVv\340?\374"
#"\373\t\2141s\242\352\360\360\2602\265"
#"B/\333\264\0\300\36\246\327'\30\215.\0\232#7.\226-\337\361\255\305P"
#"d\265\223\321h\204\351t\272\323\347\323"
#"\31\241\305\n\274\36D\4\337\372\326\267"
#"(X\ti\5v\266\211\263\311`\213.Y\0X\315\260\277\277\177d\v\255\230"
#">[RrX\0\341\266<\31I\245\224\204\0\0 \0IDAT2\30\b"
#",\262\232\24\24\273\240\257\317\240/0"
#"\30\276\1\24\5\353\303\230\2423g\247@\310nQ\3\201"
#"q\253\0165/\305C.@n\233\247c\351\353\304\311m"
) 500
(
#"\t\344RML&o\341\177\272\340\27\b\30\264i\370Je\317'\355\240\r\213"
#"\300\332SS\27@Q\260\36D\4\326"
#"\26\313\307\331\31\20\262[\304\331\264\24"
#"\200\212Ba\0X\30u\277-\323F\373\330G\272oo]H\226\b\376\375d"
#"\n#\272R\352\213M\21\246\324h\343"
#"\366@C\247j\223\362m\322\31\241E\326CjsVB\310\3560\20\210\0\202"
#"\275\"d\313\255*\204\0\a\a\a\e\313\22\337\5|y\204X\25\214G\243\326"
#"L\24\331\217\356\236T]P\3252>\253\356\270m@\2415\20\270\230\200\220~"
#"\300\305,\365Y\343\333\300\320\237\317\266"
#"\251\212]\364\304\226\306m?\37\n\255\1\20\307\16\304fnBH;\251\332W"
#"\220V\24$\367\204\334\365\n\314\272\4\321d{\304\365 ~\36\333n?\24Z"
#"\3 \345\243\346\n\31B\272\301\320\335"
#"\207!\261x\t\305\326\256\303\"\342{"
#"c\377\272y\3022\217\205\324\376\376>"
#"\16\16\16\346^\213\217\333\26\235\22Z"
#"\234%\34\17_v>\30\236\20\322-\206\336\377Um>=\32\215v\276\342\217"
#"\326\254\355\23\326\207EA\357\273\f\237"
#"\351\224\320\"\307#\313\2622\207\26!"
#"\244{\260\355\246\t-[\273*\243\320"
#"]\305\347\264}\26\245q\330\345\252\320"
#"\316\354uH\216\17\343\263\b\351\36\341"
#"\300=\231L\0065\210/#ZB\261\265\255L\340)w\345\220\236O\233\b-"
#"\212\243\321h\316m\30\36\343\331\246 "
#"\246Ek \304\1\361\24Z\204t\217"
#"\241M\222\226\375\276\323\351\364\210+q"
#"\223\304\327\260\326Rh\355\220e\312~\233\317\211Bk \354z\325\5!d5"
#"\206$\254\222\204}\227\206\345a\213\177"
#"\200\252\333\373P5/6\242\376\23\214F\243\271@\371UY\344\222\242\313"
#"p\267T\255\314m\23\235\24Z\203\357x\216\311\320f\305\204t\225p\360"
) 500
(
#"\16-5\203i\277\n\b,\304\355\376\b\25\353\204\27\0U\1\324m\317#\2"
#"d\n\b2\250\09\366\346\254[a"
#"\316\255\252\344\226Ue\272(\310\232\253"
#"\270wK\\\356\243\321\b\327\257_\337"
#"\321\335\244\351\244\320b\205>\36\354\24"
#"\b\351\6q\376\273\370\365\336#p\333\22\211ue\0\340\326%\203L\4\2311"
#"\220L`$\303\331\253w\240\362\0\352"
#"\22\352#\3\340\255]\241\340\252Z\235"
#"\30\346&\253\23\261u\351\4\374k\203"
#"y6-\245\215y\346:\31\f\317\312\274\34a\20|\352uB\bi'\26\2"
#"\203C\30\354\25]\325\371k7q\351"
#"\215\317\303~\367\20\327\236\264P-\372"
#"6\205\337\263\247\350\333\314\21\213 \0"
#"\354\357\357CD\216l\315Re\231J\275\27\37\307\205F\273#|\26\243\321\b"
#"\223\311d\307wt\224\316X\264\270a\347\352\304A\3604u\23\322M\274ef"
#"(\203\271\26\377\333S@a\vW\342"
#"\317\341\17\355\237C?op\366\352\275"
#"\302\255\b@l\361\201\231{1\26>\252\212\203\203\2039\v\27pt\305`\34"
#"w\25\347\307J\305\274\16\345\231\264\215]\255$\\\6Z\264zN8\323\272q"
#"\343\6\0\2672\306\30\303\0252\204t\204\241\272\16Eg\266\0)\377w\e\27"
#"\315\347\361G\0p\371\0230\377\351\253"
#"\270\373\336e<\2\203\\\200\314\32\210"
#"\1\234\353\320TZ\241B\vW\330\37N\247\323d\312\206\252g@k\326\356Q"
#"U\214\307\3432\245C\3334B\347\204V\333\n\260\355T\5r\262\34\ti?"
#"\341 \236\347y9\230\217F\2439\327W_Q\1\0\vU\3\243\6\212\273\270"
#"z\356\363x\363\322\273\260\257\237\ap"
#"\17W\317~\22\247.=\212\374\332yd\0\254Q\30\270@y\4]"
#"\\U\177wppp\304\375\24\212&_\316q\337\31o\2134\264\34g"
) 500
(
#"mb\321\202\205]\3239\241E\267\327\361\360\326,\316\274\bi?C\264b\205"
#"\b0'\230\344\326W\361\362\a\237\301"
#"\225?y\n\242\0p\32/\374\353\177"
#"\216\227\236\372S\374\347?<\217\237\315"
#"\0\203\34\300\336\234\310Zx\235\204\245"
#"\v@)j\253>\343\3031\2141\345\312\306\375\375\375\245\276#9>m\215\315"
#"\362tNh\1\303\354p\326\5\315\333\204t\eU\305t:=\262in\352\270"
#"\316\367\225E\200\273\24?-\24r\346"
#"\177\304S'Q\254H\4\314\251O\340"
#"\214\276\203\37}\f\374\334)\227\332\301"
#"\254\361\273WY\16\307\343qY\306\361 \317~v\275\324\325\345.\304nwB"
#"h\261\302\22B\206J*6\310[Q\232~\246\253\370t\r\212\34\26\0312\361"
#"\331\327\25\252\200\210\2\330\203\25\205\270"
#"\3\221\tf\312\354\230\324yP\274\270"
#"\342\370\264yR\317\301\377}\341\302\205"
#"\326\273\321;\261\3520.\\\262:\234"
#"i\21\322\35\252\6\27\300\r\364un\255\336P$\"5\0p\352S8\363\227"
#"\377\t\357\336\25\267\332P\r\354\335\277"
#"\306\377\245\237\302\243'\375\al\231\310"
#"t\35,\312\257\225J\aA\326G\225\305\312\377m\255M\36\337&:!\264B"
#"z\325\201l\201\324v\21\24[\204t\203\252A>^\25\27\36\323\247\266\355V"
#"\32\332\231\373\360\221\307\361?\234\371\0"
#"/\177\365\373\260\222\3r\17_\373\335"
#"\177\a{\351\27\360s\252\205\270\262\310"
#"\5n_\2365\321\304uU\3363\307\250\265RW\356\341JC\377Z\e\313\277"
#"\23B\213\302`u\252\312\256\215\225\221"
#"\20\222\246\252\275^\277~\275\f\302\216"
#"S\21\364\201\34\26\260\6\26\271\23\\"
#"8\215\27\337\277\207\257\376\327\307qBN@\366N\341\345O}\247X\201"
#"h\335F=\272\207\314*D\217\337\307\245\254)q^.\366\245\273!\254\347"
) 500
(
#"\361sj[\375\357D\214\26Y\235\260#\b\375\334\\}HH7\250r\37\206"
#"m9|\17\350\317D*S\3\30\300 \203\205\302(\0y\4/\276oq\331"
#"\177\307\242\v\313E!\310a4\3\314"
#"z\276\177\234\322a\250\371\314\332\206\267"
#"f\305\2517<m{.\235\261h\221\325\b\223\225\206\352\237\"\213\220nPg"
#"\241\362\231\316\303\f\347\275\352/\313\257"
#"\22\304\341(\312M\246\313c\254\"\323=\b2\267:Q\243\317\34\3676*2"
#"\307\247\240\225k\363t\255|;!\264(\b\b!C\246j`\351\223\2330I"
#"\261\365\216\302\300\250\270\315\245\5\205\0"
#"\363\303\227\205\26\26,)\266\3511b"
#"\261\356\341\255n\313\235\324\226=ds"
#"\204\326\254.\320\t\241E\326C\325\316"
#"\363\204\220\356\342\267\215\361V\255\272v"
#"\336\271v/\200\270<\357\245\270:*9\347\337\237\27ak\274\225\6\273lt"
#"\315\322\322U\272V\217;#\264R\5"
#"\333\265\302\336\25a\336\35\226\31!\335"
#"\247\312=\325d\363c\262^\230~h\273tq\373\251\316\b\255Tef\247\321"
#"\214Pd\261\314\b\351.\261\213*|m:\235\342\302\205\v\0\322[\367\3641"
#"\375C\eH\tY\366\265\233\241\213\"\v\350\220\320\na\5^\216T\314\0;"
#"\2B\332O]\376\254\324\204\363\372\365"
#"\353\311$\246)\367\26\5\327\361a?"
#"\272y\352\26\202t\205\326\v-\6\26"
#"\36\237T\216\21c\314\221\214\272\204\220"
#"v\261L\376&\377Z\252\317\244G`3\304\345\312\261j\275\204\365<\264fu"
#"M\340\266^h\305\260\"\257\216\27Vu\373w\21B\332CU|\225\317\237\225"
#"\262l\205ILS\347c\273_/a\371\263l\327K\335j\333.\3219\241E"
#"\263\367r\210\b\336y\347\35\0\2001\206\26BB"
#":D\223\1%\265\32.\\\205\230:\226}\300\372"
) 500
(
#"\350\332\240\337E\272\32\233\345\351\234\320"
#"\362\260r7'\f\202\365nCBH7XU\24M\247\323J\313\26'\\\244"
#"+t]d\1\35\26Zdu\332\25\243a\213,\316\216\3348\367\246\6\357\373"
#"\215b\347\376\326Cp\230 C\3408\355t2\231$-[\307=/i\16\5"
#"\355r\204\345\265\277\277\337y\221\5\264"
#"Th\261b\256\2370\246\243M\356\3"
#"\205\201\21\227\375\31\260\310\254q[l"
#"\24[h(\214\313\366\fS\b\253\342o\331[\343\6\e\204t\2238oV\e"
#"\332\364\20\251+\367\252|g$M\34"
#"\213\330\207\272\335J\241\325\307\202\3364"
#"\213\22\272\252*\262,\203\252\266j\265"
#"\241\300\272\301BM!\272\24\271\0\271\0PS\274\37uTZ\2102\315wq"
#"\313\204\264\212p\362\224Z\2118\235N"
#"\261\277\277_\376M\326O8y]\224"
#"\215\237\v\22\352\361\345\345\267\331\251\253"
#"\333]\241\225B+$\265s=\231'\234\325\246V)\305\26\254v5\362\"@"
#"\379\304\2\271\0052X\br@,"
#"\362\322\242\345v\326P\0\271\354\271\217"
#"\266\352{\20\262\e\352\266\334\361m\335"
#"o<\335\256\266\337/\302\364\32\326\332"
#"\312t\e\214\217\253GD0\32\2150\231L\26\36\327\25Z%\264\302\312\27["
#"]\302J\e\37;t\302t\r\251\362i\365\f\252\270M\21\1\f\340\215W\202"
#"\f\252\2\243:\23T\232C`a\340"
#"\\\216\332\256\352K\310N\210\263\221\307"
#"\36\0\377\263.^\213\34\237\260\217\215"
#"\27\34\305\23\341\326\366\307;\242\217q"
#"Y!\255\32\251\302\312\30\246\"HY\265XQ\347\211;\330\252d\206m+;"
#"\365f*\0\200\317\v$\20\5\4R"
#"\210\254\242\232\212\300\252\333@V`"
#"\23\233\313\0222<\342\330\313\324O\337\356'\223I\345J"
#"D\262~\270\327d3|9\355\357\357\343\340\340\340\310\373"
) 500
(
#"]\337\34\2755B\253.\351[\352\357\256\25\3646Hu\2547n\334(\337\217"
#"g\274m@0\263bA\rD\335\240\1\261\200`&\2464\a\212\300yGk"
#"\252.!\255\241*\2365\354\e\332\24"
#"\243\331G\252\274\t\24Y\365\210He"
#"\352\241E\232\240\355\264f\264\252+\270"
#"\2240\350ZAo\212\252 \370&.\326V\b\256\360\26\304\213\256{\270r."
#"s\rO\4\"\31\304\354\271\277/\335J~\224\20\322l\327\a\37\257E6\3"
#"\307\246\325\30\215F\270~\375:\200\226"
#"\214Mk\2445B\313CQ\265\34\251\262\211Wm.\363\331\255SZ\255\\U"
#"\24\365?\5g\256\334E\256\n\2659"
#"\324*\254\3751^\375\341\347\221\235}\rw9)'$I\223\305Ca2\323"
#"\276\rjm\205\345\234FU\217$%m\305\330\264FZ#\264R\e\37\223\325"
#"\351K\371\225^E\261\200<\212\27~\360.~\345/_\304\253\337\a\300LZ"
#"\204\0\250\266b\327\205\n\370\340\370."
#"/\233\357\2\34\333\252Q\3252\215\3"
#"\320\337\260\240V\b\255\224\251\273o\212"
#"v\233\264-\340\375X\250s'\nL"
#"\221\304\364\t\374\313\257\236\305\3537n"
#"\226\326/B\310\214\252\27645\200\205{\"rE\334f`\214q5\241\310\2"
#"\232\207\275t\215V\214TLJ\272^z\325Q\212-\363g)\0\21\305#\217"
#"~\2\370\233{\270\267\343[#\244+4\231|\365q\200k\23u\253\302\207\204"
#"/\207\324\36\206q\252\222\276\320\n\241"
#"\5\314\aq\246R:\220\341\242\260."
#"\235\203\330\"[|\6\375\340\377\305=\341\200@Hh\211\252Z\6_\27\267\25"
#"[\265\330\357\256\217x<c\371\246\23"
#"\222\246V\311\366I\360\267Fh\1\363K\220\2151\\\206\274\4}\252"
#"\224s\250\201\300\0j\0\230\"\355\203\205<\366\t<\314LZd\340"
) 500
(
#"\204\3\270\265vny|\312\rS5\320{\2615t\21\260n\3743a\212\207"
#"Y\35\364\tI\253\254W}ta\267FhUm\37C\232\221\332f'\314\241"
#"\325Y\304\211\355C\321\"\237\203\301\315"
#"?}\23\370\364i\234\356\251\266$\244"
#")\251\334y\300\321\301\253j;\256\220\320\262E\326G,\"z;)^\200\267"
#"d\305\tI\333\275E\334zh\205\320J\355\t5\324\312x\\\372WI\r\0"
#"\213\275\"\17\204\3426\276\375\206\342\331"
#"/>\345V\"\22B\0\314\273[R\375@\223\325\210\24[\353'\266&\366\315"
#"-\326\224\272\375\v\333\230L{\235\264"
#"Bh5\315\373D\252\351v\5\265\356\237\0020Zl\34\r\30\235\5\301\273\357"
#"w\37W\37{\n\327\316\274\202\177y\336:\227\"!\244\244.\6\250\351\312n"
#"/\266\272\276\355I\233\210\205\304\220\306"
#"\271T\236\254\230\276\273V[=R\261a7\247\323\25\324{\5\1\210\356A\324"
#"\"S\340\275\227N\301\210\300\310\t\230"
#"\314\300\310i\374\307g\356\341\360\375\227"
#"\360\210\260~\20R\305q\333F\230\320"
#"\324C\217\303\352\244\\\273C`(y\262\26\321J\241\25\232X\311\0\20 /"
#"\252\242\352\3@N\343\205\367r\250\26"
#"\377|fx\375;|\370\353\377\20\231ru\24!1\353\216q\255\313\261\305\266"
#"\267<C\260h\305\"j(y\262\26\321J\2415T\325{\\\272Yf\26\n"
#"\203\275\342\326]\22R\v\201@\341W"
#"\32\272\367r\354\315:*d\334\353\220"
#"\220\200u\f\336U\251\37\372*\f\266"
#"M\337\3131\34\273\207\224'k\21{"
#"\273\276\1O\337\225\3766\350f\331\31"
#"\227\220\324\357yh\24\200q\177[\5L\361\235\264\230\25HV4Re\214\26"
#"!\t\216\23X\234\352C\302\255z\252\202\231\t\361"
#"\214F#\30c\216\344\311\212c\261\207$\266Z#"
) 500
(
#"\264B\245k\214\351\250ufwtV\250*\212\24\16\6\n\vU/\254\24\20"
#"\201E\16\3\201\212\t\366=\364\271\342"
#"\t!\233\304\17\206\223\311\4\"\202\375"
#"\375\375#\313\363\311r\364Q`\370\357\224\252\37\251<YC\v\rj\235I`"
#"H\205\277N\302\212\333\251\34Z\316\214"
#"\5Q\267\237\241\327Y\20\201BK\27"
#"\242\0P\315\335[\352\334\215\324Z\204"
#"\244i\332\217.\232\320\3061Y\a\a\aL\377\260$U\326\234>\221\312\221U"
#"\265\231\366\20\307\370\326\t-r|\272"
#"T\221\25E.\254\302H%\352\376\26\267\261!Dg\226,\210\217\313r\302\214"
#"y\264\bI\323t _f\320\367\307\371\270-\n\256f\244,X]\352\243\233"
#"\20\a\275\3G\23\265\366Q`6\2455\256C\262\32\251F\334\245\312<\27g"
#"UX\267\374\357R\276\26\274\35\374\302"
#"\30-B\322,3\2605\35\364\303\343"
#"\374\240\272(?\22\351\247\5\313\263\277"
#"\277\17\21YX\a\206\276Z\265UB\253\217\276\353M3\264\240BBH\232]"
#"\364\3ar\323\252\330-\366O\355g\3213J\305Y]\270p\1\a\a\a\275"
#"\25\221\353\244UBk\350\252wUX^\204\220]\365\3>P\336o\261\262\310"
#"MF\341\325\36\232\6\246\207qV\27.\\\200\252\316%!M\235\223\314h\225"
#"\320\362P!\23B\310\362T\rr\233\34\374\274U=\314&\377\326[o\301\230"
#"\243\256}\16\302\355b\31\217H\225\233\260j\3s2\243uB\213\r\361x\204"
#"\261\31L\223A\310\260\b\a\316\252\237"
#"\233\272.\2002w\222\17\224O\5H"
#"\263\217o\27\213\236\205\177\226)\327\360"
#"6\352V\37\330\271\320\212\37\220\27\a"
#"|p\253\21\212,k-\313\220\220\201\321tS\351M2\235N\223\233"
#"\t\263_\357\26\376\371UM\330\31\356\323\214\235/\333\2523s\323\32"
) 500
(
#"\263<>\207\226\2656i\272'\204\f\227M\367\251\361~\213q*\210!\356s"
#"\3275\374\263\2117\203\16\337\213\177O"
#"}\236\314\330\271E+\5M\221\253\343"
#"\313\214nCBH\314\246\373\324T\356"
#"\244T\260<\373\366\366\20\273\377|\234]*eCU,\26]\210\365\264Jh"
#"\361a\255F\274#:\255\201\204\20`\326\37\354\"\214 v+y\353\226\377="
#"f\231~\277kc\3046\372\345&e"
#"\262\350\230U\363\242\321\205XO\253\204"
#"\26E\326j\204\345F\221E\b\211i"
#"K\337\352\a\361\324\n\266\370\36\253\366"
#"\310K\35K\352EN\234\306!.\313g\236y\6Y\2261\371\354\206h\215\320"
#"b\243Y\215T\3bY\22Bb\252D\313.\360+\330\302m|\246\323\351\221"
#"IcH\337\267\261Y\205e\254X\261"
#"\270\n\313\376\355\267\337.\217\365\357\223"
#"\365\321\32\241\305\31\312j\244\226o\263\f\t!@u`r[\372[oAQ"
#"U\214\307\343\271\270\256\2206\334k\e"
#"i\22'\25\276\26\v[\377\271\324\371"
#"\310\372h\215\320\2\372\275'\324&\211"
#"\305V\370\32!d\270\244\372\206\360\275"
#"m\261H(\205\342\312\247\205\0\300\354"
#"\343K\220r\253\326\5\270\307\341&m"
#"\21\337}\204B\253'\3043\30\346\320\"\204\204\354j\20]f\20\367\307xA"
#"\340\255\\\314\305UOUv\366eW\20\262\\7C+\204V*\220\233\17|"
#"58+!\204\244\330U\214Vj\20\257\272~\34\254}\375\372\3659\227\227\217"
#"\343\"\365\244Vw\326=s\216\31\233\245\25B+\265\22\202\17~y\2141\370"
#"\326\267\276\265\353\333 \204\264\210p\201"
#"\314\256&\262\313\356\207\227J\r\1\34"
#"\r\236\37:\241\221\302\257\344T\325\344v9u\223p\216\265\233\245\25B"
#"+\5\37\374\362t\331\355JaM\310fhC\273Z\365\36\342~!\24"
) 500
(
#"W\336\255X%,\352\316\263\350\270u\365GU)*\326u~\357\32lR\6"
#"@;\352\302\20i\245\320\342\240\273:"
#"M\315\303M\343\341R\347Z\366\371\324"
#"\345\303I]\207\317\237\220\365\221\nz"
#"\356\nu\367\234\n\236\a\252\343\221\252"
#"<&\261\370Yg\31\245\316\333$~"
#"\266\352\36\374\367\214c\331H\273i\215"
#"\320\342\22\323\365\340\et\270\5O*"
#"\355\203\337\vq\221\330Z$\212\232|.\365\371:\0236\237?!\353a[\202"
#"b\223,\n'\211\5\307h4\232\233HzkO\225\3532\265Zo]\304\345"
#"\37_\273\3563\261\250\2\216\237Q\237"
#"\354\206\326\b-V\224\325\211\es,"
#"\240R\202j\231\275\20S\307\245\32w"
#"\235\270j\362~\325\265\b!\253\221\232\\Yk;78/s\277\323\351\364\310"
#"\361\243\321(\3317\0023\313\330&\254"
#"~\341\371\252\316\31Z\343\302\317\370}!C\252&\276]\23\317C\2435B\213"
#"\25du\342\331\231\265\26Y\226!\317\363#\1\260>\246a\235\327\f_\253{"
#"\216\313\256xa\235 d}\3542\30~UR\"\245I\177\21\37\237Z}\27"
#"[\216<uBg\25\302@u\340\250\305-\24zM\277_\374\332&\255r\344"
#"\370\354\\h\371J\261\214\205\205T\343"
#"\eX\236\347G\3124\26\\\"\202w\336y\247\321y\303\254\315\361s:\256i"
#";\26\212\213f\200\204\220aP\345\366"
#"\254;\266\356\365\324y\342>\253J\200\35\a\37\250~ppP\eW\325\364\373"
#"\325\tP\366\233\355c\347B\253\252\361"
#"P\2257\247.\310\23\300\0211\25\36"
#"\363\245/}i\341\371\17\16\16\346\266\304\250{6\251\270\2OU\aSu\377"
#"\204\220\365\320\365v\25[\252\232.\372\211\217kb\361\361\307l\"\320"
#"\274N\364-\343\376\253\22X]\177\316}e\347B\253\312J\302\312\322\34"
) 500
(
#"\337\310F\243\321\234\250\362\345\332DL"
#"-{\275\252\6]\3279\245f\210\361\352\31>wB\326O\3122\3245R\253"
#"\246\253B\30R\277\327\275\266\3121MIM~\303k\244\276\3232\202)\365}"
#")\270\332\205h\vZ\234\252\316\305\24"
#"\r\205\3434\206P\264x\241r\343\306"
#"\215\271c\326\325\241>\375\364\323\e\357"
#"\230\343\357\3433B\257\v\6\213\222!"
#"\223\22)d\373\204q\262\354\207\206C"
#"+\204\26\320\357\n\270\350;5\371\316"
#"\2615(\266\34\211\310\21\241\265\256\262"
#"\334\244\320J\255\16\232N\247\30\217\307s)(\342`V\240>\367VS\327\2"
#"!}'\236dPh\355\16\221Y\36-\366C\303a\347\256\303\230\246\203e\227"
#"\250\n\350\\f\331\3572+`\272\24\24Yu\217aL\30\260x\353\215\270\214"
#"\233\272\26\b\351;\261\213\212l\217E"
#"\351\30\3100h\235\320j\222k\251K"
#"\324\231\354S\376\364U\367\362\362\3476"
#"\306\349g\37\210\267\336\360\326\256\272"
#" \375Uc\36\b\351\v\251\311\235\357"
#"'\254\265\273\276\275\336\23\3679a.32\34Z'\264\3726\30\306\203|J"
#"\\\371\375\252\200\231\240\210\3232,*"
#"\227\260\363\364b\253K.\202\272\3341"
#"\300|\275\360\361[\252G\267\336Xe\225\21!}\245*x\274+\375B\337\350"
#"R\237L\326G\353\204\226\247O\203c"
#"\225\353\320\213\204&\256\260\324\347S\357"
#"\307[\357t\205\252g]\347\372\vW+\2\230+\317:\313h\237\352\26!M"
#"Y\264\32\217l\a\226\375\360h\205\320"
#"\212U~_\a\302\320\202\245Z\277\333z*\316*e\235\251\232\251\366u\346T"
#"'2\275\350\212\5l\252\314\b\31\32"
#"\261\373\220l\227.\247\326 \307\243UB\253O\261Y1\313\6\266/c"
#"\3411\306$W\34v\221*\213],<\353\304S(\270\342<]\204\f\225"
) 500
(
#"\224\e\261\253\375D\27\351\343\270F\232"
#"\321\n\241\325\347\200e\277\307\325.\6\372.v\244U\2*\265rg\21\261["
#"QD\346\342\273\226\251k}\256\243\204"
#"\304\260\236\257\237eR\320\220~\321\n"
#"\241\345ik\245\253rW\325\341-X\a\a\a[\23;]\216\321\3324^t"
#"\371\25\213\376\2714\255sUA\305\204"
#"t\201e\353,\353\367\372\331f\37\302>\252]\264Jhy\332VI\352\202\321"
#"=^\324\\\270p\341H\202\315m\5c\307\361\27m*\303\266\340\323A\324-"
#"D\0\232o\356JH\27H\305p.\242m\375p_X\246\\W\265\202\361\271"
#"\265\213V\n\255\266V\222\252\373RU"
#"\214\307\3439\327T\374\3766\202\261\273"
#"\224\250t\27\204\317\241*p\336\323D"
#"\\\23\322%\302:l\255--\340\341\326g}\217\225\355\32u\361\313u\236\26"
#"\366W\355\242\225B\vhgEI\t\231\246\226\221M~\237Tc\244\333\360("
#"\251N\311\247\202\210c\270\302\317\264\261"
#".\22\262,a\35\256Jl\314\301z\363\204[\3604\241\211e}\225\30V\262"
#"=Z+\264\332XQV\21X\333\230\35\246f3\354$\217RU&\"R\272"
#"\24w\351\372%d\333\304+\20\231\6e\363\370qa\25\27\"\373\236n\262s"
#"\241U\245\354\333Z\241\342`\352*\352"
#"\356}\23\337-.\3070(~\350\204\242\267Nl\1\351\30.\16@\244OT"
#"\271\234X\257\267\203\317\243\370\313\277\374"
#"\313+m\305\343\373\261\252<\201\244}"
#"\210\356x4N\t\2556\252\367\266\246"
#"\a\20\21\274\363\316;se\270n\327\341\323O?\2755\3216\32\215Z\225\363"
#"j\227\3519\b\331\6\f5\330\34a\376D`f=?\356~\207>.8<"
#"\357*\253\251\311v\330\271E+E\233fX\276"
#"BW\5K7\3458\337)\26i\251d\203\361,"
) 500
(
#"5N\365@V\303g\357o\233\0$d\35\260\177X\216:\21\23\213*\240>"
#"\264\3448\304\223?\177_\373\373\373\311"
#"~\237}\327ni\245\320\2\266k\16\255J\327 \"I\221\265MR\226\260\370"
#"g\270#\274\177-\376\233\34\217\351t"
#"Z\212-\256\360!}\201\365\266\232\224\2135\25\247\353i2Nlje\270?"
#"\237\237\30\306}\322\242{=N\312\t"
#"\262\230\255\t\255:1\223b\233\256\303"
#"\324\265RA\321\273\240I9\244\216a"
#"cX?^l\251\352\234\211\236\301\362"
#"\244\313\370\372:\304\211Y\323|y\376w/X|\37\260\350\34\361uB\341\266"
#"I\342\373\211\255_\376{\370\355\340\226"
#"y\356\251\370>R\317V\204V\354\352"
#"\n-2\251\25r\273\310\a\25\253\377"
#"\224\300\332U\305J]\263.\207\n\331"
#"\34a\376\2556\325\21B\326\305\220\352"
#"\360\242\276\25\230\305i\306\23\254\272s"
#"\244\316\227\n\371\330\5\241\333\321\v\256"
#"0\376\270\tC\252#\353`+Bk\221\305%V\371\333~\200\341u\353bq"
#"\332P\261R\"4\345\223gC\330\f\276\\'\223I\262\256\264m\21\a!M"
#"iSl\354.\t\255W\241\345*~?\246nEs,\266\326\331O\254\342\315"
#"\360\307\304\373\301\2h\264\232q\350udY\266\346:LU6\317.,X\361"
#"\265\0017s\211\e\325\256i\222P0\24\212\376w\6\302o\26\337I\305b\213"
#"\"\213\220\356\21\266\333e\4GH\235"
#"\330I\305\325\256\313\272\25\337[\235\225"
#"\256N\350\371\370\3230\205\21Y\17["
#"\r\206\217]\206\361\6\310\273p\205y+\26\260|\303\332\306}.\232=UY"
#"\262\206\30o\261\tR\3652\374\351\305"
#"\26\340\352\17\335\271\244\213\264\305\255"
#"\265\v\374w\217s\347y\232Z\207\232\374\275\211rn"
#"\322\327\244\204U\374\31\277\250*\314%\350\255\367\354\317\216"
) 500
(
#"\307\306\205V\323 \370e|\336\353d"
#"U\213\304\377\337\336\271\305Hr\235\367"
#"\375\377\235\352\225_}\1\202 \t\234"
#"X\334]Z\261\f\344\342X\"\251\304\17\1$.%_\244\245\215x\247{\24"
#"$\"\227\222-^\254\370\301\211\315\275"
#"\330\17A\200H\273\272X\")\e\364\3644}\21\227\266c\363\"9@\220X"
#"\"m+\316\203eY&\227\224\3#ON\354\344%@\264;u\276<T\235"
#"\236\323gNUWwWUWU\377\177\300`f\272\253\253\252O\235\313\377|"
#"\337w\276\323V\305++?\21\301\215\e7\242\307\262Q\324CX/ce\354"
#"\2J\307\343\361Z\301\245\204\220\355\341"
#"\362Q\271q\300\t\216\252,\263(5\3452,\272\336:\307\371\206\17w\\l"
#"?\330\"\257\24)\247zmZ\223\"\237u\23\304\254;e\24\305\330T\241M"
#"\213\333\266\256MNR\366<\16\17\17"
#"\261\277\277\337\366-\21R+\273d\325r\351{\374q\300\337\a\262.\212&l"
#"\276G'\366\273-\312&\350\256|by\302H5\32\27ZmRf\256\r\331"
#"v~,2<Tu\36$OH\337\350\263\245bUa2\36\217\347\26\350\242"
#"\363\325U\16\261{+\262\216\307DXWp\23\311\v\27.D\275,\244\230V"
#"\323;\264q\215X`}Xy\367\367\367\v\e\30!\353\342[\266b\326R\232"
#"\335I\227q.\2634M{S?W]H\25\306\343nz\276\252\367\267J\f"
#"r\27\373\b'\244b{\301\2\364\262,\243\265\364\16@3\351\e\302\206QT"
#"I]\f\215\277\\\267k\225\231\364\227\260#=<<\304d2Y\b$\355b"
#"\aJv\233*\201\333]fY\233\nW\23.\363b\324\335FC\213\325:1"
#"\313] \274\37?.\225\273e,\247q\327"
#"a\270z\243\356\302\217\271\ac\327\330\333\333"
) 500
(
#"\303\341\341\341<\341\\\321q\204\254\203"
#"o\352w\177O\247SL&\223\350{\204t\201e\226\225>P\345;\370\"+"
#"\326\376b\343G\335\355\264H|4u\275\272\211e\bp\326{\267\240\200ck"
#"\234V\202\341\333\250@e\327\31\217\307"
#"\v9A8\330\221\272\211\3454\0030\217\331\332\326\252ZBV\241/\203~U"
#"\\,V\230\272'\374~\261\300\364\246"
#"\214\2E\367\321\365\270\247\242\200\371\351"
#"t:\267\340\263o\213\323J0|X\301\334kuU\244\262\206Qd.f\205"
#" u\262l\325\216\277G\32!]\305"
#"\345\337\353\363d\324\335\267[\360\344\307"
#"\343\306\332i8~\324\35\332\22{\255J\320{W\307\250\230H\5\300\205@%"
#"\264\"\264VI\376\266\316\271\213\316\31"
#"\256,\334\326\322YB8\343#\244\31\302~}2\231,\254(,ks\261\330"
#"\242:)32\204\261\233\261{\353\"\261\362t\367zxx\210\275\275=\n\256"
#"\200\326\203\341\353\236)-kD\261c\2070\330\211,&+%\335\307\305lq"
#"\305+\351\3}\353''\223\311\302b\247*\264\31\204^\26>P\26\273\325e"
#"b\2534]\371\273\347\3014J-[\264\332\\uUe\205\t!m\302<["
#"\244\313t\325\202\262\f\177\365\e\367\347"
#"k\2272\303\211\213\335b\177\327r\214\26E\26\331e\302\225:!tm\223m"
#"\21\246uXe\v\2326(k\eE\311\247\331\216\332a\331\2\n\212\255\2263"
#"\303Sd\221]\305\357\204\374<[\376{\314\263E\266E\37V\274\305v\373p"
#"\261XE\331\327I;,\353\267v]luk\332\262!\24Y\244\2530\317\26"
#"!\353\23K\244\352[\262B\1\3066"
#"\324\16\261\25\377\264l\235\2445\241\325t\305\247\310\"]\206y\266"
#"H\27\351\213 \t\333G\321>\205CZ\360\324\ab\2\227\226\255"
) 500
(
#"\223\264\26\f\0376\224:\e8E\26"
#"\351:\314\263E\272H\321\240\350\366="
#"\354\22\276\2730\314\362^\364\233\264C"
#"l\253\241\"vQl\265\236\260\324\375_WC\240\310\"C\200y\266H\227\350"
#"\242\v;t\27\272\327\302\4\240\356u\322.a\276L\212\255c\2662e\251+"
#"\237\326\256\212,\346\320\32&US?tm\0$\375\245\v\2112\253^o<"
#"\36\343\340\340\340\304\353}\26WCZ"
#"\374\262jN\262\230\330\32j\337\2665"
#"\333\360:\25\314\177\bn\223hB\372"
#"L\330\261\204\235O\370\376\220:f\262"
#"}\212\22e\372\231\313\233\244\3525\334"
#"\244\272\213\2266\262>nA\20\320L"
#"B\363\256\320\372\26<\0Nd\222\255"
#"\372y\6\f\223\241Q\326\261\304\6\241"
#"\241m\372K\266K\331>{\341\300\27"
#"\246(\251\203\252\"\313\5\276\17y0\336ED\4\a\a\a\v\v\202\2068\266"
#"o\315u\270\312\261\341\322\321]u\31\222\341\21\23Sn\277\260>n8K\372"
#"EY\376\254\262\270\2476\353\37c\260\206\215?y\34\252\200n-\30~\335\2"
#"\f?\273\277\277O\221E\6C\321\6"
#"\255\263\331\354D\332\aB\232f\231\305\264\351\2010<\377x<\306l6\213&"
#"+%\303a:\235b\177\177\177\260\375]k\26\255M\n\320}\266(\30\222\220"
#"!\21n\325\303\201\2054IYV\365\242\374oMQt\376&\323\3\221\355#"
#"\"\260\326n\3736\32\243\365\30\255M\32\t\375\363d\210,[\3715\324Y\36"
#"\331>U\372\324Ucj\353\"\26\""
#"\322\226\340#\355\343\254\370C\244[\31"
#"\351Jp&d\200\215\214\f\213\242\225"
#"_\0\26\366D$\244n\312\202\336\267"
#"\231\3743\f\200w\260\357\37\36\376\363u\361\251Cc+\tKW\205\301"
#"\357\3070\207\326\356\341\362k\321\222K\232 \f0\357J\300yW\356\243"
) 500
(
#"iv\335K\23>\337!Z\266:a\321\252\2324\217\333+\220]$\266\3414"
#"\333\0i\213\242@\364\246\352`\321>"
#"\206C%\266\262~\327\30z\277\326\252\320*JNW\366\232\237\230tWf8"
#"\204\370\210\310<0>\\\346NH\e"
#"\304\366\262\253\273\16\252\352|\213\235]"
#"\252\337M\357\5\334\a\302\37254\27b\253B\253j\5r\307L&\223\371\322"
#"^Bv\35?\277\26!m\22K:]7\373\373\373;e\311*c\327\333\270"
#"\237\342\306\375\37\3\b\5\213\0\0 \0IDAT\276\337':\341:\364q"
#"\352~ooo\336\350v\275\322\21\342"
#"`.!\3226M\257\366\216\271\215\206"
#"\274\324\277\f\266\353\214\242x\301\276\256"
#":\355\204\353\320\275\a\24\273\aY\1\t9\16\214\357[GC\372\213\210 M"
#"S\30\323\314p!\"\363\5O\256\237o\352Z]g\327c\265\200\305\357=\235"
#"N\27\\\210}u\253n\305u\270l\243\334\330*C\16,\204\260\35\220\355\320"
#"\306\346\322\214=d*\v\340\344\367\16Ew\37\313e+B+\266Q\256\253`"
#"UR9\364Q\321\22\262)n0\32Z\240(\3516M\367\267.Gb_\255"
#"\25\233\22\333\313q\327({\356n\323"
#"\351>\323K\373\354\256VF\346\320\332"
#"m\374\f\335\263\331\254Tl\355\342\200E\232a\223\376vY=\364W\225oz"
#"\255>B\221\225Q\366\335Ed\0362\321WZ\337\202\247\b\337OO\b\211\343"
#"\a\16/\353\234\b\251\223u\304@\225"
#"\355}\206\236C\251\214\"\221\265\213eQF\337\27\0015.\264\252(\366]n"
#"h\204\224Q\264\254\336\317\255EH\e"
#"\254\273\372\260\250\337w\23\353]^\0"
#"UT\246\234(\235\304mG\326\307z\321\270\320\252\322x\2345\213"
#"9\263\bYdY\207\e\333\v\221m\2104A8a^\245\236\305&"
) 500
(
#"\323\313\352\366.\210\r\367\35\255\265;\273\322r\25\372Z'Zs\35V\365C"
#"\213\310\316\346P!dUb\253x\373"
#"\332\31\221\356\23f0\257\202\337\357\273"
#"\337\223\311\4\a\a\a\365\337`O\331"
#"\325\205\0\253rpp\200\375\375\375m"
#"\337\306\312\264\266\251t\221{PUO\304fQ\331\23rLYVd\337\205\350"
#"OP\330i\223\272QUXk\327\216"
#"\323\n\23\222\226\345\214\332\265\372\273k\337w]\372*H[S41?<\203"
#"\0\tYN,\35\212\303o/n\202\262\353+\230H\275\304\222I\257\23\247\345"
#">\37\v\23)\253\343\273\0\23\225\226\343\227I\37cS[\25Z\241K0\\"
#"i\330\364V\17\204\f\215\330&\254lC\244.\212&\303\233\n!N\6\212a"
#"\271\234\244\357e\262u\37]\314\347\337"
#"\367\245\234M\300\34Z\244\214p\340\352"
#"{\307D\272A\254\36m\"\222\302\225"
#"\206$\203F\206\345\364\331\252\265\225\314"
#"\360\216\361x\\\270[;g<\204T\207m\2054Al\340\337D\fPH\304"
#"a\322\322bB\327u\37\353\320\326-Z!}\335\235\233\220mQ\324f\372\330"
#"!\221n\21\e\334\326\355\233U\225\v"
#"\235*\300v\273HQ\\w\237\312\251"
#"\365Z\357\224\373d2\211f\201\247\371"
#"\224\220\325p\35\217\277'\30g\307\244"
#"N\352\250K\354\333\313\241U\253\230\330dr6\233a<\36\367\242Nmez"
#"\21\v\214\217\315\230\372P\200\204t\5"
#"\277\335pP#M\262\216 \340\26k"
#"\345Pd\305Yf\305\352\303\212\315\326"
#"\323;\224\375\37\346\332b\245#d5\16\17\17\347\t\375\330~H\235l:\210"
#"Q\374\227C\241\25'\234@\372\270\325"
#"\326]\217\343jMh\205A\360\376"
#"\314&\226\247\205\20\262\36\334Y\201\324I]\23\337u"
#"\222\235\356\n.\241kW\205\302\266\250\22\e\350\347h["
) 500
(
#"v\354\266h=3|H\250RY\301\bY\37U\235\307.\20R\au\rZ"
#"]\e\374\272\202\e\3\375q\222e\2251\224rh5Fk\231\1775\366?\211"
#"\263\256 \245\220\0356U\3jY\17"
#"\310\246\254\342\352\212-~b\35\314\340"
#"\230\267\31}\250G\255\a\3033 ru\302d\245\233\370\3627Y\232]\364Z"
#"\37*\372\320\tM\354\323\3514j\325"
#"\342\214\231\264A\225\275\vY\a3\312\274=d9\263\331l\276+\206\243ke"
#"\327j\214\26\e\326zl\333\352\347\373\300}q\265l\357\263\256U\366!ST"
#"'\302g\3006H\232$&\344\331\17\224S\224\377\216m\265:\333\36#\227\321"
#"\352\252C6\270\365hcg\373\262\224\0U]\276\34\324\267O\3213`\333#"
#"m\20\23\rt\e\26S\326\267\262\214"
#"\326\247ke\327\252\3530\334@\232\254"
#"\206\0233\306\230\312\345WU\354\30c"
#"`\255\235\237\273l\205G\bg`\335"
#"\301\27\274\376~`\234\350\220&X\346"
#"\251\b\353\35\373\212Ebi\215\374\367H5\272^v\2436/\306U\25\233\341"
#"[\235\2340ZV\216\3761e\235\242{\357\322\245K\v\257/K\271QtN"
#"\272\212\267G\321\214\230\317\203\264A\230"
#"\246\300\337v\207\331\317O\22\353cYF\325p\345\24n\355\324\265\362kEh"
#"9Q\0\260\263_\27\227M\337\305K\245iZi\3370\277c\v\377\266\326\342"
#"\312\225+\v\307_\276|\371\3049\356"
#"\277\377~Xk\243\2518\302e\311\276\220\356Ze\37:ay\257*\216\tY"
#"\2270f\323\177-\314\353\306\276\341\230"
#"\242>\225\326\347j\270\262\363\353\230_"
#"\206]\251c\215\v-\367\205\271\332p3\312f\211\313\360+[\25a\25\273v"
#"x\36\367\177\231\325\204\235E;\370\2027\344\360"
#"\360\20\223\311\4\a\a\aL\bL\32#V\247D"
) 500
(
#"\4\343\361\30\263\331\254\322\361\273\b\313"
#"\241\36\334\312\303\331l\326\311~\256\25"
#"\213\226\373\302\317<\363Li\326\352.)\320.S5.\302\27BNP]\272"
#"t\251\3262\216\315\310\374\201\337\335C"
#"\3351e\344\230*9\263\252\270\217\t"
#"Y\207\260\257a\35#\333\240\313u\256"
#"\21\241\25\e|'\223\t\246\323\351\211"
#"\224\0\376@\334\345\202\332\26\"\202\347"
#"\236{n!\326\252\314,\352\273\30U"
#"u.\260\334\357\272\315\322E\367\20\212"
#"\253\252+ih\5k\216\320\244\3166G\352\206u\212l\213.\217\35\215\b\255"
#"\260\2419\267\241?\370\206\235}Q\254"
#"\17\311\b\3134\\y\350\307B\270\367.]\272t\302UX\267\250-\23|\241"
#"%\305\177\235\264\207[}\350\\\367]"
#"4\255\223a@\1O\266\305\262\25\363"
#"\333d+\253\16\303\300\354P\200\255\22"
#"\177\264\v\270\264\v\276\245\312'\354\334"
#"\334\312\301Pd\371\307\327Ex\256XP\254\377\272\237BbY~\256\2566\232"
#"!\300\262%M\301zE\266A\227\373"
#"\264Z\205\226\377E\335\200\32\22[\25"
#"\25{\255\313\205\3266NH\371\212=f-\0022\27a,\300=\24h\253\346"
#"\343Z\345^\335\371\213\236\265\277\0025"
#"\274>\255]\315\20Z2\331\266H\2350\f\204l\233\320r\337%j\25Z\376"
#"\300i\214\211Z;\334qE\224\255\240"
#"\332u\312\312/\214\305\n\361SC\204\26\262:\356+\266\"q\331g\212\304b"
#"\3219\311\372\204m\212\345K\232\202\365"
#"\212l\203.\367i\265\t\255eK\314\253\256|b\fO1\2765(t\25^"
#"\271r\245\260\354|\201\345\237\247N\221"
#"U\364L\313b\270\334\373\316\272\346\257"
#"He\254G\275\270M\246\3038-B\352\206\355\226l\3\177\214\353\32\265\5"
#"C\0255,\267\253v\314\215Tt\36\n\2558\241\353\307\255*t\261XE"
) 500
(
#"\226%\337zT\305\252\270\na\254\235"
#"\273\17\377~\226=\317\"\341\307\316\272"
#">\270\320\204\264\5\333-\331\26]\255"
#"{\215\305h\371\257\35521K\237H\226\331}\323x\264+W\256\340\361\313Y"
#"\340\273(\240\2\250\n\f\200T-^"
#"\377\355\313\230\375a\2\300\"\323\324\26"
#"\337~\357\303\370\27\337\373mHG)"
#"L\232@d\363\347\23\306\375\24\375^\206Kl[\365\330\2566\252\256\303r#"
#"M\20\233X\355z\377\277\34\v\315\355"
#"\35\2@\221\227cb\240\267m\313\273"
#"\21\223\246\250=F+\366\332.\347\355"
#")\262\364\24\255\254\f\217\271q\343F\364|\307A\357\26\26\300HFHq+"
#"\227S\26\211$\270\343\373/\340\37\374"
#"\341\257\300\214/\343=w\334\206\2307e\226#c \366\b#(\322\206\276\367"
#"*\304\2\347c1\\E\253VI9\214{$m\20.\330\1\330\377;\212\277"
#"\273\201\0\200U\300(\304)+\253P"
#"c\217\377'\275\246\261\247\350\4\303\341"
#"\341a\241ec\27f;\313\334y\376\217\37\260^&\304._\276<O\341 "
#"j0\22\340\26\216 \370&\30Q\b\200T\24\211\336\211\37\270<\201L/\341"
#"\27\177\377\377B5\205&Y,\224A\202T\272\321\210c\"+f\5\214\35K"
#"\226\343\312\324\255\312\1v\243\355\221v"
#"\tC\0\\L\340\256\367\377@q_\225\"\217)2yY\250\373\214\241\310\32"
#"\20\265=\311\320jSe\20\334\205\201"
#"r\225\330\30w\254\333\300\331\21&\373"
#"\364\255<\326\0\n\203\21\22\b\216\220"
#"\352\21\324$\0205Py\35\377\341\362\24_6)\376\374\v\327q\365\311?\300"
#"\377N\1I\0X\1p\324\310w^\a\367\35\227\0053\356B\347\334\4\214\177"
#"#M\342\267\337\252q\266\273P\a\227}\307DM"
#"\26\331\1\3\205\201\225\24\20\1\320\315\240n\262\36\265"
) 500
(
#"\270\16i\32.'\234\321\225\225S\254"
#",\375\25yW\256\\\301\245K\227\216\223~\332\24*\247\2205L\213\221&H"
#"\255@\345/\360\345\317\36\342\277}\317"
#"\36.\275\347N\210\376O\274\374\213\327"
#"\360\311\337\376f<\376\2363@\222\240"
#"\206\360\254\332\360\277+\260\230\340\264\310"
#"\312\305\372\266:\24\252\244\t\302>\213"
#"\355r\221\302\276*\177I\221\271\t\5"
#"\tF\"\220\16M\202\311\346\324b\321"
#"*j\\\341\240\350\263K\35~\270\354\264(\rB\331{\"2\217\313\362\23\215"
#"\212$P\261\20X@\337\204TL\26"
#"\340~\363\17\360\322\237\377\r\274\353\356"
#"\323\371E\277\5w}\337]\220\377\372:^C\2c\r\264#\256CG\254\216"
#"$IR\270z\221\235\371\352\260\314HS\224Y\262v\271\377\a\212\307B\5`"
#"\22\2011\247`$\201\30\301-\253\260"
#"J\253\326\220ht\244\365+\324\256\272.\252\272R}k\227\373\337w9^\271"
#"re\236\214\364\304\354\310j\346.\204"
#"\315V\36\3426TS\244\177\373\357\341"
#"-\337\222`\244\331\252C\371\326o\305"
#"\337\224\277\300_\375\25\200\344\26F\35"
#"k\307\261\216\272\314Z\272k\235\365\246"
#"\320\2H\232dY~\304\262\377\207\216"
#"\337W\31c\346\t\275\215\b\322T\241"
#"\351m\34\351-\250U\230|\3658\227\34\16\207Z\237d(\254\\\16\255]f"
#"\325\16%f\35\274z\365\352<\370\335"
#"\341\2\350\347\307\352\355\314\262\245\231e"
#"+\21\205\250\302\232tq^$G0\"\260i\202\243\216Y\264b\224\255\230\333"
#"\265\316zS\252\306\316\20\262*\276\310"
#"\252+\31\362P\20\21$I\262\260Z\332\305\341\252j\346>\24\300h\2\5`"
#"\221BD\301\226:\34j\35i7m\\U\23\\\256z\316\262\337m\22\273"
#"f\331}\204V\256\220\343\225\211\26\232"
#"\207\333\245\6PM\201o\371k\370\366"
) 500
(
#"\377\361'x\355/\rL.\265\344/"
#"\377\27\376\34\177\35\337\366\255y9\257"
#"\231\334\241\355<9\264\304\20\322mb"
#"\253\201\375U\256]a\223\376*\354\367"
#"\212\372sg\255\362\205U\232\246'>3\237(\3\0\f \331\337\6\t\346i"
#"\37\310 \2505\217\226\217\210`:\235"
#"V:\326\r\244E\373\357\25\271\215\226"
#"\5\224\273\373\b\177o+x\177Y\236"
#"\261\220g\237}\266\364\\\256\341\32s\nbSX(\22;\202\310\21\360mg"
#"\361\235\177\353E|\376\213\257\341\37\375"
#"\340\31\214\354\377\301+\377\371\313\300\337"
#"\337\307\31\315\323\344\211Kf\232q\376"
#"\374\371\245\337!\334,\274\3123 \333"
#"\305\177\26]\336x\225\f\207\256\264\375"
#"X\216\276u)[\314\344\217/~2"
#"\352\242\3437\275\27\22\247\253e\272\261"
#"\320*\252DU\205\20P\234;)\366\276\377Z\331\271\227\305\v\264%\4b\367"
#"\263J\343w[\354\370nB_\214f\3424K>\n#\2606\205\230\4\252\337"
#"\214\273\36x\24\311S\237\300\317^:"
#"\2``\376\341\30\227\177\340;\220Y\253\5\242YL\227\23X.9jx\317"
#"\356}7[[VvM\224m\23\326NBH\375\24Y{\266\301*\375P\331"
#"\204>\234\274W\215\27]e\34$\233\343{\254\272T\266\e\v\2552KS\321"
#"J\213\262\312\\\345:a\345/\263`\205\367Tt\17M\21\273\317\252\"%\346"
#"\346\f\323\36Xd\377\247P\250&0Fq\4\301H\22h\372\315x\333\277|"
#"\34o3\2\233\2FR\250\216\0\271\5\261#X\3\374\360\371\373\361\334s\317"
#"E+h\331\254\255\354\336\273T\301I"
#"y\333!\244.\374\366\357\376\356R\234"
#"\356\262:_6\311w\253\237\375\327\374\363\26M\244\313\306!\266\277z)"
#"\e\273\266M-1Z\241\210R\315\366\254\363\3\376|\237u\370\343\247+"
) 500
(
#"\250B\221\270\212\335\217\377\376\266fY"
#"E\26\277\242c\335{.gVL\360\270\343\314\334\363g`p\224EkY\0"
#"V \242Y\256,\233\"\201B\344\24"
#"\256<\3763\200\234\202\252\342\376\363?"
#"\202g\237}\366\304\212\230*\345\24;\246i1Kq\260>1\261NH\235t"
#"\275N\225\215\3\241\25\316\37\237\222$"
#"Y\30\313\322\364dlk\231\200ZX\264D\32\243\313\36\217\332\\\207~e\n"
#"\335[\356\270\30\276\v\314\5\21\272\327"
#"\375s\307\304S\25\337\3672A\326\226"
#"\373\320]?\326\350\312f:\376\367w\257\373[\365X\1D\1k\22H*\20"
#"\b\322D!\351\21\4y\216-\35!\225\24F\25W~\366*.?\3763\370"
#"\243\257~\25\317~\356d\f\230\213\301"
#"*\352\214\252\226e\227+\375\256\321\345"
#"\231\36\351?1kN\227\305|\354\276\302-\317\312VNV\231P.ks]"
#".\237\276\262\267\267\207\331l\266\355\333"
#"\210\262\261E\253\310o]u\240u\"BUqtt\2640k\360\177\27Y\302"
#"\374\353\304\\me\367\321\226\310\212\t"
#"\321e\367!\"\363\274Y\3761~\234"
#"\24\220\211,\21\301\350\350\377A\214\1"
#"\364\e06\205\310\251<\247\326\b0"
#"\232\257a\261\0205\370\312W\276\206\357"
#"~\313[\347\235K\254\223\214Q4#lSd\261\203Z\235\242\347A!L\352"
#" 6I\354\342D+\34\37\374\261\304\37\207\326\351c\212\274(E\307v\261|"
#"\372\316\252\236\2616\251}\257C\237e"
#"\225-\374\273\250\301\272cb?\316\2"
#"\343\v/?g\211\337\220\252\334s\335\30cN\254B)\"V&\261\363\235\230"
#"mY\2055\247\0M\241\346\24D\r2Q\5$\222\t\325\221&\260H\361\336"
#"\363?\204_}\356\327q\371\352%\\~\374\322\202"
#"\265\260\252\2133,OZ\262\272K\331\263\245`%M"
) 500
(
#"\322\265~\300\215\v\356\267?\216T\241"
#"\354\270\242\266\0243\2t\335\342\327W\272\\\246\265\t-\377\vVY>^\346"
#"\323^\365\2721\361\25\316Nb\342\313op>uw\20U\277_U\223t\350"
#"b\265^j;Q@\0274X\366\317m\34\345\371Y\200\21R\0\6\227\256d"
#"+\32c\327\20\21\\\272ti\376\276"
#"_nE\367\326\326\214\242\313\r\252k"
#"\304\312\251\213\371\215\310n\260n\377\260"
#"\316\347\302\376\336\215\v\356\367:\347["
#"\3673E\277I}T\tU\332\26\215\345\321\352\ne\346`\3670\302\375\364b"
#"\356\310\272\356\245J\3\23\21<\367\334"
#"s\363\375\21Cs\274\177OaL\225"
#"\23b\276\325\313\275\366\276\367\275\0177"
#"n\334X\260r\270\375\23}7\345\325"
#"\253Wa\255\305\325\253W\241\2528\177"
#"\376\374\3025\347\eZWt\321\256\2; B\206\303*.\265\262sT\261\2"
#"\371\251gb\226\2520\a \31\26n\274\354\342D|\360B+\326@\375\230/"
#"\0\245\t\346\226=\260U\314\3161\241"
#"W$\376\312\342\236\212\376.\372\276\306"
#"\30\234?\177\36\317>\373\354|f\347"
#"\177\316\t-\267\312\321\211\256P\254\271"
#"\317\370\0020&L7\251\344\376\346\333"
#"\204\220~\23\0236\253\366\21a\237\26"
#"\366\337\376yc\177\273\377\375{\351\342"
#"`L6\243\313\317s'\344}\221\210\n\337\17-_Eqa\241\225\254\354'"
#"v\17E\257\205\327v\307\370\327Z\26S\345\237\313\341,YE\263Bw\254/"
#"\262\0D3\300\207\256Zg=\213\225"
#"\345\252\214\307c\210\310\334\255\3255\363"
#"/!d5\246\323)&\223\311J\237)\213\367u!\37\256\337\t\373\343\360\370"
#"\"\272<(\223\325q\341J\341\304\277+\f^h\205\263\234\262\240\305*"
#"\342(\366\271\262\37w\236p\377\253\320"
#"\335\27\342\336\367\315\335\276\233\260\314\275"
) 500
(
#"\351\316\357\177\257\320R\344\177\267+W"
#"\256\340\312\225+\v.\304\242\312\32\212Kk-\222$9q\37\233\270\b69"
#"\a!\244[T\355\203\35a\37\340\377\250f+\321Ck\273;\266\254O\354\332"
#"\340K\352\247\212\213y\e\f^h\305\6\356e\r\256\316\6\31\6`\272\37'"
#"P\334\f\315\377\rdV\250\373\357\277"
#"\37\367\337\177\177\264\243\nc\246\302\373"
#"\367sm\305,`1\323\272\252\316\335\207E\2255\346.\364\257\265\16EnP"
#"v\214\204\364\237\242\20\210\242cCa"
#"\345\367\237\3419b.\305\360\232U<\0d\30tQd\1;\20\243\25#\246"
#"z\375\327\352|PE\361\5\300\311\3300\2073\203\272\367\3126{vA\363\356"
#":1\213\27P\220\26\302\303\377\314\325"
#"\253WO\270\21}\312V\27\372\347\251j\21,\352|\273\330`\b!\253Qd"
#"]\n\5\225\177l\221u;\354\243\253\364\333\354Gv\207\256Z\264vBh\205"
#"\5_f\255i\202\242\316`\331\365\226YtD\4\357{\337\373\n\257w\343\306"
#"\r\234?\177\0367n\334(\315\370\16\340\204+3\266\32\321?wX\206a\200"
#"}\325\262\364;L\227v`Yj\20BH\177\360\333uQ|h\3102\321\24"
#"\263^uq\200%\355\323\305\372P\273"
#"\320\352b~\236\260\260\267Q\370\253\\"
#"\263\352\261e\261\17\"2\267\204\235?\177>j5\272q\343\6._\276\214K"
#"\227.\315\317\341,_\306\230\\h]"
#"\205\3408\203\274Z\205\372\367\250\200\5"
#"`\302\0164\317B\17\311\216\301\361\341"
#"\331\271\340b\306\342\336\353.5\22B"
#"\310f<\363\3143\230\315f\265\205\3\2649Q&\335\240\310`R49\357R"
#"}\330\t\213V_\330d\305D\250\342\313\334\204\356x'\304\356\277"
#"\377\376\371k\356\363\237\373\334\347 \"\270r\351q\274\357\207\317CL"
) 500
(
#"n\311\2 \232B%\3115\224\302\210\2\352\t&\5 \336Rj\261\271X\263"
#"\356\5\244b \n\230\202[\354R#!\204\254\207\353O\3224\305x<\346\4"
#"\212\254M\221W*f%\355Z\35\243\320\352\b\276:\237\315fk\273\317\302`"
#"\365X\205\vWD\306\342\"\346\237\23\0jp\341\302\217`\177\374~X\275\5"
#"H\2\300\344Y\350-T\0\261)&\343\v\271E\323\300@\221J\266\313\275\261"
#"\6*\26\256\272\251\334\202Q\3\250Y"
#"\310b\17`>\353\355\352\346\240\204\220"
#"\352\304\342\261\bY\225pL+[\330"
#"\325\305:F\241\325\21\326\265d\371\304"
#"\2E\335\353\3765\252\4\215\272\317\30\21L.\374(~iv\b\221\4\252)"
#"`\323Ll\311\242\373\317\210 U\235o\3$\0`3\263\225f']p9"
#"\36\211b\204\305{q\2\263\213\263\22"
#"B\310\352\260\35\223u)[\374\340\37"
#"\323u\6\237\336\241\353\304rOm\332"
#"1\305\24~\221\370*\373\274\210\300\252"
#"\"\25\v\253\200\325\24F\4j\22@\0\205\1`\0\5R\367Yh.\262\362"
#"\345\330\"PMa\1\b\4s\367!\200\0214z]\212,B\206A\37\6A"
#"\322]b\343\225?68\17P\327\241\320\3322\261@}\337\265W\225U\322*"
#"\204\351&\302<\\'\227\\'0\310\304\223\23[N0\271\333\34\231L\224\31"
#"\317B%\"\231k\21\t\222\334\315\230}\310\375:y]\3777!\244\337\260-"
#"\223:X\346\361\351\272\240\247\320\3322"
#"\261\304\241\300\352\256\304*\"\253(\365"
#"B\314\0026\337\240\23@\"\310-X\0`rq6\202h\n\21\v\370nB"
#" s\35\346\301W\2\3#\26\n\205\344\237\205 s;v\274q\20B6\303"
#"\357[\16\17\17\261\267\267w\342uB\312\250\222"
#"2\250\353\202\236Bk\313\224\t\252U+O\231"
) 500
(
#"\200Z\26\233\345\336\v\23\233\216'c"
#"\34L\177)\317\320\220\271\to^\277\e\252\0021#\210$0\362&|\354\346"
#"\21`\262U\211\20\v\210\340\205\213\331"
#"\266CF\22$\357\370\24\336P@$"
#"\333\256\307\202\201\261\204\f\235\320\365\343"
#"\254\347l\373\244\ne\343\326d2\351"
#"M\316\305Z\205\226\277\261c\31m\314f\3722c\212U\244\272:\241\252\tD"
#"\335\366\26aZ\bU\205\250\5r\207"
#"\240\305\253\270\376\16\301\331_\373a\334"
#"\3244?\367\b\257^\373\36<zz\204\17\276\230\177\16)\376\354\332=x\367"
#"W\257\341\317\254\"\3257\3601\363a"
#"\234~\350\363s\267\241`\375\347\323\227"
#"gK\b\311\250\22\eJH\310\262q\253/\324*\264|\253\210O\321\26\fu"
#"\21Zn\374{\351:\261\334 u\226MQ9\224m\213\341\337\v`\240\310\22"
#"\220~\341\301\267\3401\\\307\315/>\206\323@\236/\353\bg\37\3752n^"
#"\277\e\237\371\331O\342&\0\340?\341"
#"\337\376\304+x\360_?\214\277#\26\26o\306\303?\365 \360\324\r\274$z"
#"\234\314t\r\30(\277\36E.jB\b\351\e}\e\aj\23Z1\261\343\210"
#"-\305\254\22\260]\225.\246\334\257\212"
#"\377=\367\367\367qpp\320\3125\303"
#",\362\376s\361]\211*\26\"\26\212"
#"\317\3437\237R<\360\323\17\343\16\261"
#"H\304@F\2\233\36A\365\e8\373"
#"\310\313\320\227?\214\263\0\344\346\237\340"
#"\253\372v|\327YE\226S\313B\316\275\27\17\352/\3407^\224y\246\371\252"
#"F\255\242\25'\244:]\330\35\201\220\303\303CL&\223m\337\6\3519}r"
#"\e\0025\346\321\n-1\376V<~\2\312e\301\332\253\256<\353\373\236W\376"
#"=\207\356\273\272\255\16\261do.&\313\3416\272"
#"\236\307h\355\375(\304$yj\6@\357\23|\26\202"
) 500
(
#"#\353\202\340-\254\232l\305\241\b\216"
#"\324\302\274\376*^\306[\3613w\34\a\304g\331\341- YX\274\310\21T"
#"\217\317\273\354\236W}\217\304a\231\221"
#"m\342\3729\326C\262\n}\257/\265"
#"\272\16U5\272\327\2411\6\343\361\30"
#"\343\361x\276\352$\306:\342\"\364\375"
#"\367\355\201\304V\0316u\3771\253\206"
#"\23V\341\265\347)&t\4M\25\366\265\217\342mr\21/h\212#\375\6D"
#"\216\26714\222\35\237j\212S\222\300"
#"\346\251\37\346qXV\263\30/\1\276\362\352\ePd\347\255\362=c\307TM"
#"cA\26Y\2667\30!M\341\367/\264j\221U\361\307\245\361x\214\351t\272"
#"\345;Z\215Z3\303\373\211\303\366\366\366\26\ng:\235\36[I\0021\346\17"
#"\232\261\1\240J\332\202\276\346`\n]x\376\337u\212\2112wax\355\5L"
#":\317\362\236\310\37\341\346k\6\347\316"
#"f\373\26\252\346n@\311\222\221*\24\251\265\20#\20<\b+\222\305cI\236"
#"\22B\r\336z\346t\256\356\323\314\262"
#"\265\242\326gl\321\372\364\255m\220\341"
#"\300\272G\352 \fm\351\v\215m\301\343f.1\261P6\233v\"\254Hd"
#"t}\227\356\272\250\323}X&\262b"
#"\345\354\277\226\252\315\234{\337\361\26\274"
#"U_\301\327\336\0\364,\0005\20\311\202\344\5\0\344?\342\242\\\301[o~"
#"\t\372\332\307!g\37\306k7\237\300\275g\f\254\2440\232 5\232Y\277\220"
#"\245y\220lA\343J\367?\304g\3356\24\253d\333L\247SZV\311\312\364"
#"\265\316\324\"\264\226\345hZ\3052\263"
#"\254\20\213\204\230\37\a\326W\232\32\0"
#"\253X\262b\231\345\307\3431\236\231\376"
#"r&\246\222w\341#\37{\e\356\374\271O\342#\367\3768N\213\205"
#"\302d\253\a\305\342\215\353W\360\24"
#"\276\v\317\237\6T\317\342A\0\217\236"
) 500
(
#"\25<\242)D\23\330\227n\340\263\366\3x\351\\\356rT@L5\245\25\273"
#"\177\272\16\327\207\345F\266M\0231\250"
#"\204t\225Z\204\326\262\216\273\316\216=\24b\n@\254\2F1\36_\0`\240"
#"\222e~\262\326\346\1D\6\263\303\247\1\227R z;\307\203~\321 \276\312"
#"67\341g\312\316\353\b\205c\23\351\36\226%G=q\177\2\270r9\363\360"
#"!>\372kgq\346\236\0247\277\364"
#"\bN\303\302\212\340\353\37\377>\234y"
#"\364e<\360\322\27q\237\2*\357\302{\37\20<\371\265\217\342\r\30\334!o"
#"\340\23?\367Y\230\a^\302;\375\323\6\345]\364\273\354~I5\302\272D\241"
#"J\266\315l6\213Z(X7w\223\230\361\304\377\277\257\326,\240!\213V\253"
#"3\25U\250\311\"\204\16\247\317\314E"
#"\224\333\351\305m\3652\336\177\377qv"
#"b\265\363\355d\34\v\17P\4\3204"
#"\373\235o\e\343\374\302\253\212-\377\330"
#"2\27]\354s\305_\271\270B\256\333I\25~\316*\304d\351J!\247\361\350"
#"\27-\336\362\220\340L\362(D\r\24"
#"\26\6\337\213\3537\25\17\237\316\266\216"
#"\206*\356}\302\342\305\213\6\247\345#"
#"\0,\344\241\347\221~\372\237\316O\233"
#"\n\220\2708\257\240<c\242OU\221$\tg\301kRV\266\204l\213X~"
#"7\326\315\335\244Ld\271\327\302\377\373"
#"RW\32\261h\265\371\345E\262\315a\220\ae\347{\305d\177\346A@\"\300"
#"\341\301t\376\36\254f\226\256\34\5\2607\31C4\337\247O\200\221&\270mR"
#"\210\36\213\260M\323O\224\t\242e+)\302<W\3769\212\316Y\245\"\26\211"
#"\3009F\240\271\350\224\274\236\277\3633"
#"\26\366\211Lb%\376\271`\2622\224,\305\351\275OZ\350\223\271\213"
#"\21\200jV\236\20 \3117\230^&Z\335{\306\230y\31XkO"
) 500
(
#"$\305%\253\323\247\216\212\f\223\320\252"
#"\305\372\270\233\204\6\214\260\36\214\307c"
#"\314f\263y\337\337\267\276\253\326`\370"
#"p\365`+\246>\315r4\345\331\231\362Ulv\276\242-\37\232\263\301^\216"
#"\0\214\0#\331+\371r:A.\304"
#"\344\244x\0\262\207\254\252\363\301\335\17"
#"T_\26\27\26\306\27M&\23\250jt\241@L$\205\271\265\302\367\213\256\25"
#"\373\177\331\375\305\316\255\252\20$\316G"
#"\213\24\6\211\n\240\222\225S.f\263\317d\2K\221\34k^+\231\201P\262"
#"\0x\344\261]\232\a\323\313\222{\360"
#"\205m(\272\372\324\320\266E\231\371\235"
#"\345G\272\200\e+\374\225\351d7(\353\347\35{{{\363q\266\257}\177\255"
#"Bk;_\376u|\352\256\263x\370\367=\323b>\312'0x\333\265\257\341"
#"w\379\3\3@u\4\311\az\203"
#"\337\301\305\3442\276\353\265/\341\341\323\371\203VA2wE\36\v\b_,\206"
#"\2(\2267\314'\354<\334=\372\237\v\367\207\\GD\255\22\337T\306\t\361"
#"\227\247m\200(\304\211P\1\346\3425\337hZD\217W\23\"[\215\230\5\313"
#"-Z\16\263\340y\300\210\3156\226F"
#"\374{\224\5\360o\372\35w\211\255\271\364\tY\221UB+\3100\210yc\302"
#"g\36z/\372X'\32_u\3304*\26G\211\342{\257\277\212\337\373\261\263"
#"Pc\363\330!\0_\377\24\376\361\351;\361\2413\212\237\277/\205\221$KK"
#"\0\213\27>\364.<\251w\341\232\346\361GV\0\21h\236\177@%;OL"
#"\340,\313\373\345\263L\210\271c\236y"
#"\346\231\371\271}7\231\v\212\0173\270"
#"\207\224\315\bV!\3669\221\24\252\243"
#"`\21\201\231\273\1\375\200y\0\200\265\2001\220<PN5\205 \301"
#"\221\244\30!\201\344\261Y&r\257\2410\360\313\"\366]I58h"
) 500
(
#"\221.\343{@\226\2063\220\301Q4n\3659\0\336\247\266\30\255mu\344b"
#"\23\214\0240v\224\207i\231<\301\246"
#"\5\356\3701\374\324\203\37\306\367\377\346"
#"\347\361\351\373\336\225\t(\274\210\213\311"
#"\273\361Y\5\200\0040\371L\337 \260"
#"\257\204\302\302\273\346\n\337\323\257$\241"
#"\350\nc\277\16\16\16\346\256E\337U"
#"\271\267\267\207\v\27.\314?\337\224\211=*z\24He4w\247:m\225\35"
#"\220\257\324\264\271\25\320\351!\223\307d\345\317A$s=\216 Pd\242K$"
#"\v\234_\26\233\265\3545R\215\320*HHW(\233l\221\341\263LXW\215"
#"s\3562\265\356u\270\25L\212#$\200\336\366\2\341m\226\312A,\214\b\240"
#"6\267\276\34\301\276\364[\370\354\3\317"
#"\303\376\253\233\270\353\316_\313\203\267\363"
#"`z\0\331\352\272,\316+\314\361\264"
#"\351\203-R\346\"2\17\204\367\217q\331\365\37580W!\313\6\315ug\0"
#"E\261<\t\354\261\325J37b\266Z0s\e\302\210\267\302\323 \205\205\201"
#"\311\335\211\316\362\225\355\2118\277\204\246"
#"\200\304\375\355\341*\317\360\376\372\324\300"
#"\272\204_\236,C\322\25\\\275l-"
#"\256\227t\206\262~(\3348\272\317\202"
#"\274\261\314\360@<&\244\356\16>\213\23\312\\R*Y\\\220H\26\a\244/"
#"}\b\367=iq\361\371s\271+p\4\271\367S\260\367\n\360\372\2530\252\200"
#"\244\231vp\321\333n\277\231y4\367"
#"\361\2656\273o\233\225\207H\26\247\4"
#"\377\32\271\250\363\3\316as\201e3\327[.\6\255*\22\21\34Y\205YH"
#"\255n\363\362\0&{\377\34\"i\36"
#"E\225\300\342v~\376\21\24\337\300\301"
#"\354\2273\361\4\203\361\370\2Ts1\347\t\"\203S\336\275\37\v\316\354"
#">\344X0\5\356DH\26\e\347\376\227\3711\306\17\327\2\344\224w\276"
) 500
(
#"E\\\300{\221\253\264O\r\254+\304"
#"\202N\t\351\n\255/\242\"\235\240\250"
#"\37\212\325\201>\367Y\265\v\255e\201\312u\273\31\5@*\202\337}\354N$"
#"?!y<\20\240\30!\301\21>\370"
#"\242\342\347\337\251\310\22\231\272\25o\232"
#"Y\262`\2014\311V\305i\n+\t\214d.0\235\357\341\267\31n\213\232\371"
#"\276\200\310\265\234\2\200\315u\235\311S"
#"Nh\276\252\17\271U\rY\300\270\4\211=\363s\300\232,&\r\200\23j\""
#"\300\301\354\351y\22\327L+.\212\270\367_x?`\362t\21j\220&\26\377"
#"l<\301\b\231\5jv\3704n\233o f\325k\vZ\\\352#4\267\23"
#"\322%\302\266\276l\25\"\373\206a2"
#"\344\347\272\361(Z\26\250\\\264K{\255\26-Mq\312\2w\177\3745\330\243"
#"\333\260\232\302\336\374$\356\301\21\336~"
#"\375u|\352\336\243,\310\35\310V\25"
#"\332l\205\2345\231\210A\222\346b$"
#"\311\254<\232\36\307\26\3250&\211\232,\0_\4*\271\360\322,\35\205\"{"
#"O\201L!Y\311\357\301]\330\245\251"
#"p\2250=\376\316F\262\370\375\374\374"
#"\252z|~\233f\371\257\362U\201\363\257\241\231}\353p\366K8<<\300\341"
#"\341\323P\2610\366M8\345\362t\331\24A\222c\b\0\0\23AIDAT"
#"\223\361\5\374\352\364\227\263\373k\201X"
#"\35\242 \250\17\327\336\374e\322\204t"
#"\205\242\361\240J\352\31\322ob\241!\241\313p\bll\321Z&\232\32w\37"
#"J\2\233[\244\200<\30\376\364\217\341"
#"\213/\3761\314\271\323\370\340i\305\247"
#"\357Cn\355\221\271\233\316X\3\301h"
#"\236\363\311\271\2672\353\226B\305[U"
#"\267\1\316\23\251\271kO\324\314_s\34\1\30\t2Q\225\355\37\224i"
#"-A\26\204\236gg\267\220\314\20%\6G\251bd\4Gj]:P"
) 500
(
#"\0\232\235\337x\213\1\258\22\305)"
#"W\336j\3469\307\24\300\364\360\231\205"
#"\357\231Y\340\f\246\207\277\262\331\27\257"
#"HX\27\334*\303!\317n\266\205\237"
#"\203\206\345K\272L\221\v\321\257\273\254"
#"\277\375\247h\225\341\320\372\247V\375B"
#"~v\363\272\3102\271g\256\301,p\310f.\301{?\215\347/\2O\274\347"
#"A|\36:\217)\262\220L\364\310\21\4)\0\315\rH\26\316\364\23\346v\332"
#"\30\3153\324{\367\fwM\0#w]\1T\216\346\356F\227|\325Y\344l"
#"\356\316\314\342\317-RU$2\2l\272p~\330\305\363\237R\231\e\311T\216"
#"\362B\313\316\237\2111E&\367\260\230"
#"\344\265\205\tc\30\334\350\342\262\206\324"
#"\310\272B\230\253\206\26\1\322%\374\205"
#"\32@\266\272:\226\36\207}\303p\360\237\371\20-Y\216Z\204V\330a\27u"
#"\340\256s\17\e\324\246\210\346\251\0054"
#"\223#\320LH\334\373\221k\270\aO"
#"\341\334\203/\302\211\16\227=\336\212A\232\347 p1TY\326r\344&\250t"
#"\276\a\365F\367fs\21\230_C\5"
#"\200\274\201\217\376\23\201\310)\210\221\354"
#"G\4\"\t\22\371&\334s\355\346\374"
#"\363\352\322U(0\322\317\343A\271\a\237x]3w\244\2jS\230\304\31&"
#"\363c\345\365\205\363\233\304\300\230\343\363"
#"\277\343\372\353\363\363\247\0`\4/\\"
#"|S\26\237f\4\346\356\353x\243~\271Y\210\237/\213\203\177{p\300\"]"
#"!fie\375\34>\261\211\337\320\254Y@MB+\226\324\263\312\261\265\24\246"
#"\363\217\301f\311Fa\0I2\301t\346\21<\375\321{ \237\375\1\334}\355"
#"\215\334\212c\1\233m\277\343,K*Y\216r\315\223\231\272\230\255ZL:\306"
#"\305N\271\312\223\273.S\340\356k\257\346\342\"\205"
#"\352-X{\v\366\265\217A\36\373N\\|\311m|"
) 500
(
#"\215\374\236R\274\360\3209<\5\205J\226\217*;o\212T\25&9^}\250"
#"\310b\321\334\371\255=\202\352-\250\336"
#"\206\275y\rx\364\316\371\371\23\0_"
#"\277v\17\336\375\325\177\217\327T\241\366"
#"\r\\\223\307p\372\241\0277_\tP\221$I\220\246\271\353w`\r\214\20\262"
#"\234P\\\271A\367\360\360\20{{{'\216\347\204l8\250\352\302^\277C\34"
#"\3\32w\35N\247\323\23\1\361\365\26\344i<\362\245\24_z\344,D\2014"
#"w}I\36\320~\372\321\377\202[\366\b/?r\6@\26\370\256F\240\247?"
#"\214\227\365Kx\370\264\316W\3\272\370"
#"-\311\335\210RC4\274\346\3473\232w$0P=\312-8^9\350\251\314"
#"uv\372a<\376\0\360\344\257\177!s\37*\240\370\2>hN\341\335O:"
#"\267f\276%\216\2\220,\323\272\275\235"
#"\355\205(y\376\252L%\231\205\363\3"
#"\200\236\3760.=\b<\371\e\277\223"
#"\353\250\227\360\357\36{\5\27\177\3721"
#"\234\306\21\24o\306#\377\346!\310\23"
#"\277\211\27\320|g&\"H\323t\220\215\253K\204\361.\34\250H\227\t'\344"
#"E\213\256H\377\331\5\vf\343B\253"
#"\254\360\352\353\354\217\363R%\360\r1"
#"\6\200\311\"\376\5\271(1^\374\223w\177r\374\32`\362Sn^<n\317"
#"D\0\363\270)+\t\214\332l\365#27\240K\366i$KW\1c\217\363"
#"x\275\364\34\236\270\370<\364\365k\270"
#"\e\310SS\30w\333\371\252F\300\252"
#"b\344*\255=\216\273r\a\272\344\241\23173\317Qu\3635|\5w\343;"
#"Og\337W\24\320\373~\b\17\340I"
#"\374\326\213\325\277\347*\317\322\217\325\e"
#"\242\231\270k\370n\31\a\313\234\364"
#"\205\242\325\353\244\277\370n\302]\310\233\326J0|\270"
#"!\260\373\275\e\235\275\vh\267\271\253\317 \201d\331"
) 500
(
#"\354a`\324\245}\310\320\27\37\300\273"
#"\237T<\364\336\373\346\257\313\275O\342"
#"\3503\347\262\200*1y@\177\26\217"
#"\5`\276\304\320\28\322\333\20\271\23"
#"\217\374~~m\365\356\1\26\372\342\a"
#"q\356)\340\342\17\236\313\376\177\375+"
#"x\31o\305\331\323\307\347R\334\206\b"
#"p;\262\214\272l\25iQ\254^\370\333\30\303`\354\226p\317\306Z\273#\355"
#"\215\f\21\267\n\321\301\276\243\177\304\306"
#"\376!\a\300\373\264\"\264\374F\262\233"
#"\253\236L\369\225'\27\325\24\320\24/?z\a\214\21\30I\220\310)\310H"
#"\220\334\367\213\270\370\274\342\323\357\364,"
#"s6\263\324\331D\341\266\23\22\233\302"
#"\302.8\367\\\266w\325W\361\211\273\200W\36=\223\5\267\213@\314)\309"
#"\205\344\335\237\301\305\27\25\237\2767\373"
#"\214 \1\304\"Q\315s\215e\225B\25x\365O\277\236\35\343\t\25623~"
#"Q@\243[\212\235$\311|\320\337\235g\277]D\4\343\361x\236?\213\345N"
#"\372\204\337\237\370\361Z\376\244\241\250N"
#"\263\256w\213\320E\270\v\226,\307v"
#"\322~\347\354\306\f\333\"\5`\324\337"
#"f\307\300\30\340\236\217\276\6k\25\252"
#"\267\221\276~\r\357\260\202\267_\377\223"
#",\357\227\177\6\223\346\2\350\b\n\311"
#"\266\0322I\266\237\240\346\31\2644_\335\250\6V\5G\2\334u\355U\330<"
#"\221\251[\b\360\366\353\257\3423\357J"
#"\347\331\344\335{\220|k \1\254\315"
#"\22\272\376\335;\337\274p\37U\\}\261\225C\3565'\260v\343\271w\a_"
#"\0\263\354I\237\b\373\223\331lv\"8~\225\204\247d\273\270~(&\262\206"
#",\214\267&\264\206\\\250>\n\223\355"
#"\251\210S\260\232\347\311\322\333P\30\34\215d~\214|\307\217\343w_z\0"
#"\257<\362w\361\241\317\3V\362\300\375\334\331\250\2X\214 P\210\30Xd"
) 500
(
#"b\351\215\217\337\0053\267\26%\270\353"
#"\343\257\302\210\346\213\e\223<SE&\346\354\v\27\361\312cw\"IFs\353"
#"\225\234y\v\356\306\37\343O\337\320\334"
#"\204fa\314\233\262\204\256.\211i\304JU\366\374\234\270b\312\206n@qK"
#"\372LXwg\263\31\335\210=\"\214\r-\262d\r\271\217j-F\313\0054"
#"\356\332\314:K\353\240\260\222mh#"
#":\312\276\273*\22\213\271\270\201I\201"
#"w>\201\27.Z|\346\336\207\360;\371\372B\311\203\257\4n\203\345,\f>"
#"{\327\342\315\217\274\2\325\24ij\2416\305\227\369\235%45\200IsQ"
#"$\310\2\356\317\375<\236\377\200\300\352"
#"\a`D`\222\21\344\314\243\370n\374"
#"\36\276v\323\263\214\275\370,\236\302\a"
#"\360\336w\25'\271,\332\3072\264`\235(\17v\212\255\342gZ&\244\257\204"
#"q\242\261p\224\330\261d\273\370\343\307x<\336)w\241O\253\26\2550 w"
#"\27\32\204\321LT\31d\tQ\255\244\0Na\236\373\v\331jC\344[:\337"
#"\373\223\37\307=\362\4\316=\360\5\0"
#"\271\3002\356\30\300\32A\232z\253\rq\4U\311\254Ob3\353\27\24&M"
#"\220\232,\0\36\n\244\222\271\355\356\373"
#"\311kx;~\1\270\370\333\260\366\0264U<\1\305\23\347F\271el\4\271"
#"\357i(\236\3049\263\270\315\2051f\36\310\356~\373?\3165\30KJ\e\n"
#"\264]x\366]\241(\266\216\220\276\20"
#"\306\211\2\307\261\277Np\355\332$\276\17\270~g2\231`:\235\316EV\225"
#"\276hH\375U+B\313U|\347J\2v\310\235\221\247\225\0,`%O\204"
#"z\v\232\347\271\222|[\35h\226K"
#"J\356\3700\236\376\350\333\240\277p\16\367\\\177\35~\352\n\243\200"
#"\261)F\311q\306x\305\b\363@\255|u\241\201\340V\222B\324\316"
) 500
(
#"S?dk\25\23\340\315\37\306\341\307"
#"\336\1<\361\36\334s\375\277\303\212B\355\21^z0\377\270\2\362\340oAU"
#"q\333\335S\376\223\246\351\\D\205\242*\34\314C+\330*ImI\2750\215"
#"\6\31\n\341\204\341\360\360p\36$\317"
#"\372\335M\234\310\212\211\345\"\206\326_"
#"\211\266(\e\367\366\366\346\253\237\b!"
#"\365\20\353\224\334k\256\223\253\3729B"
#"\372\n\353z\263\304\266IZ\6\237IFkB\313\25*\305\26!\365\21vV"
#"aLDQ<\304.urd\330\370u\331Y\266\\\\\"\353x=T-K"
#"\177\202\347b\35169\337P\30-?\244\36b{Y\355RA\23\322\0041\227"
#"lY\333r\357\261\355\221\241\340\217)n\22\37\333r\212.\364\365\251Zfn"
#"U\241\357*\364\331\325\376\247\365\364\16\fX$\244Y\252\3449#dh\370u"
#";\314$\37\212,\266\201\365\t\278"
#"\371\177;\201[\226\333l\27\313\276\325"
#"\30-\207\277\344\234\202\213\220\315\210\265"
#"\243\242\31\375\262\317\0212$8\3264"
#"CX\236\223\311\4\326\332\302\260\240]"
#"\357\177Zs\35:\302\344e\204\220\315"
#"\250\342\216\367g\364\273j\276'\273\201"
#"_\317\375\374\215~j\1\326\375\325\b"
#"\313\314\377\273Jn\254]\357\177Zw"
#"\35\356\252\351\220\220\246)\n\202\217\245"
#"\334 d(\204\273O\204nB\227\277ioo\217\"kM\212\222\302V\21Y"
#"\354\177\266\264\5O\270\205\2!\244>\374\311LlU\"!C\"f\35\211\t"
#"\203\331l\206\311d\302\261\247\6&\223"
#"\t\366\366\366\242\tH\303\277\331\377l"
#"\301u\350\330EUKH\323\204[\3560Q,!\307\365\336\t\203\361x\274\260"
#"JqS\372\270\252q\325\224\r\252"
#"\212\375\375\375h\332\206\"\267\"\373\237\214\255\4\303;"
#"vu\337#B\232\202m\212\220\3458\361\340\254[U\333"
) 500
(
#"\314\256e5\367\363_\32c\n\223\217\222r\266f\321\332U\23\"!u\342w"
#"\352\223\311\204\"\213\220\bE\301\334\276"
#"\205KDppp\260\360~\230\22\242\212\325\252o\"\253\354\373L&\23\0`"
#"\222\361\r\331\252E\v(^~;\244Y\1!m\340\357\272\300\366CH1E"
#"\351\6\234k\254\352\336|}t\31V"
#"\241\310\3227\264\357\331\26[\263h\1\213\17-\254\324|\230\204T#l3C"
#"\355\374\t\251\203\242\366!\"s\327\230/4\252$\0\36B;+\22\232\356="
#"\216\313\353\323\212EkYE\f\367?\34J\305%\244-\252$(%\204\234\244"
#"\254\2558\301U\264\245\314\252\347\3336"
#"E\367V\344:\r?\327\345\357\326e"
#"Z\261h\25\231`\335\377\306\230\350\361"
#"\204\220\325a\247H\310\"\313\222\371\26"
#"\341\307p\305^\217\235\273\253m.\354\27\\\"W`\371b\200\330\26F]\375"
#"\236]\244\265\30\255e~n\6\362\22\262\36\2765\213\35 !q\352\234\2008"
#"\341\345\316\325\345\261+\\a\351\350\362"
#"=\17\215\326b\264\252\254\322\340 A\310\"\313\332D8Ob\373!$N\235"
#"\231\311C\221\262j\232\210\30\253\b\301\252c\245/\b\271rp{l}\325\241"
#"\17s\0\21r\222e1$l3\204t\3\227\b\325\30\23M\354\271\tU\304"
#"U\237,m\273\304VW\35\372\204z\217\326-B2(\262\b\351\aa\320\374"
#"\252\333\375\304\332\263;G\321>\301\376"
#"X\31\373<\307\322\355\323)\213\26pr\5\"!$\356V\230L&\v\231\232"
#"\331\241\22\262\0356m{~\34U("
#"\250\302\375\4\227\205\22\304\336\347\2\231"
#"\355\322\t\213V\230O\213\225\201\220c"
#"b\371\346&\223\311|)\266\203m\206\220\355\260i\234qh\221\212"
#"\235g\235\270\2550\377\25\307\327\355`\226\37\322<\376C?<<\304"
) 500
(
#"\376\376\376\26\357\206\220n\341:G\177"
#"\226k\255egIH\207\360\255F\233"
#"R\266B\337\377]\364\231\230\365\253\212"
#"E\2144C'\204VH8\250\20\262"
#"\353\370\263\322\361x\214\331l\266\264\215"
#"\260\r\21\322<\241\200YU\310\304\342"
#"\223\303\377\375kT\261H\25\t,\366\t\333\241\23B+|\370\264j\21RN"
#"\225\264\17\234\271\22\322<\233\266\263e"
#".\302p\353\e\337M\271\352\371W\375"
#",\251\207\316\5\303\373\224\5\306s !C\243\312\306\352\\iH\b!\375\242"
#"\23\26-\37\337\a]%\311)!Ca\231\310\"\204\20\322?\266.\264\2122"
#"[\273dk\253\346!!\244\217\204A\2561\221\265\267\267wb\2175B\b!"
#"\335f\353Bk\331\254\275Hlq\220!C \26H\e\253\333.\0\336\377\34"
#"-^\204\20\322}:\35\243\345\343bSV]}AH\37(\253\313L\342K"
#"\b!\375e\353\26-`\365\345\255\24Ydh\224-\275\216%!\364\177\23B"
#"\b\351.\275\261h\1\231U+\334K\212\220\276\303M\243\t!d\270t\302\242"
#"U\5\267\23\372d2\231\377OH\337)\23Y\223\311\204\"\213\20BzNo"
#"\204\226\303\5\307\323\235B\206@Q=v\326[B\b!\375\2467Bk\331\246"
#"\235\214\333\"C\201\365\230\20B\206C"
#"o\204\226\37\f\177pp\260\220\362!"
#"\\\"O\253\26\351\v\261<r\373\373"
#"\373\230N\247\254\307\204\0202\0z\25\f\357\317\364Uu!\206%f\5\240e"
#"\200\364\1\277\2362\225\3!\204\f\213\336X\264\200c\367`L@Qd\221>"
#"\22\326Sc\314\374uB\b!\375\247\363\26\255e\202)\\\376\36Z\275(\266"
#"H\327q\365\224\251\34\b!dxt^h\1\345\202)t!."
#";\236\220.B\227!!\204\f\223^\270\16\313D\223\210`:\235\316"
) 500
(
#"\203\343)\262H\337\b\3671$\204\0202\34z!\264\226!\"\205\233O;\230"
#"g\213l\223\242\372W\226\224\224u\225\20B\372O/\\\207\253P\26\347Bk"
#"\27\351\22\254\253\204\0202|\6a\321"
#"r\270mz\366\366\366N\274\0160\317"
#"\26\331\16\261\372V$\262\302\272J\b!\244\337\fJh\271\301i6\233a<"
#"\36/\fZ\376`G\301E\332$\254\177{{{\205\226\254\360XB\b!\375"
#"fp\256C\240\332ry\272fH\e\204\311H]<a\331qe\257\21B\b"
#"\351\27\203\24Z>\314\263E\272\300d"
#"2\301\301\301A\351\236\234\356u\326K"
#"B\b\31\16\203\27Z\314\263E\266\315d2\301t:]x\215\202\237\20Bv"
#"\203A\305h\305`\236-\262M\306\343\361\t\221\5\240Pd\r|\336C\b!"
#";\307\340\205\26p\234gk2\231\24\272l\374\337\204\304\b\353GQ}q\257"
#"W\331Rg\331\236\235\204\20B\372\315\340]\207@q@r\231\373\206\226/R"
#"\306\2628+n\251C\b!\4\330\21\241\345\360\aGn\340KVa\225@u"
#"W\267(\326\t!\204\354\204\353\320\341"
#"\347(Z\266e\17!\300\311\4\242\313\362\\\371\v/(\262\b!\204\354\224E"
#"+\6sm\221*T\251\v.\21)\353\f!\204\20\307N\n\255\320\r\344,"
#"[t\367\2202\212\352\206_\177\374\343"
#"X\227\b!\204\354\204\320\212\355\37\27"
#"\e\4\375\0f\16\222\304QV\27\312\22\342\22B\b!;!\264\252Pe\333"
#"\36\262{\224\t\247X\"RB\b!"
#"\304g\247\202\341\313p\203\351\341\341!"
#"\366\366\366\26\336+\323\242Us+\221~R\224L\264(\21)!\204\20\342C"
#"\213V@,n+|\2179\267\206I\325\200\367\242\215\241\t!\204"
#"\220\20\n\255\234\262@\347\351tZ)\270\231A\320\303\240\254.P"
) 500
(
#"`\21B\bY\5\n\255\2VMn\32\e\234)\270\372G\3213s\v%\370"
#"L\t!\204\254\2\205VE\312\\\211!\34\214\207C\354\271\23B\b!U\331"
#"y\241\265\252X\362]\211\253\234\217t"
#"\237\360\331\25Y2\371\214\t!\204Te\347\205V\25b\0030Pn\345\340`"
#"\334_\366\366\366`\214\301\301\301\1\27"
#"=\20B\b\331\b\n\255\r\30\217\307"
#"\20\221\302e\376\34\230\373E\331\363\364"
#"\237%\237+!\204\220\252Ph\325@h\341\262\326\302\230\345)\3128`w\203"
#"\330\26L|6\204\20B\352\200B\253"
#"\6\252\356\231\270\352\340\315\301~u\252"
#"\346:SU\354\357\357\3\0\246\323)\313\232\20BH#Ph\325D\230\16\2"
#"8\271\311p\321\361\34\3447\247j\31:\201\245\252\\IH\b!\244q(\264"
#"\32d\231\205\253\f\212\257\365)\313\205"
#"\305\254\356\204\20B\332\204B\253\1b\253\24]\220\265{/\26\307Eq\265:"
#"U\312l\235\\X|\26\204\20B\352\200BkC\252\f\310~\fW\270\252\215"
#"\373&\326GY\32\216u\312\225\317\202\20B\310\246Ph5\210?P;\v\226"
#"\252\316\5\227{\257(=\4Y\r'"
#"\254\200\254\354g\263\331\211c\252\304\306Q`\21B\b\251\v\n\255\26X6p"
#"\373\2a]\353\313\2562\36\217\347\345"
#"\25\272\6Y\216\204\20B\266\r\205VG\bSD\0\315\357\257\327\266\20Yv"
#"\275\252\26\2466\313\210\20B\b\331\4"
#"\n\255\0163\231L\340\36\317&\202\302"
#"\235\243\313\351$\226\345\277r\356V\227"
#"\226\241\213\337\201\20B\b\t\241\320\352"
#"\20e\201\361\316\212\343^+\333\330\272"
#"\3125\352\24*e\347Z7q\253\373\276n\205\346l6;q\357\24[\204\20"
#"B\272\16\205V\307\250\232\334\324\217M\212\211\221m"
#"Q\325=\350\0377\231L`\255\5plu+K"
) 302
(
#"\366Z\345:\204\20BH\27\240\320\352"
#"\0\253Z\204\212\216\361\335k>\276h\1\320\230@Y&\22\375\330*\377\275*"
#"nQ\n+B\b!}\204B\253\243\324\271E\217\357\206+\22au\21\2728"
#"W\271\26\267%\"\204\02024(\264"
#"\266\314*\202\242jl\322*\356\266\320\312\264\16\376yWI\261@1E\b!"
#"d\350Ph\365\200&\4I\327R;\20B\b!C\204B\213\20B\b!\244"
#"!\314\362C\b!\204\20B\310:Ph\21B\b!\2044\4\205\26!\204\20"
#"BHCPh\21B\b!\2044\4\205\26!\204\20BHCPh\21B\b"
#"!\2044\4\205\26!\204\20BHCPh\21B\b!\2044\4\205\26!\204"
#"\20BHCPh\21B\b!\2044\4\205\26!\204\20BHCPh\21B"
#"\b!\2044\4\205\26!\204\20BHCPh\21B\b!\2044\4\205\26!"
#"\204\20BHCPh\21B\b!\2044\4\205\26!\204\20BHCPh\21"
#"B\b!\2044\304\377\a\232\31\203\276\f%\354N\0\0\0\0IEND\256B`\202"
) 0 0 24 29 1 #"\n"
0 0 17 3 16 #";;AML CHECK THIS"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 2 #"r0"
0 0 24 3 1 #" "
0 0 14 3 2 #"r1"
0 0 24 3 1 #" "
0 0 14 3 2 #"C0"
0 0 24 3 1 #" "
0 0 14 3 2 #"C1"
0 0 24 3 2 #") "
0 0 17 3 28 #";give 2 radius and 2 centres"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 3 #"let"
0 0 24 3 3 #" (("
0 0 14 3 3 #"res"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 13 #" (("
0 0 14 3 3 #"and"
0 0 24 3 2 #" ("
0 0 14 3 2 #">="
0 0 24 3 1 #" "
0 0 14 3 2 #"r0"
0 0 24 3 1 #" "
0 0 14 3 2 #"r1"
0 0 24 3 3 #") ("
0 0 14 3 3 #"not"
0 0 24 3 2 #" ("
0 0 14 3 1 #"="
0 0 24 3 2 #" ("
0 0 14 3 8 #"distance"
0 0 24 3 1 #" "
0 0 14 3 2 #"C0"
0 0 24 3 1 #" "
0 0 14 3 2 #"C1"
0 0 24 3 2 #") "
0 0 21 3 1 #"0"
0 0 24 3 5 #"))) ("
0 0 14 3 4 #"acos"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 1 #" "
0 0 14 3 2 #"r0"
0 0 24 3 1 #" "
0 0 14 3 2 #"r1"
0 0 24 3 3 #") ("
0 0 14 3 8 #"distance"
0 0 24 3 1 #" "
0 0 14 3 2 #"C0"
0 0 24 3 1 #" "
0 0 14 3 2 #"C1"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" (("
0 0 14 3 3 #"and"
0 0 24 3 2 #" ("
0 0 14 3 1 #">"
0 0 24 3 1 #" "
0 0 14 3 2 #"r1"
0 0 24 3 1 #" "
0 0 14 3 2 #"r0"
0 0 24 3 3 #") ("
0 0 14 3 3 #"not"
0 0 24 3 2 #" ("
0 0 14 3 1 #"="
0 0 24 3 2 #" ("
0 0 14 3 8 #"distance"
0 0 24 3 1 #" "
0 0 14 3 2 #"C0"
0 0 24 3 1 #" "
0 0 14 3 2 #"C1"
0 0 24 3 2 #") "
0 0 21 3 1 #"0"
0 0 24 3 5 #"))) ("
0 0 14 3 1 #"-"
0 0 24 3 1 #" "
0 0 14 3 2 #"pi"
0 0 24 3 2 #" ("
0 0 14 3 4 #"acos"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 1 #" "
0 0 14 3 2 #"r1"
0 0 24 3 1 #" "
0 0 14 3 2 #"r0"
0 0 24 3 3 #") ("
0 0 14 3 8 #"distance"
0 0 24 3 1 #" "
0 0 14 3 2 #"C0"
0 0 24 3 1 #" "
0 0 14 3 2 #"C1"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" (("
0 0 14 3 1 #"="
0 0 24 3 2 #" ("
0 0 14 3 8 #"distance"
0 0 24 3 1 #" "
0 0 14 3 2 #"C0"
0 0 24 3 1 #" "
0 0 14 3 2 #"C1"
0 0 24 3 2 #") "
0 0 21 3 1 #"0"
0 0 24 3 2 #") "
0 0 21 3 1 #"0"
0 0 24 3 2 #") "
0 0 17 3 29 #";there is no possible tangent"
0 0 24 29 1 #"\n"
0 0 24 3 14 #" )))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 8 #"complex?"
0 0 24 3 1 #" "
0 0 14 3 3 #"res"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 9 #"real-part"
0 0 24 3 1 #" "
0 0 14 3 3 #"res"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" "
0 0 14 3 3 #"res"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";LINE SLOPE"
0 0 24 29 1 #"\n"
0 0 17 3 2 #"#;"
0 0 24 29 1 #"\n"
0 2 195 4 1 #"\0"
2 -1.0 -1.0 0.0 0.0 0 92 500
(
#"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\1\376\0\0\0016\b"
#"\6\0\0\0\200\324\360\374\0\0 \0IDATx\234\354\235w\274eU}"
#"\350\277\253\354S\356\275\323ah\3\f"
#"H\31\211\"\210\200\30\260\340\263<E"
#"\2(\321\240h\242\321\304\366\24\215%*\212\240(\4x1\26\20\1K\340\311"
#"X\210B\22L\301\30\244\4\214%\240(\275\r\3L\237\333\316\331{\257\265~"
#"\357\217\265\367\271\347\336\31\206r\a\344"
#"\316]\337\17\2079\367\234}v\337\353\327\177K\211\210\220H$\22\211DbV"
#"\240\177\337;\220H$\22\211D\342\251#\t\376D\"\221H$f\21I\360'"
#"\22\211D\"1\213H\202?\221H$\22\211YD\22\374\211D\"\221H\314\""
#"\222\340O$\22\211Db\26\221\4\177\"\221H$\22\263\210$\370\23\211D\""
#"\221\230E$\301\237H$\22\211\304,\"\t\376D\"\221H$f\21I\360'"
#"\22\211D\"1\213H\202?\221H$\22\211YD\22\374\211D\"\221H\314\""
#"\222\340O$\22\211Db\26\221\4\177"
#"\"\221H$\22\263\b\373\373\336\201\231"
#"\216\247\203\241\t^\203\6\247\300\0*"
#"\0\312!\312\23\320\30\311\300\3\246^&\240D#j\363\353}\204\217A\246."
#"\30\2527z\313\213m\262\242\315\377\356"
#"Ia\352\316\364\363\210\a\232H<\26\246y\377K\365[5\361\233P\255MM"
#"Z\246&>\263\365V\315\23\333\351M"
#"\366\363\221\237\317\211\355>\266\337=\336"
#"\35\310\1\203(;\371\270%\200\2628"
#"&\316\207%\200\370j\303\6\217\236\366\361'~?$\213\177\232\350ZwRL"
#"\26\342jb\211\336\37j\312W\325\373"
#"\315\275\36\317\36D\342@!\325\353\321\327\363\24^\372\307\177P\211"
#"\304S\304\226\236\203\3312<\316\226"
#"\343L\324$\213\177\232\250Z\347\335"
) 500
(
#"D\250G=Y\1\272\262(0\375\232\272fB\227~\\\e\334\262\5\275E\342"
#"\366j\305\340)'\t\377\304Ld\3123\27\237\351Mm\362\231I\34\233\36\351"
#"X\352cUS?L\314h\222\2527]$\236BQa\362\303\243&\276\257\307"
#"\ra\252\250\177\202\247\277\3175\320\e\217$n}b\37\2\20\252\377O^\206"
#"G\372\373\t1i\v\211\304\357\201M"
#"\237\243\315:\337\36\3457\217\312\224\25"
#"m\255\301\363\321\367o\313\3077\375\255"
#"?\322\221\204M\277QT\256\315$:f2\351\352m\rj\341?\351C\35_"
#"2\361\205\357_F6\371\3014\266\37z+\233\252\bl\272_QLo\255M"
#"O\e\231\362J$\36\27\217<\204="
#"\321p\327f?U\364\236\363\255\311\243"
#"\357\337\226\217o\372;\360\350\3074I\314?RRRbF\221\4\377\264\231\234"
#"\\$\225\225=5\330\0366\363\213G^_x\314\2q\213\353\222\251[\235\242"
#"\34\374\36$\355\243\37\326\343;\376Db\332lQ\226\351(\360\247\b\375m'"
#"mE?j\356\355\246\256\376$6f:\351\nN\27\345{\202)\20\255\372\311"
#"\270\3525\201\20b6\376\244'n\212"
#"\313\\\205\211W\374\321\343\344\351%-"
#"\37U~\367\37k\377\337*\205\21\22O\"[\220\336\362H\313\bl+!\256"
#"\376gr\23\1\17@\330\254\320\27\222\360\230\311\244k7m\2\250~\371\\i"
#"\320\275,>\301\23O\264\351S\20z"
#"Vm\217-\\\212\247\265\360\333\262;\3621\263%7\352&JR\"\261\365\211"
#"\2.\260Y\241\276\355\230\370\233e\323X~\377'S\317G\22\e3\235t\5"
#"\247M\350\271\3245Sm{\327\263t\313RP\22\307\216\211X\177\321[Rd"
#"\262\16-\341q\b{\2659]\275\32\306\244"
#"\357\2330Q\362\327\277\314\223\215\210\200l:v"
) 500
(
#"J\25\n\t\22z1\324\307u\334\211\304\343$L\271\277D\372\337\313\304=Z"
#"}\21\220\370\f\327J\373&\341\263\255"
#"\267?\365{\221\247N\313\r\364\206\205"
#"\370\bV\343\220\370G\32\203\266\34\32"
#"H\314\f\222\340\237&\36&\271\343-Q\330\22\34(\301!\4,\r[\tb"
#"\a\246>\355**\6.xP\n\357=R%\317(\375\330.Mo\251JC"
#"\237$\\\225\306\252\270\214w\16t,=\254\307.\3476\rLlm\352\301L"
#")p.\252E\301{\20AW;\252\265\306{\37='*V\230\272\262|\322"
#"\367-\261\355\323/XE\4\2555!\204I\367e\275\234R\322\367\276z\16Q"
#"\210\200\257\234NZ\353\370,\305\25N"
#"{\377t\365\234;\347z\357\353}+\237\242g@\251Z\331\211\373!\"(\243"
#"Q\272\256\366\236\310c\352o\34\264\r"
#";@\266y\222\340\2376Y\325\315*\304\377<\30\5X\251\24\202(l\235\17"
#"\20\2\231\211\17L\220\0:&\2*m\360^\320\306\20\372\243g\375\3\313\26"
#"\335\375\23\356\366^'\255J\21\b\336"
#"\307\26\2\266\1\312\22B\240Q\265\25"
#"\260Ys\253\234\201-\241\265F)\205\210`m\334\2761\2467\260\6\251\6T"
#"\23\317\201\363\16\320\275A\260\307\323:"
#"\334\221x\272R\vz\210\2\265\26\260"
#"\375\367W\236\227\250\236Y\37\320:*\t\265u/\n\224\1\347\342\275j2\e"
#"\205\277\232\276\350\363>*\337\326\332\336"
#">\32\23\237\342,\313\246\275\376G%P)\340\1\227w\310l\6J\21\2442"
#"`\200\211\304\345\251>\216\364L\316T"
#"\222\340\237&\n\5\332\340\212\16V\303"
#"\200\6|\345\36\304\2400\30\300Z\35\245r\bd\200Q\26\224\351i\320e\220"
#"\252\32@\343%D\313\377Q\6\226\350)\217\252"
#"\302\204\355\36\343qR)\3\306(\b\321rp^"
) 500
(
#"\252\201&\340\275\247|\212|v\301\371\312\232\nU\e\324\370reNPU\350"
#"C@\e\325\e\0Uj\6\232\330\n\324V~\236\347\30c\260\326V\236\265x"
#"\363{/4\e\31\312\0\204\2365\257"
#"\224\240\225F\4J\27\227\3256\n\377\236G`+<?\306\230\276}\361=E"
#"\300{\277IX\342\311\300hpe\16"
#"\301c\233YO\301\366\324\303\317\246\""
#"\342\21\373\202$f\fI\360O\23\361\1\301b[m\300\201\224\30\35\360d\224"
#"\330\30\323/\n\2503\371\265\207P\342"
#"\312\34O\264\270\5\3102\215\253\262\0\265\212V\212L\252\231}\204K%ar"
#"]~\325K\273\367\231w\275F?A\253hEH\24\300[\301`y\24\2\22"
#"\34\272\nsH\b1\204!\200\17X\233\365r\20\202\2_\25Ht\273\5\312"
#"L)\241\22\235\22\374\22\233\260\345["
#"\"\336\177\0\315\346\204w\253\347\205\2"
#"L\25o\312\273]\0200\326 aB\215\26\5\231Ux\251\224S\35\177\257\215"
#"\2117\354t\367?\270\211\260\202R\223"
#"\254|\245\37-\236\276u\4\257\265\6"
#"\3122\nr\21\312\20\205\376\344\265\353"
#")\375?\2\250\364@\316T\222\340\237"
#"&\306\250\352\201\320\340\306AF\0G7@I|P\32\r\251\264w\v\24\20"
#"F\260\231\246DSJU\6\30\300T-}\235\v1\306\246\36K\207,\331\324"
#"\342\2270\341\226\323\n\b8\27&:"
#"\375\211\213\256\365\255p\374[\256\307\357"
#"\313U\20PH\34\\|Y\r\32\1\255 \257\\\17\2522\362\233\255F|\363"
#"$5MIl[l\351\376\323\306\364"
#"\336\327\326\264R\212\322\205I\221\264f"
#"\263\325{\324\224\326\270\262\304\a\217\0"
#"\205\213\217Q\335\260N\244\312S1\323\2777\343\363\21&\305\370Eb"
#"\330\257\336\277-\35\337tqe\36"
#"\267\220U\347I\251\350\5\220\307\320\350"
) 500
(
#"+\311\375\31K\32U\247K\bx\240\f\200\t\340\327\3\16\321Te|\2\224"
#"1)\b@\0340\n\4\272\22\a\224 \223\253g\264\325(T/\31\356\261\\"
#"\246\t\213\177\242uo\235\227\214wX"
#"\253{J\5\b\241\310\247w\334\217\225*\243\2777\253\27D\r'L\270\24\e"
#"\231\352\355\177Q-V\24\305Dvs\22\376\211'J\235\235_\305\316'b\352"
#"\272\347\361\212\211\244\241\272'\3\342\34"
#"6\313\260\332\240\200lb\36\256\270\210"
#"\252\24\212\255\3442\223\20z!.\347"
#"\242\a\240,\375S\340\221\3k\263\252"
#"\354(\247N\327\23\242\2223!\327'"
#"\236\277\24\343\3376H#\352\264\251\22"
#"\2004\200\3Sp\361\205\3473\327\356"
#"\312\311\247\\\20\5\277\317\1\215\v\200"
#"\22\276\177\321y\264\324\0\v\354\22Z"
#"\246\305k\217\377\223h\241O\321\360\353"
#"\301\340\261l\177\223\375\251\376r\343\343"
#"\354\267\327\236\34{\354k\tT\271\6"
#"\324\226\320\326\343\21\225\177\245\252\n\a"
#"Ew|\234\245K\226\3204\31\215\254E\2463N;\355\214\336\21\b`M\34"
#"\253\e\215F\317\5\232HL\27\2555"
#"\"\2021\206\v/\274\20\255-\237\374"
#"\344)\0\330\332\275\2564\337\272\360\""
#"\262l\0\2552\224R\274\366u\257\307"
#"\371\211\247l\322-\271\25\262\372;\343"
#"\343\354\265\327^\34{\354\261\275\4X"
#"\240\227\340\367\344\23\2421\"\260l\217"
#"\335\321\312\220\351\6\3f\200S>\375"
#"\271I\317f2\360\267\35\222\340\237.\301c\250\36\n5\0j>A4\310F"
#"\6\3240\240\tf!]\240I\301\3?^\316\307\376\342s\224\6\30\330\rX"
#"\302\276\a\276\0\3604\30\305\272\0166"
#"\4\n\211\245\200\325\177t\200q\t1"
#"\273\250\23\240\200a\0\337\304\272\222\214\30080\252\a\1"
#"K\263{'6\277\206/~\354\217\370\355\312U\3343w?"
) 500
(
#"\356\6\326\1\320\204P\322\f0F\265\363\3450\204\r@\aO\3540\320\255^"
#"%\304\221//A\34\216@IL\22\34\1\224w(\347\360\304\365\t@\36\253"
#"\34<%\360\20\374\346\2378|\301|\356]\231S\f\354E\331\312\230\v|\366"
#"\223\177\317^\a\35\315\303.\36c]\323\20|\336\e\220\352s\340\24x\2T"
#"\263\204K\2628f=\212|\242c\246\0\22Kd\vt\225\340Z\0yu\257"
#"\4\360\243\f\270\215\2402V\265w\343"
#"\1\5\370\25\220_\315\257\377\363b\336"
#"\362\356\217\341\207vA\200\1`\331~"
#"G0b\342Z\254\254\301\262\16'\320\361\32$\243\240\203\243rhu\250\372r"
#"\5:\3448\312\370\241\e\206\372\371\204"
#"\350\225\313\357\206\374\347\374\375G\17\343"
#"\256\225\367r\323v\373\363\e\245b\236O\327a\244K\16D;<\200\344@\a"
#")\306A`\34\315*4k\250\16~l\24\272\35\0\306\251\214\b\347\342\313\a"
#"\2R\235\211\252\327\2108(Ga\3746\212[\257e\207\35w\344\326U\r\244"
#"\261#s\244d\327\320\341\214\323?F\353\310\267p]\265\t;\372 \215\356X"
#"\265_\32\374\330\223xe\23O*\222"
#"\230\36e!\271\23\351\210\210\370\215\""
#"n\245\210\37\2251\21\31\25\2212\210"
#"\204\20$\210\210\270\r\362\343\257}\\"
#"v\59\352\350\327\310\255\"r\277\210"
#"l\254\327\25\206EdD\234\357\212x\21q\"\276\f\222K)y\3743~^"
#"\304\355\212\e\221\340EJ\21\311E$"
#"HQ\355\303\260H\271V\316|\327\261"
#"\262\30\4\213<\353\204\17\310-\"\262ND\244\330(R\216\212+E\244\\-"
#"\22Jq\"2\352\353\365tDBW\304yq.H)q\e\336\213\210\353\210"
#"H!ND\306\203\210\204\r\22\252\357])\"E)Rz\21/R\372B\304?,2\372\ey"
) 500
(
#"\336.\231X\264\34y\334;e\255\210"
#"\24R\312\332\333\257\225=\6\347\nj\276\274\3433\27\311\375\"\262^DBp"
#"q\373E7\36t\250N\217\370\352\4"
#"\370\3366\23\263\235\256\4\251\236\215 "
#"\"\241\234|o\204\256H9\26\277\362\271\210[/\342\326K.\"+DdD"
#"D\304\257\24\311\377[\276w\301\251B"
#"6 \207\275\366\255\322\251V7&\"\253\275HWDDF\304\347\353\252\365\212"
#"\210\313e\255\210\270P\212\270x\317wD\304\a\21):\"\371\230\204\20dT"
#"\252\361A\272\"a\275\210\254\23\361k"
#"\345\263\357~\263\354\5\202i\312\2627"
#"\177Fn\255\266\347\272\35qR\312\270"
#"\270\3529\367\222\273\352;\21\221\262+"
#"\222\257\27\221\365\"\345\203\342\363\256t"
#"Dd\314\307\357\235x\311CWD\274H\341EB|\256s\21\21W\210\24\343"
#"\"\276\224a/\"\303W\312\201;!"
#"\250\205r\304\37\177J6\210\210\270\207"
#"\244{\357\225\262h\b\301\354\"\357:"
#"\355\273\262\301K<\253\241\224\20\252c\fc[\365J&\236:\222\305?]$"
#"\253\373\342\304\254\375\0H\214\373\217\23"
#"\255T%\202\n\243\240\273\254\32+\31"
#"\3\236w\350\341\264\250,\0\210&\205jP`b\316P\267\v\36\202U\344\330"
#"\230\201\354z\233\4\35\265\371RGC#\27Pa=p\17\353\357\372\25\213\347"
#"\357\303'\277r\5\335j\365\231\366\304"
#"\ny@\25\240<\245\205\263\376\372-"
#",\277\370kt\1\247\241\250\223\360\\"
#"\16\224\30%\275n\203h\0015\16\345\206\350xP\200+(]N\1\30\25\240"
#"(A4\243\272\332G\326r\307\317\177"
#"\306\177\257\24\26\275\340\r\\\360\355\257"
#"0\337C\346r\26\356\266?w\375\364o\331u \347\374\263/\340\356\361"
#"\3524\250\2\212\16\250\254\n;\6\240\254J\1'H\366~\242\277\306\274."
) 500
(
#"E\253;d\306/\4L#\226\247\351\352N\256\274\2\36\30\362c1\223\315l"
#"\a\331\34p]^t\350!\214\2\e\253e\346h\320\22\20\6\320\215\5Pz"
#"\bc \353\242\227J\331*\2416G\3601\377\2754\340[\224J1F\325\243"
#"3l\204\260\232\207\357\272\231\5\v\366"
#"\344\343_\376\227x\17\373AZ\256\201&z\327B3\346\27440\361\31\220\211"
#"\304\337\350\325\b\300(\270\325\320\275\237"
#"\353~\361+\16<\361TVi\b\276\300\260\1T\223\0214b4\224%\rr"
#"\32\270\270\357\316\202\262t4\254\277\356"
#"_\270\365A\330\371\240\227\361\255\213O"
#"\211uFJ\323\\\262\27w\377\362\6"
#"\366\311r\376\337g>\302\275\353`\5"
#"\226\21\24\312u\3218\306\325\300\223ze\23O\36I\360O\27U\271\302\21p"
#"%\204\234\357|\375\2\3466\27\362\361"
#"\317\1773~'\236\377\371\317+\231\247"
#"w\344\335\378\223.p\312\311\247\260{kg\216y\313\311Q\250Z@\232\270"
#"\320\6J:\17\376\202\275\26*2\273\3W\335\2601\272\347\364\30\310\35H~"
#"\a\273\355\266\17\203C\317\341\206\237_"
#"K^\355\a>\347\307\347\375-\373\356\363BV\217[\376\327\261o\343'?\271"
#"\2\353!\223\200\255\26C\225\220\217R"
#"\20\e\v\275\371-\357b\310\32\316\370"
#"\314\351\264\258\332t\262\271\344\246\211"
#"Wq\216\1]\202\16]\326\337~\35\313vX\314\3029\333q\355\317\200\260="
#"\r\253\31`5t\356c\377\375\236\203"
#"\32\332\213\377\274\351>\24\353!\f\363"
#"\335\345\227C\266\224\27\275\352\315\f5"
#"@\323\1\311\361\215!Xbx\371\341\a@\267\340\312+o\253N\252\a\233\305"
#"\332)\5q\"$\5b{\337+B\252\364O\320?Ml\177\fZ"
#"\367>\320\4\251\312\342\202\3\272\\"
#"\366\215\363i\331A>u\306\367\241\334"
) 500
(
#"\310-7\376\27m\273\224\23\336r\22"
#"\326X>\377\327'\263}\363\31\274\346"
#"O\336\207\6\32\224X\25\350\204*A"
#"\27\317\206{\177\303\262\355wb\311\300"
#"2\376\343\332\207\1\213R\243\264\271\5"
#"\362;y\3063\366\245=\357\31\\\373"
#"\263\333i\0-\2x\313\225\347}\235\347<\343El\30u\34\372\307\357\346g"
#"W~\21\3130Rvc\243- \v%\266;\206\26\252g\333a\312\325\f\206"
#"\265\2300\0265^\273\35\27_\374/,\235s\bG\34\376J\244RzV\257"
#"\270\236\275\347/\242\235-\340\352\377\36"
#"\217\n\270\35\1\177\17\214\255d\367g"
#"\36\214\232\263'?\375\325\335\264\201\177"
#"\276\354z\224\202W\275\366hL]I(\363\200\35\231\263xW^y\350\36\370"
#"\374.~\364\323\377d\4\252\322\233q\360\5\235\255~1\23O\25I\360O\27"
#"\335K\373\251,\334Q$tA\265\31\227V5\30\345Q)\0\212z\276\31\5"
#"\320d\16e\214i\253\2B\214+\342"
#"\204\366\36\363x\353[_\201\361\e\371"
#"\350\373?\301\332\236k`\25g|\344"
#"/\271\377\3411\216\371\304\337s\304A\a` 6\343Q-B\230K\251\341\212"
#"\353n`\371e\347a\3030\3\22\333\a\324\345\205x\240\335\304\1\37=\363<"
#"\276\361\215\263Q\228\363\223\37\247\2513>\364\311/0B\264x\\Un\220"
#")@<\v\366^\302\237\276\351p\244"
#"\273\226\223\336\372\347\334Q\217\273\345J"
#"\316\374\304\373\270y\305jN8\355o"
#"y\346\376\273a(\240\333\341\266\333\37\2\346p\374\253_A\v@u\300FK"
#"\bk\370\243\327\35\3~\204\225\267\337"
#"\304P\275\177\332Rj\360*\364\204\276"
#"\250\272l\261\0<\346\311\3578\234x\272\23\252\16\225\20'\304\256[W"
#"K\365\251\322\240t\255\3\09\370.((|\3\260\350\262$\243j+"
) 500
(
#"\03520\363\0\203\24\343d@\b%\201\252\206?v\315b\376\316\213\371\263?"
#"{%\266\3630\357\377\253Oq_N\f\254\273\2079\355c\357\346\256\rc\274"
#"\341\344\317\363\274\203\367f>c4\212\34XH!\213\261\300O~z\25\227,"
#"?\231\266\275\3\253\35\336\216\307\n\27"
#"\200\322\201\266\4\25\35\a\230\22\314\b"
#"\224\253 \254\345\222\345\27\243\232\333s"
#"\342_\234\316\275j.\37>\365,\256\371\326),f\230\235w\237\307;N|"
#"%C\256\303\373\337\361~\36.\211\17"
#"\277[\315\331\37;\211\373\36\330\300k"
#"\317\374*K\17\334\2039n\r\267\335"
#"\354AZ\274\352\225\207a\353S\244\32"
#"\210\37\202\346\0G\35\377\2\264\202\333"
#"\357\274m\302\303\346\nP!\t\217\231"
#"\314\357;\3260\343\361\3432,1\236"
#"/\335{D\272\327\311\367.\370\254\320"
#"\\*'\236y\205\f\213\210\24\253D\312\265\"nD\276s\336)\262\0\344\303"
#"\247\234*\267\213\310\232\352\267\275\370}"
#")\"\276\20\221\373E\272\277\220\347\356"
#"\240E1W\276\274\374F\331\30D~"
#"w\375r\331\36\204\241\335\345\312q\21\361\eec\275}\277Q\244\273ZB\20"
#"Y%\"\245\224r\333U_\224\205 /|\323_\311M\22?\227r\215H\261"
#"F\36\22\21\361\253$F\326\307\345\276"
#"\25w\313\300\274\355\5\275P\260\213\344"
#"\177\277\376\rRJY\305G\245\212\241\336#\322\375\245<{\307\246\314eH>"
#"t\345/e\\\274\254\370\217\213c>"
#"\301\374\335\345\252<\306O\245\270Od"
#"\303\365r\340\216\213\204y\207\311\215\253"
#"b\2342\356E\334o\31\276\\.\375\332\231BsO9\354\204\217\307\330\254\e"
#"\227\242\34\223\216\210\224\342\343\306\253"
#"\\\206R\274\210\214\210\204\242:i\211YM\31o\313\256"
#"x)\245\20\21_\335\247\"\22bL:\17U\214\276\\"
) 500
(
#"/R\336\"\227\177\355\257\5=('\234qU\214\201\347\367\212t\377G.\375"
#"\3469B\266\223\234x\332wd\265T\367[\321\25'\245t\244\24W\257\333\25"
#"\361\271\31\277I^>W\tl/\237\375\301M2\"\245<\360\323\ve!\b"
#"\363\227\3115\343\22\237\377\316\372\30`"
#"\257\223q\3125\"\322\225\225\"2\372oo\25k\220\3\337\3661\271SD:"
#"\271\210\344]\221\242\224\"x\21\331("
#"R\254\20q\e\345\303\357y\2274\242"
#"\337K\30\32\222\177\374\345}\262BD"
#"\272\245\210\224^\234\254\22\221;E6\376F^6o\2164Y(g\374\303\325"
#"\362\220\344r\333\325\27\311\22\20\346\354"
#"-Wz\221\373DDF\177%\307\266\236!\213[{\312-\343\"1\363a\\"
#"\202\23\31\t\"\"#r\325\205o\225\205 \a\377\361_\310M\"1\a \177"
#"H$_=\221\233\224\230q$\245m\272\204\350\360*\241\n\304U\331\350d\275"
#"\331\276\320\26\30\4\335b@\225\f\22;\365\255\5\26\1M\240($\306(M"
#" '\243dG0\v\270\374\333g\263\35\303\234\177\316\373Y=\f/<\3564"
#"\206ip\376\327\277\301\2226\20\232\264"
#"\205\230\5\240\f\330\371\214W\223n\330"
#"\260\216\271\246\300\2\243\343cx\352^"
#"\376\nT3Z\27\264\20\327\304\323f"
#"\273]\226\262n\303*\304\255\346#\357"
#"\370#\376c\371\245d:\343\325\307\277"
#"\221Q\r\243\n\234Z\2\315]\370\316"
#"\305\347\262\220Q\316\377\277'\361\300\372"
#"1^\376\306S\330\210\345\313_;\237\245\215\332s\321\2gq\305(\2041\232"
#"\355\312uY\325\360\e\200\314\260\333\262"
#"e\240\233\214\225Y\fi(\203X*w\276\356\245\372W%\324U\222C\226\312"
#"\373\23}\364e|\364\325\236M\314\0I\325p\247"
#"D\205\22\224\242\244Aau\354\300\3477\20\312\21"
) 500
(
#"\260\3\24Y\233\6`\213\34\253cv,\30T\314\246\251n\304!h\357\310\225"
#"\227|\226\26\253\371\302\27>\304\3c"
#"\226#\216\3734\35\346q\356\371\337b"
#"\327vu\217\253\2711\333_\2014\210"
#"5\253\224\314\5D\355\200W\320\35+\342\275\335\0i4\3113K\246\306!\277"
#"\233/|\360\235h\2733g~\365\6\16{\335It\\\a\31y\220W\36\260"
#"+\3@\23\a!\307\263\210.{Bc\21\337\273\370l\26\261\216\257~\341\23"
#"\334\223+^\374\346S\31\3.\372\312"
#"\337\361L\r\203\344\320\34#\317\333\344"
#"\276\305\360xI\206\202\340q\36J\5"
#"\220\363\314g,\245\r\f\230v\257\322'\3161\236Jmg2i\350\234.Z"
#"p\275d\"\5\"\261\376\\\a$\24\304\260Y\206\267M\202h2?\306\20P"
#"\344\371\204\20,\241\325\210\322\272,\34"
#"FC\300\202\235\313./:\202\217\234t8w\334p\35{\315_\314\252\a5"
#"\207\36\363\1^\377\272\27\263+\200\327d@\3A\\\1Fb\351\r\0\36_"
#":r\300\16\264\320\324\343\241P\317\21"
#"X\3509\240\333\30\2016\201f\350\202"
#"[\307\347\377\357\251t\334\32\256\272\376"
#"\32\256\274\374\37y\356\301/\303\27\320"
#"\305\340\231\317\262\227\274\210\17\275\363\371"
#"\214^\365\23\366^\274\204[\36T<\377\230\277\344-\257{9\v\4\346\b\304"
#"\240\241gNS\260\241 \37\253\6B"
#"\335\236\210\315\252\202\240\r\250Ahm\317\250'\346\25 h|5y\n\324%"
#"|\32 \304\204\247\"\215=\211\36\22]\375S>SZS\372\252\376^\5\220"
#"\2[M\236U\206,&\250j\r\252DK\1JP\306T\317O\16\336Ws"
#"b(4>\346\307d\31\2016\260\0\375\222\27q\362IG\261\352\232"
#"\177a\331\374y\334\265Z\363\302\243\336\316\211\307\37\314\"bO/\254"
) 500
(
#"\206,\346\325y\300\323\306\a\315 \216\322\315G;h\333\271(b\20\2537Y"
#"w>\302\373\216y5_\372\342\25|\377[\337dE\361\337\\\364\335s\0301"
#"-\34\203\30\201\5\276\3\214\201U\325"
#"\23\3\330y\314}\331\221\374\237\367\274"
#"\214\273\177z5\317\237\277\23+\357\325"
#"\34v\364\a9\361\204W\262C(X"
#"\310\203\240J\214\232\207\"\243\321\312(\b\240czM5e\20t\232X\300\205"
#"h\304\364\302\224)\3146\243I\202\177"
#"\332\250)\312o\223 \2\222cU\225\206\257\6bF\275\16XU\304\4\36\333"
#"\212\202\37\215\265\200x\234W\330F\3"
#"\35b\26qA\23\364\216\274\355\335\37f\3276\314c\3\f\16p\326E\237\3"
#"`\236[\3V*\271\250Q\246\1\344(\240\r\20,Ag\224\n\312*\31."
#"*\"\1\224GSY\340\276\0\267\26\312\265\261\266W4\247~\370dTk;"
#"^\372\342W\362\302\327\275\201\337\376\354"
#"\337\230g \vPb@\267y\307\373>\314a\32p\1\26-\345o.\372\""
#"Z`\201\304\311\t\321\36\214C\\A"
#"\0262\232\252\22\374\1\20\251\216\337\22"
#"$\16)\276,\260\6L\25\223MQ\304\304\264\250\254\376^/\34\211]+\225"
#"\304l\227\240\263(\277\214\1\24\2312"
#" \16\325\253\205\1\224\212\3672B\20\17(\34\220+pX\30\\\302{\337\371"
#"\36\36650\344K\30\232\303\231\337\374"
#"\e\2\320\16\201\246\24`\2422\333\310"
#"\342s\341}\23\364@\345\310rQ\310\226q\275\216h\3017}\tv._\370"
#"\341\265\274\373\275\257\340\35o~\35K"
#"\364\20'\276\351\343l\4V\241\30W"
#"\200\30\260\203\24\272\201A\30\24p\266"
#"\t\315E\274\355\244\223\330o\20\6\273kap\a>s\341Y\f\3"
#"-5\16\214\201\264\b\241Y\325\f\215\343\210\271\fAA\243*{P4"
) 500
(
#"b\0220\322K>D4\350f\252\252\231\301\244\221u\332\324\263\311A\345\3c"
#"B%\16\325\330\243\253\357\373'\320\2611\251\257Z\213R\2F\221W\23dX"
#"\245Q4\2006\363\367\330\233\227\276x\37\2%\273\354\263'\3sk\227\3758"
#"b\n|\255xx\v8\6\250r\16\203\302+\35\277\27\335\367\340B\325\202\203"
#"9\f\243\364\bH`\315\235+\330e"
#"\321\256\264\233\2138\345\v_\347\310\327"
#"\236\300\275\235\21\276w\311Wc)\241s4u5]\207h\354\316K9\374\320"
#"\235\3214\230\267\327\0370o\220\230\274"
#"\0277\35g\5\254<\251\245\261t5\4\17H\az-\214\333\334u\347\235\20"
#"F\31\360k\31\22@\4\217\211\257\372"
#"\330$\246\36\305\201\332\203\202f\32y"
#"\22\25\365\254\26\262\245!\255W\n\a"
#"\240'\356-\0\325\210k\20\217\21_\335g:\nV\242\243_\253Fo^\36"
#"\rU7\352\2149K\367\340\325\177x \"\216\235\366y6\215\371\325D\331z"
#"\34L\211# Z \304\4\336\206\6/\3400\261R\a@\271\211PV(\243"
#"'P\6!\333\221\367\237s\36\253\375"
#"\257\371\364\a\216\346\272K?\317\36\355"
#"\355\331e\376\36\\\373\213;\30\266\r"
#"\206\26184\6GT\313c\263\360\355"
#"\226\356\306\21\207\356J\v\330g\217\375"
#"\30\32\252r\37U\t4\240\273\0\253GQ\322\305z\205\306\"d\370^\247B"
#"\305-w\335LI\234\337 \316\372A\3459){\317zb\346\221\4\377tQ"
#"\361$\332\276\277{\255\346jA\245*K[\2\36CN\264\0\232D/\200+"
#"\243s^\310Q\246$W\320\351@VfPl\344_/\374\22\27_y\e#"
#"\f\361\300\257o\341\334\317.\217\27\316\16!\214\221{\241\264\200n"
#"B\251c\35\263\2\214B\252r<\e\350+\177\323\240\343@C~#"
) 500
(
#"W\\x\16\255\346\216l\377\314W\260\262\230\303\373O9\215B\204\37^z\t"
#"s\210\373\31,\320\2608_e\36\273\222k/:\237s\257YIh4\330x"
#"\303\r\234\367\351o\241\210\375\0JE"
#"\325\223\337s\340!\317\302Qp\363}U\22629\270n\225c\220\241\\\200\220"
#"s\360\263\227F\353\252\350bi\365, t,\205\230\230n\245\0\312T\310\237"
#"\350\25\354k@\365f\331\231\370|S4\252J\16\21U\227\267\306\16\221Z\f"
#"\210\352si+0\232<\26\344\20\304"
#"bL\234\345\317\25\220\251\200\222\225\\"
#"\371\215\363\371\372U\277d\214\205<\370"
#"\353;\370\273\323\277\335\333|\0J\37"
#"'\350\2163\375\214\3\36\255b\370\300"
#"k\217\323\340L\211\241z\266\224\6\323"
#"D\f\204\240\301\314\0057\237O\236\365"
#"%\244\\\315\267\277\364W46\336\303"
#"\313\17\336\233y\363\27\363\327\237>\a"
#"\200\234\214n\310P\276\v\305\303\374\363"
#"W\277\310%\377v?k\355\34n\273\371\227\234w\352\17h\0]Z\b\333C"
#"sW\366?HS\270\265\334{\317\b\232\26\312Y\264\212\375G0\n\335\324h"
#"\340\271\317:\200\202\336\260\6*`\223"
#"\273\177\306\222\4\377tQ\256gm\0"
#"\321\275\255\242E\34\250g\300s\261\267"
#"H\3208\325\254\232~T\326q\30\3076\242\256n\t\30\n\34\320h\22'\316"
#"\330\3700\247\235\374e6\266\341+\227"
#"\377;\215V\316\245\247\277\223u\2536p\37\v\321dX\243\252\6;\0\3\4"
#"\211\212\5!`\2d\2\215\20\372\32\361\320+q\372\352'?\310\211\177q:"
#"9\vx\327\251_dU\261\212\217\177\352\23(\2\3!0\17a\200(\200;"
#"\n\202\1\212.\214\217s\346\251\347\261qa\306\227.\276\220y\3637"
#"r\341\337~\214\25ks\326\2\243\36 @[\363\214e{@w\25\17"
) 500
(
#"\254\270\2071\300\231!\260\302<\37\240"
#";\316\277^~9\210f\237g\356\327"
#"s\232\250\320\327w\240\232\325\317\b\350"
#"\272\25\353\26\a\367\304\254\241N\25\231"
#"\20\373\23\365\374\n\342\24\324\375\r}"
#"&\246{\16U\355;\342\343r\242A\32\370ZEV\2::\3<\240U\6"
#"X\20\30l\204\330\342z\315C|\364\224sX?\270\210s\177\370O4\232#"
#"|\375\363\37e\345\3321\3262D\311 meP.&\337\6\353A\215cq"
#"H\0%\31^\201\3271\24Wu\352\247\3201\234\240\215\2139-\331.\270\260"
#"\20\234\341\ro:\232<\377-\313\317?\3\362\325|\345\364Oq\364q\357c"
#"\230J\261\316\307a\355\375|\356\364\257"
#"22\327p\306w\256`\356\334.\313"
#"\377\346\235\254[3\306\203\314\341a\346"
#"\203j\263\377\376%\5k\371\365\355kcy\2552X\34Ct!8.\371\356"
#"\265\24\300\37\354\273\27\363z\347\260\t*\333\32\223\23&~O\244K7m*"
#"\265W\250\6\224\230\204\6fR\303\231"
#"\350\33778m\243\25K\210\332\275\304"
#"\264\244\270\226\f\355--\300J\16\254"
#"\342k\37\375\f\277}\30\336\371\251\v"
#"x\315k\16\345\222\263\377\2149\371z"
#"\336\365\316\367\361\0\340\374@/\211\331"
#"\373\16h\e-\210j\313F\242\267A"
#"US\365F\17\204\242\216\366\337\355\227"
#"\362\345o_\300pX\303\231'\277\236!j\313Z\243u@K\27\353\vl\234"
#"\325\227\214\22l\207\317~\360#\334\274"
#"\16\216\375\324\245\274\351\370W\361\215\263"
#"\336H>\376\0o|\357G\350P\315\362\251\242\326\361\252?z\5-\31\345\353"
#"\247~\210\16\360 \v\343\316\225\367\302"
#"}+\370\317\37_\vC\333\363\374\227\34\3068\200\25\264\n4\351\317I"
#"\210f\227\251\316S\317\325\222\230\335L"
#"\262\370+w\264\252sG\25\233\314\31"
) 500
(
#"/\206\236\357K\365=\273\270J\241\314"
#"\220\230\337\336\313\t\230XC\300\373\230"
#"\e\203\e\5\267\216K?x\26\277^9\300\e?}>\257=\372 \226\237\365"
#"\6\262\261\373x\313\377\371 k\250:"
#"s\372\34\244K7\200c0\356\227\217\317c\303\307]\224j\276\373\230\3#h"
#"\\\225\254\30\0\ve\2257\303<`"
#"1\250\305\374\361\233\337\207\214?\304\215"
#"?\3757<\236\202\332\e\327\345[\237"
#"\376;\376k\5\274\361\224\213\370\223c"
#"_\304\305g\236\210v\17\361\326\367\276\2275TUH~\224\243^\373\22\fp"
#"\306\231\237a\275\300\270\1d=\252s"
#"/\303\267>\300\217\256\31e\324\356\306"
#"\377z\311\241\314\3\346\0\350\371\4\23139T\222\230Q\244\241s\332Tb\\"
#"\301\244\271u+&\6\220\352\373\312\332\230xf\332\b\16MI\341,Z5\261"
#"IOn\273\0\0 \0IDATa\f\270\217\373\177\366/|\374\242\177b"
#"\335\300\301\374\371_\276\215\5\300\353\376"
#"\3440\366\335\21.\277\3542\226\377\303"
#"(\271i\321\241\362\26\230\230\225\353\210"
#"1Dt\24\370\1\360\3254\301q\20\263=\245\344cg\375\220c\336\3606\332"
#"*0(c\264CN[\342\262%\246*MT\30\201V(Q\341An\272\346"
#"\2378\375\302\37\260\252\265/\357\377\323"
#"\343\30 \347\230\23_\304\336\273\303\325"
#"\337\373>\313\227\257\210\31\16z\20\364"
#"v\374\301\241G\260\357v\226\207~\376"
#"O\274\347\370w\321\4r\332\344+\357"
#"\3459\207\275\235\aF\204w\376\325\aY\262\250V\243\342\300\\;O*\27@"
#"t\311V\373/\330^\267\262\304,\246"
#"n\323\3337\224\305\304\320\211?\242RP/\257\251jE\241\356\376(\31(\e"
#"\5\231\n\250:S@\fT\331\354\0e(\321\306\240"
#"\253R\267\a\257\377\21\37\374\373\253\tC\317\342\275o"
) 500
(
#"?\216\371\24\34\363\306\203\331o)\\"
#"\367\375\357\362\315\313\356\254\332\354:0"
#"\36\25351\217\240\1\"h\35CpY\210\nz\257%o(\260t\321\4r"
#"\332\261\34X\227q\356o\5A\26!f!y\326\204\"\360\274\3\17\340\262\313"
#"\276\304\\\240\351G\271\367\206\353x\317"
#"W\177\210[t\20\177\371\2667\263#"
#"\5\2579\341p\226\356\0\377\376\375\313"
#"\371\316\25\367U\215z\34\255C^\301"
#"\322]\24\en\272\222\267\277\351#\361"
#"\274\211\307\255\270\237g\35x\4+\306"
#"\206x\337\251_d\361\242\214\35X\313 c\210\agU\234D,1#I\202"
#"\177+\21\37Z\335KB\213\235\255\\"
#"5\260\330\t\327\264\212.l\23\242\220"
#"\353\32\203F\221\t(\v\205\6\3748tW\363\3513\316f\265Y\304g/\371"
#"\1;\317\203A?\2\315\271\234u\361\5\264m\340\3347\377!\277\e\216\3337"
#"e\2251\344\343le\261\322\300!\272\214\261re\253tCz\tK\n\30\224"
#"\30\3037\224\370r8\0160\2\326\21"
#"\355\36\335\2]\365\362t\e!\254\343"
#"\314\317}\212\361\366\2>\360\255\37s"
#"\300\\\310\202\3\275\230\313.\274\230!"
#"\367 '\377\371\313\271\177\r\254e."
#"#\354\5\355]X\276\374k\314\241\303"
#"u\337;\227\235\325\20m\265\220\241g"
#"\274\204\233:KX\372\334\227\361\321\17"
#"\34\317\200'v\356\243\201(\e\303\n"
#"\252:\177\23\266\377DBd\252)\232"
#"\365D\321S\273\354\365\224\317\343w\223\335\374f\"\1PU\31\3654A\267q"
#"Ug?\e\352I1\32 \201&\1K\211\256\22R\305\a(G\371\333\317|"
#"\222\225\215=\370\342\327\277\301~C\220"
#"\205\34\6\26s\321\5_bN\331\345s\177\366z\36X\17\353\32\203\214\253"
#"\26V\300zp*\226\367Z\201\274z\266\264\304\220\241\257\307\tQ(l\345"
) 500
(
#"\t\310b\236K+\304\271?\232}]"
#"8\245\201\317b\207\320\271\254\205\356\35"
#"\234v\316Y\2144v\342\344\363\277\305~s!s\253 \e\344\374K\226c\312"
#"\222\263Ox5\eW\303\232\306|\230"
#"\267\214\345\227~\207\201\356z~u\351"
#"\231\314W\n\233\355Dk\277\227q\177i\331\375y\313x\337IG\323\2T\30"
#"\4\327D\362\3704\352\364\374\315X\222"
#"\340\237.U\313\320\236\v]\372\334\210"
#"\252\212\26\326YD\225\5n\251\335{UC\fo W\275\351w1\216\e\276"
#"\361m~x\345\357\330\341\260\227\362\302"
#"cv\356\265\362Ev\340\231/=\201W\35y\b\273\215\336\304\331\27~\23G"
#"U/\354\1\355&b\232\312\23t\21]\377\332L\f\206\22'\25\321\200\351\346"
#"X\27\b4q\215\355q4\21\345\261\n\360\1\234\302\253\312\243\241K~r\301"
#"\271\374\373\217\356c\347g\37\304\v\217"
#"\3379\0166h\360{\260\367\1\257\340"
#"\335\207\37H{\364\267|\345\302\363XOL8\"\f\261\357\21\a\261\252s\23"
#"\373/4,a\2146\2038\275\v'|\366\207\374\344\347W\260\240\5\vL\a"
#"U\214\202dt%z.\372\367\331c{C\215\232\244\2$f+\233\273\0036"
#"\375\254\3172\225I\366?6\0*\3"
#"\223\341+\301\237\211\257\226\310z\0250"
#"\252\232s7N\366\243\371\347\213\277\311"
#"\225\377\276\36\216|)\257:j\31s"
#"\34@\3\324\36\354\367\202\327\363\247\207"
#"<\217\205\303\267\362\345\363\277\316\203\300"
#"\250\262\340A+G\27UMu\35\350\232\26\245\6\35\375kqs\306\202jC"
#"\265\247\0050\246\233\214\20\225aENC6\320b-\230\2303d\0\3125\334"
#"\370\315/\361\275\37\375\234\355\16}\1\257=n?\26\324S\372\332\35"
#"Yv\330q\274\355\310#\331y\364\327|\343\334s\270\3\300n\317~\207"
) 500
(
#"\35\301\330\306_q\330\202\330P\314g"
#"\v\360\215\245\274\345\354\263\271\361g\227"
#"\261\240UU\320\270\26x\213\316@IN_\307\201\304\fC\211H\362\327$\22"
#"\211D\"1KH\26\177\"\221H$\22\263\210$\370\23\211D\"\221\230E$"
#"\301\237H$\22\211\304,\"\t\376D\"\221H$f\21I\360'\22\211D\""
#"1\213H\202?\221H$\22\211YD\22\374\211D\"\221H\314\"\222\340O$"
#"\22\211Db\26\221\4\177\"\221H$\22\263\210$\370\23\211D\"\221\230E$"
#"\301\237H$\22\211\304,\"\t\376D\"\221H$f\21I\360'\22\211D\""
#"1\213H\202?\221H$\22\211YD\22\374\211D\"\221H\314\"\222\340O$"
#"\22\211Db\26\221\4\177\"\221H$\22\263\210$\370\23\211D\"\221\230E$"
#"\301\237H$\22\211\304,\"\t\376D\"\221H$f\21I\360'\22\211D\""
#"1\213H\202?\221H$\22\211YD\22\374\211D\"\221H\314\"\222\340O$"
#"\22\211Db\26\221\4\177\"\221H$\22\263\210$\370\23\211D\"\221\230E$"
#"\301\237H$\22\211\304,\"\t\376D\"\221H$f\21I\360'\22\211D\""
#"1\213H\202?\221H$\22\211YD\22\374\211D\"\221H\314\"\222\340O\314"
#"8B\b\223\376\25\21\274\367\275\357E"
#"d\223\177\373\227\5z\313\327\177on"
#"\275!\204\336\373\376\365\367\257\263\20\350"
#"\342\30\305\341\0\n\240\4\30\305\263\26"
#"|\a\272\304\227\3448:\214QR\0A\n\360\200\253~\343\343?9\201\2\207"
#"\20\200\200\a:\361kp\5\270.\204.>nhF\323\177\376\373\317q\375~"
#"\352\371\337\334\265\335\34\365\357\372\337o"
#"~Y\207\20/\201\353\355\224\203PB\b\210\257\3673\236\377\34"
#"\30\253\226\r\222#\365/\235\213\27\317\305u:r\34\202\4\b\22"
) 500
(
#"\257\251\303\305\357\273\200w\4\326\1\243"
#" 98\351\333\201\262\372\314W\e\252"
#"\316\t\361\366\212\213\5\342]\221H<~\222\340O<\255\251\a|\255uo\340"
#"VJ\341\234C)\205\367\36\245\24\306"
#"\230\2360VJ\365\226\253\377\326ZS\24\5J)D\4cL\357\267!\4\312"
#"\262DkM\b\241\267-\255u\357\275"
#"1\6\210B\244\336\266\326\232\6\216&\201\26Bf4>80\0M\214\f\202"
#"\316p\26\362\26tU\23h2\210\243!\5Z5p\206(h$\16\351\2\224"
#"h\300\"(\\\210\242\305\n\230\0\220"
#"\1\1\264A\302\266\363\370z\357']\223\372|k\255)\313\262w}k\246^"
#"c\230\254$h\255{\237\325\327\260\376\r@Y\226q}\342Q\4\0240\361\255"
#"\6\f(\215\322\340\\@\0210\4\264w\f\20\30R\n\35F\201\0>\200\326"
#"H(\301\202\303R\322\4\24J\203V\1\312\2\205\6[B\326\1\4]\314\205"
#"R\1MJ\243p\26\\\310\1\a\242A\233x/\351\08\f\201\f0\265&"
#"\20\262\255}\31\22\263\204mg\344Hl\223\364\v\364z0\a\260\326\366\4D"
#"m\231\327\3028\317s`b\320\257\377"
#"n4\32\275\345\372\205\277\326\272\267\236"
#"z\eJ)\312\262\234\244H\324\313Zk{\177\323u(\337 \323\rJ\337A"
#"\267r\240\2002\3iQ\210\"\267\321R\364\200\367@\b@4!\v\4\262\22"
#"\324\b\230\22/\320\0\32\2\32\207\321\6\3d\265Y\252\25b[t<(m"
#"\236\202+\360\344R\vs\255uO\370"
#"\327B\272V\372j%\240\377\263\372\267"
#"\3655\251\25\265z\371Z\260k\255{\212\232\210\364^Y\226MR\4&\23\250"
#"5\201\0X\253\343\373\0\332X\2642t\273kA\2\342\3h\e"
#"\225\204\246\241\336;\e@\325N\a\347i\232\26\241,\311\361\344F"
) 500
(
#"\203\311@,\350AD\201W\320\361.\36\203X\b\206\311\332\210F\200P\v}"
#"\211\312a\"\361DP\362H\276\262D\342i\302T+\\Dp\316M\22\300\306"
#"\30\212\242\350\r\350S-\274z\31\240"
#"\367]\236\3474\32\215I\353\255\337\367"
#"/\337\277\255\376\375\t!\240\235F7[t\244KAI\223@#d\3404\322"
#"\200\202@Y\2161dZ@\206\350\250\0X!\372m3\360\252\240T\1hE"
#"\213\256\0T\a(\tf\bD\243\5P\216\302;B\243E j\355\255'\373"
#"\344?\5t\273]Z\255V\357\274:\3470\306\320h4(\313\30\316\350W\312"
#"\372=?\20\255\367,\313z\212@\377"
#"\265\252\257\335\324\337O(\212\340\321x"
#"\250\374,\201\236\177_\31B\210V\177"
#"\356\4e\25\255l>\243\345\6\232\200\225\22\224AB@aqN\260\r\2010"
#"\n\332\3-\2206\322\5e\0024\2\343Xr\240\t4\313\3129\2249\34]"
#"\24\6C\e\2\224\0362\v\b\240\300\251x\337(*'\0Q)\231\371\252_"
#"\342\367A\262\370\23Ok\246Zm\265"
#"\333\327Z\213\367\276g\271\213H\317\242"
#"\az\302\277\26\34\375\202\275v\0177\233\315IVd\3551\350\367\6\210Ho"
#"[S\343\314Zk\232\3159\370\320E"
#"\200\214\f\345\232\321\32\313\242\320\207\222"
#"\241LC(\240;\16T\361\344@\34\305=\210j\340i\341\1\343\211\203\275W"
#"\2205\21\35\320&@9\6\304c\244^\204mCgo6\233\0\275\353\\{"
#"s\362<\357\t\367\332\345\337\177\375 "
#"\n\366Z\350+\245zB\36\242\262`\255\235t\17\365{p\242\"\2407s\26"
#"C\357\245\224P\6A[E+\233\313\306r\3\201\30\246\37WY\2454(P"
#"`\255\2\247+\267\177\1D\35Be\200\3258"
#"\24\216(\254-`l\240\336x\227\200'C\4"
) 500
(
#"\212\2t\00629\376\320\243\26\372\333"
#"\306\325O\374>H\26\177\342iO\277"
#"\353\267v\311\327\302~s\226|\177\342"
#"W\177\334\276_)\350w\337\327B\276"
#"^\17\320\263:\247\272\203\373\275\v\315"
#"f\23)\5\310\21\325E\351\350\336\aM\251Ap\30r\fMJo\t\325\352"
#"\r\225\305\37 (\320\272\0047\fZ\201\e\0\323\"W\220k\b8\332x\232"
#"\322\214\36\2\rd\201\16\202`\30x\362N\373SBm\255o\351:\326\36\230"
#"\376P\317\226\326\5\223\23\372\246^\327"
#":w#.\340@\331\236\213\276\362\361T\177i\4\35\335\375:#\370\2\345r"
#"\260\26\260x\5ephm\t\36\232&\n\372RG\v\35\201\26\1\203' "
#"\344\312\242p\264(\240\353\301\267\240\21"
#"\350\3306\eT\334\366\200\207!\235\203"
#"\202\16\26\301\320\300E\247~\235\323\241"
#"\342\276!$\323-\361\204H\267M\342iOm\341\365'|MM\352\353W\16"
#"j\301^\377\256_\370\367\177\16\23\361"
#"\343Z\370\303\204\245\330\357J\356\17\3"
#"\324\336\2\21\1\365 kn\373%\317Z\274#\363\365 McP\231\245\241["
#"\264TFK\r\241\232\vh\264w\347\235\237\3716c\304,\357:]\333\3511"
#"p\353\240\263\236\347/YD\263\331F5\347\322j\355\316G>{>\243XF"
#"h\322\255eQ\225(\320\f\212\346Sv\5\236<\262,\233tm\353\353X{"
#"x\352\317\372\303:\265\27\307{?){\277?\241\257\376\273?\a\4\342u\256"
#"\227+\313\262\312\336/c\342\36\325\351"
#"\305V/\215G\260\306 !G\371\365to\277\226\347\ff,\322\212\226R\264"
#"\e\31M\323\242\335l\2413\205i[Z\372\31|\344\323\377JWA\2514^"
#"\215\20\224\302\342i\361\20\270\337r\330\216\363\331"
#"kh>\213\32\3\f\350%|\3503W3\2\210"
) 500
(
#"\1\3240\310\30\32\251*<J\b9\2702&\211\210\217\t\a\223\vM\22\211"
#"\307L\262\370\23O{\246&}\365\307"
#"x\247Z\370\265\260\230\232\fX/\337"
#"\377~\352\255\337\377w\277K\271_q\330\344\267\341f\206o]\317s\17z5"
#"\17t\306\351\352\0\32\224\a#\26\203"
#"\242\0D\265\301\314a\361!\207q\303\325\337e\211\1\233\217Bs\3\eo\277"
#"\207\203\17<\202\373\307 \317,\342\253"
#"\254n\263\220\235\16y\31\377\361\343\377"
#"\307\36Mh\270\215\321\352\263s\242\247"
#"\0006\353\n\236I\364_\323\251\327\256"
#"?\267\243?\244\263\245\337\326\237\367_\373-^k\337\1\245A\31P\266W="
#"\27\343\350\16\235\265\310K\207\361%\306"
#"\257\206\337]\317\363\17y\35\277\315aX/\202\260\26L\e\224\0]\b`\325"
#"\"\234_\314\236\a>\207\237\\\377m\3467\3mJ\254\214\262\341wWs\370"
#"!\307\361\360(\214\260\vJ=@\256"
#"\232HX\312\222\203\17\345\306k\276\311"
#"\342F\216\2211D\265\351\320\216\271\34RF]Qeq\347T\210J\200I\231"
#"\375\211\307O\262\370\23O{\372\263\272"
#"\353\177\373\255\301\376\317a\262\340\250\343"
#"\276u\214\267N\354\252_\365g\365z\3528\177\277\325\330/Hj!\322\2634"
#"u\201\323\226N\266\230\245\373\37\315\303"
#"\35\241,\v\202\37\246\f%]_\20\212\21\206o\372!\273\16\254a\325/~"
#"\316_\237\365C\326\3\330\2\326\256\340"
#"\210#_\301\355\371\"\16\370\343O0"
#"R\224H\271\222\365\267\374\3\273\314)"
#"y\360\272_s\356\347\377\201\22\1\273"
#"\21\32\236n\225\350\25\23\0g6S\257\35LX\356\375\311x\375%y\233\253"
#"\341\337\334\365\253\257k\235\253Q\277\352\373B)Ef\a\210%\222\32/"
#"\241\312\234\aM S\31Rv\361\200\230\f\224\5c\310\201]\17z!"
) 500
(
#"\377\345\327 ^\0207\216+\307(\313"
#"\2q\eY\363\353\313\330{\360\267\334"
#"\373\253\177\346s\177s\t\0354\206\22"
#"\306W\362\232\227\36\317\235\243\360\254c"
#"\337\316\235\262\202\221\260\226\207\177w9"
#"\313Z\267\262\372g\337\346s\247_\314:\232\344j\36J<\3\36\262\0Ne"
#"H\26KC\273\n\n4\230\rO\376\5Jl\223$\301\237\230\321\324\202{j"
#"LX)\325K\372r\316\365b\366\375\256a\240\367Y\275\236:\1\254v\365O"
#"U,\372\233\5\305\355\5\202i0\256"
#"[\214\311\334\312\215\257@y\202\22r"
#"\17\350\16s\366\231\3175?\370\32\266"
#";\312\245\247\177\231\225\353a\330h\270"
#"\356G\334\271b\234\366a\307\362\205\345"
#"\247E\251\343K\346\357\265\0237_\377"
#"\217\354<\320\345\274S?\301\3321\317"
#"\303l\307(\0034\211\242*\237\5\276"
#"\336Z\211\353?\347\375e\230@\257\304r\252`\257C\1\375\na\377zE\204"
#"R\4m\fF[\264\232\310\356\327\332\340\302( Uo\5b\266\235\22\274\202"
#"a\275\200\225\20\343\354a\24\3030B\6\f1o\317\205\\\367\375O1W\206"
#"9\367\314\363X=\f\212\202\273\256\3777~\365\240g\321\1o\347+\337;\37"
#"\200a\6\331~\317\5\374\366\206/\260"
#"\327`\311\27\317\371\22wl\210U\373us']y\365\353\376@\365\277~\242"
#"\343O\"\361\270H\202?1\243\251c"
#"\277\316\271^\334\275\36\364\373\205E\177"
#"\202\330\324\346/\265\340\350o\24\323\37\323\a&y\f\3528q\b\1\312.\22"
#"\34\252\364\314\261\n\345\342 -\261N\17\233Ai\0024\f\273\35p \317\e"
#"\332\221\355\207Gh(\270\237\214\37|"
#"\347\273\bp\314\321G\261\20\260\36\320\vA\355\304\202=\226p\324\37."
#"\240\31n\345\322+\256c\3\3\0244P\256\3n\24a\350\251?\341O"
) 500
(
#"1\375=\27`\242\201R}\335\353\357"
#"\213\242\312\242\257\224\277:o\240\337\345"
#"?\265\342#T\235\371B\20\2748\264RX\240i\32\224e\364\246H\375\e\210"
#"\356u\327\241\341\301\352(\346Q\304.{~\224\22\30G\3\3lw\340A\354"
#"\263\363\0\4OQ\0~\234\37^q\31\243\331 \317?\341\35\fi\330\305\257"
#"\305\322\4?\4K\367\345yG\36\n\371:\256\272\352\326\230\314W80\16o"
#"c\25@C\350)}\26b\351_\"\361\4H\202?1\243\351/\351\313\363|"
#"R\207\277~\246\n\217\332\342\353\247\316"
#"\b\257\227\351\17\1\324J\301&\211\201"
#"\231\242\245-\215R0e\a\245\241\304"
#"\341\261\350*\263\333c\20,4\a\260"
#"\326\322&\320\24\241\244\303\357\356\21\332"
#"\252\315\e^\376|\346@T\24\324\20\271Y\0024y\303\261\317!\303s\333="
#"\0171\336;\350Q\240\210\336\204m\234"
#"\251\25\30\233s\373\367+h\375\36\232"
#"\251\336\231ZY\230\224\257\241+\341\36"
#"\342\2722\235\221\373\2k\32\340\5\245"
#"5\232J\360W\327\275\325\0\355\307)"
#"\201B\3J\201\32\210\211\201\n\2206"
#"\230\305t\334\0004\e\210\5|\311\335"
#"\267\335\3\255&\207\37\365\274\330\177axc\\\257l\a\315]x\361\37\35\a"
#"Y\316]w\376\6#@\243\t6'\20\342\337.G\205\16\26G\3\240\334\366"
#"\25\277\304\223C\22\374\211\31M\177\302"
#"W\226e=\1]\v\207\20\302\244\326"
#"\274\265`\350\217\335;\27]\246\265\253"
#"\277\376\276?y\260\325j\365\226\3z"
#"\353E\240t\202\221\6\312\16\3424\324\16Y_udk\341Q2\316\355\377u"
#"5\377\265\341>\232\a\355\217n*\366"
#"e\224k\257\351\222\251\235\331c\267"
#"\35\320\200\243\23\273\265z@5h\230X\255\177\363\315\327"
#"W\265\373T\275{-\255Y\360\364\326\26>\304k\335\337"
) 500
(
#"a\261?\256\257\224\242(\212I\327\265"
#"\256\372(\313\262w\35\353r>\210^"
#"\234 \200\211\265\370\255V\213\340\v\232"
#"\252\256\273\214\377\372:\201\336\16\202\36"
#"dc\0o2\332\324\211\365\203 \363"
#"\311 \332\3402\312\272\353\376\233\337\255"
#"\32\243\261\337\263h\314\1:\5\267\375"
#"\374\1\264j\261\367\36U\301`\243\31"
#"k\361\265\206\320\215y\0\300\2157\335"
#"\302XO\251\223\211$\316\3525\221\r"
#"\221:\367%\236\30\263`\350Hl\313"
#"\324B\300\30\323s\1\227e\331\263\356"
#"\372[\354\366\v\212Z\0\324\235\336j"
#"\201_\377\36&7\1\252\273\2\326\353"
#"\254\267\211j\203\321\350\206\320-\272\230"
#",6\362\261\325\344:\2P\b\17\377"
#"\370\6^\370\322?\3035\333\34\360\206\3270o\0\332\303\17\320`O\214ZL"
#"\251\240\203\307\23h\bd\36\b\260\373"
#"\356\317\304(\310d\204&\225\240\311,"
#"\4U\365\356\337\266\331\244E2\23y\31\265E_[\370u\3\247~w\277\367"
#"\276W2X__\240\257\245/\224\2\2669\310\360\360(\nA\244D+\323\253"
#"\233\317t5O\216n\343Z\v\31\367`\3614\251\6P\337\0004&\200e\230"
#"\a~v-\373\37\375\36\n=\227c"
#"\216;\216\355\f\261\366\177\34\232e\23"
#"\353b\vg\232\215\250\0\204\215 \353"
#"y\356\336\273\203j\342\263!\202%z"
#"\30\234\302\212\216\313Y\3*C\250\372"
#"\16$\271\237x\202\244['1\243\351"
#"\257\335\356w\373\26E\201\265\226<\317"
#"{\335\334j\345\240\356\374\a\23B\244"
#"\277\255k\226e\2232\373\353$\301~"
#"&\342\314\n\0236\242\335\n\356\276e\r;\232\5@l\351*ZQ\210\305X"
#"\217-\39Mv?\3500>y\322\321\264\351@[1\316\30\205/1\1Z"
#"\30l\325\217\315\v\30\225A\243\215\23\360"
#"]]\305u\1bk\2670\303K\371\36"
) 500
(
#"\v\365u\355\217\327\3677\344\351\237|ij[\336\376\f\377\376\177ke n"
#"\240\240\225\315!w9\r\5\210#x\211v\266i\306~\3741E\3\304Qt"
#"\206\331~\0~~\303\277rdkw\310\327\321j\by1\206(\342:\2\24"
#"f>\333\35\374RN~\317\221\354\30\34\214\254%d\32\357\6iV\315z0"
#"\256>\b\30\a\355\32\20,cE'\nzC\257E_P\261\265\260\241\317\342"
#"\237\5\327?\361\344\220,\376\304\214\247"
#"?\373\276?\211\317{\337k\a[["
#"\205\375\326\177\375\357\324\362\261\376F@"
#"\300\244I^\372\327#\" B&c\f\331\215\f\3600M\306h\251vL\300"
#"\n\202\322%\336\f\221\317Y\306\347\276"
#"\367?\374\362\247\337\341\231\6Z\254\245"
#"\233\1\255\21\320c\f\1mr2r\234\202\274\t\30KA\211\0022\273\35P"
#"\t\f7\6\272\234\25-[{\236\25"
#"&\342\375\365\244K\265\260\257\25\263\251"
#"\r|\352k6\365\372\366Ww\f\232&\241\34'S\304\tw\0m2r\361"
#"(\335\4Q4\f\30\t\20:\f\230\222\306\b\354\4d\345}\264h\343\2121"
#"\224\215mv\v\245)\314\236\234\366\335"
#"\377\341'\327_\302\256\31P\334\a\256C\307\16PhK\b0\17\240;V]"
#"\303&\330\235\bv!\210\243\221\325\323"
#"-K\24\356\272\236/0\200\304x\277\21R\317\336\304\23&Y\374\211\31Mm"
#"\301\303d\267\177\177k\335\3768/0"
#")\371\253\377w09g\240\246\26\362\375\265\346\23\277\31e\\\357\314jy."
#";={o\256\272\341R\206\332`(\31\300\240\244\232ZE\242-\0374h\306"
#"\20Z4\374\236\f\344\212\314\216\3235"
#"\343\224\f\340\245I\360\325\344kf\25\367\336y\vh\30\325\17\322"
#"\2452\362\374\"\240\3056\321\272\35710\265es\177\246~\377\373\376"
) 500
(
#"\246K\233\233yo\352dOQ1\360\204\240\343\314\267\252WA\207\2\32R\200"
#"\214\23\234\301\331\26Fe\3442\310p"
#"\eZ\373\34\311\217~~\25/\301\241\310A\32 \31^\305\316\313\201No:"
#"e\364B\230\263\212\322\216b\212QZE\354\365?\267\275k\34\200u\a\354\6"
#"n\277\365\27\340\3\255P\305\3655\20"
#"\332\225\367\a\240\vJ\305\304Q@\211#\r\341\211'B\262\370\0233\232z\2"
#"\35`\223\306;\265{\277v\355\326\313"
#"\365O\312S{\t\352u\25E\261\311\374\356\265\322\320_A0!pTO1"
#"hdq\256<\1\f\6\347+W\256l\35613(\32\354\367\2749\214\205\21"
#"~w\327Z\n\252\216q\26\254\6\2126\315\21M3\300A\a\36BA\24\30"
#"`@{f~\373\236\307F-\304\353k\331\237\250\331?YO\177\326?\260\211"
#"\2\320\357\321\231\250\b\2103\364\305\37"
#"\224\30U-\3\344\241\240m\207\320\266A\375a\323\30\362.\230FV\211\\\e"
#"c\374!f\370\217+\360\4LhcC\225\e\240F@\306y\316\263\226\341\305"
#"p\323\303\225\0027\272>\306\372\1\302"
#"(Z\25`\a\331\357\17\16\255~\347@u\372f\340\313\200\306\304\240\255fA"
#"YG\342I!\t\376\304\214\246\277qO\235\26071\345j|_\24\5\336\373"
#"\336\314v\375}\341aB@t\273\335IB\275\376\267v%\327\202g\262b\340"
#"\351\26y/\221,\316\367\6\212\20051\a`bg\373\367\334\202n\363\314\3"
#"\240#\353\271\365\376\265\224\304*\0\235"
#"\217\321\f%\344\206\177\270\354:\24\360\354e\373\223AU;\336\4dV\204x"
#"\373\233\356l\256IS\277\322V_\327Z9\350W\4\373\2758\223\352\370E\21"
#"\277\222^\26\177=\355-\301W\215r4^\210\r|B7\346V\206@\247^e\310@"
) 500
(
#"2\2\201\20\257\"\370\30\302W\n\320"
#"9\2644\313\376`?\350\346\334{\357\252XM\240eBy\300\261\374;\337\206"
#"\334\363\254e\a\326\231\36T\255\203\242"
#"6)M\220\254\317\305\237\32\370$\236"
#"\30I\360'f4\375\203x\377\24\254\375\2\242\26\370\265b05k\277\321h"
#"L\252\363\356v\243]\335\2370\330\337"
#"/~\362\34\0\325\24\301\304x\377\246-\4*U\2407\305jI\24\332\r\24"
#"m\216?\372\0054\2\234}\316\347\271"
#"\337\301(\240M\16\305\203\214\337w\17\313\177\3650\0175w\345e/\374Cv"
#"\1\6\4\320M\260\203q\226\267m\234"
#"\251q\373\232\376\372\374\376r\314\262,"
#"'\225\372\365[\371\265\2027Iy\200"
#"*\216.\20\\\224\377T\3\243\231\20\275F\1>\226i*\35\327gcq?"
#"u\306]\206\256f\343s\265\366\27\215r3\17Z\333q\344QG\321,W\361"
#"\275\217\376%\306\203\eX\30[\374\253&\345\3%?\275\3616\230;\310\377~"
#"\321\16\225B\320\214\356\237z\37!\206"
#"\375{\367X\32\276\23O\214t\347$"
#"f4\375\356\372\251\223\365\24E\321\23\n\375.\342F\2431)<0\265\353["
#"\253\325\232\24\a\356\177MX\212\225K\331\203(C\253\325 \4W%a\305v"
#"\252\325\254\357S,\375\332J\313 @"
#"\366\202\227\263\367\16\260\356\306+y\333"
#"\333>^\265\206\5\376?{\357\35n"
#"\331Q\336\351\276U\265\326\332\373\234\323Ij%$\1\2c\23=d\a0&"
#"\3300\30\3&J\335'\266\202\201\t"
#"\16\327\366\334\307\370\31\333xl\217\303"
#"\314\275s\361c\337\353\200Z\335'u\267\220-\260ec\fc\30\3\6\234\300"
#"\0260\200$\260\20B9t8a\205\252\272\177T\325\332\265w\237n"
#"\265\350>\335'\324\313\323\350\354\234"
#"\326\252\257\276\364\373\356\270\225\357\372\376"
) 500
(
#"\27s\227\31b\367/\377w.=\17.\324nl\253V`\205tQ\201M@"
#"\370\256C\301f,\306\24Z\364\302o"
#"\36Z\367\200\276VM\240O\326\267\267\371\303o\326\fH\211)+\204\5\243]"
#"m\206\310\334\317W7\270\352{\tM\3M\343\216\31\201DK7UOY\350"
#"\230\34\201\4UC\6JB\305y\224\\\316s_\366\n^p\236e\351_n"
#"\346\232+\307\270\203\16;\304\2w\335"
#"\366M\236\364\335W\362\255\303\303\374\364O]\313Sv\3000`l\201eKP"
#"\nn+\374\255\b\177\246\374~\342\333"
#"#\31\376\304\272&\36\271:8\216\267(\212\276\\?@UUN\241-\317\217"
#"+\4\213\303\301\301X\204\377\306\257\21"
#"\267\223\241\266\320h\313\322\3621\224\324"
#"(_\201\235\341\252\267\351\253\276n\374"
#"tw_\252m\201\374)\34\232?\210\\>\302\227o\374=.\312\267\322\351\354"
#"d\313s^\317\335\225b\373\363\236\303"
#"\317\277\373J\267\3047\25X\247\335.\f^&n\343\23o\270\202z\"\34\37"
#"\276\17\306<N\367\224e\311\360\360p_]@\370\375\301\265\312\v\1eU\202"
#"\20\310\242\300\232x\340\223{\376\"\303"
#"M\3033\22\231C\256\204\23\353\361ivM\343r\362H0\35\234\273\277\4\242"
#"\244\261\222\206\35\320\271\220\371\17\354#"
#"\a\376\374\346\3<c\313\23\331^l"
#"\341\251\317x\21\367\327\227\363\35\317}"
#"\25\277\370\356w\260\3Cn\e\214("
#"\250\332\2270\275cI\340\305\234\322d"
#"\276\304\267G2\374\211u\317\240Lo"
#"\b\367\306\332\374\241\370+\204\375\aU"
#"\337\302\363\2003\366\3010\304B@@;\3\240W46\2\262C^\b2U"
#"c\265\301\322\370A/\221\267\337\276?\267-h7\3[\236\304w\275"
#"\364\365\350G\37\346\331[4\271>F\225I\26:\333\370\211_\371\177\270"
) 500
(
#"\363S\267\3604\\\1\277\315\vP>o\\W \273g\372\253\\\223\f\366\344"
#"\a\6+\367\343\216\214`\370CG\a"
#"\364\3322\343B\315\220\265\351\24\35\302"
#"NMH\367\333ic\333\216:\v\220\0254\252K#\241\251Kr/\245\250,"
#"@I\305\"Z\372\210N\223\341Tx\32\206M\305\210\5\350p\351\17\376\0\267"
#".\177\225'_~1\303\v\213P\273"
#"\32\202\237\375\345\367\360\331\317\335\314\226"
#"\0022j\224\311\334\274&\367ih\r\177\"q\6\20v%a\363Db\235\220"
#"e\31\v\v\vm\277>\364\274\3638\327\e\30\324z\17\327\205\313A\230g\260"
#"\205,\334/\326\np\317u\37\324\347\203\350\270\n\355\f\240&C m\26\245"
#"fCr\326\207\220m\6\6\216*\330j\200\245\n\304a\350X\216\252\2138\202"
#"3\366\27\30\300\34\0055D%2\254\325tD\5H\214\355\270y\0\233\204 "
#"\257\334_c\321c\3607\214\353>\302\357^\226e\337L\6k\375F*\30W"
#"$Z\v\204\2\211F\252\234\305\312\222"
#")\310L\t\365\203 s\312\374\"\356\1\256\250\200\f\32Y\322P#\311)l"
#"\307et\24`\27A(\250,\266[p\304\317\326\333n3x4\207\355\213X"
#"\271\205\5\334\2260\a\224vY\205\n"
#"\220\302\240\250]\372@\347m\255\210\26`1\276\261/\221x|\244$Qb]"
#"\23\213\364\4#\35\17\322\31Tt\223"
#"R211\321W\231\37\362\300\203\271"
#"\343\20Z\216\367\306\261$\254\224\22\354"
#"V\247\360\206k\301\263\4\217T:\203"
#"\342\37*\204\360u\370\262Oy\315\342"
#"\272\375DV\200\330\6\252\246\203\341<"
#"\244\e\304b\0\272`\240P\206J\30J@\240|o\367\306fp,\357J\233"
#"\266A}\206`\354\303o\27\256\337\275{w["
#"\310\331\213\370\370\347\260\2026\241\257\360!u'\303"
) 500
(
#"\333U\306UlX\1j\233\273\36\334l\304\266\22\260C\326*/6\240\374s"
#"\311a\367\\]\203!\2503*\367\273\16i\254p\203vF\\\327?\6h\224"
#"{\210Sj\364\332\315\270:\202P\330'\1M\315\246\21sH\234Q\222\341O"
#"\254k\302\242^\226e\337X\336x\230K\\\331\275k\327.\246\247\247\201^h"
#"\270,\313\276Io\340\322\5y\236\367\215\200\215_\257\215\"X?!Mx\275"
#"\25\37\234\355\363\303Nd\240\5ti"
#"\234\367/\201\254CI\207\214\232Bk"
#"\327&\246\300\312\334\211\265\330\232\\H"
#"J\277\330+6\276\200K0\364\361\6,|\367\3417Z)\252\23\253\363\205\215"
#"\303\334\334\\\2731\f5\3R\32\257\252$\261\6\2144\30!]$E\a-"
#"~?\256Ye\356\267j,B\341&\354\251\336/\236\331\314\at\32P%\26"
#"\205!\363\336\271\333\310u\32\234\35W"
#"\240\273\256c \a\224\365\365\3RR\372\217R`\\%'\2TMM\211\22"
#"\35\224\257K\20\364\322\36\211\304\343a"
#"c\257\32\211\rO\310\345\306\242<U"
#"U\265\205}\361F`\367\356\335\314\317"
#"\317\3\275\\}\34\266\217[\275\6s\374A!0\30\2406|\34L\274o\325"
#"\223\336\30\257\250\247n\a\366\0\242!"
#"G{\207\316\31\bW+\256\274<\253\273\233k'\223($\2\247\331/\332\f"
#"\360\306>\205\343.\2128\224\257\224j"
#"\177\243\225\214~\334\305\1\275M\336\336"
#"\275{\373\252\375\265\251\0206w\21t\5.\300\357\367aYN\323\324 ]\250"
#"\2752\2%\205\353\260\323\226\21\345\2529\4\rY0\307e\221\37\0\0 \0"
#"IDAT\341B\202u5\34B\330V\t0\303\27d\332\270\265\323\27\3\202"
#"\353\321\307\31t\205\361\221\243\254\215<\340S\4"
#"\226N[t\20\304\206\22\211\307\313\306^5\22"
) 500
(
#"\e\236\240\325\36\372\363\363<o\333\365"
#"B>^J\311\356\335\273\231\233\233k"
#"'\272\305\263\331\343\34~\234G\216\333"
#"\2\343\242@\350u\20\264E\372\30o"
#"\214O\220\177\36\274B\204\222\177\343\26"
#"v\321\240p\272l\26\211U>U\0\24x\21\31\202f\273\177I\233\2378\232"
#"\260A\210G$\17\366\346\307\365\27\320"
#"K\333\304\305\227qA`\370\335\347\346\346\332\373X[\5\215]\237z\261^)"
#"\317\373\323\2\\\a\206EJ\341&\371\1X\215\240\3060\344R2\224\3567\225"
#"Cn?\2463\310\32\2147\373Eh\307\363\255\177\2P\306\265h\310\1\235\207"
#"\16\246W\261\357\3329\200\214<l\367\302\220\237H\323/\221x<\244-cb"
#"]#\245daa\241\365\0\343\321\255\301`\4\275\376`8\6C\367\261\bL"
#"lL\342\266\300AZ/\324\247~\333U\2755\315\341:\3233\372+\32i\351"
#"\372\3632WA\336A\222\343m\2074"
#"\3566\355\332\302\225\17\16\324\370\1="
#"+J\1o,\342\372\212\270\245/\256\307\b\267\305\343\225\3q}G,\357\334"
#"\212=\211\236\34o\323\30\24\2\211@X\277Y\23\322{\334\302\331fo\2403"
#"\225\2016\276\242?\374\356\376X\220\370"
#"=]\206 s-\234\302\364\n\363\350m\4\225u\233\222J\204\356\314\6\264D"
#"i\327\370YQ\243\321`s\204\311\374S;!\241068\221x\274\244#'"
#"\261\356\211E[\6\v\373\264\326\274\353"
#"]\357bzz\272O\340'\204\371\303"
#"\375b\241\227\301\342\261\300\240\352\e\270"
#"\305\272\227iU^R\265\25\177\357{"
#"\237\255J\\\224\a\20\336\303\327\370\342"
#"2\203\237\353^\243\251{\332|\276\350"
#"\\\322\370 \277\334\24\355]\361o\21\274\367\270\343\"\334'\204\367\a"
#"+\376\303\361\20$\225\303favv\326\27yZ\204p.x\226\271\302"
) 500
(
#"K\3334t;\5\326j\254\360\265\3666CZ'\231\3234\326{\367\205\337\342"
#"I\\\306?C\340\223\370^\271\317Eg\2443\336\252\4\321\270\301=@#\363"
#"V\211\317\31\364\20\336\357\311\362\32*"
#"w\275\217\30\204\336\203\324\336\2278\35"
#"R\250?\261\256\351\205lm\e\356\217"
#"\v\270\306\307\307\231\231\231\3513\nq"
#"\361\327\240\344\357`>y\320\313\f\217"
#"\357\365\377\a\257^\"ld\214C\355\337I\337}\317S\224\3wv\35\0\6"
#"I\351\347\302Ko$2r\341_S\311\215\36\351\357\v\353\307\n\215q1f"
#"\234\323\17\304\277\321\240\256\177\3300\314"
#"\314\3140>:\201\265\32!\5\326\217"
#"E\354\3469\213\313\213\364\232/\275\235W\2\333Tt|\344@I\325+\324#"
#"C\322 \360\233\2\2771\313pr\277n\263\326\240D\203Wnr\6\\j\260"
#"\231\337\f\364\313;K\32_C\22-\323\26\267Al\337]\362\335\22\217\237t"
#"\324$\3265!\244\37\fvl\364GGG\231\231\231i\357\27\n\303BA_"
#"\2347\16\236`\250\t\b\355}\301`"
#"\204\n\377p]\333\16\330\27\270\215\260"
#"f\205\353\r\4\217\320J\260\322\255\343\301V\370<s#\241\"C\222\221Q\2"
#"G\260Y\203\315\360\303_$\nC\335"
#"\233\355\266\241\31\234\221\20<\367\270\325"
#"oP\314'\336\30\304\352\214\361\350fc\f\263\2633LNN\322\350\22\241\24"
#"X\267\345*\212\16\332\a\325-\316\350c\32\262L`l\30\5-{2\272\30"
#"\347\325\207(O\364v\204\r\35\202\226"
#"\22M\345\3438\205v\223\374\334\207\242"
#"U\1D\31\220\356\225%\31\"\344\373"
#"\333\264R\270\220\252\372\23\337\36\311\343"
#"O\254i\342\305}0\247;\250\276\27{\177\23\23\23}\25\374\301\200"
#"\a\257>\316\343\307\204\373\306\302/q\210?\26\203\1(\310\243\250\0n"
) 500
(
#"=\266\26!z\"@=z\36~0\f\307\207\377\335I\351N\314\34\330\321\177"
#"\277\254w\257b\23\234\276\307\177\207\264"
#"j|\203\212\215\203\307\310\340\343\342|"
#"\177;\265O\270\321\274J\24X\335\353"
#"\32@H\224\265H\353\217?\243Q\312"
#"\353\3\264\eF\350\325\340I\332\236\372"
#"\360\262}/\237\223\221\367\377b\n\24"
#"C\3\277+\204\343\244\357j\31^'"
#"\220A\266\361\177\377\304\352\220<\376\304"
#"\232&\356\343\6\267`\207\2\256\20\302"
#"\205^\225},\342\23\b\336b\30\306\23\207\374\303s\16\3367n\17\214\r}"
#"x\235\272\256\333Z\201\0201\30\364."
#"\a\rO\342\361\23o\272\2\203\251\232"
#"@\334\273\37\b]\37\341q\341\272\20\331\21B033\303\256]\273\332\327\n"
#"\233\303p\214\205\364\321`\275G\"\261"
#"^I\206?\261\246\211\27\367\220\247\17"
#"U\371\241\27\37h\2151\320\346\365c"
#"\241\27k\335\370\335Xy/6\352\241\260/\220\347y\337b_UU\273\t\321"
#"Z\267C~\202\261\211\rEY\226\355{O\234>'\353\323\217\243>a\343\25"
#"\2532\306c\230\343V\315x\370\222\224"
#"\222\233n\272\211\261\261\261\343\24\34\201"
#"\276\350P8\336\302{I$\326#I\253?\261\346\31T\317\v\213u\370o\234"
#"\317\35\35\35\345\300\201\3\3\5x\375"
#"\325\335\301\200\307\203|\302}\302\177\343"
#"\274\361`\213_l`B\213\230R\212"
#"\252\252\332\r\301J!\352\304\351\261R"
#"\237~\370\356\303\357Y\24E;\220)"
#"\20\213\376\204\373\27E\321z\362UU"
#"\265\307\305\236={\330\267o_\337\246"
#".\274\366`\244(\375\276\211\365J2\374\2115\315`\353V\274x\307\227\1&"
#"&&\330\277\177\177_M@\\\214\27\224\367\202\341\b\36z\360\2C\277\377"
#"J\257?8\370\245\315\21G5\0q\252!\276-q\372\4/|\245!=\361"
) 500
(
#"\367\34o\6\3\203m\230q\204&\20"
#"o&\307\307\307\333\372\220\370\261u]"
#"\223e\331q\277s\"\261\336H\241\376\304\232&,\316\261\321\16^ZX\200C"
#"(7x\357q\373]\274\340\a\241\36k-u]c\214\241,\3136e\20\236"
#"\27zb1\203F?<\177\250\362\217"
#"5\3bM\371\370\265\23\247\307\311\372"
#"\364\201>\357>\226`\16\377\r\317\21\216\225x3\27?6<~\320\323\17\e"
#"\307\20\315\1\222\321O\254k\222\307\237"
#"X\363\4O+0h`\205\20\354\336"
#"\275\233\3\a\16\264\367\211\323\3\3610"
#"\227 \333\32r\376eY\266\306$H\363\306\36\344`\232\1z\271\373\20V\216"
#"C\277\311\343?\263<V\237~\374\373"
#"\254$\274\24\37+1\341\230\210\37\27?~tt\224\271\2719\240'\e\34D"
#"\200\302& y\375\211\365J2\374\2115\315`>\37\216\257\364\36\37\37gv"
#"v\268~\21\217C\375q+\327`m@\374\274\203\365\1\201\2256\1\203\255"
#"~\203!\347\304\351\21~\273\2256P"
#"\203\337w\374\233\305\337\177\234\16\212\257"
#"\179\376\23\215\372\35\e\ek\347;"
#"\254\264\201H\e\273\304z%\31\376\304"
#"\232'\316\255\16\32\332={\366p\303"
#"\r7\0\364\31\332\301~\373\225X\251U\354\333!.\370\e|\217\3110<6"
#"a\2442p\322\r\336\267\313\340\363<"
#"\36\203=11\321\212@\205\343)\336\34&\22\353\221\344\222$\3264q\353\\"
#"\274\200k\255\231\234\234l\213\371\342\320"
#"|X\224\317\226\307\35\267\362\305\36j"
#"2\f\217\215\326\232N\247\323\266\327\205"
#"\337,\236\252w.\211\333?\3439\1\261zc\"\261\336H\206?\261\246\31\364"
#"\376\6\v\366\232\246i\5}\202\370"
#"\312\231\362\24O\225\240!\220\f\375\343'\344\310\a'"
#"&\236(\274\177\266\231\233\233\343\232k\256i\vH\241\177"
) 500
(
#"\243\227H\254G\322\221\233X\323\304a"
#"\375\330\223\276\356\272\353\270\376\372\353\311"
#"\262\254Oi-p\266<\262\320!\20\217|\205~O1\361\330\304\277U\370{"
#"PT\351\\`\255\345}\357{\37W_}u[\355\0376\237\311\343O\254W"
#"R\216?\261\246\t9\337\270\245.\204"
#"\370\203\267\30Wh\17\266\364\235\2143"
#"\25\31\30,\16\\\v\236\352z!\316"
#"\351\257V\225\374\351\344\370\343\307LM"
#"M1==\r\244\342\315\304\372&\35"
#"\271\2115M\350\313\316\262\214\246i\332"
#"\n\376x\341\16F?\b\360\234\v\303\eZ\371b\3\223<\302\307&\226A\16"
#"\2=Aoa-\20\3534\354\337\277"
#"\237\261\2611\240\367\276\23\211\365H2"
#"\374\2115M\34\302\217\363\300a\341\215"
#"\215k\350\301\17\362\254g{a\216G\307&\317\377\324\210\a.\5UD!\304"
#"q\251\223sE\354\325\207\367\271\26\336W\"q:$\303\237X\323\204J\371P"
#"\305\37\372\365\203\301\37\34\263\32\214\306"
#"\331\362\266\a\373\277\a\245|\23'gp\22^\0345Y\v\3428\361\357i\214"
#"aff\206={\366\0\251U3\261~I9\376\3049e%\201\2368g\36"
#"\256\37\35\35eff\2465\6g\"\37|\266\253\377\23\347\2063\221\343\0175"
#"&\341y\342V\322\264\311K\2547\222"
#"\307\2378\247\304F?\264L\205\312\375"
#" \323\272k\327.\346\347\347[\5\266"
#"P\270\227r\350\211\263E\34E\22B"
#"\264\236\177\254\f\31\b\235\36\211\304Z"
#"%\31\376\3049%^8\203\236~\354"
#"\361\357\331\263\247\325\340\17\262\251a\222"
#"^\252\252N\234-B\267H\349(\313\262\235\0270X\333\21\nN\23\211\265"
#"HZ9\23\347\224Xe/\24z\205\320l\270.\20\347\322\213\242H\36"
#"\177b\325\211\307AC\177\261\337\241C"
#"\207\230\230\230\3503\372\261\312_*\2"
) 500
(
#"L\254U\222\341O\234Sb\355\3638\234\3324M;$e0\224\32\26\324\344"
#"\361'V\233\270;$\34w\241\375\20`ff\206\311\311I\300\351I\304\222\303"
#"k\24181\221X\211\264r&\326\4"
#"\361\374s\200w\276\363\235\314\315\315\265"
#"\271\322X\273=\264\365\255\225^\357\304\346 l\2\6\345zggg\31\e\e"
#"k\303\373\311\333O\254u\262\307\276K"
#"\"\261\272\b!\3724\333\307\306\306\230"
#"\231\231\301Z\333\346\375\353\272n\303\373"
#"\261\250O\"q6\30,\342\v\233\200x\2dHE%\35\377\304Z'\35\235"
#"\211sN\354\271\207\2>\240\257\262?"
#"\210\363\4\243\237\302\250\211\263A<\215"
#"/\34\233\203F\337\30\303\334\334\34\243"
#"\243\243@j\23M\254}\222\341O\254:\203\3X\6s\246\261\21\37\e\ec"
#"\357\336\275m\356?\276-xT\311\350"
#"'\316\26\203\203\237\342\277\343|>\270I~\223\223\223\355f\25V\226mN)"
#"\252\304\271&\31\376\304\252\23\274\242\340"
#"!\t!X\\\\\354\363\354\353\272fjj\212\371\371\371V(%\211\242$\326"
#"\23B\b\246\247\247\333\376\3768B\5"
#"=\203\37\v\1%\22\347\202\244\334\227"
#"XUB\5\364\211\362\361\301\300\ae"
#"\276\26018\e\244\220\354\346\340L(\367\235\214X}2\324\1LMM1;"
#";\333\276\326J\351\251\224\262J\234+"
#"\222\307\237XU\202v~\334\343<\330\0265>>\336*\363\2554\227=\221X"
#"\313\f\206\374\203\310T\2304\30RV\341x^)\305\225H\234M\222\341O\254"
#":A\230'\20/xa\n[\30\202\22\n\247b5\264Db\255\22oh\303"
#"\345\262,\231\236\236frr\262\357\30\2167\6)\322\2248\227\244P\177bU"
#"Y)\254ZU\25EQ\0\260{\367n\16\348"
#"\320\347\335\237-\203\237B\375\233\203\325\16\365\207\347"
) 500
(
#"\f\eW\350\205\377w\355\332\305\301\203"
#"\a\333\353\302\350\341\325z\37\211\304\251"
#"\220\\\252\304Y!\0265\tF\177tt\264\325\341\17\v\345\240Lo\"\261\326"
#"\t\6}\260\315\317Z\313\301\203\a\331\265kW{|'\355\211\304Z \35\205"
#"\211U%\36\255\v=/gll\214\371\371\371\366\272\260 \6\217(yC\211"
#"\365@,\3403x\314\306\355\247\261\362"
#"d,\364\223H\234\v\222\307\237XU"
#"\342\212\347\270\2779\16\347\307\v\340\240"
#"\nZ\"\261\2269Q\237\177\314\314\314L;\314'D\2\6\357;X\310\32\353"
#"]$\22g\232\224\343O\254*+-rccc\314\316\316\236s\343\236r\374"
#"\233\203\263\221\343?\21q\264+\316\367"
#"\3\355F8\336\4\307\355\257)\352\225X-\222\307\237XUB\0173\270\351e"
#"\343\343\343\355\304\275dt\23\e\35)%eY\2\264\371\376P\303\22R\0\201"
#"\252\252\332\366\3278:\226H\234i\222"
#"\341O\254*q\321\323;\336\361\16\246\247\247\333\205/M0Klt\254\265t"
#":\235\366\362\301\203\a\271\366\332k\333"
#"\26V\240\235@Y\24E\337\365\211\304"
#"j\221\212\373\22\253J\250\322\37\37\37\347\300\201\3mh3M\327Kl\6\302"
#"\3067hY(\245(\313\262\257\227?\317\3636%\20\332\1\203\340O\322\262H"
#"\254\6\351\250J\254:Y\226144\324'v\22k\230'\22\e\225x\334t"
#"\330\0\34<x\220\321\321Q\204\0204M\323\212U\305\5~q\267@\"q\246"
#"I\305}\211Ugtt\264\257u\257"
#"\256\353\266\227\377\\\222\352\f6\a\347"
#"\262\270\17N,\334\23\304\253\342\353\232"
#"\246A)\225\362\373\211U%m)\23"
#"\253J\350\327\217{\230\203\321OZ\374\211\215N0\350\203i-k-"
#"\a\16\34`jj\252\257u/\313\262v\243\222\316\217\304j\221\f\177"
) 500
(
#"\342\264\t-H\320o\314GGG\231\233\233\3V\226\341M\241\314\304FG\b"
#"q\234\367\36_\247\265\356;\17\302\371"
#"\223B\375\211\325$\35Y\211\323\","
#"T\241X)^\254\322\364\261D\342\344"
#"\314\316\316\266\342>@\233\353\17B?"
#"\211\304j\220r\374\2113F\\\205|\345\225Wr\343\2157\236\343wtrR"
#"\216\177sp\256s\374'#\226\260\236"
#"\235\235\355\e\364\223H\254\26\311\343O"
#"\234\26!\304_UUk\364\307\307\307"
#"\327\274\321O$\326\n\306\30\346\346\346\30\e\ek\215~\350\355O$V\203d"
#"\370\23\247EX\250\202\370\310\256]\273"
#"\230\235\235\5\322\342\225H<\26a\210"
#"\225\265\266\355\335\a\327\333\237H\254\26"
#"\311\360'N\213\340\361[k\331\263g\17\a\17\36l\a\362\244\305+\22189"
#"A\310J\b\321\16\363Y\251P6\2218\223$\303\2378-\202\307\37r\250\261"
#"\2Y\362\370\23\211\223\23\316\37c\fu]377\307\236={\222j_b"
#"UI\305}\211\323\"\24'\215\217\217"
#"\267!\376\240\320\267\326\27\256T\334\267"
#"9X\313\305}\320_\24\3334\rY\2261>>\316\314\314\314\232z\237\211\215"
#"\303\332^\231\23k\212\225B\217\326Z"
#"&&&\230\231\231i\27\327\301\336\344"
#"\265L\205\301\322\200m@\3\32\254\205\6h\250\321\224X\f\232p\235G7P"
#"7\300\22\226\6\r`\1m\300\370\277"
#"\255\1[\2%\25\260\b\224\341\361\306"
#"\275\326\2111\3\377\22\e\221\370\\\211\347WLOO311\321\267a\t\303"
#"\255\302u\eb\323j\0\32,\vhj,\270s\307\0\306\35\373\32\250\374\325"
#"\355\211\b\2244\376\\k\374s\270\233"
#"m\373\304\265;\a\315\361\347t{\347M\312\372X\235\23\347\214A\375\360"
#"\370\272\246i\330\263gO\237g\22K\223\256\17j\4\26\214\f+\6\b"
) 500
(
#"\20\200@!\311\t\247\211\2\262`\210"
#"\225\204<\303\322\301\220\271{\b\177\327"
#"\330I\23\22P(\240\300O\305\262\204\27HlrB\250?\f\356\t\362\276\241"
#"\217?\216V\304i\1`cD\3,\270\223f\5St*\37O\340\3171\0"
#"\343N?\vX\177\2350h\tZ\370"
#"\363\327\346(\253@\200\336\304]\223\311"
#"\360'NJ\354\271\207\277\303\202\223eY;k\34zjc\353i\370\216l}"
#"\370\260P\364.)+\21V\"l\260\347\rX\r\30*$\v\200\216N!\v"
#"X!A\30\20\r\316\325\310\261~c\220YP\336;A\230t\366%\0g\310"
#";\235Nk\360\203\210Oh\361\2137"
#"\325\320\333\0\254\247\363\354\204\370\363\315"
#"\220q2K\337\356\247\243\r\263@\242"
#"\303C\354J{i\1X\254\217\230\211"
#"\340\345\233\f\v\324\2338\222\226\226\236"
#"\304I\211\303\211a\210H\360BFGG9t\350P{{\330\30\254\247\205I"
#"\234\360\202\307\206\233Lt\247\376\323&"
#",J>\270\350#\210\332\2554n\355q\213\2161`|>\1\323K\e\254\210"
#"<\301\337\211\215F0\354\261Z_8"
#"\227\346\346\346\230\234\234\244\252\252V\35"
#"Sk\335\266\377m\f\\T\254\3578\367V<\n\302\365\376\220\341Qa\333."
#"\301f.j\207\363\356\255\b\327+\24"
#"\262\267i\220\361\323l\336\363j\363~"
#"\362\304)!\204h\27\32\240\r\343\207\341;@\337\355q{\337\372X\230\n@"
#"\365\254w\353\201\340=w\274+/\201\f+24\222\34\303\b\r\231\361F="
#"\334\215(uhMo\345\262\364\205$-<\206\341\207\23\206@\23\e\216P\20"
#"\e\316\267\370<\232\236\236\346\307\177\374"
#"\307\251\353\32!D;\275oC\344\370[\213\36\216u\343\316;L/"
#"\\\357C\370\f|\\E\357\364\244=\a}\315\16\215{\274\351E\354,"
) 500
(
#"5\310\22d\323>~\263\222V\225\304I\321Z\267\236\6\270p\343\225W^\331"
#"\32}p\336IX\210\326\207\261\357\241l\216E:\17\241/?_c)A,"
#"\1M[\364W\341\f\273\260\6\232("
#"\242a\343\200\201\304\206e\305\326\b\"/D\370<-r3\327\26%<\306\230"
#"vhO\234\313\37l\223\35<\267\264"
#"\326\e\244\317\337m\216\373\f\221\365\237"
#"K\264&?\212\270\321F\2\204\355\31o\253\302>!$\rd\257\226\306\277\216"
#"\b\3659b\3l\230N\223d\370\23'%\16C\206b\276\eo\274\221\272\256"
#"[\305\261\340\245\304\223\305\326\r\266\337"
#"c\357\21\5\356\375\347\351[/\204\4r\2605\364\2\216\355B\344\226\37p["
#"\5\203\26P\t@f\270\22?\271\2113\214\211@\\C\23\3165k-M\323"
#"\26453\326Z\366\357\337\317\265\327^"
#"\333\212c\305\233\203u\215\360gA{"
#"n\5\303\354\327\222\301\263D\304\0215\22064\310\30\f\2157\370>\354/h"
#"\v\373\4\270\335\201\311B\36`0\200"
#"\260\251H\206?qR\244\224\255\20O"
#"\226emKQ\236\347\355\242\24\274\221"
#"\20\31\30\364`\3264\276\365ND\36"
#"\273 \204\21et\311\375\351\252\372\e*$M&\217\363(\3723\225\322o\32"
#"t\e\332o\0\204\350\333$$6/q$-\30~!D\253\346\27W\366\337"
#"p\303\rLMM\265\233\205uq~=&\336\243\37\364\372O\3214\31\177\376"
#")\f\n\331\353\316\221`E\215\244D"
#"\205\260\277\315\200\334o\332\e\324&\336"
#"z'\303\237\0z=\302\361\337aa"
#"\311\363\34\2555\223\223\223\314\315\315\365"
#"=.\204\371\3'\372{\315\22U\5\367y\35H\26094]z\6\274AQ"
#"\0025\r\260\00042\a\221\271\307\30\2155&\332"
#"\v\3306\264/\342\247GbtM\207\376\305;D"
) 500
(
#"L6F\b7q*\304\21\265\23\335\3364M{\373\364\3644SSS}\e"
#"\205\260\371\216Y/\307\220\211*\370\214"
#"\266\30$6\364\323\22\235K\20\345\361{H\fV/#\254\0\353\252\374\e\351"
#"\"\5\202\22a+w}\343\275\177\211\257\1\260m\260a3\222\f\177\202\262,"
#"\311\262\254\r#fY\326\227[\f:"
#"\374\323\323\323\353\303\230?\36D\215\v"
#"/\306W\32\334\25\35\220\336/W\2c4\226\f\205\244\240f\v\rK\300\222"
#"\301y\21B\270v,\374\211\2452\220CX\221#-\f\321\363\362\225\2e\226"
#"\20BPU\225{+\221\207\227H\4b]\214\220V\203\343\243\5\326\332\326\340"
#"\257\27\1-\35\214\274\321(e\261H4\31\30\201i\273\202\244\363\330W8-"
#"\204\255\311\244\2!h\4,\343\22t\2\r\215q\241}$M\356ns\233\t"
#"\355\305\267\326\307w\264\32l\336O\236"
#"\0\334\342\321\351t\332|b\310\e\206"
#"p\275\20\202\211\211\t\366\355\333\327\267"
#"\260\254\27\217\3421\21\rHC#\240\21\200\367\6,\222&\24\344\371t\200U"
#"\35\226\310\2515dz\1\265t/5nM\252j\1BzO\303\200\251\260H"
#"J\\N2\23\256\207_\350\nk\32\247\374\207K\241\24E\341\336\312@\212$"
#"\315:H\0m\v\37\270h\334\334\334\34\327]w]_Amh\263\r:\32"
#"\353\241\225\26|&_7 \\\331\254"
#"\16\327\t\201\224\302W\343\323g\364\333"
#"\346\e\321\270\4\276\1S;\263.\274P\217.50\4\266\303\222p\2256\n"
#"P\324\276:W\2427\261\365\333\304\37=\1'\3662\203\361\ta\306\260!\b"
#"\236\304z\361(\36\233\214\6'\335\333"
#"\3706;\347/H*\274\227\340\335\364%\355\266\5\271\314\321_\375"
#"*\257\36~\";\263K\370\345_\377]L.\\\336?\350\212\32"
) 500
(
#"\335f\20\313\6\27\366\267\32\204@H"
#"\341\222\232\246\351\373\236\a\303\265i\272"
#"a\"0x\336\375\301\37\374A+\356"
#"\23\364\375\201\276z\233\365\2609o\0"
#"\224\5}\flOv\327\30\240\321\255\275\357+\350k\37\255A\25\200E*C"
#"f\2160D\355\232\2\363.Z\344\350"
#"L\266\317\321\3018\271>\223\201\352\260"
#"\231\267\325\ee\365N\234\6+\25\342"
#"\205\215\300\344\344$\323\323\323\224ey"
#"\334\240\223\215Q\\\224\373\274b\20\326"
#"\211\372\211i\20\336\353\267\26r\345\274"
#"\17%4\377\363/?\312Q@\3620\377\375\327\377\v_{\310\262\f\30#\301"
#"\32\204\312\332\2\276n\6H\341\n\217"
#"\214\366\36\216\0025\204\265nI\v\305"
#"\\\340\26\367\20\376?9k\177aO"
#"\234\36q\273_\234\353\317\262\214\271\271"
#"9FGG\311\262\254\215\16\205)\177\353aH\26\204#\270\1\261\f\246l'"
#"SH\31\376\2577\372\"\340\272k\234:f%p\355\177\215\206\246A,<\202"
#"\0\226%\34S\256\16G\2[\251\21"
#"\272v\3658\"\307\266\205\272\233\223\265\177d$V\225\20\22\fF'68\241"
#"_?H\212\2060b\\\271\277\356\361\275\300\316\374\373f~+\3110t\250\221"
#"4\224\200Q\220\325\206\355\372A\250\37"
#"d\376\303\37\347>v\360\37\336\364B\320G\371\360\247>\307a S\200\266`"
#",\2\310t\2054%\245\265,g96\353\272E\312*\264\31\362\213\2639."
#"\254_\24\5'\337Wm\336Ek3\21\347\356C\355M8\377\202\254\357\370\370"
#"8y\236\267\336~\370{=l\314\335"
#"\352c\270e\372\217\30\316\316\343=\277"
#"\366^7\207G\3\246i{\372]\370\237\201\36\274\206B?\b\266f\367[\307"
#"\331\336\331\311\316\255\27\323\25\202\27\177\357K8lB"
#"\342\16w\2\v\211\25\226\312G\360\262M\254\244\221\f"
) 500
(
#"\377&'\204\4\303B\341\f\216ejj\212\eo\274\261\257\2278,,a\220"
#"\310\206@\270Hc\1\24d\221\374\236"
#"F\231\232\334\272\242!-@\251\a\300"
#"\336\311W>\363!\366\177\344o9\357"
#"\312_\340\327\336\371#\320,\363\276C\37t%\201\6\257&Rx\1\221E\204"
#"\\\240\26\202\243\270\t}d9h\305"
#"\262\352\325J\204\260~\334]\221H\4"
#"\303\37\332j\343\rw\330\0\304\233\365XKc=l\314]YM\215\222.\254"
#"\337x\261K\245\210\224.\a\354\275\r\251H\3_\371\24O\274\340<\16~\350"
#"\223\34Q;9la+p\367\337}\232'\217l\343\23\237\277\233\5\240\302\25"
#"\337\nj\362P\316\277\211O\265d\37079a0H\274\240\214\216\216\266\305|"
#"qoq\\L\24\353\212\257k\202\206\276\237\251\323\32~c@\e\4\252'\303"
#"k\37\6}\17\37\270\361z\309\217"
#"\347\\\363\237\330\366\242\247\360\2267\276"
#"\222/}\370\257\371\314\27\374\252U5"
#"nE\323\r\177\262\367\367\331&w\362cW]\3112Q\256R\n4\360\351O"
#"\177\32!\24o{\333\333\372r\265\306"
#"\270B\245\304\346&\234\237\306\230vs"
#"\30o\302\1n\274\361F\306\307\307\1"
#"\332\373\256\27q\37\3\220I~d\367"
#"\333Y0\367\363+\277\364S\275X\226\265'T\331\t*|\377\343\235\243,\34"
#"\321<w\367\265|\261y\220c\326\362"
#"\360\342\277\362\353\357z\vj\371(\357"
#"\372\17?\305\335\225\v\375\273\347\253\241"
#"Yr\177\253\315[C\223\f\377\6'\256\304\17\304\227\203\"_|}\\\331?"
#"\310\272\353\323\177,\32@dN\333C"
#">\212\220\307\320\n\252|\b\262\35\240\r[\e\350\32@\\\6z\a7\337\364"
#"\267\24\3022\365}@\367\2~\354\207G\341p\303"
#"'o\232F\252\32=\322\341\230\2\224\341G\177\340\351"
) 500
(
#"\\\326\205O\177\3506\36\272\37r\0\365MP\17p\4\370\306\373~\215\v\200"
#"W]\371\177pw\226q\30\300\34A\212c\324\326\25\0276\3407%\206\n\27"
#"5(\221\260\251\313\2236\a+\25\323"
#"\16z\375\0\373\367\357o\215\177`\245"
#"\350Q\274\36\234\221\312\177]S\342#"
#"Y\372(,\336\17\r\34\306\345\327i"
#"\356\a}\e\226c\334\r\334\217\267\345\325\"h\303\20\270c;{2p\369"
#".\372V\212\nr\vFP4\220k(\201\243\22\220\6\252\2738\366\241\337\345"
#"g\376\366E\\\376\202\327\360\231\337\377"
#"\5\256\300\237+r'?\371\353\357f"
#"\342\r\317\345\336/|\234\331\217\177\321"
#"m\270\227+\250\206X\314F8\"\204o\345\335\234$\303\277\t\b\306}p\362"
#"W\334\267\37\256\337\265k\27\263\263\263"
#"}\375\302\e\32e\334,\17:`\267\200\36F\205\241\36\302\200r=\376V\0"
#"z\231\273\377\356\363\334}/\274\342\207"
#"^\313\371\333\1u)o\374\267\337\313"
#"\216\342k\374\315-\277\317\267\226-\367"
#"\370\216\08J\347)\333x\311+\236"
#"\305\322\262\341\326\257\205^\342\n\354="
#"\\\266\374(\357\375\300\247P#\27\362\212\37|)C81_d\6B\221\v"
#"wYE\232\343\312\337\307\367X\234\305/*\261V\251\353\32\245T;\3067."
#"\0\214\247\371\5\6\247h\236\26\302e"
#"\312\333A9\242\3427\376\3238;r"
#"\301\314\315\37\342\216\177\255\370\256m\317"
#"d\247\330\312\345]\301/\376\306\357p"
#"?\260\250\206\301\270\250\27\242\341\226\275"
#"\277MW\346\274\373W\377?\26\1I"
#"\201\253\332\2674\306\325\306\346\306\320\1"
#"\252\246\4!\371\223?\376\0d\227p"
#"\355\273\177\225f\344|$\320\5\310J"
#"\330j\370\271\237\375iX*\370\304\37~\300\235/\303\32"
#"\304#\214X\30\1j\263yc\375i\345\330\340\4\3\36"
) 500
(
#"\252\306\343|`h\323\v9\373\261\2611\16\36<\210\265\266]L6<j\261"
#"7 \327d=\311O\\X\336\212\214F\327HQ\2\360\376\233>N\t\\9"
#":\1\200-\276\203\35O\276\200\211\37"
#"8\217;\376\361\263\314\177\370\343\34\301"
#"\373\342\346(d\r\257\177\373[@W"
#"\374\317\217|\312\277R\1\372\b\17\374"
#"\3154\237}\364<\376\315k\336\306\223/\201\216q\21\1K\2165\22\254&\v"
#"R\302\26@\2420\24\30_\221\274\t~\237\304I\21B\264\305|+y\362\361"
#"4\277p\31\316\\W\216\365)+\367\254\r4\2170\\\177\223\\\302\27o\373"
#"\n\317\370\2767p\357\242d\4\30)\341\17\337\363\313\274n\364WYP\320("
#"\301\222\6\314\"\333\315\275\316\324w\317"
#"\347\b\275j\177#,\246p\3150\322j\n\32\212,\3k\370\372\327\357\4\225"
#"s\3713\236I\211\333\20g\32_\255\233q\361eO\345\22s\36Go\375\6"
#"\313%\34\241v'YU\223i\260\353\240\353a\265\330\274\237|\223\21v\376A"
#",&T\221\207\302\241\361\361\361V\2167\316'nt,\35$\0312\254\201\22"
#"\2205P\242\221N\254'\23P>\310"
#"\341;\357\340\377\236\376\bG\213\313x"
#"\371\253^\316E\300}l\201\246b\374"
#"u?@\1\314\275\377\317\320\3000\370"
#"\201 \27\360\275/\373aFF\216\360\231\233\337K\271\b\25O\2q\36\37\371"
#"\343\367\301\360\323\370\241\335\327\241\200\355"
#"\242\242\360\257k\204\333\2`j\237\360"
#"\307W5\e\227\247\264\361\330\322\304f%\30o!\4u]377\307\325W"
#"_\335w{,\0\24_\177&RuB\er\274\241V\25d\32i;\210\n"
#"~\367\227~\213'\\q\t\367\34;\314]\315\375|\342\177}\0"
#"\252#\374\323\301\337c\366\340\247\271W\272\26Y\232ET}\30\5\34"
) 500
(
#"-K4Np\a\243\220\b\312\306\317\266\302@\323\270MpY\362\367\237\177\4"
#":w\361\264K2\2724\276\260\26`\30\313N.\270\354\205\354\330y9_\377"
#"\372m<|\314\240\351P3\4\302\255mf\23W\367\245\225c\203\23\n}\302"
#"\316?\\\27\27\n\355\336\275\273m\333"
#"\v\236\376f\251.7\344=\233\252\234\276\aa\260\a.\304H]\202x\224\217"
#"\177\374/\271ki\210\335\377\371\17\331"
#"~>\\\306\3\316\263\317\v\276\347\325"
#"?\314\226-\360\371[>\312\227\276\270"
#"L\a\300l\3\373\24.}\362\263\30"
#"\375\301+x\350\363\357\347\253_\370&"
#"\207\311i\16o\343Oo\272\25.\270\202\227\274\372\5\336cZ\4\32\f\n+"
#"z\363\1\20:R.\263n#\20E&\22\233\2278%\327\351t\320Z3="
#"=\315UW]\325\336\36\237\373\203\351\276\323\306\34kSc.g\276H\315y"
#"4\\\16\305\245|\370c\177\202\31\201"
#"e\265\235\347\277\344\265|\370\17~\223"
#"\v\355}\374\376{\337\303\35\270\316W"
#"\224b\270\263\305\355\271\205\23\321rn"
#"I\16\26:\312\247\332\254\5\325u\22"
#"\233\215\306\n\20\217~\226\347?q\204"
#"-yN\246\272\310|+\271\332\212\222"
#"W\220\r_\314\227\357\277\213\345|\211%\273\210\246\203e\v\bW\177kR;"
#"_b\2432X}\37\252\204\233\246i\5A\342\2\242\260@dY\266)r\374"
#"\266\25\3)[\t\37P~2_(\26\252A?\310\an\332\17\335\363x\311"
#"\225\257s\17n\36\364\305I\25<\365I\\w\335$,W|\364\346\367S\31"
#"\240\263\r\233\235\17\272`\374\265\337G"
#"n\341\317>\3661\36\0>\377\305\273"
#"\271\377a\270\344U/\341\262\35a&\211\1\23\235\224\6@\266\363\307"
#"{\277\242\323\37O$\342\352\3760\256Wk\315\201\3\a\30\e\e\3\372"
) 500
(
#"\245\237c\235\3773\322\225#\227\0\27"
#"\212w\312;\206\305\306b\344y\\\375s\357\341\274\255C\324\b4\5\b\311k"
#"\336\3642^t\31\334\366\205\277\343\241E'e\r\202c\vn\202e\236\347X"
#"\\\201\37\266\201\262\"\367\233^-\205W\372\313\240;LGA\201\302z\271l"
#"\310\221J\321\240\261\312)\365\215P\262"
#"]J:\305\20\313\241s\337B\221\0377\2hS\221V\217M@h\303\v\206"
#"\336ZK\226edY\306\330\330\30sss}j_\32D\24\"\0\0 \0"
#"IDATaqX\17\312_\247\213\213v\272A=~&\37\350\216\37\356\341"
#"\34kd\r\377\3725>\373\311;\271\354\271\317\341iO\367\e\4S\320\2618"
#"\325\36kx\353\e_\v\365#|\342"
#"\226\233x\264\202G\200%\1\240\370\301"
#"\227\275\224\356\26\330\177\363\215,\0_\372\362m\0\274\353M/aKx]\325"
#"\1Y\364\f\274\312\335\220 !0\376"
#"\177\b\341T\3776\357\232\225\210\b\347"
#"v0\372!b'\245\354\23\367\321Z\267\"@\313\313\313gN\200Kjj\341"
#"#c\215\0[\241\213\5\310\216\361\304\347<\23\3l\241\313\b\0%\f)\276"
#"\363\331\27\242\254\342\236;B\307\212!"
#"\317]\333\354R\343\312\372\266PC\375 \344\202F\203\326\240dN%`Q\2"
#"\265F.A\271\365\371\374\363\275\25G"
#"*\215\325G\251\227\36eQ\37f\271"
#"\276\223\205\303\267\361\274m\27\222\35["
#"\304\30A\203u\223\3714P\203p\333\213M\311\306_\33179A\234'\314\370"
#"\206^K\317\324\324\24\263\263\263\0m\201\20\364D}6D\273\336c\340c\35"
#"~\352\36d\6?\tL 0n\314\216\254\370\350\307n\345\201\5x\333k_"
#"\313e\340B\371j\v\205\0\344V\350\\\316\263"
#"_\370<\236wq\305\355\237\375S\376\364/\376"
) 500
(
#"\322\215\355\5`\31\236v\5/}\345"
#"sx\344\253\377\300\255\377\370\0\357\377"
#"\213\17\363\0200\366\262\357tQ\3\0\206\2606Cy5A+p\255\206\355i"
#"j\334\337r\345Ie\211\315G8\267"
#"\203\247\37Rx\261\220\17\320\247\275\321"
#"\355v\373n;-\304\220\eD%q\371w,\242k!?\202\312\227\331\1\24"
#"5\260dA\346Pl\247i\206\21\215\240\20>\244/%\3026~\340\325\b\31"
#"\360\271O}\230K\207\236\302P6L\221]\300P\261\203L(F\212a\366\335"
#"\374\27\240\n\272\2\20\227\362\365{\16"
#"3\202\e\244\341\2647%\5Gy\344"
#"\301\333\270\357\350\275\350b\4\243\241KI\301r;|Sm\342\223(\31\376\r"
#"N\360\332\343\21\236RJ&''\331\267o_\237q\217=\374\315\340\355\203\23"
#"\2\261(\f\n\205\27\340\21\256\232?"
#"\347\30]\356\206j\211\237}\317\r,"
#"\212\vx\353\353\336\300y\270\21\273\250!\24%\213lgY_\1C;\270\366"
#"M/b\ep\323\373?\310\2~a\313\32\310-o\177\343\353\340\330\275\34\372"
#"\235_\342\226O\374#\227\276\371\337\363\264\363\5[}\320Q{u1I\320#"
#"\367\3K\332\331\1\26\343\257K\351\375\4\364ki\304]8\341\374\r^\377J"
#"\367?3\2\\\276X\30\240\310p["
#"b\267\261\350\326\307\0306\200\256\251\273"
#"\2-:PY\266\211\f\214f!\274]A\333\31\240\3741\336\377!%\215\361"
#"i\307\314\315,\240;\3023\2377\2"
#"\266\344\256\257~\21\251+\227\273\367\357"
#"@\350\222\a\356\274\223\333\3551:/"
#"~6\335\255\222\v\250\311\214r\245\3"
#"\2\272)\307\237\330\250\234h\310\307\206"
#"\221\334=]\254\e\314#\221@\t\262\244Qn\1\0214\240\37\345\216"
#"O~\204\333\37X\340\322\347\274\202\357|\326El\3\272,`l\207\214"
) 500
(
#"\5Wd\234\1b+o~\333[1\300\307\376\352\37x\360h\350\302S \272"
#"\274\342\245\257\342\212!\370\370\334\357\303"
#"\221E^8\361\36\227\307t&\337\31"
#"\374\350\255\211\276u\331K\224\206eQ"
#"\220\274\376\304)1;;\313\304\304\304"
#"q\343\236\317\310\346\276\321\24\4\375\211"
#"\2T\aY\tX\322\334\373\225\333Y"
#"\224\260\334\315Y\26\240l\t_\373\337"
#"\374\257\277\276\203b\333V.\376\16\277"
#"m\320\2\221ouQ\256\362\21\24\360"
#"\274\227\276\206oU\337`\251Y\244\252"
#"\357\307\230\243\224M\305\302\342\2\327\275"
#"\375\215\200\340\242g>\27\364=\334u"
#"\353?\201\34\342\221\34\26r\240Z\200"
#"\243K\334\365\245\257\302\3600\3713\236"
#"\312\266\302\267\372\351\214*\207\332\315\356"
#"=\375\317\277NI\206\177\203\23N\356"
#"\220\3\264\326266\306\374\374\374\246"
#"\b\345?6U\277\375\24\246\347Q\353\16h\313\a?\360~Jjn\277\355V"
#"\236\260\365\22:J0$\267P\310-\234/v\262ElgGv\31y\276\225"
#"\357\376\241\237\344\230\354\302\321\214\337}"
#"\357\207\335\202h\25\310K\330\366\235/"
#"\342\325/~:\3335\320U\274\342G/\304\315\f\317\21\30'Cj\3737d"
#"\n\220\336\347w\377,rS\227%%"
#"\36\17\301\330\317\314\314\264\306\377\214\266"
#"\352\312\206\216\365\35\260\302%\255\272\365"
#"Q\266\233\212\233\346\376\230;kW\353"
#"\322\241\204\352\1>\373\311\217\363\257\26"
#"\276\347\265\257\347I\205\3370\250\234R"
#"\273#z\307\260\213\36\34\243\0u\1\220\221)0\302\255e\303\26\2064 \24"
#"\257\270j\n\261\370\25~\367\267\177\213"
#"/?\n\17\341\324\375\320G\2401\274"
#"\347\227~\23t\306\225o|\203\327\302"
#"p\2651\215\360\203\377\354\346u~\222\341\337\0044M\323\266"
#"\364MNN\266\305|\311\353\307\265\312\265%\363nA\314\200\334"
) 500
(
#"\0v\b\232m\314\374\361\307\\\21`}\37p\f\225\371\2f\n\24\240X\4"
#"\373\20\215\200\243J\240\331\16v\221\277"
#"\275e/vY\323\250\35\224j'\330\16\343o\1773;\200\37}\365K\331Q"
#"@\345\a\0\1>\372\340\177\23\333\373\327\27\5h7\b\253\375\305$6\2\241"
#"\335/\236\352\agH\256\27@Z\224\205\216\257\316'3\344j\21\305\"w}"
#"\361_\330s\315\317\270\1X\346\bw"
#"|\342\263\374\350\177|/\367\f\345\274"
#"\346\307\336\306%\364lo\226\271\363\256"
#"Z^\352\211Q\313\34\4\324\6\264\261"
#"\b,TK\356\370\27\31\337\371\222W"
#"\363\216W\276\0\275t\17?\362\272W"
#"\263d\240\300B6\304\273\256\372\t\276"
#"\360\260\345\251\317\372n\376\335\353\236\305"
#"\26\200l\210eh\307ec6\257\0Vv\256\337@b\365\t\363\272\257\273\356"
#":\366\355\333\267\251\4z\36\e\257m\0@\206b\31\305\0020\342Z\204:\227"
#"\361\271o\35\6\206\260\344.\307\336,!\255$S\35teP]\211q\262;"
#"\324V\241\375T\261\16\200\265,!X"
#"\4:\271\241i\32\f\360\226\267\274\211"
#"\214\260\201\360\4\211>k\334kG\306"
#"]\204\221\301\211\304\343$\344\376gff\30\37\37gvv\266-\340=\23\341"
#"\376:\210H\352\5\20\313\230n\207%"
#"\4\343\357\230b\366}\277\311\25s\377"
#"\203\216\205\303th\324\25\\\373K\277\302uo\177%[\201\306ic\263X-"
#"Q\3\231\310|\224\v,\r\302)\3678\265\215Z{\275j\215m\4\242\330\311"
#"\357\375\336\257\360\321\357y9w}\346\243<\277\20t2X,3\20\333\240\373"
#"\24\336\377G\277\303\0232\250\227\e\226"
#"\273\31\"\223X\353\212n\263bd\323F\316\322J\262I\330\263g\17"
#"\373\367\357\357\23\362\330\20\323\365N"
#"\233\316\300e\201\313\365\37\3i0r"
) 500
(
#"\30k\266\201\311\21\6\2041\250\254C\226\347 \fuW\262lAZ\205n,"
#"\271(\351r\214.\307\20\315\"\302h"
#"\206h\330\346\207\203\316\374\371\247);"
#"\5/\177\315\217\262\5\27c\b\205}"
#"\26\345.\211(\217\17\270\3234\243\227"
#"\330O\247m\342\324\210%\272\241g\374"
#"\317\224\321G\3\231\v\305\2434\b\301"
#"\21\233\261\224\r\363\375/\377A>\367"
#"\261\17\261\335\272\232\231\246s\31\277u"
#"\323_\363k??\311\210\201\216^\364"
#"OR\240\207w\242\201B\30\272\204\363"
#"BS\353\306\325\276\30\234\316\205\2\27"
#"Y(\200!\324w\\\306\355\17\336\316\344\217\374\evjP%\240.\344\322\357"
#"}=_>z\a/x\341\223\21\324l\351\272\347\314\254\37\277!`y\323\232"
#"\375\344\361ox\264\326H)\333^\336"
#"\320\326\223\b\270S@\201\27\360\31B"
#"\222\371%\301\370\242?\\\345\261\205R"
#"@\201\323\321\307\30\224\22(\4\266\2"
#"U\24\300\22\332j\224\350:\257\335\224\b\375(\205\322|\366S_b\337_}"
#"\231\377\370\236\367q\341\205]\206\1e"
#"J\2209\25\222\6\351\a\360\204\">"
#"\331:\375\302\277\327\376\313\211\304\311\t"
#"\22\335a\344\2631\206\331\331Y&''\331\273wo\333\342{:X\240l\240"
#"\213\204\6\254\351@w\a\213[.\346"
#"\273_\366L\276\271\364-\350n\345\21"
#"\327\235\317N\213S\306T\312\347\370G"
#"x\355\265\357\346\330\324{\250\3256\347"
#"\371\3\220\221K\5\332\253Sw\206h"
#"h\220\26\204\25\b)\241\270\0300\374"
#"\321-\237\342\217\254\202\246\300\26\212#"
#"\326\235~!\230oL\203\"\203\6\224t\3751\r\313\340\25\0066\e\311\360o"
#"p\224Rmx/\316\363\205M\300f\307b\\\376\336J\237[\2244t\374T"
#"\274\306\315\356V\22\203\242\224\231\323\357"
#"\267\270\266 m\311\305\2\330a\267\232\30"
) 500
(
#"@\345h1\304\202\205\21\5\252z\230"
#"\237\177\375\17\360\201\277\376W\276F\1"
#"\27\275\2147\374\314\4\2\310\26\356\207N\6b+VH\337\322$Q\276\315\310"
#"\366\2659\36508\301\24\221\0026\211"
#"S \b\367\304\5\276u]\237\21\243\17\6\243\335aL\231C-\351\312\f\264"
#"\340A\273\235\373\4<\241\373\4\4G"
#"\30\341\250\3334\353\32(\250\3440\nK\3030\202a\224\202\234\6a4Z\272"
#"\b\230\360\322\324\306o\272\25\31JX"
#"\244\260X\240b\v\25PJ\327!\340\316\271\243l\317j'\302%\267\240\311Q"
#"RAS\341\302\23\22a\227\311\304\3465\374\311\365\333@\304\305z!\214?5"
#"5\305\364\364t_[\37\270\n\331\343"
#"\213\373\274\247\31\31\24;\360\257\275\22"
#"\343[\321\3267\"\324\313\vg`\v\\\360_\201\233\fR\f\271\26%\2311"
#"\fl\5\206\202%.\334\302\202\362\256\205r\337gA\3036Q\243\250\241{\36"
#"\346\5o\342+\200\350\n\376\376/\376/^5\344t\0\312\241\213 ;\37D"
#"N\a7\330\307\371g9\b\3516\a"
#"\364\e\375\360\322\241\226*\261\276\321\326"
#"U\242/\a\345x\177\222Y\32\334P\32\234\307K\215\345\bp\4\352%/\226"
#"cx\0307\352\331\272\273\261\330^n@\e\227\265j$4\306\t\326Xh\254"
#"`z\356\0\223Sn\230\317Ji\277 \374\365\230XI\243\3400\370X\272&"
#"\257\227\241.\31\221\v\24\200h\216B"
#"\255(\232\255`\206Ae\350\254\313\22"
#"\220!\220\306 \374 *\213B\222\323!G\220\271s\313\377g\30wnJ\237"
#"\356\22H\nk\331\n\354\264\226mx\341\253|\v\332n\a\271\r7\321\322e"
#"\t\310\n(\334\16\301\330.\312\236\377m\375f\e\201d\3707\0"
#"\301\200\307!|!\4ccc\354\337\277\37)ek\360\233\246i\275"
) 500
(
#"\376\343C\376\322\253\326=\306\v\206\333"
#"E:|Z|\324`\245S\352\267\377"
#"\333\177\303Z\315\261c\307x\376\363\237"
#"\213\365\225\372*}}\233\36+\240CC\227%\0245:Dy,n2\243t"
#"\203\243jr\fC@\356\264\352UF\203t\232\22\26\204mP4\24\340\345\236"
#"\274\265,\32(J\310\26\321\34\305\212"
#"\32\341\305\37\367\357\273\201]\273v\35"
#"\327\326\253\265>uI\337\246q\212\227\340\326\3\331a\271vU+v\351Ho"
#"\3\335\246\314\204\227\244\364\357\323\327\32"
#"\4G$^\227N\245\363@\b\321>\316ZKUU\255\222a<\2528\0262"
#"\213\365L6+\233\373\323o\0\342\2038\36\300\1\256\232?\f\343\t'F\226"
#"e\355\337\340B\335}\373\372\201s\275"
#"w\321\267\221\265\355f2\215\205=)\276\20OH\254q\277M\2562?\17\301"
#"\335\303l^\341\260\204\307\315|\250\241"
#"\256\301T\275\310\232\315\334\37\262i\207\307Jr,C4^\263^\0Y\345\37"
#"/\216\1\307\310(\361\3\235i\360\203"
#"\354\250\321\30P\2\3152\212\22\323\270"
#"\240\301\301\203\a\31\35\35m\5\276\200"
#"\266\365\367\224(\206\332H\31\"\3\265"
#"\35\265\345|\260\25\347w\255\333\20\30"
#"\321\366\320\273\317\224\265\5{a-\n"
#"sB\302\272\24Z\220\303m'\372\a\364m\32\212\242h?\307\240s\0236\5"
#"!\355\261\231uL\204M\245\335\353\236"
#"0\200#.\334\273\352\252\2538t\350P{\237\225\252x\2151\336iw\327\207"
#"n\262\02672\216\326\330\23\356\353\237"
#"\307\262\256\303\315\361\6\350\314q\"m"
#"\4\277\250\t\2011n\301\17\31\202\304"
#"\3522\370;\237\251Y\364g\202\22C"
#"\307h\320\215\v\270\251!j\240\360"
#"z\362\210\322\237f\35\254\365\272\178C\233\271\336RW"
#"\312.\227q\307\336\20\230-.\364/]n\\\tp\333"
) 500
(
#"\0\213\244\361\332\20C\336\b\273\367\261"
#"k\327.\16\36<\330\366\374\3075\1'\245Y@g#\324\26\272b\t\314C"
#" \206)\305\371,\1\205\205a\341\307H\23>S\2156\6+]-M<U"
#"0\30\353S\355:\b\305\313\203R\304"
#"\361\345\272\256\333\366\345p\377\260^n"
#"VRq\337:'\34\344q_\376\330\330\30\207\16\35\352\233\330u\242\3\337\t"
#"\326\372\347b\300\216\367]\261\316\255\374"
#"*q|\225}\320\325\17w\2608\5r\333\32 )\5V[\247\327\243\322w"
#"\272\231Qh'T\343\305\243B\rG%{B3\202\32lN\310ng@F"
#"\343\216\255,\367\271\361\f\21b\3\242A\330\314m\f\360{\n\231a,\b\225"
#"\3\6S\227\310\274\2031\6cL[\375\37\e\303S2\214\252\203\262~\r\261"
#"\n\344v #\303\225\315\t\1Z\v\227\326\262\376t\20\270b;\350\333\\\304"
#"\36\372\251\26 \207\333\343p\177\349"
#"\bkc\330H\204\373\237I\35\203\365H\362\3707\b\341 \36\e\e\343\206\e"
#"n\240(\212\343v\276UU\265'x"
#"\273\313\366\267\205\303_\4\373n\t\315"
#"\263\3\257\324\363\370\327\373V\340Lx"
#"\374\307\5H\6n\260\321\202$\242\244"
#"~j\313;{\254e\217\37\226\260\f\265g\231\262.\5\36.K\32\247XG"
#"\36\35l\376\274\24Pz#\253z\17\300\225\v\0320\35\260\22m \330O]"
#"\31T!A4 j\374\270)\232\246a||\234\203\a\17\2P\226%\235\316"
#"\240\306\305\312\230\252Df\22\244\240\264"
#"\26)\49\322\345\262\244\362\223(@"
#"Zw\225\312\214k\207\265\200\314\333TCpHB\304\341T\264FBX\277("
#"\n\244\224\354\335\273\267/\237\37\322\237\241\2251\276m\355\34\3g"
#"\237d\3707\0\301\213\17\25\374\320\337\267\e\357j\303\311\20N,\23"
) 500
(
#"\252\374\243\347\v=\354\356\1\321\212\22\t\312l\4\303u6\f\177\274;jt"
#"\343[\250L\364;l\336\231\340g\213\265n\370\275Ht[\325\3574j\234A"
#"\323^\273A\3406\5\370\373\340\205\35+\240cp\221|\341J\3\20\r\202e"
#"\260\2\3130Z\b\32c(\244\3655"
#"\356\270\216\34\263\204f\270\317\253\216S"
#"\204\247\342q;\377\240v\257-\24\225W\276\310i\3004 \v\32\37\251\20\6"
#"\366L]\203\245F\n\rFcD\301"
#"\314\314\214{\256\201\337\345T\177\247\260"
#"\306\325u\315\325W_\215\20\202\245\245"
#"%n\272\351\246\343\236+\226/\337\314"
#"$\303\277A\260\3262>>\316\334\334"
#"\\{\220\307'\316\340\6 \204\3068\356\4p\336D/\302\277B\245\272\bv"
#"\315\370v\270\365\311\2316\374\260\262\361"
#"7\332M\326\223J\241M\355\27\323\260"
#"\241J\331\266\325fM\e~\273\344%\232\303H\333\200\223mn\210\303\375`E"
#"N\345\257\313\254\241\21\222\314\324\276\25"
#" \307\372\2016\212\03204dT(\257\375X\243\20>\357/q\17r)\206"
#"x}\230\230\230h\273\201\36\363\355\3\302\2725\243\261\2#\375kY7\1p"
#"ll\2\225\217P5N\233r~n?\0\272YFe\nk\263\2662?\236"
#"\34z\252!\370\270>`p\223211\201\224\222\en\270\1\3408\a(\244"
#"\0056#i\325Y\a\204\23\341d\6}ll\254\3359\257\224\37\e<\300{"
#"!/\234!\267a\17\340\346\276;\274"
#"<\354\212n\255\301`\374\222\222X\21"
#"\2372\221\252'\301\263\231\v\212\22+"
#"\21j\360\r\330\332\235\204\"\3633\30"
#"\375\2mKw\e\31Z\344\316\341\267\2001\b\5\310\nd\215\266\31Rlq"
#"\221\1\353k\6\242\2RA\216\240A\tW\346\a"
#"\22\e\265\323\5\342. \340\2705'\340\214\247S"
) 500
(
#"\320\263\326\222I\205\5F\307FQ\302"
#"=nn\376\340\361\37\331\202\312\n\300"
#"\364\351\212\4\36\2171\216s\366\203\204"
#"\3650\244\22\346\346\346\332\333B\273\342"
#"\340\347\n\353i\210\230nT\222\307\277"
#"N\b\a\350J\233\200\335\273w\267\271"
#"\271\307[\31kj\337f+\202\214\245\233\332W\310\f\201\362m{\321\3D\270"
#"o\203\301\242X\277\303~V\335\343_"
#"\351NA\207?y\374g\215\265\355\361\267m\355mq^\b\357g\0267[>"
#"\307E\4\4`\226\335.\335\16\203*"
#"\250\204K\26\204\255e\27\220\313\26\221"
#"\211\343\366\355\256~\247\1a\261\344\256"
#"{\200(\372G\357\273\n\263=\200>#\30\376n\277C\343\226\b\3L\216\215"
#"\241l\303\364\374\34\225\21\b\351$yE[/D\177\v\260\350\eQ\265\352\214"
#"\217\217S\226%\207\16\35:n}\fm\321\361\365k\35289\303$\303\277N"
#"\bE/qo\253\20\202={\366\260o\337\276\343v\257q!\337\311\237\330\375"
#"G[\215T\2\343\257(\353\222\241|"
#"\310\205\362c\331\276d\370\3738%\303"
#"\37\337Y\304\305\222\255O\227XE\326"
#"\272\341w\275\366=\343\r\376\250\320\245"
#"\313\305\313\16\265\220\344\366\0304\17\363"
#"\357\337\370\6\366\177\370\v,\312\235`"
#"\272<\361\5/\342c\377\360\1\266\v"
#"\330\242\241\e\252\373\255\5\225\267\257\343"
#"\16\326\32\244\301\212\16K@g 2\30\257\eW^y%\207\16\35Z1]"
#"\30\376\236\232\230\244B\262\\\226\334|"
#"\350\200\327\24\260hY\270\tx\204\332"
#"\204\306\237\34=\221\260\263Q\34\34\353"
#"\2\204\316\246\311\311\311V\330gff"
#"\246\255y\n\367\v\265Q\247,b\264"
#"\16I\206\177\215\23\207\354WZ\260\306"
#"\306\306\230\235\235]\261(\346\224re\332\364y\6\225i"
#"P\262\300b\221\316\347?\201\341\17\265\0\353\327p\255jq"
) 500
(
#"\337\tY\251K\"\261\232\254i\303o"
#"\\\277\275\353\262\367\255z\26`\311\237"
#"\220\271\227\206^\340[_\373\27\276\377"
#"\5/\341\241\303\320\310\202\222\faj"
#"lv1d\347\363\227\237\374\30\257|"
#"\341\371\24\306\205\376\335tz7\344V"
#"\370\324\2003\374\240E\247oD\315\211"
#"\276\223\361\361\361\343\324?\2151m\376"
#"|\377\r\373\320\231\v\361\27\26hJW\335/sj\4]\21>O\355O\20"
#"\325\32~\315\331\325\261\210\353\1\264\326"
#"\24E\301\304\304\4\326\332\2764)\260"
#"\341C\375i\325Y\343(\245\250\252\252\357\304\f-*ccc\314\315\315\265F"
#">\20n?\245\\\231-\1' \"\220d\262\240\321`\0214A\266\337\e{"
#"\244\211<VW.\264\331\21\321\277SC\16\374Klj\4(J\nJ:x"
#"Q\36\263\4\30*9D\331\315\334\345"
#"\205;\370\317?\375\16\276\2610\3023"
#"\336\376\v<\250K\354\362\35\230\346V"
#"~\341\247_\207\252\357\344\247\256\36\345"
#"\221cP\312\202\312*4\202\32I\211"
#"\213*\270\363\327\325\334;u\t\307J"
#"\325\364\261*^\250\2027\306\264\6snn\316m\b\224\362\202@\341\301\22D"
#"F&\4\205\210\256o\353\207\302\375V"
#"\347\353\34$\264\373\1}\341\373\242(\320Z3==\315\364\3644{\366\354i"
#"\327\320\270\353i\243\222<\3765\316J"
#"\355xB\bv\357\336\315\201\3\a\372\304y\6\357{J\273Vs\304\235\254\262"
#"\3\"\2476\2754\234$\204\37\r\264"
#"\35\377^B\304\347&\327\210\337\364m"
#"\261:\312}\201\225\24\374\222\241?\27"
#"\254e\217\337\205\273\235\241\307v\374a"
#"\263\f*\347\210\257\362\337V\337\317C"
#"\177\365\207<\377\365\277\310\302Kws"
#"\340\223\363<\37\270p\351V\30\222\260p\224w\276\355\307"
#"\331\377\227_\344\275\177\362I\336\362\346\227\260\5\350ZM%"
) 500
(
#"\24\25~\370\224u;y+\303$\310\32i\263\343\322\2041Zk\256\276\372j"
#"\246\247\247\231\230\230\0`\337\276}\275"
#"(\244w\333-\32\253%J\270E\2416\25R\25n\r\t\265\5\241\213\300/"
#"0gk\375X\251\342\177\245<\376\344\344$Zkfgg\373\364\0046\"i"
#"%Z\343\f\212X\304F\37 \317\363v8E<q/\316[\235\24Q\202t"
#"=\267\272q\343^\215qS\303B}"
#"\277\v\3537\364\2\222\341\315\235\251O"
#"\271\3218\221lo\"\321O\t@\356\304v\302`\35\231\203\315{\223\31U\315"
#"\373\377\364#T\300\377\371S?A;SN\216p\230gCg;\277\366\223\273"
#"\350`\271\376\306\17r\4h,\b\273L\a\323*\0\342\327\206\332?\\\341\252"
#"\367\313\262\354\363\350\241\267\356(\245\230"
#"\236\236f\367\356\335\314\314\314p\303\r"
#"7\264j\240A\362\273\251K$\6\245"
#"\\\253\240\265\220+\211\262u4:\372\370(\2278K\347\311`\e3\364o\6"
#"\203z\341\364\3644sss\214\215\215"
#"\241\224\332\260F\37\222\341_\363\304b"
#"\23\306\30\246\246\246\230\237\237o\17\332"
#"P\305\37\224\372\244\224\247\246\261\35\250"
#"\26\331\375\346\37\243\223\r\223\3459\231"
#"\334\316\213_\364j\312\345\370N\276\335"
#"\3508\335\376D\"q:\324\200%\3\233\241\5\224H\254\350\200\221\f[(X"
#"\4+\370\347o\34\305\2\337\363\264K\270\0\237dS\27q\24@_\314\205\227"
#"]\302\205\333\340\266o>\300\303x%h\273\b,\366\352\6\214;\217[[l"
#"\235\221\357t:mU\273R\252m\347"
#"\v\204\224\342\304\304D\e\2\317\363\274"
#"5\250y\256\260\266\361\321\204\320\245\20"
#"\27\6\365.\365_{v\326\222\301A@\320\213\372\204\16\250\340\375\e"
#"c\230\237\237grr\222\335\273w\237\225\367w.H\206\177\r\20\347\347"
) 500
(
#"\3439\330a\370\16\320\36\264u]\367"
#"U\233*\241\320\326\240\2511B`\265\273\16j,\213@\323\236_\r\r\rK"
#"`\217\302\362=\350/\3745\227\\\366\2\16~\350\vT\235m\234'\e\236\312"
#"\21n\377\334\337p\336\245\257b\357\227"
#"\335\234ma\357\1\273\310\"#,\323\301-W\232rmDK\327 \203y\374"
#"\224\317O\254\314\20Kh\334\350]\305"
#"\22\35\226\20\6\264\200F\30r\356\205z\201[?u\37;y2/<\177\v"
#"\227\3630C\34\241\312\266p\221\305\215"
#"\351}\312\313(/\372.\36\375\342\227"
#"\321\207C\376\276\3F\223Y\343\214\261T \262\236\27.\272\0\307u\v\5O"
#"wll\214\311\311I\246\247\247\221R"
#"233\303\370\370x\253\23\2\240\215\306mC\272\30kP\"D\r\25\210\242"
#"-\200\21H\257#\340\365B\4\234\315"
#"\32\241\301\n\375\225\352\237\342Y\1\323"
#"\323\323\348p\200\211\211\211\2765\31z5T\203\353v\314\340c\326\32i5"
#"Z\3\304\32\325\241zvqq\261o\332^\270\337\354\354l{\331\30W\221/"
#"\0054\306\272!\34\322\213\362 \20\24N5N\272P\375re\334T.$\250"
#"\373\370\231w\377[\356{D\361\2327"
#"_\305\261\345\303<\274t\37w\350;"
#"\371\351\237\273\6\26\276\304/_=\316b\r\215x\22\226a\206\251\351\2V+"
#"\20*\225\366%\22\247\211\360r\266n\206\215\37\360$\302\302lp\tt\201D"
#"q\224c\\\376\224\357 \37\332\311P"
#"w;\303\3710\235\3422\316\317\267\363"
#"\224mO\347\336\333\277\n\205\213\34T"
#"\26?\367\271\203\25\22]\3\266r\355\201~\26\2005\272\25758\374\323Z3"
#"::\312\374\374<\373\367\357o\243\207u]\367\251\344\205\377..."
#"\266F3x\315\eE\21off\206k\257\275\266\317\31\v\337G\234"
) 500
(
#"Z\215#\t\361\250\364\265\312\332~w"
#"\233\200\370@\211w\244\303\303\303\355\337"
#"\306\30v\357\336}\334(IwpU\30\255Q\262@\n\334\248\325`\fX"
#"\233!e\216qg=CE\341\326\202"
#"F\360\225\317\374\r\267\334\322\260\375\373"
#"\336\304\r{\377_F\f\330b;\265\34\3417~\373g\31\177\345\305,~\346"
#"\203\374\361\215\237\347[\300\242\30\1{"
#"\4\364\2H\3112\2408v\266\276\246Db\203\242P\326\25\300\31$\26\v\""
#"Hf\327Xo\245s\231\3\212\243\326\206\361|\250\246\1[2D{\25\330\332"
#"\215{\26\200*@dT\26\234\23/\240\252z\3\271$\fV\363\ec\270\356"
#"\272\353\230\237\237o=\333@\236\347\354"
#"\335\273\227\311\311I\367\316\375Z\24\257"
#"Ua\3\3204\315\232\366xO\225\246"
#"i\270\376\372\353\231\232\232\2z\2379"
#"t\v\304\6\276\252*\204\20\355H\343"
#"\265R@\272\22\311\360\237c\302\201\22\27\361\305\0056\0SSS\2552_x"
#"L\en\23\302\325\1\340Z\362\255u\345\366Rf\355|\35);X\353\324\300"
#"\224\4d\316\237\335\364\367H`\342\335"
#"\377\225b\30(-\232\16\25\333\201\232"
#"?\370\331\267s\1\307\370\363\17\272b\241\n\240^\2SQ{\217A\254c\361"
#"\236Db- \311\332*Z\v\350\320d'\0\264\37\334c1M\311\bC\334"
#"\371\320a\276~\324\362\3201C\271\\"
#"a\313\a\271{\371^n{\344\237\271\364\211\27C\275HV\205gW.\314n"
#"]Y.6\203\242\353\236\272qZ\376@[\27d\214arr\222\275{\367\266"
#"\236m\310\217\ec\250\252\n\245\24sss\\u\325U'\\\263B\272`-"
#"\e\276S%\313\2626\3151::\n\364\n\247\203\267_\327\256\\2"
#"\264\b\256\207\rO2\374k\200\301b\232\330\253\217CK\361A\245\224"
) 500
(
#"rc3\255\300z\315\317L\200\24m\r/~\3445M\345\2\377\212\6\3131"
#"\250+\376\367?=B\207\363y\372\323"
#"/pw\352\204\327\317\300t\30\336\271"
#"\223\v\272\360\325\333\377\231\305\306\37("
#"r\b\214\211\324\374Omlg\"\221X\31\21\217\306\300\311\365\272\n8\347Q"
#"\326d\220):\35M\311an\375\312\35,\272GBc\234\355\326%\365\275_"
#"\243*\17C\243\351\24\275\205\335\332\22"
#"\331\366\345*\20\22c\241\310\\\377}0^J)\256\275\366\332V\f,.("
#"\16\177\307#\275\17\35:\324z\301\341\361\355g\362S\3606\2q\256~~~"
#"\236]\273v\365\205\372\301EB\342\357Qxgl0\357\277\226H\206\377\34\23"
#"\27\323\304r\273\341\3625\327\\\323\267"
#"\3\207^\321\237\326\232\\\346\bDX'06\24\334\370Z|\va\362\253\245"
#"B\211\n\232#|\361\326\3171\304\20"
#"\337\177\261\37\353\211Ah\247\365\215\336"
#"\2\317|\5\213\27^\3007\356\272\23"
#"{\324\17\5\241\v*'\307\207\25\315"
#"\332\337\331&\22\353\3\343gb\206\261"
#"\271\0\35,[@\301\263\237\1771%"
#"\217r\327\335\367\3\336\203\227K<\232"
#"\3\312\260x\307?S\335\277\314\245\337"
#"\375bJ\5\265\227\311\25mt\16\267\2310\256\320\257\324@]\265\306k||"
#"\234\353\257\277\276\35\27\35\347\257\241\227"
#"\317\216\327\241Ph\f\375k\26\260a"
#"\4p\342\24\254\326\232\203\a\17\262k"
#"\327.\306\306\306\0\347\264\205Tm\374"
#"}\255\365\311\177k\367\235m2\342\36"
#"\332\260\263\36\35\35e\377\376\375m\325"
#"\355\340\201\225\347\271k\373\225\212nw"
#"\vB\200\224\240\224\227\235\324\25R6"
#" j\0205\326\326h\226`\304\240\315\203,p7/\332!\270xH\222+"
#"E\247#\3113A\247s1\335\221g\361\245o6P\r1\224\273\2Bl"
) 500
(
#"\6B\2420dZ\3\ecW\237H\2343\"\331GI\346\307\\k/r\223"
#"S\332a\3103.\177\372\20\n\270\355"
#"K\267c\361\303t\345\21\36\1\220\206{\277t\27\5p\331eOch\310?"
#"\247-\201\314\277\204\206\346\30\b'\336"
#"\243\224\204L\260k\327.&&&\230\235\235\355\363V\241\337x\305\355~as"
#"p\340\300\2016\374\35G\3\326\262\247"
#"\373x\211\353\34\302wq\360\340A\346"
#"\346\346\30\35\35%\313\262v\223\23\327"
#"6\254\3654G2\374\347\230XS?\234T\340Zi\346\347\347\333\202\276\270G"
#"?T\317\326u\355\245\366\25ZW(\325Ak\213\365\312X\231\22X\227\235\307"
#"h\203\22\n\205\206\205\207\30\31\336\16"
#"\214\270\t_\225%S\240\255us=\360A|+!+8R\372\34\177\356\305"
#"\201\220(\251`\240\370'\221H<>\254\300\305\373}A_\273 [\2110P"
#"\210\f\213\341\255c\257\247\1~\357\267"
#"\377+\365\303\376~\271a\a\17A\t"
#"\377\356\327o\346\21\236\300\256\267\376\30"
#"[\200\214%\20\n\352\34\5\b,t"
#"r?\341\17\254\201w\356\231\340\340\301\203\255N}l\344B\5\177X\217b1"
#"\233xs0??\337z\277\301A\t\336\357Z7~\247B\20+\202\336Z\35"
#"66\363\363\363LMM\365\245\3BmC\250\213X\253$\303\177\216Y)$"
#"\24\0043\302m\203c3\373\311\20\302"
#"\225\5Y\253\311\262\241H-\313\2704"
#"\200\316\221\242\343S\2115\344\31u9"
#"\304V\236\311?>Rr\314Z\226\232\243,i\313\202\266,\326\17q\370[\377"
#"\304\213/\22P?J\323\365\235\373\315"
#"QP\212\22X\264\200<\205\351\177\211"
#"D\342\204\30\360\32\3725\222\306+"
#"\354\365\212f\235\267>\302\223\276\367\25\274\361\rO\243"
#"Y\270\213\377\277\275w\217\222\355\252\v\374?{\357s"
) 500
(
#"NUw\337Gn \1\2\204QPa\b\1\a\301\237\362C\35\235\31\a\242"
#"3\250`\36\367\5f\224\221Y\313\31"
#"p\324\365\373\255\237\212\2128\216\256a"
#"P\34q\24\223trs\23\220\207\3500\16Qt\314\340\32\310R\24\225\307\340"
#"\3B\2101\344q\37\335]u\36{\357\337\37\373|O\355:\3357\267C\327"
#"\355\356\352\273?Y\235[]}\352\234S\247N\355\357\373\373}\325?;N="
#"\2\364\220C\315'\371\356\303\337\317\357\237~\n\227^}\rG\276\353*.c"
#"\215!\253\4\365]\223\273\360\375-Y\242Ra\230N\256\240j\246\233|\305q"
#"zi\3~>\341\355\234\353\232\373\210"
#"\360\233\a\213\367\361 \327\2\350\232\375"
#"\b\267\334rKW\345\0L\2057\222\253?qN\342\370\221|a\344\206\21\315"
#"Q~\217\255\375IF\255\303\371&\262\32<\306,\241T\2164\216Q\272-\351"
#"e\21\330\a\276\240vg\31\361y>r\37!Y\310Yj\332\307\215\206\a?"
#"Ev\352a\310V\251\333\236\332F\eh\32l\273\311\266\216\326J$\366 \23"
#"1Q\243h[\334\266Oj\25\276b"
#"\226!\350\247\362\263\377\361\227y\312~"
#"\313_\375\361\273\271lq\21\245\237\310"
#"3\362\227\362\256\367\337\r\v\213\274h\30-\340\0\0 \0IDAT\365\266"
#"_`)\203EF(\2064ek\2457\26C\206\245\355\f`\34\207\257{%"
#"7\335\376\236-\237\177\334\360\346\325\257"
#"~\365TO\0\261\224\367:q\335~<\367 Y\374\211s\"\3565\211\341\37"
#"9r\204[o\275\225\262\f]\274c!/\32y\\\316W\373q\324\202\323\203"
#"\252\360Td&G\253a\310\277S\r\332\200m4M\363\4\310\17\360\302ox"
#"\"#\376\236\277\372\354\351\360Z\235Mn\6"
#"m9u\337\275<P\301\323\236\365\25\34\\l"
) 500
(
#"e|\255\240\266\210\235\337\264\371\305\211D\342K#$\365KgG\21\315t\23"
#"\262\202Y\260\4\315\345\\\362\254\177\304"
#"\347\277\3709\276\353\333\276\32\255G\240"
#"\226x\200K\370\252\27\374_|a\365"
#"\243|\363\363\26\b\303v\367\341\232%\262a\36\212t<\30O\250\367o*\234"
#"\e\223-.2\236A\356\235\270\271E\320\211!#9H{\35\311u8r\344"
#"\b0\361v\324u\235,\376\304\271\211"
#"\23i\216\37?\336\305\333\6\203A\367"
#"E\232\252\333\217\320Z\203\257\273\262="
#"\220\22\276\6k\e23\240\310\206x\37fp+\rJ\207\366\232\377\340+\17"
#"\3414|\352\317\376\262\35\24\262DF\311>\326 _\345#\237}\220\207\200/"
#"\373\212\257\346\22\332\230\277\322\2403\6"
#"\0362l\210#&\22\211-\21\306\350,\22\352\356K0.|_\333|\e\217"
#"\6\263\bv\b\306\360\e\357\177'U"
#"u\206\261]\341\357\374\243|\354c\37"
#"\342\nu\206\375\356~\f\236\206\1#"
#"\247\332\16~\26]\230\320\20\260\366d"
#"Zs\374\3257\362+7\335\314,\274\361\222w\4L\325\272\357v\213wV\304"
#"#\213\343\276\6q\211\337n$\t\376]@Y\226]f\255h\314q7\277x"
#"6\266\224\315t\235\241\224\30665("
#"\205\322\272\235\260\247\321\312\323\330\232\246"
#"\361a\362\227\17\366D\343\1\275\300\313"
#"_~\34\255\340\3o}\23\17>\32\246\204\r|\303\260\372\34T\17\363Co"
#"\376eV\271\234W\\\363*\366\323Z"
#"\36\271\201,\354k\301\245\304\276Db"
#"\353\324a\21\266\272\235\320gA\215\332"
#"\254\374PF\253\0\353-\344\5\260\0"
#"\315\2\306\24]\361\237\1\360\5Z\37"
#"\304{\203s\236a\1\320`\264j\207\346\0N\361\352#\337\303\255\313'"
#"Q\336bfP\225\343\234\233J\374\273"
#"\375\366\3339r\344\310\236j\333\373X"
) 500
(
#"\210\300\227D\277~\25\304ne\367\236"
#"\331E\202\265\266\263\356\345w\240\353\f"
#"%V\277\214\316,\212b:c\326\347x\240l\312\266\221O\216\362\nO\203w"
#"a\304\236B\343\333R?e\3023\317"
#"\373\277_\303\267\274\364%\360\320\237\362"
#"\35\337\372\35\234:MH*\312\268"
#"\374\35G\371\304\375#\236\365\374\257\347"
#"\206W\\\315>\302\354\356R\31j\223"
#"\267.\310\2\232E\22\211\304Vh\333"
#"\363z\b\313q\216E\323\216\333\350\272"
#"oZ\335\204\3516~\21\364\1B\17"
#"\377\222\203\315\230\314C\251\206\324,\241"
#"UA\241[\241n=\3329\224\267x\3v\0\253m\357\215\201Rd3\230\253"
#"\35\v:\361J\336v\333m\235\353{\257\0237;\332\250\235\361n%\315Y\331"
#"a\2141]\26\277\374^\3275y\236O\335T\261\353?N\3663\306\340\261\30"
#"\25\346a\6C\301b\335\30\2433\254\r&\203\307b)C\226\277\327(2\336"
#"\362\226_\341\17\277\361*\376\366\236\367"
#"\361\224C\a\360\276A\251\n\2574,=\235\267\375\332/qh\21Le\311\n"
#"E\311b;F\24\n\5\350\245\35\271f\211\304\336a\0\264\2551U\206g0"
#"\21\307\312\241\215\243\301\243\225\306b0"
#"\31\340\241.\35\305 \314\352\320T@\216CQ{\207n2\214i\373\365\3\250"
#"\32\213\347\332W\37\345\366;N`}\203\361Y\250\321\35n\375\35H\v[\230"
#"\b\274\335\354\346\236%\22\323o\232\246"
#"\273\6\375!F\273\221d\361\35707\334p\3'N\234\230j\221\231\347y\347"
#"\312\357\227\207\210V\0357\365Q(,"
#"\232\306\5\261\334\370\n\250\303\224>O"
#"k\241\217Q4\255a\341\301\234e\341"
#"9K|\342\257~\227\327\376\323\253\310\375YP\a\360\3053\271\354E\257"
#"\342\23g\356\345\371_s\5\6\310\264\207&#\263\355\0241\5M\324x"
) 500
(
#"$\221Hl\5\v:\214\320v>\244\367\5\261Y\2\343\326\3767x`\255\16"
#"#{\363\"\v\375\263\334\22x\313\200"
#"\a1<\210W\241\317V\230\365K\333"
#"\376\327s\344\325\257\342\304\315\277\212e"
#"5\270\376g\324TO\372\214\304-z"
#"\275\367\334q\307\35\27\205\325/\345\326"
#"\"\364\227\227\227\347\302\352W~\316\373"
#"*J,)N\204\23\372\365\244\261\6\26kh\333\201\234K|\16\207\17\37\236"
#"\212\353\313vq\375\376V\343D\322M"
#"*\36\e)\373\337k\365\266\217\227\276"
#"b\225\330\233\364?\347\275z\337\307\357"
#"K\336\257\374\36{\25e]\331\2165P\252\224\372\375J\266k\375\225k\22_"
#"\e)\213\216\357\201x\255}<\367G\274m\274\217\370z\367\217\21WA\354T"
#"\36\300\334[\374\261\200\2143\337\343\261"
#"\210q\311\234\260]B_\332[J\211"
#"\207\234\303\265\327^\333Y\372\375s\236"
#"\225\320\337\350\\\342PA\"\221\230\177"
#"D\231\217;\313\305\202\353\272\353\256\343"
#"\304\211\23S\263\343\343\31!\27\222["
#"n\271\205\243G\217N\205'a\373\326\337\270\361\231$\342I&~<\364,^"
#"\23\373\312\323f\366\37\ek\342\5\221"
#"\375\313q\343Z\377\235N\376\233{\t"
#"\320\257\227\24\301*\355&\3733\354a2Ky;\342Pq\375}\\\3421\30"
#"\f\326\325\347\307\347\251\265\236I\3\214"
#"\246i\272>\332qO\200\275j\365$"
#"\22\27#\362]\226\316r\361\367\273\277\376\2111\262\35\304-oe-\356'2"
#"_H\344XeYv\306a,\234\343\262C\351\263/\257\333\314\372\330\367$\311"
#"1\226\227\227\271\361\306\e\247\312\261\253"
#"\252\232j\355\273\223\23\f\347^\360K"
#"\223\210\246i\326\315\261\27\353V\372\332"
#"\367\373No\207\306\25\37C\254\370\303\207\17\263\274\274<"
#"\25\232\210\347Z\313\r1\213\6\30\261GAnJ\371\271"
) 500
(
#"X\22p\22\211\213\201x\375\223\357\366\221#G:\227sl\375n\327\364<\357"
#"=w\336y'\327_\177\375:O\346v\304\300e\375\27C\253\252\252\3569\230"
#"\270\375%N\377x]\360\e\265R\227\353\37O,\264\326R\24\305T\37\377\355"
#"\f5\367\231{\301\357\275\247,K\262"
#",\233$\273E\37\202\224\231H\226|"
#"\374\272\355\20|\361\0\a\230|\21\373"
#"\307\226\e\316\30C\226e\224e9\223/f\334\3667n2q\261\324\331&\22"
#"{\2318\244\31w\366\214\37\307\341\306"
#"\330\312\336\16\213[\216/\223\374D\350"
#"\306\326\365\205\244\37\203/\212\242\363\262"
#"\306\377J#\242\330%\277Y\371\20w"
#"/\224cj\255\271\375\366\333\271\341\206"
#"\e\326u4\334\r\341\326\271_\371\225R\f\6\3`\275{Fk\335i\266r"
#"\223\213\345\277]\27?\26\270\257y\315"
#"k\270\365\326[\247\204n?\266\24\207"
#"\2f\345\212\27\345'\266\370\343\216[\211Db>\21\1/\337\345XX]{"
#"\355\265]b]?\234\30\227\340]H"
#"b\257\346\3157\337\314\341\303\207;\217"
#"\303v\204\32\373-\317\373\212\0l\34"
#"\337\337\254a\324o\264VU\325\324T"
#"\303\242(\326%\22\306\303\214v\212\271"
#"\27\374\300\224+\e\350b8q\246\177\254\341mg6w\3234S\311$\375\344"
#"\275\370\\\343\3670K\241\234e\331\224"
#"e\20'\271$\22\211\371g#o\247"
#"\364\376\210\233\354\310\277\222|v\241\261"
#"\326\222\3479u]S\24E7\307~\273\362\f\372-\317e\355\357\313\2\21\330"
#"\361\3536s~q\254^\32\254\305\312"
#"\306;\336\361\16\216\35;\326yY\343\317g's\254\346^\360Ky\\\254\351"
#"J\202\313F\3$\266{V\264h\325\327_\177}\327\207\37\350\276x\362"
#"\305\354\347\2\314\352\213\271\221\202\263\323"
#"n\246D\"1\e\344\373\335\267<\217"
) 500
(
#"\349\302\3157\337<\365]\227\265H"
#"\272\202nW\214\275\252\252.\306.\236"
#"\2068\34q!\211\275\250\261\305/?\22v\220\4h\31\216\266\331\363\223X}"
#"?)P>\vY\307c\231\364x\252\6.\24s/\1\344\303\211K%\204\270"
#".\263\257\315\trS\304\37\\L?"
#"\23\276\377\23\343\234\233\22\326\262\315\221"
#"#G8y\362\344\324\361\373]\370\342"
#"\363\232e\362K\234\304\"\261\247\252\252"
#"Rr_\"\261\a\2205C\2049\320\225\352=\226q\263\235\312\277\2242K\36"
#"\326\3157\337\314\221#G\316i\365\307"
#"\256\360\215\326\332~~@\34\346\350\257"
#"\277\375\372|!\276^q\310C\302\306"
#"\233\245/w6\272\256\361qw\213\321\265;\316\342\2\22g\272\366c;q\""
#"G\34.\20\327M_;\334\350\a\350\3124\264\326\353\24\214c\307\216q\323M"
#"7u\317\211v\270\335BW\264]\357=\a\16\34\3306\215;\221H\\X\372"
#"\325LZ\353\316r\335i\342\36*\222Q\17p\333m\267q\364\350\321\251u)"
#".3\226\274\244~\345S_\251\211K\4eMs\316M\3455\305e\321\262\277"
#"Y%O\237\17\347\34'N\234\350\272\371\305$W\377\5$v\231K\3\235\215"
#"\342a\"\220\343\306\n\233\375`\372q"
#"\35\21\352\327]w\35\313\313\313]Y^\254Tl\227\346'.&I\250\201i"
#"wV\"\221\230o\304\205,\255s\217\35;\306\311\223'w\305\367{\243\344C"
#"Yk\227\227\2279r\344\310\224\aT\334\357\261\201\24\em}%\240\237$-"
#"\317\305\26\275\254\277\361\376\343\327\\H"
#"\342\2743\221/\333\331\307\340\234\347\265cG\336Fb7LY\226\30c\246j"
#"9a\362\301dY\326\271\303\343\233\361\\?\316\271\256\211\220$\204"
#"\310\207\35g\346\367\223E\266\353K\31{\26\342\212\201D\"1\377l"
) 500
(
#"$\0wC\326x\0371\270\316\225\327"
#"\324\37\356\23\207Bem\215\377\225\262"
#"gYG\373\235Z\345\232\304!\334\370"
#"\367~^\330\205$\316\277\20\371\262]"
#"9\26\347b\317O\347\353\177)\264\326"
#"\214\307\343u\365\255\261f&\212\301f"
#"\342\340EQt\37\354x<\356\264\313#G\216p\333m\267\1\0237\273\354\37"
#"\246\313\\.$\2616-\235\3\305\342\337M\vC\"\221x\374\304\31\3530\21"
#"\260\261\225\274\223\210\225+k\217\b;9?\357=\307\217\37\347\226[n\1X"
#"g\301\313\266\375}\306V{\234D\27"
#"\347s\365\233\5\305\35\372$\243\377B"
#"\343\275\357\252\32\266\373\330\217\305\236\267"
#"\370E\360\305\232d\236\347\335\215'B\36\202\273_\\LeYvIp\217\365"
#"#\361}k-\303\341\20\245\0247\334"
#"p\303\224\320\37\217\307S\347\264Q\262"
#"\311\205|\377B]\327\251v?\221\330c\210@\25\201'\206\315n@\f\2168"
#"!\257\252\252NH+\245\272\372~\230\b\362~R_\274V\306\236\0\331f4"
#"\32M\345d\311\276d\373\270\372a\273"
#"z\b\310\261\253\252\342\344\311\223\34?~|\252\227Jr\365_`\342R\n\271"
#"\31\244\221\217\304\335\265\326\214F\243N"
#"3\23\227\314\371\350\337Tq\6\277|"
#"\350\342\5\220\220@\\\367y\241\331\350"
#"\213\223\222\372\22\211\275\201\254]b\330"
#"\334p\303\r\334q\307\35\0003\231\365"
#"1\vD\330\312\272S\24Eg\201\313\32|\342\304\211\316j\27\201(\312B?"
#"\37+\256\6\20\303NF\231\307\t\202"
#"q\335~\34\312\215\225\216\355@r\300"
#"\342\366\300\260\263\353\360E!\370\343\346"
#"8q\302\207x\2\344\246\311\363|\312%\264\31\213<\216-\t\261\e+v\363"
#"\3131E\343\334.\213\277\37\256\210G\3'\22\211\371"
#"E\222\330\372.rY\327v\3q\235{<\230&\266\330"
) 500
(
#"E \379rd]\357\374\330C\32g\357\307\356~q\241\307m\311\373\t\333"
#"\261\333\177\273\326\337XA\361\336s\364"
#"\350Q\216\37?~\301\217{>f "
#"\370\e\360\340\1\217\303\263\212e\5\213"
#"\303zh\332\37\0\\\330\234\326\303Q"
#"\273\0214\341\251\261\354\313\226P\202\367"
#"\260\6\214\30\3u\330\250\201\232\6\317\n\270\22F\200;\3n\4\36F\r\224"
#"\262{K8)@)\17\256\6\en\232\252=\r\315$!/\316>=_|"
#")~\34\307\254\256\273\356:n\275\365"
#"\326u\332&0\245\335\306Z\351V\361"
#"\362??\271\300\236\32K\215\245\301\3Zi\250`@AN\16h\254v\27A"
#"\206G\"\261\367\321Zs\354\3301\216\36=\212\367~j \316na\243:\367"
#"\3305/\345w\347\"\266\342\343\337\343"
#"Z\374x\177\242\20\365\313\226\343\311\254"
#"\333a\361\2132r\354\330\261)O\357N\347W\315`\351o'\341y\360J\23"
#"\304i\eOW\341\317F\1\316\ai\2564(p\256!\3239\245\206\34\317\260"
#"U \360\3\310\301[X\320\240\364\20\17T@\221AN\35v\3524\24\2002"
#"\340\fXO\221+J\221g\n\260`\215\303(\25\266\267\26\245st\373gc"
#"\262N\e\224\e/\216-\305a\201\270"
#"$$\276\301D\240\337x\343\215\334y"
#"\347\235S\37\252\354#\276\311D\261\220"
#"\327\316\244\244DA\20\372m\342 \246"
#"\325\3504\335\255\235\301\270.\321y[\322bSb_\"1\357\310z\22w\207"
#"\2235h74\213\211\r\234\276\341\23"
#"\237\253x_\245\344X&\n\306\331\370"
#"\261\27#N\302\356\257\317\242H\310q"
#"\244\314Q\222\f\373\215}.\364\373\227"
#"s\34\16\207S\303\222vr:\337\f\216<\321*[\235\256\3731^\236"
#"l\302\3\245\1\17\312\343\235G\321jb>\214/\2441\220\201W\240E"
) 500
(
#"\216YPY\370Y\263\247X2\31\370\1\336\344T\n\n\26PZw\276\v\243"
#"<Z)|\345P\271F+M\343,\231V\200\301\373\6\2452\32\353\360\370."
#"\256$\256\243,\313\250\353z\352\206\24"
#"\27\375F\265\244\242m\377\372\257\377z"
#"w\203JL+\256\335\354\267\311\234\245"
#"\273\335\343P\304\332\275F\211\27@\311"
#"\247\344\360\246Ag`\e\217\362`\364\356p\5&\22\211/\rYC\244g\274"
#"\254A}O\346N\23{9c\341,\304\215\324\304\25/\336\323\376\337c\367?"
#"l\\\247\37\307\323e\355\26A+\257\337\16\341/\237C\236\347]5UQ\24"
#"\353B4\333\315\f\216\332\n\234\316\335l\b&\273\374}\204kV\304%\0J"
#"\201\2520F\341\234&\267c\274\32P\251\1\225\316\300\326(V [\2453\315"
#"=\344\214\310\215f\214\301\253\2\345`"
#"\320\300\bM\243\300\372p*\231R(\202#\240;;m\360\215\3\347PJ\343"
#"\274c\230\e\234\267S\215/ d\304"
#"J\375}\377\6\333(\e\363\360\341\303"
#"\334|\363\315\335@\f\230\224\357\311\227"
#"P\24\a\271\331\342&A[E,\372\356\362o\360\2216\16\274\326\2404J+"
#"\224\206L\21\302\37\211Dbn\21\343$\356\36*\245q\273A\350\237\253|Y"
#"\252\240\304;*\tw\20\32\214\235<y\222\243G\217Nya\201\251R\353\370"
#"\371s\325\351\307\212P\\\341\265]\2W\344\313\362\3622Y\226u\211~;)"
#"\364a&\202?*I\360\355.\275n\0377\300\32:k\300J\302\234\4\371="
#"J\201\306c]\b\3277\206\2407P\341i\2504\370\326'\241\234\6\6\355\217"
#"\203\346,\330S\254\21\342\372^\201\321\240|\25\342\4\355EmZ\275De\31"
#"h\215\255\306d\nL\226Q\327\223x\276\304"
#"\210\262,c4\32MY\365\300T\353\307x\326"
) 500
(
#"\265$\4Zk;wR\277\271O\334\24H\272J\315\262\234C\241Qd\250\356"
#"\343tA#\320!\272bLx\3125\232\272t\341\261\237(\r\211Db~\221"
#"\2066\v\v\v\224e\331\255e;\35G\206I\253^\240[#\201)k\\~"
#"\27\304{!\325\t\261%/\36T\261"
#"\374e\235\216;\264\212\233?\316\1\210"
#"\367\37\207F.4r~q\331\367\362"
#"\362\362\272V\302\333\315\354\336\271\334c"
#"\"\364\35@\r\254\361\340\347\377\232\247<\361I\f\263Ch3@e\373\320y"
#"\201\321\213\f\262E\226\362\202K\324>"
#"~\374'\336\312Y\225\363\b\227R\262\204\241\3047\266\325-\6\30\6\f)Q"
#"\366A\340\213\274\370\31\207\370\326\353\336"
#"\300\230\240b\340-Z\251\356d\254\r"
#"\357\320\1\326\265\232`Q\340\\\215m\32\362l\222\301_\226\345\324M$7N"
#"\\~'\331\377\20n\256\303\207\17s\313-\267t_0\351\3\20w\216\222\32"
#"Vkm7\1\252?Fx\313\327\275"
#"\373~\267\331\257\2706\271\257\306\351\326"
#"\v\241 \327\32\232\260\225W\3555K$\22sKl\240\234={\266\363<n"
#"W\203\260\315 V\256\254\217r~\262F\306\375R`\222x\0277Z\203\211\2"
#"\20\367,\220\347\317U\247\37\347\a\304"
#"\371\6\333\345\r\221\222\356\242(\272\353"
#" \347\273\223U\27\263\3657+@\271H\20Y\240\242\32\257R\227Pa@e"
#"\250\274\315\363S\31\225\311\31\270\232'"
#"\261\312\317\277\361Gx\326\327\35\343\1"
#"`\215\f\343\326\320\312\321\270\260'\343"
#"\200\352,\3701o\376\177^\317_\375"
#"=\214\363\3\324\204\b\2\312\343\352\22"
#"\274\270\334'\247h\214\2g\301Y\6\203!MTf\1\2236\266\242\235\212v"
#"\231\347y\247\235\306\345y7\336x#w\334qG"
#"w\303\211\366\26'\357\211\200\267\326v_\310\v\26w"
) 500
(
#"\213\24\200\220\275\340\2608<\226\306V\341o\r\301Yb=\316\3;\357\tL"
#"$\22[@\254\346\23'Nt\371I\261\261\262\323\364]\371\342\342\216c\361b"
#"\20\301t\271\237x.\342\365\262\237\335"
#"\277\231:}\311'\220\343\366\317\355B"
#"\342\234\353\336_]\327\273&\263\177\313"
#"\202\337\243\246\222\310:73\20$MM\221\345\24\371\22_}\325Kx\364\314"
#"\230\361\350,e\263\206m\316p\272\251"
#"X\261\237\347\336\217\277\213/?\270\310"
#"\203\37\375\4?\361\323\37\350b\363\340"
#"\311\362VF\325\17\2022\374\324\17\276"
#"\2117\277\345\375\224\32\306f\37\25\22"
#"p\360\350\334\264Z@P.\302\263\320"
#"X\202&\2405\336\206\22\277\220r\240"
#"\246\6'\3045\247\20\24\201\270\273\37"
#"\204v\274\313\313\313Sq)Q\b\342v\214qH@n\370\330%u\341\b\211"
#"\214\341G\221\31\215\267c\310\232\240=9\200\foSr_\"1\317\304\25B"
#"\322\30G2\306wC9\237\254\205\222X\27'\325\305qnY\23%,\32\17"
#"\365\351'V\307mo\317W\247\37g"
#"\366\v\263,\247\336\354\373\267\326r\333"
#"m\2671\34\16\273\367\265\223\36\231-"
#"\v~\207\306w\26\277\244\341\313\236\35"
#"!\226\257\360.\303\271!\26\205G\241"
#"\333C\347\26\3209\305?\374\n\376\307"
#"o\275\e\345\316\360\356\377\360\223<|"
#"z\225\323,P\232\2\252\21\270\3738"
#"u\357\307y\362\345W\362c\277\360\36J wP\251\2'\207\363\4k\277\365"
#"\366\313uU\310ci\4\1\nE\374\275\210\233D\304n\247\270\306T\236;y"
#"\362\344T\322\212\274>\376\242\211f\327"
#"\257\347\357\37k\253xE\344qi\343Yd(2\f\31R\270\241r\5\224`"
#",\230\360\376/\306B~\261\f M'\274X\210\277"
#"\177q\303\255\335\20\3\237\5\3422\267\326n\230\t\277\323"
) 500
(
#"\364c\356\375\241;0\355z\217\343\357"
#"\362\357\341\303\207\3275\366\331H\250\303"
#"\364\330\365~\254\37\266\367{\277Q%"
#"\330\227\"\364\343\306D\362\373V\330\362"
#"\312\357\333\252}\35\327\222\253\220\304\337"
#"m\3238\254\323(\263\200\322\340\311p"
#"h\f\260`\0013\0cx\326\325\317\342%\227\354\3433\247\276Hf\25g\b"
#"\26\351\300X\356\372\265\267\361\252\357\377"
#"YNg\3\276\361;\217\363s\257?\314w\276\364EXLT\310&\25\6j"
#"\"\f[\255\300\251\310\263\335\376M\276\27q=\345F\345v\2615/\37\200h"
#"\242\242a\237k\332\2241\246\v\3\364"
#"'\345\305\335\247\276T\274\n1}\224"
#"\v\n\216\17\245|Fv\253\241Q\241"
#"\202\301\350\"\304\367]\215\263\25\271)"
#"\366\314\342w.\342E1\366\334\304\n"
#"@b\357\"\213e\334\317^\356\205\235"
#"\316\254\236\5\375~#\300\324\357;Y+\16\254\253W\0277\275$\372\305^Q"
#"1\260\34499\177\245B?\377~3\236\270,O\210\277\337\362{\3748\26\270"
#"\333\351n\227\363\270\376\372\353\273\353\261"
#"\331c\307\36\20\230(F[\361Z\314\340\256\210\265-\217k\205ox6\324\363"
#"\347\246\300\350\f\207\247v\301K\220\321*\a\rP\264\nC^Q\2721\206E"
#"\250\27\311d?N1v\373\260\3\370"
#"\340=\367\360\342\347=\217\317\374\336\a"
#"\330\a\234R\355 \69\205\266\211\220"
#"\304\273\263\366a\227\363\247\344L=\316"
#"\202V\256\213\211\365\25\200~\363\210\276"
#"\245\30\327\316\306.\35\331&\256\b\200\220\344\"5\235q\230`+x=\211g"
#"(\17\312\207\366=\322F\311\242B#"
#"\245\334\200\255C\203\204\306\221\371\320\377"
#"h7\224\374\\h$\366\327\217{&\213\177\357#\237q?W\a\246G\330"
#"\316+b\220Xk9z\364\350\324{\332-\357/\26\\EQt\311|\v"
) 500
(
#"\v\v\335\272\3334M\267>n\264\206"
#"\302\244\224/\266~\373\215\212b\203-N\244\23%Af\247\364\313\377.\24q"
#"\302\242\234\373\355\267\337>un\233y"
#"}\374~f\261f\317D\35\234\224\333"
#"\367\334\17>\b\341\252\2520\332c]"
#"\331Z\374\355\366\r\250\2\250G\220\255"
#"\361\307\177\366\31\3569\263\306\227_\365"
#"\317Y\332\a\227x\30\252\6\314\2\337"
#"\376}?\302\331\327\375\bc\f\0315"
#"\213\352\221\251\223o//\241@p\322\261N{\213m\213\372\353\252!/T\247"
#"\24\30CW\2\27kar3\312\r\3254\r\v\v\vS%$\375\306<\375"
#"\327\364\211\eV\310M0\213\222\22\253jhC'b\355Ob\30\32\224\242\361"
#"P\353\340\341\360\36\n\345\321\214\301W"
#"x\16l\351\370\273\35\2610\344:'"
#"a\177\361!\256U\311\256\206\320\257#"
#"\256#\237W\372\215z\226\227\227\247<"
#"\31;\375\376d\335\223\365U\256\273R\212\262,\247,W\357=u]w\n@"
#"_\300)\245\250\353\272\213\341\307\306\223"
#"|\307\305\213\32\217\2\226\2656\316\244"
#"\217\275\200\27\229~\274\376\310q\343"
#"\216\203\217\205\334\267\362\376g1]p\313\202_m\3608\212f\3\232\"34"
#"n\25T\331v\354Ux\337\240LNe\240(3\276\360\221?\347k\276\351\373"
#"`\361j\276\366\370\365\354_\202aU"
#"\201\251\360z\210u\212\314y\206\332\202"
#"\0373\314\203E\253\260\30\342d\205\360"
#"\274|\234Jy\274\17\215{\362\"k"
#"\217\e\316\301\266\26\177?\246/\37\206\bji\265(\226\177<\21Kn\3528"
#"3\25\230\322F\345\337\330\3454\273\233"
#"NG\31\23*\304\371\265\232\344[x"
#"C\246\25\31\340\232\320\330\250\252,Y"
#"\221\323(\317`\217W\363\307\213\216\\\363\330U6\357\256"
#"\336\304c\23\v\223\270\234J\222\254\346]\21\214c\334q"
) 500
(
#"\310\261,\313\256\21\331N\23\257s\303\341pj\35\214\335\325q\6|?\f\32"
#"[\347ql?\366\16\304\261\374\276\200\27\245 N\26\334\16o\347F.y9"
#"\217\315\226\363\25E\321)\20\342-\226"
#"\246s_j(g\313\202_\23\307\363\365d\227]\27?\205kJ\360c\376\342"
#"/>\312\345\373\17\201:\205\361\22079c5\340R\277\22^er\26\276\356"
#"\271\274\341\a\277\221\254\233>\243ht"
#"k\261y\300\207\222\300\225\325Q\310]\367\256\3638\4T\330L\201r\16\\C"
#"f\212I\233!5I\352\213-\376XK\224\e%N\"\211[I\2\353z\373"
#"K\fQ\\I\361\215\270Q\262M\34k\334\32Y\233\330\350Z\27\n\241Q\21"
#"\31\0360\312\241\232\22\224G;\a\252\240(rNY\300d\f\266x\364\335\216"
#"|1\342/I\34WL\354}b\v\262\252\252\256tw/\304\370\343\20cl"
#"\300\310{\334\r\364\335\335\261\205\337w"
#"\345\307\364\373\361\367\367'!\203\262,"
#"7\364\22\304\25W0\255\30m'\362"
#">\372\236\230\315\304\350\343\20\201(;"
#"\217\307[p.f\324AF\376\351\322"
#"\371\333\347\202\260\3163\215\311C\27?"
#"|\333\375\316\a\247<\371\ng\320<"
#"\314\2\277~\307{\371\233\337\275\235g*\30x\300\r\260n\241\353\351oUN"
#"\325*\27\203\205a\250\337\247\231:j"
#"\327;\250{\207\n\347j\24\241\213\237R\6\357j\2646\223r\277(v\22\227"
#"\344\3051\230x\\o\334\aZ\266\223"
#"\337\373\245$r\243\305Y\3760\271\31"
#"\266\212\243U\274\274\v\327\326{,\232"
#"\222\320\r\261\304A\266\6\356\1V\376"
#"\372\177\361e\a\v\212l\221\37}\363"
#"2\247\266|\364\335O\34\222\221\305C>\213\235v\203&.<\261{"
#"\30\330SB\37&Il\" \345~\207\311Z\263\223\364\255\366~b\245"
) 500
(
#"\254\237qm~,\344\342\374\253x\360\216$\6z\357\273\36)\362\273xy\342"
#"5<\256\367\237U~\325f9W\22\367f\f\17\371L\263,\233\222\27q3"
#"\271/\205-\337\371\353O]\365\236\323\324uI\246\35W]\375\\\36Z[a"
#"\\\215)\2535V\313\232\246|\230G"
#"\275\345\21\277\306\265\257\274\206'\263\302"
#"!w&L\373\315\301\347A\320\217]"
#"h\315;n\263\330\265\261!\242\277\256"
#"\365\254\236\b\177\25\222\6\2156!\323"
#"\335\264\215$\b/\352\312\375ze&qg)`\235k*\356\354\27kmq"
#"\214)\276\231\305\322\354k~3\275\371\274%\224R:,\241gb\370\372g\300"
#"\b\324i>\366G\377\215\265U\260\266"
#"\341\227\376\323\257\361\271Ggw\370\335"
#"\212R\252\353\315 \223\271v:\3239"
#"\261\275\210e\24[\230{A\350\303t"
#"\326\272X\375\322\304f7$\356\306\302"
#"\255_\311\324\27\370\e)\4\361\340!"
#"\361\300\306\337\351~I\237\254\311\22\337"
#"\217\317A\f\261~X\340Br\256\212\203/\265\242+\336\337V>\337\0314\360"
#"\211/\236\rbW\262\367\2623`\36"
#"\301\27\213\254\226W\322\370\253X\2630"
#"\242\301j\v\0324\227\260\317\303\1\a"
#"\2138,\213\224\372\0e\1\30\310\32G\346k\206*\304\251\27=([c\306"
#"#r`%[\342\f\301\272\305\31T;\226\327\313\334\200\366\364j\25\24\am"
#"\3026\306\265\262R.D\344\202\21m"
#"j\243>\317\375\272L\321 \343\306?"
#"\375\222\221\270?u\34W\236\205\340/"
#"J\300Ce\6X\263\17\354\200\302\256r\220\21\207<\f-P\357\3\333\360\316"
#"\367\274\233%\3\327\276\352\337B\265\302"
#"\311?\371\24\330Q\230{@\311\np\32X#\364\362\a\bj\304\b\354"
#")\240\3414\360(\204\216I\253\363\243"
#"9\364?\267\376\343\304\336'v\205\357"
) 500
(
#"%\342\3065\302n\20\3721\261\201\24"
#"\v\342Xh\307k\243\b\360\270\252*"
#"\336\227 \2\274o\200\305\257\355o\273"
#"\235\275\3727J*~\274\211\306\e\275"
#"v\313\347\265\365]\304%R\355\356\324"
#"\364\357\276\225\260Ze\30#\211w\322"
#"\332\267\377\232\376.B*\372\344f\1\224B\351\f\a\344\312\221\307oDI;"
#"`Bv\273t\206\212\e\n*E\343<Y6h\3679\351\363,\361\244\315\306"
#"\202d\273~\253L\331\247(\4\361M\37+\2[&k\223YhG\37em"
#"\343\202&\243Q\260b\0c\371\373\337"
#"\373c\356\372\300\375\274\350_\\\3035"
#"?|#\360(\237\177\307\257\320\350\5\352l?\25\3rJ\226Xe\221\32\335"
#"\206\17\34\2121\v\224\352\22|\235q"
#"\320\256p\310\177\21\257-\343\205C[?\377D\"\261\347\361Sk\370$I/"
#"\366\306\304\36\324\276\27C,\344\215\306"
#"\243\213\200\357'\n\3126\375\322j\351"
#"\306\272\e:\e\356\24\263\233\316\327%"
#"\363\365/\246\a\25\3421\266\262m+"
#"\177\217\345\334\223\211\272Ft\236n\177"
#"\22@\360\n\360\232\6\203\5\262\246\216"
#"\224\204\236\5\335\265\203\364]=\277\215"
#"j\271=\323\365\371RW*\356\263\315"
#"\334\30\361\230G)\373\203I\207\246X"
#"\343\224\326\300\342\212\233\5\215\261\341\22"
#"\207\177BL_e\340\362\266\216\277\4"
#"e\271\353\275w\343\200\227\336\360\257x"
#"\356\327<\233oz\371?\342\v'\377"
#"3\37\374\363\a\203\205O\310\227\310\30"
#"\361\320g\376\224g-(.\317\r\277"
#"\377\321?\343!`U\267\221\223\263\237\346\305O\277\34}p\221\367|b&o"
#"!\221H\354a\36+\264)\236\325\330\32\217\205\177?\23_*\26d\277}O"
#"@_Q\350\37\263?\e\340be\266\26\277\357\357.\364"
#"\213\37\327\25\340\310\2136\326\336\376\267\321\321u\374oW\37"
) 500
(
#"\350q\355\340\35\335f\255c\n<0p%C\331^>\344\256T\337\203W\330"
#"\246\351\352\r\262,\v\333y\217\363\223"
#">\374\222\35*n\247\307k\361Cp\257\311\224\2778\336/?\375\336\0\263p"
#"\365;\\\327HA\321\340\3604:\207\f\n\34\a9\5\3433\374\334\311\337\346"
#"\314\302\227\363\222o~\5O\0\376\335"
#"\277x1\a\200\377\372;\177D\205\324b,\321p\220'>\343\n\376\277\357y"
#"9\312\302\367\276\341\247\271\337\313\254\204"
#"\373x\307\217\376\277|\352~\370\276\37\372\31^x\325\226O?\221H\\$l"
#"\344\332\226uQJ\371\304`\22\17\252"
#"l#\226\272$\363\305\211\323q\e\3468D\20\347\2\0]B\240\224a\357\305"
#"\260\317f\231\205\257y\362p\335u\314"
#"\200\5\212\301~<\25\326\236E\321\272"
#"\244\343\215{\257\353\312\363<\241DMkt\333\241\317\28(}\310\\/\352"
#"U\nZ\357\200\362H\277z'\355\372"
#"\224\242\30\f\300B]\267\341\5\347:"
#"\357@\254]\306\202\376\361\b\345~\346j?90v]UU\325M\353\233\305"
#"\215\227\223c\25X\355\310\2511\204\30"
#"\375\232&\304\357\307\17\361\251\217~\230"
#"\217\327\360\264o\273\236g\\\nW\332"
#"\25\376\345\v\276\214\"\203\337\374\357\37"
#"f\255\tU\26\36\250]\16>\343\325?\365C<\3552\303\347\356\3718\277\367"
#"\276\217s\320\235\341\276\273\357\344\ro"
#"\373 g\17=\237\177\363\2067p\345"
#"\226\317>\221H\\\354H\31\265\254\215\322\335\24&}\n\274\367]=;Lw"
#"\365\333h\255\26\301.\236\3258\227 "
#".\325\276X\231\201\340o\353E\273^"
#"\375Q\314\336\e\260\v(\275\17\307*\332\234\306h(\30`\30\202k\326\5\6"
#"\302\314\031791\255\333Nt\342\266'\244\347\233"
#"\5*`\311\227A\360\333\246\353XWZ\337\16\16\22"
) 500
(
#"\377~h\335\273\220i\234\265\335\274\336"
#"\306On\240\301`0u\223l\246\235\342F\333\212P\357\307\252\244n_&h"
#"\315\252W\274\262\272\235\270\353P\324\24],6}\0\0\22\35IDAT\255"
#"\26e\1|\tn\215\367\276\373\335`"
#"\26\371\326\343\257\r\226{y\n\256\270"
#"\214\347}\353\223\340\236O\362\336\367\334"
#"\215U!\341q\350\1?\204\203O\342"
#"\277\276\367\235\340\356\347\335oz-\334"
#"\377)\256{\355\17q\246x\n?\274\374!\236\260\4\v\365\27\266|\376\211D"
#"\342\342\340\\\353]<Q\320\30C\236"
#"\347\235G\264/\350\373^\324\270j\252_~\335\317+\350Wi]\314(\277E"
#"\351#\206v\2207M;\t>\17\2\3067\340\307a&nv\220J\267#\341"
#"\235gI9\24\36\253\262v[:k\335w}\350\348\e\232\356(\323V\354"
#"\203/K\6z\r\364\32\17\230\247\262\350\340\200v\340K\34\206F\25X\17\3"
#"\345\321\336\3:\f\355\353\264\211&L"
#"\b4\31\336M\4\266\264E\24\227\377fJb\342np\"\360%y\4&\326"
#"~\277\254ef\31\245\r\330\f<\r\31c\360C\326T\370\",6_\204O"
#"\177\210g\277\344:>\235?\207\273>"
#"\373\t^\264\4\a\313\317B\363E\336"
#"\177\342]\374\313\327\375>_w\315\327"
#"r\327o\276\215%\200\325\32\26r\32"
#"]\243y\2247\275\341\265\334\364\226\367"
#"Q\3_0\227\363\234\353^\307\273n\373q\256\4\366\227_\204\301e\263y\37"
#"\211Db\317\322o^\23'\346m49/^3c\317\351F\275\370a\322["
#"e0\30P\327\365\2726\335\375\\\253"
#"~\322\365\305\306\326\245Ow=\233\350"
#"\27\371 3h\26\301\354\a\335\240\360\30\240\320\n0QOy:\241"
#"\17b\365\203\214\330uu\335%\3675\226\340\2727\5\260\300\"0\324\4"
) 500
(
#"\5\1\217V\232\306;L7\235\257\325\30u\330\358p\16c2j\347\2474"
#"\304\262,i\232\246s\303o\2463\222t\351\e\f\0064M3\225'\20\227\253"
#"\310\315\35\177\1f\242y\352\266_\242"
#"\317\240\31\200\325\264\225\220\240\35\277\373"
#"\a\37\343\241\323\360\3?\360z\236\261"
#"\324fd\f\0060\270\214\257\377\346\357"
#"\346)\303\277\340\177\177\350\267\370\237\177"
#"\362@(\211\\4\2145\234%Gc\370\261\e_\306\225Cx\230}\260t5"
#"7\275\375\307y:\220\3335\232\"\t\375D\"q~\372\241O\3717\356\310\27"
#"[\362q\367\32383_\326\3268!Pb\371\306\30F\243\321\206\226~\234\\"
#"\230\372x\314\304\325O\24\220\17\277h"
#"\31\317\353\1\243[S\333\243[\233\335"
#"\310KD\3\214\367%\t\202\223\335\241"
#"\213\274;\331\254k\302_\200\0320 \270\250\3fj_\n\25\216O8\35Q"
#"\356t6\300\272I\217g!n\357\32"
#"\227\216<\326\217\270\354\245D\257?\202"
#"\22\246\273\364\365\247g\t\361\344\270~"
#"\335\352caE\241\261\200\315\301j\f"
#"%\5\17\203\265\274\353}\367\200:\310"
#"\313\376\371?f\2016#\303\35\0}\31Ox\346sy\343\367|%z\345^"
#"~\353w>\312i\340L\373\351\r<P\ex\3723y\3417<\205\2611\34"
#"|\356Wq\311\0\226\03014\206\321\305\251,'\22\211M\262Q\23\35\240K"
#"\350\353\217\331\25\342.}q\323\36y"
#",\212A\354\372\217\307\374\306J\206T"
#"S\365\373\247\304\35V\205s=\336k\314\260s\237\210s=\371\21\323]\4n"
#"\327|7~n\3\374\3646\323#x\342\343\r0\236`\335+\205\267!\27\240"
#"Pah\215u\2260\223\226\220\355\247 \323a6=\200s\347/\251"
#"\213\265\320\215~\316G?o \34\327u\317\311\337c\245C\252\0026\225"
) 500
(
#"c\200E\353Z~\201\f\24\253(\373\0\247?\3737\374\366\207\377\17W<\377"
#"\237\360\274\27<\213\375\300\0\a,\321"
#"\330%\254\312\270\361\333^\300\2p\333{\177\233/4`\25,\262\312\242_\5"
#"2\356:\361\277x\347\a\377\216\302\237"
#"\346\364\237\3766?\375\37o\347Q\26"
#"\30\371\1\373\335\350\274\347\227H$."
#"^6\352\263/\341\324\315\256\237\262\326"
#"\326u\275\341\343\330\252\227\3654\256\355"
#"\27%#6\344\252\252\232:\37X?\177e/\207\1\266n\361\253\326R\365\241"
#"`n\352R)\302\374w\325\20\4u\326\251\5\301\4\177\234\207\"~\211\6\225"
#"\221\1M]\3\32e\262\316\222\367\36\2146A!p\0162Ef\fe\35j"
#"@\255\363\341\357\27\230x\202\224\364\f"
#"\27\327\277h\254\3425\210\343W\322k"
#"\372\274\373\307\0%\350\212\361\20\306\6"
#"hj\260+\374\317\273>\310\375#\317K^\371\32\26s8\310*C\357\30+"
#"h\fd8\314\v\276\201+\237Z\260"
#"\362\351\217\361\e\357\2777(f\315\375"
#"\240\356\305Vk\374\300\317\234\300\2\37"
#"\270\351\347Y\32<\314\255\277\370v\376"
#"\374\21h\24\300\375\27\346\242%\22\211=\203\204L7j\246s>b\213\276/"
#"\330a\375p\242~\362\237 \345}\262"
#"\275\324\362\307s\r\342\326\352\362\334^"
#"e\6\256\376\250\21O\333\211OI6}\367\367\220`\247\\[q'\241\200\311"
#"0Y\3267\376\21\246D}[\352\327*\r\36\274sdyNS[P9F"
#"\207\304\302L\311&\36\2455Y\246(\253\21J\207\275(\245f\24\3478?q"
#"\"\213\344\0\364]\376\242\4H\334+\3565}^|\3\272b\205\266uq\r"
#"\214J\336\374S?\5\213C^\372\355\327\204\332\213q\3\316S\251\366"
#"jW\25,^\315w}\347\265P>\310\a\336}{x\3364\340\356\347"
) 500
(
#"\307\337\370z>\365\371\25\376\365\217\375"
#"\27\276\345\272c\334\364\363?\f\17\177"
#"\222\177\377\375?\e>u\2674\313\313\224H$\366\30q&}\274\346=\236\316"
#"y\375\30\177<d\247\257<\304\212@\\U\325o\364#\373\353\3175\220\365Y"
#"\326\343\275\312\fd_\24\317\357\341{?\23,\242\flHW% \257\235("
#"\b*\324\5 O\370\266s`\326\346"
#"\1\310\301B\307\336\326\265\243\25\243\361"
#"\30\223eh\35\306\325j\245\331\204\247i\313\256~\321TaR?:\36\217\327"
#"\335\230\361\376\342\32\326\363\341\240\r\362"
#"7\223\326\305f\300\27\356\376\b\367>"
#"\0\317\274\372\331<\377\331\222\354g\300"
#"\2070H!\363\224\aW\362\335\257\374"
#"n\250\36\346\343\377\343\267\270\357\f\240"
#"\366q\357\335w\363\216\237\277\35u\311"
#"\345\\\363o\277\237\265\3422^u\375"
#"\313x\321\241\207\370\370;\337\314\362\355"
#"\367\360\271\354\311\347\277\200\211D\342\242"
#"%\266\304\305\202\226\370\375f<\232b"
#"\221\307\36\320X\21\210k\365\253\252Z"
#"W9\20\347V\305\231\376q\302_\254\220HU\300^gv\r|\342\317\260\223"
#"W\16\207\306Id\177]\34\240o\355"
#"O\237\216\357\237\236\227\377\371\356\37m"
#"\202io[\335\243-\4\3005\266\263"
#"\244\275\267\344\271\301z\327\365\357q\256"
#"\355\2x\36\316\227\334\267\231\327\307\255"
#"%\235s\335\2248\211\345\213\226\332\257"
#"3\335\214\306\31\266\34\0y\373\177\300"
#"\30\336\373\241{h\200\277\376\337\177\300"
#"U\213W04\213\34\334\267\237</\330\257\16\222\253\202aq\220l\360d^"
#"\362\215\337\316\22\253\360\310}\274\345m"
#"\313\234\346\t\374\314/\334\201\3\336\376"
#"\313\277\310\302\245p\6`\241\340\256\345"
#"\237\344\251\234\341\365\257{-\177\261z\376\353\227H$.n"
#"\342\265MJ\3516\e?\2275P\6\247\211p\217;\357\311"
) 500
(
#"\32\e\227c\307FU\3234SV\275\204V\343\16\177q\37\226\307cx\315+"
#"3(\347\313\t\361z\211\365\267\317K"
#"\3\235x\204\216\242\335N\1\331FN\202\311v\355\37%(\240\272:\377i\367"
#"\220\263\266\233\365\323\375\245\361hc\310"
#"t\210\367TM\335Z\371\340\274\v\35\177\267q*\247\264\226\2143K%9E"
#"b\376q<)\216_\235w\337\0z\1g\vr \247\302W#\336~\353o"
#"\342\201\202U\340\1\320#VkP\24dZ\203v\324\203\320\261\257F\0026g"
#"\370\203\367,\363\313\277z'o\377\315"
#"Os\345\213\276\226\357z\305K\271\34"
#"\330\17\340\236\310\301oz\31\377\354\345"
#"\317\207\263\367r\353[\177gv\27)\221H\3549D\250\212\260\25\327\372f-"
#"~\t}J\5\200t\357\223x\274X\361\361\24\277\301 4\225\22357\236e"
#"/k\252\35476\300\342\3659n\3\274\27\331r\3\237\20\252\257\333\a\6|"
#"\326y\361c\261\25b\363\r\341\331\220"
#"\3507\361\350\213@\317\246b\2^\271V\230kL'\370%\203}\320\36\247\301"
#"\223\265\235\352Z\377\203'\324\365k\215"
#"U\276\265\354]\350\367\257\n4\340m[M\270\r\237m\277v?~,\232\351"
#"FM)6G\203k2\264\1\253\34\206\25p5\324C\360\5\24\16\364\32\340"
#"\301\355\a\233S\2*wX\36e\241\332\2077\3j\23z\373c\eVM\301"
#"#\204O\344r`\241l\17e\32\310N\0035\225\273\214Z\eR\224?\221H"
#"<\26b\345\367\331\314Z\327ov&\226{\277V\277_\32\30\357_\366q\256"
#"&B\375\343\364\207\5\355E\266.\370"
#"\23\211D\"\221\330\t*\300@\31\312\221\310\31\241\355(<\351\rd\3&\216"
#"m\213\245`\215\214UB3\263\247U5\250"
#"2\314n1K\355\2662\375o\200\363!Q\34"
) 500
(
#"\377\b\230\202U\366\261\n\24\300%<\2\\\272\255owVl\243\303;\221H"
#"$\22\211YRv-c4\16\215\345\221\373\376\216+\226\236\304 ?\204\326\373"
#"Qf\210\322C\6\305\22\271\3119\240s\236\222\37\342m?\372V\36*rF"
#"\371>\320\373\241\321\270\22\32[`\31"
#"\3405d\332\201\177\0\354\27y\3663"
#"\237\306\313^\361\257\304\267\315\206\31\355"
#"sB\22\374\211D\"\221\230O\262\246"
#"K\352\316\261\340K\232\263c\212\342r"
#"<\227\343Y@\r\27\0\250\333\210\364\2\rK\315)~\365M\377\216'\377\323"
#"\357\345\2635T\216\220,\236\1Fa\1M\r<\2\352a\376\303\17~/\177"
#"\373\267\2471K\2272B\362\314\307;"
#"\363\236g@\22\374\211D\"\221\230O"
#"\332\322m\243\301\326#\360#\206\231\246"
#"\251s\236\375\334\257\347\301\323gY="
#"\363(\336U8\347i\32\317\232[\343o?\371G<u\21\354\335\177\303\177\376"
#"\271\23\224\6\252<46\323X\n\3770\212UP\5oz\303\e\371Oo\273"
#"\e\223\303\310et\375J\223\340O$\22\211Db\233Q\3\274\207\272\2\223g"
#"\300\32Y\356P\331\20\247\206`\240h"
#"\343\377\0\245\202\32\317e\317\276\202\337"
#"\370\357\277JQzn\376\311\237\340\376"
#"3\217\360\b\260\6h{\26\374)\356"
#"\377\233\317\260\357\222\257\342\215o}\37%P5\204\\\0$\305|~\307\373&"
#"\301\237H$\22\211\371Di\254\270\350"
#"i@\327\254\225k\324\215\307\222\241rh\250\1\213#\f5\v\5\340%_\371"
#"\242\347\360u\354\343\t\365\210J\257\262"
#"B\310\25\3049\356\372\225\267\363\25\317"
#"|1\253g\r\327\274\362_\363\341?|?C\a\205\252i\243\2\301E0\247"
#"$\301\237H$\22\211\271\304\251\6kd\26\233\5"
#"\37\32\360\350,GeCF\r\214\332\271\260NIW"
) 500
(
#"\231\266\227\214\263\370\341\0\275\260\210\253"
#"']g(5\271\271\24g\340\203\177\362Q\356|\347/2\30?\312A\300\256"
#"<\212\247\365\37d\363\231\321\17I\360'\22\211DbNq\4\v\\\213\340\307"
#"\240\275\3065\26gkt\6\212!\25m.@\r\205\313\300\32\356\373\310_\362"
#"\207\343G9\360\314\253y\362\376\247s"
#"\0\30\2\249\337t\303\367\261\322x^\370\374+\30\252\25.\325#\n`q"
#"X\320\320\n~\225\\\375\211D\"\221Hl+\31\232\314u\215\343A\31p\226"
#"\314\256\262\250*T%}bC\23\270\314\3.\343\223\37\376s^\370-\257\203"
#"\341\200\177\374\252k9\224\301\1g\311"
#"\250\241\360\2600\240\241\365\0\2705\234"
#"\35c\201\332\351I\21\237\232\337\261\344"
#"\353\333)%\22\211D\"1\17\3249\271\246\35\354\246\301iL\6\3S\362\227"
#"\37\377\20O\335w\20\2623\340B\23\323\1\3J\31203V\301\360\353\377\1"
#"\377\376\365\257\244\bcI\31;\205\326\6\245\233\340!\0 g\234)F@\231"
#"\265-\344\303\301w\342\35\317\204d\361"
#"'\22\211Db>\361\331\244\343;\00644\256\306d5\20610\2\17\271\n"
#"VnE\215\32\356\303gK\274\355="
#"\37\344\263\277\367K\\\271\4\370\206\306"
#"\201\323\232\262\311\300\er\337\nH\225"
#"S\32M\251\2401\241:@\3\270\371M\356K\26\177\"\221H$\346\223,\314"
#"]\221\356}`\250\224\241\364\212g?\347j>\364\307\37b\270P3@\241l"
#"\6\312P+XS!\203\3772V\302\250\326&\303\0162\34\260hr\260*8"
#"\0212\300[2\247\321\36\224\327\355Q\0[\314\255\4M\26\177\"\221H$\346"
#"\22\253K\252\34j\5\326\267\326\270)Xs\v\260\377rV\224\241"
#"\242\240\"\3m@;\264*Y\2\16Jz~c _\244\246\25"
) 500
(
#"\210\336\201ShQ&\\\311b\245\31\0Y3\210\204f\263\315\357vv\314\251"
#"\276\222H$\22\211\213\35K\203'\214\3415J\3\r\316j|\266\237S\245\306"
#"\17\300\241\247\272\352k\32\224UP\25"
#"P\354\353\314\337\242\333b\4^\323\350"
#"\205\360'\353\310\234j\343\375Ad\246"
#"\30\177\"\221H$\22;@A\206\266\204\261\355\30\300Bc\311\325\2Z\rP"
#"\r\f\260\f]\370\323\250n\250h\360"
#"&\314p\257\f8\25\232\370\347\200\362\204n@\3\215\245M\35P\31UVS"
#"\2\215\216K\370\346wdo\22\374\211D\"\221\230O\234!w\220Y\240q\340"
#"\35\3\3\266i\310\274\3024a(\17"
#"\245\205\6\362\274\240\301\260\206\5\23l"
#"vm*p\253(\a\306\201\367\31\36\27\206\377\0h\3038/\31\e\250\262f"
#"\222\325\357\213s\237\327.'\t\376D"
#"\"\221H\314'z\265\215\303\203\317<"
#"\250\21\177?\\\203<g\260V\260\277\202\2061~a\25?l\320\254\261H\303"
#"\"\213\270F\242\364E\350\301\257\232\20"
#"\327w\16eC\242\337\32\200r\354\e"
#"\327\34\264\240\355\22#Z\301Y\335\273Coz\353$\301\237H$\22\2119%"
#"D\336\275\5\305\0\317\22\212!\265]\241X\250\310rPdLD]\327\230\27"
#"e\304Y\257\300k&\211\0\6Tx\225r\200\312Y\315\17\321\0\v~\215K"
#"\b\371\177\24\207\266\351=\316\36\345\275"
#"\367\347\337,\221H$\22\211\335\306*\270\245 \264M\t<B\343\ad\376R"
#"\232\272\25\356Y\215\302\19\36OH"
#"\367\313\301\301\252\206%\32p%0\300"
#"\353,\304\371\275\3\245\361\n\224[\5\267\2z\310\212>\310Y\340\0200lF"
#"\220-\354\334[\337\2I\360'\22\211Db>\361U(\266w\n\224"
#"\303+\213B\23\n\374Cw\276\351\355'\17\224RT@A\3236\3"
) 500
(
#"\310\361*X\376\312\3\324\301\344W\32\217\"x\v\364\244_P\333\30h\36I"
#"\202?\221H$\22s\212\303\331\nm\0240\0\17u\r\350\21y\226\3411("
#"\257\361>t\364\5\b\22\317\243T\210"
#"\360{\f\240\333\204\275x\3375\270\6"
#"\247\r\215*P@\336\254\205\370\200^"
#"dM\301\342v\275\315\31\223\352\370\23"
#"\211D\"1\247\350V\350;\232\246!\323\31y\6\350\34\250Q(\274\327(E"
#"\333\317\237\360X~\241\6\f\266\375\315"
#"\310n\25@\16\306\240\333\347=\36\262"
#"\34|\310\370\357v1\207\244\344\276D"
#"\"\221H\314%\276\355\321\357\361d\31"
#"\240\240i\0002\234\a\217k\5\275\320\3205\336qq3\236u;\305\2\225\v"
#"\"R\3311\31\26G\206\365\3\324\34[\373\220\4\177\"\221H$\346\25\r\236"
#"\f\327\332\344\250`\224\343A\253\5\202"
#"\211\0376\365\222\264GE\250\377\3\311"
#"\360\317h\255}E\e\323\17\177n\345"
#">Z9\360\26\217\302\352\320\336\0377"
#"\277cy\223\340O$\22\211\304\\\243\311\3618BB^\373\244\207\320h7X"
#"\360J!Y{\310T\37K\26\376\356K\300a\1\333\276^!\261p\335\226\a"
#"L\304\245\16\343\371.\354\233\272\200\244"
#"\30\177\"\221H$\346\34\315\306v\254fZ@Oo\327\305\352}\310\325\367J"
#"w[\e\371\23\240TN(\3\24\\;\272o>\231\3373O$\22\211D\242"
#"\303L\36J2\37\204\346<S\333\264&\275L\337Sm\371\237\322Q\321\336\364"
#"n<\32\325f\376O\22\0\243\343\315\31\251\234/\221H$\22sI_xM"
#"\22\365Z\273=\26\372\353\262\370\3328"
#"\277\232L\357S\355\363\276\347=\350^"
#"\352i\333\371\t\363\31-\237\317\263N$\22\211D\2\240m\251\263\276"
#"\16\337\365\204\364FX<L&\361\371\320\314G\341\272F=S\373U\260"
) 214
(
#"\27\304\346\374\277\203D\"\221H\\\304"
#"ld\325\367D\333\224\265\357\242m&"
#"\356z-\333E\333N\305\364=\235\222"
#"\340\327\345\16\314\27)\306\237H$\22\211\271Fu\366y\e\241o]\370\335s"
#"]\263\235\206\320\212g\262M\310\336\217"
#"\225\201@\247\22D^\4\307\372\360\302<\222,\376D\"\221H\354\1:\207}"
#"\233\221\327\2127\25=\207G\206\361B"
#"\333\312\307\3\276&\270\3755V\304\242o&\373\213\274\0]\257\3769V\1R"
#"r_\"\221H$\22\27\21\311\342O$\22\211D\342\"\"\t\376D\"\221H"
#"$.\"\222\340O$\22\211D\342\"\"\t\376D\"\221H$.\"\222\340O"
#"$\22\211D\342\"\342\377\a\226nM\263k\266K\r\0\0\0\0IEND\256B`\202"
) 0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 2 #"P0"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 2 #") "
0 0 17 3 48 #";give 2 points of the line, P0 is higher that P1"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 7 #"pol-phi"
0 0 24 3 2 #" ("
0 0 14 3 3 #"p-p"
0 0 24 3 1 #" "
0 0 14 3 2 #"P0"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 31 #";TESTES (keep the points order)"
0 0 24 29 1 #"\n"
0 0 17 3 13 #";1st quadrant"
0 0 24 29 1 #"\n"
0 0 17 3 34 #";(pol-phi (p-p (xy 1 1) (xy 0 0)))"
0 0 24 29 1 #"\n"
0 0 17 3 13 #";2nd quadrant"
0 0 24 29 1 #"\n"
0 0 17 3 35 #";(pol-phi (p-p (xy -1 1) (xy 0 0)))"
0 0 24 29 1 #"\n"
0 0 17 3 13 #";3rd quadrant"
0 0 24 29 1 #"\n"
0 0 17 3 36 #";(pol-phi (p-p (xy -1 -1) (xy 0 0)))"
0 0 24 29 1 #"\n"
0 0 17 3 13 #";4th quadrant"
0 0 24 29 1 #"\n"
0 0 17 3 35 #";(pol-phi (p-p (xy 1 -1) (xy 0 0)))"
0 0 24 29 1 #"\n"
0 0 17 3 9 #";vertical"
0 0 24 29 1 #"\n"
0 0 17 3 34 #";(pol-phi (p-p (xy 1 1) (xy 0 0)))"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";horizontal"
0 0 24 29 1 #"\n"
0 0 17 3 25 #";(pol-phi (p-p (xy 4 0)))"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";coincident"
0 0 24 29 1 #"\n"
0 0 17 3 34 #";(pol-phi (p-p (xy 1 1) (xy 1 1)))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 48 #";NEW LINE, ARC, JOIN-CURVES (THAT ACCEPT POINTS)"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"p0"
0 0 24 3 1 #" "
0 0 14 3 2 #"p1"
0 0 24 3 3 #") ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 3 #"=c?"
0 0 24 3 1 #" "
0 0 14 3 2 #"p0"
0 0 24 3 1 #" "
0 0 14 3 2 #"p1"
0 0 24 3 3 #") ("
0 0 14 3 5 #"point"
0 0 24 3 1 #" "
0 0 14 3 2 #"p0"
0 0 24 3 3 #") ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 2 #"p0"
0 0 24 3 1 #" "
0 0 14 3 2 #"p1"
0 0 24 3 8 #"))) "
0 0 17 3 41 #";line between 2 coincident points > point"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 7 #"arc-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"p0"
0 0 24 3 1 #" "
0 0 14 3 1 #"r"
0 0 24 3 1 #" "
0 0 14 3 3 #"\316\224i"
0 0 24 3 1 #" "
0 0 14 3 3 #"\316\224f"
0 0 24 3 3 #") ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 1 #"="
0 0 24 3 1 #" "
0 0 14 3 1 #"r"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 3 #") ("
0 0 14 3 5 #"point"
0 0 24 3 1 #" "
0 0 14 3 2 #"p0"
0 0 24 3 3 #") ("
0 0 14 3 3 #"arc"
0 0 24 3 1 #" "
0 0 14 3 2 #"p0"
0 0 24 3 1 #" "
0 0 14 3 1 #"r"
0 0 24 3 1 #" "
0 0 14 3 3 #"\316\224i"
0 0 24 3 1 #" "
0 0 14 3 3 #"\316\224f"
0 0 24 3 4 #"))) "
0 0 17 3 27 #"; arc with radius=0 > point"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 15 #"join-curves-new"
0 0 24 3 1 #" "
0 0 14 3 6 #"shapes"
0 0 24 3 2 #") "
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"begin0"
0 0 24 3 1 #" "
0 0 17 3 62
#";the result is the 1st line (the begin result is the last one)"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 11 #"join-curves"
0 0 24 3 2 #" ("
0 0 14 3 6 #"filter"
0 0 24 3 2 #" ("
0 0 15 3 6 #"lambda"
0 0 24 3 2 #" ("
0 0 14 3 1 #"s"
0 0 24 3 3 #") ("
0 0 14 3 3 #"not"
0 0 24 3 2 #" ("
0 0 14 3 6 #"point?"
0 0 24 3 1 #" "
0 0 14 3 1 #"s"
0 0 24 3 4 #"))) "
0 0 14 3 6 #"shapes"
0 0 24 3 5 #")) "
0 0 17 3 32 #";join-curves don't accept points"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 13 #"delete-shapes"
0 0 24 3 2 #" ("
0 0 14 3 6 #"filter"
0 0 24 3 1 #" "
0 0 14 3 6 #"point?"
0 0 24 3 1 #" "
0 0 14 3 6 #"shapes"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 95
(
#";-------------------------------------------------------------------"
#"---------------------------"
) 0 0 24 29 1 #"\n"
0 0 17 3 29 #";------GLOBAL VARIABLES------"
0 0 24 29 1 #"\n"
0 0 17 3 95
(
#";-------------------------------------------------------------------"
#"---------------------------"
) 0 0 24 29 1 #"\n"
0 0 17 3 2 #"#;"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 13 #"define-syntax"
0 0 24 3 2 #" ("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"stx"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 11 #"syntax-case"
0 0 24 3 1 #" "
0 0 14 3 3 #"stx"
0 0 24 3 3 #" ()"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" [("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"in-name"
0 0 24 3 1 #" "
0 0 14 3 8 #"out-name"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 15 3 11 #"with-syntax"
0 0 24 3 4 #" ([("
0 0 14 3 5 #"param"
0 0 24 3 3 #") ("
0 0 14 3 20 #"generate-temporaries"
0 0 24 3 1 #" "
0 0 21 3 2 #"#'"
0 0 24 3 1 #"("
0 0 14 3 7 #"in-name"
0 0 24 3 4 #"))])"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 15 3 10 #"syntax/loc"
0 0 24 3 1 #" "
0 0 14 3 3 #"stx"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 15 3 5 #"begin"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 5 #"param"
0 0 24 3 2 #" ("
0 0 14 3 14 #"make-parameter"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 15 3 13 #"define-syntax"
0 0 24 3 1 #" "
0 0 14 3 7 #"in-name"
0 0 24 29 1 #"\n"
0 0 24 3 14 #" ("
0 0 15 3 15 #"syntax-id-rules"
0 0 24 3 3 #" ()"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" [("
0 0 14 3 4 #"set!"
0 0 24 3 1 #" "
0 0 14 3 7 #"in-name"
0 0 24 3 1 #" "
0 0 14 3 3 #"val"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" ("
0 0 14 3 5 #"param"
0 0 24 3 1 #" "
0 0 14 3 3 #"val"
0 0 24 3 2 #")]"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ["
0 0 14 3 7 #"in-name"
0 0 24 3 2 #" ("
0 0 14 3 5 #"param"
0 0 24 3 4 #")]))"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 15 3 13 #"define-syntax"
0 0 24 3 1 #" "
0 0 14 3 8 #"out-name"
0 0 24 29 1 #"\n"
0 0 24 3 14 #" ("
0 0 15 3 15 #"syntax-id-rules"
0 0 24 3 2 #" ("
0 0 14 3 4 #"set!"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" [("
0 0 14 3 4 #"set!"
0 0 24 3 1 #" "
0 0 14 3 7 #"outname"
0 0 24 3 1 #" "
0 0 14 3 3 #"val"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" ("
0 0 14 3 5 #"param"
0 0 24 3 1 #" "
0 0 14 3 3 #"val"
0 0 24 3 2 #")]"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ["
0 0 14 3 7 #"outname"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" ("
0 0 14 3 5 #"param"
0 0 24 3 4 #")]))"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 7 #"provide"
0 0 24 3 1 #" "
0 0 14 3 8 #"out-name"
0 0 24 3 7 #"))))]))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 35 #";;New definition, using hash-tables"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 15 3 24 #"default-chair-parameters"
0 0 24 3 2 #" ("
0 0 14 3 9 #"make-hash"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 24 #"current-chair-parameters"
0 0 24 3 2 #" ("
0 0 14 3 9 #"make-hash"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 12 #"my-hash-set!"
0 0 24 3 1 #" "
0 0 14 3 1 #"t"
0 0 24 3 1 #" "
0 0 14 3 1 #"k"
0 0 24 3 1 #" "
0 0 14 3 1 #"v"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 5 #"void?"
0 0 24 3 1 #" "
0 0 14 3 1 #"v"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"error"
0 0 24 3 2 #" ("
0 0 14 3 6 #"format"
0 0 24 3 1 #" "
0 0 19 3 44 #"\"Error in hash-set! Setting void for key ~A\""
0 0 24 3 1 #" "
0 0 14 3 1 #"k"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 9 #"hash-set!"
0 0 24 3 1 #" "
0 0 14 3 1 #"t"
0 0 24 3 1 #" "
0 0 14 3 1 #"k"
0 0 24 3 1 #" "
0 0 14 3 1 #"v"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 13 #"define-syntax"
0 0 24 3 2 #" ("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"stx"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 11 #"syntax-case"
0 0 24 3 1 #" "
0 0 14 3 3 #"stx"
0 0 24 3 3 #" ()"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" [("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"in-name"
0 0 24 3 1 #" "
0 0 14 3 8 #"out-name"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 15 3 11 #"with-syntax"
0 0 24 3 4 #" ([("
0 0 14 3 5 #"param"
0 0 24 3 3 #") ("
0 0 14 3 20 #"generate-temporaries"
0 0 24 3 1 #" "
0 0 21 3 2 #"#'"
0 0 24 3 1 #"("
0 0 14 3 7 #"in-name"
0 0 24 3 4 #"))])"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 15 3 10 #"syntax/loc"
0 0 24 3 1 #" "
0 0 14 3 3 #"stx"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 15 3 5 #"begin"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 12 #"my-hash-set!"
0 0 24 3 1 #" "
0 0 15 3 24 #"default-chair-parameters"
0 0 24 3 1 #" "
0 0 21 3 1 #"'"
0 0 14 3 8 #"out-name"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 12 #"my-hash-set!"
0 0 24 3 1 #" "
0 0 14 3 24 #"current-chair-parameters"
0 0 24 3 1 #" "
0 0 21 3 1 #"'"
0 0 14 3 8 #"out-name"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 15 3 13 #"define-syntax"
0 0 24 3 1 #" "
0 0 14 3 7 #"in-name"
0 0 24 29 1 #"\n"
0 0 24 3 14 #" ("
0 0 15 3 15 #"syntax-id-rules"
0 0 24 3 3 #" ()"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" [("
0 0 14 3 4 #"set!"
0 0 24 3 1 #" "
0 0 14 3 7 #"in-name"
0 0 24 3 1 #" "
0 0 14 3 3 #"val"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" ("
0 0 14 3 12 #"my-hash-set!"
0 0 24 3 1 #" "
0 0 14 3 24 #"current-chair-parameters"
0 0 24 3 1 #" "
0 0 21 3 1 #"'"
0 0 14 3 8 #"out-name"
0 0 24 3 1 #" "
0 0 14 3 3 #"val"
0 0 24 3 2 #")]"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ["
0 0 14 3 7 #"in-name"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" ("
0 0 14 3 8 #"hash-ref"
0 0 24 3 1 #" "
0 0 14 3 24 #"current-chair-parameters"
0 0 24 3 1 #" "
0 0 21 3 1 #"'"
0 0 14 3 8 #"out-name"
0 0 24 3 4 #")]))"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 15 3 13 #"define-syntax"
0 0 24 3 1 #" "
0 0 14 3 8 #"out-name"
0 0 24 29 1 #"\n"
0 0 24 3 14 #" ("
0 0 15 3 15 #"syntax-id-rules"
0 0 24 3 2 #" ("
0 0 14 3 4 #"set!"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" [("
0 0 14 3 4 #"set!"
0 0 24 3 1 #" "
0 0 14 3 7 #"outname"
0 0 24 3 1 #" "
0 0 14 3 3 #"val"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" ("
0 0 14 3 12 #"my-hash-set!"
0 0 24 3 1 #" "
0 0 14 3 24 #"current-chair-parameters"
0 0 24 3 1 #" "
0 0 21 3 1 #"'"
0 0 14 3 8 #"out-name"
0 0 24 3 1 #" "
0 0 14 3 3 #"val"
0 0 24 3 2 #")]"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ["
0 0 14 3 7 #"outname"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" ("
0 0 14 3 8 #"hash-ref"
0 0 24 3 1 #" "
0 0 14 3 24 #"current-chair-parameters"
0 0 24 3 1 #" "
0 0 21 3 1 #"'"
0 0 14 3 8 #"out-name"
0 0 24 3 4 #")]))"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 7 #"provide"
0 0 24 3 1 #" "
0 0 14 3 8 #"out-name"
0 0 24 3 7 #"))))]))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 9 #"var-value"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 8 #"hash-ref"
0 0 24 3 1 #" "
0 0 14 3 24 #"current-chair-parameters"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 20 #";;To read from Excel"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 7 #"require"
0 0 24 3 1 #" "
0 0 14 3 19 #"racket/runtime-path"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 7 #"require"
0 0 24 3 1 #" "
0 0 14 3 18 #"rosetta/util/excel"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 19 #"define-runtime-path"
0 0 24 3 1 #" "
0 0 14 3 4 #"base"
0 0 24 3 1 #" "
0 0 19 3 21 #"\"chair_templates.xlsx"
0 0 19 3 1 #"\""
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 22 #"read-values-from-excel"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 13 #"open-workbook"
0 0 24 3 1 #" "
0 0 14 3 4 #"base"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 3 #"let"
0 0 24 3 3 #" (("
0 0 14 3 4 #"data"
0 0 24 3 2 #" ("
0 0 14 3 16 #"get-range-values"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 8 #"A1:Z200\""
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 3 #"let"
0 0 24 3 3 #" (("
0 0 14 3 6 #"titles"
0 0 24 3 2 #" ("
0 0 14 3 10 #"vector-ref"
0 0 24 3 1 #" "
0 0 14 3 4 #"data"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 8 #"for/hash"
0 0 24 3 3 #" (["
0 0 14 3 9 #"chair-idx"
0 0 24 3 2 #" ("
0 0 14 3 11 #"in-naturals"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #")]"
0 0 24 29 1 #"\n"
0 0 24 3 18 #" ["
0 0 14 3 10 #"chair-name"
0 0 24 3 2 #" ("
0 0 14 3 9 #"in-vector"
0 0 24 3 1 #" "
0 0 14 3 6 #"titles"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #")]"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" "
0 0 23 3 8 #"#:unless"
0 0 24 3 2 #" ("
0 0 14 3 5 #"void?"
0 0 24 3 1 #" "
0 0 14 3 10 #"chair-name"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 6 #"values"
0 0 24 3 2 #" ("
0 0 14 3 14 #"string->symbol"
0 0 24 3 1 #" "
0 0 14 3 10 #"chair-name"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" ("
0 0 15 3 8 #"for/hash"
0 0 24 3 3 #" (["
0 0 14 3 3 #"row"
0 0 24 3 2 #" ("
0 0 14 3 9 #"in-vector"
0 0 24 3 1 #" "
0 0 14 3 4 #"data"
0 0 24 3 1 #" "
0 0 21 3 1 #"1"
0 0 24 3 2 #")]"
0 0 24 29 1 #"\n"
0 0 24 3 27 #" "
0 0 23 3 8 #"#:unless"
0 0 24 3 2 #" ("
0 0 14 3 5 #"void?"
0 0 24 3 2 #" ("
0 0 14 3 10 #"vector-ref"
0 0 24 3 1 #" "
0 0 14 3 3 #"row"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 19 #" ("
0 0 14 3 6 #"values"
0 0 24 3 2 #" ("
0 0 14 3 14 #"string->symbol"
0 0 24 3 2 #" ("
0 0 14 3 10 #"vector-ref"
0 0 24 3 1 #" "
0 0 14 3 3 #"row"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 27 #" ("
0 0 14 3 10 #"vector-ref"
0 0 24 3 1 #" "
0 0 14 3 3 #"row"
0 0 24 3 1 #" "
0 0 14 3 9 #"chair-idx"
0 0 24 3 8 #"))))))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"all-chairs"
0 0 24 3 2 #" ("
0 0 14 3 22 #"read-values-from-excel"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 23 #"reset-values-from-excel"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 4 #"set!"
0 0 24 3 1 #" "
0 0 14 3 10 #"all-chairs"
0 0 24 3 2 #" ("
0 0 14 3 22 #"read-values-from-excel"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 16 #"available-chairs"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 9 #"hash-keys"
0 0 24 3 1 #" "
0 0 14 3 10 #"all-chairs"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 12 #"select-chair"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 3 #"let"
0 0 24 3 3 #" (("
0 0 14 3 5 #"chair"
0 0 24 3 2 #" ("
0 0 14 3 8 #"hash-ref"
0 0 24 3 1 #" "
0 0 14 3 10 #"all-chairs"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 3 #"for"
0 0 24 3 4 #" ([("
0 0 14 3 4 #"name"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 3 #") ("
0 0 14 3 7 #"in-hash"
0 0 24 3 1 #" "
0 0 14 3 5 #"chair"
0 0 24 3 2 #")]"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" "
0 0 23 3 8 #"#:unless"
0 0 24 3 2 #" ("
0 0 14 3 5 #"void?"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 9 #"hash-set!"
0 0 24 3 1 #" "
0 0 14 3 24 #"current-chair-parameters"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 11 #"reset-chair"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 3 #"for"
0 0 24 3 4 #" ([("
0 0 14 3 4 #"name"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 3 #") ("
0 0 14 3 7 #"in-hash"
0 0 24 3 1 #" "
0 0 15 3 24 #"default-chair-parameters"
0 0 24 3 3 #")])"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 9 #"hash-set!"
0 0 24 3 1 #" "
0 0 14 3 24 #"current-chair-parameters"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #" "
0 0 14 3 5 #"value"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 13 #";---GUIDES---"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 1 #"g"
0 0 24 3 1 #" "
0 0 14 3 6 #"guides"
0 0 24 3 1 #" "
0 0 21 3 2 #"#t"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 5 #";mode"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"mw"
0 0 24 3 1 #" "
0 0 14 3 14 #"mode-wireframe"
0 0 24 3 1 #" "
0 0 21 3 2 #"#t"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"ms"
0 0 24 3 1 #" "
0 0 14 3 10 #"mode-solid"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 15 #";template-chair"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"tc-0"
0 0 24 3 1 #" "
0 0 14 3 19 #"template-chair-none"
0 0 24 3 1 #" "
0 0 21 3 2 #"#t"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"tc-t14"
0 0 24 3 1 #" "
0 0 14 3 23 #"template-chair-thonet14"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"tc-15"
0 0 24 3 1 #" "
0 0 14 3 23 #"template-chair-thonet15"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"tc-18"
0 0 24 3 1 #" "
0 0 14 3 23 #"template-chair-thonet18"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"tc-r"
0 0 24 3 1 #" "
0 0 14 3 21 #"template-chair-random"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";---LEGS---"
0 0 24 29 1 #"\n"
0 0 17 3 10 #";leg-front"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 3 1 #" "
0 0 14 3 9 #"leg-front"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 104
(
#";[yes/no] [s: sf, ss(+), ss-d(+), sl(+), sr(+), lsf, lss(+), lsr(+),"
#" lbf, lbs(+), lbs-d(+), lbr(+), asf]"
) 0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-\316\224w"
0 0 24 3 1 #" "
0 0 14 3 17 #"leg-front-\316\224width"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 76
(
#";[-100 100 mm] distance from the front corner of the seat, in the se"
#"at plane"
) 0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-\316\224d"
0 0 24 3 1 #" "
0 0 14 3 17 #"leg-front-\316\224depth"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 14 #";[-100 100 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-\316\261s"
0 0 24 3 1 #" "
0 0 14 3 21 #"leg-front-angle-splay"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 37 #";[-45 45 \302\272] between leg and vertical"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-\316\261r"
0 0 24 3 1 #" "
0 0 14 3 20 #"leg-front-angle-rake"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 12 #";[-45 45 \302\272]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lf-sr"
0 0 24 3 1 #" "
0 0 14 3 16 #"leg-front-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-srd"
0 0 24 3 1 #" "
0 0 14 3 25 #"leg-front-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 260 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lf-ss"
0 0 24 3 1 #" "
0 0 14 3 17 #"leg-front-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-ssw"
0 0 24 3 1 #" "
0 0 14 3 23 #"leg-front-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 260 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-ssd"
0 0 24 3 1 #" "
0 0 14 3 23 #"leg-front-ssquare-depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 260 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-\316\261t"
0 0 24 3 1 #" "
0 0 14 3 21 #"leg-front-angle-taper"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 24 29 1 #"\n"
0 0 17 3 11 #";leg-back "
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 1 #" "
0 0 14 3 8 #"leg-back"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 108
(
#";[yes/no] [s: sb, ss(+), ss-d(+), sl(+), sr(+), bu, lsb, lss(+), lsr"
#"(+), lbb, lbs(+), lbs-d(+), lbr(+), asb]"
) 0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-\316\224w"
0 0 24 3 1 #" "
0 0 14 3 16 #"leg-back-\316\224width"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 14 #";[-100 100 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-\316\224d"
0 0 24 3 1 #" "
0 0 14 3 16 #"leg-back-\316\224depth"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 14 #";[-100 100 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-\316\261s"
0 0 24 3 1 #" "
0 0 14 3 20 #"leg-back-angle-splay"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 12 #";[-45 45 \302\272]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-\316\261r"
0 0 24 3 1 #" "
0 0 14 3 19 #"leg-back-angle-rake"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 12 #";[-45 45 \302\272]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lb-sr"
0 0 24 3 1 #" "
0 0 14 3 15 #"leg-back-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-srd"
0 0 24 3 1 #" "
0 0 14 3 24 #"leg-back-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 260 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lb-ss"
0 0 24 3 1 #" "
0 0 14 3 16 #"leg-back-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-ssw"
0 0 24 3 1 #" "
0 0 14 3 22 #"leg-back-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 260 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-ssd"
0 0 24 3 1 #" "
0 0 14 3 22 #"leg-back-ssquare-depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 260 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-\316\261t"
0 0 24 3 1 #" "
0 0 14 3 20 #"leg-back-angle-taper"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 24 29 1 #"\n"
0 0 17 3 11 #";leg-centre"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"lc"
0 0 24 3 1 #" "
0 0 14 3 10 #"leg-centre"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 41 #";[yes/no] [s: sr(+), sr-n, lbr(+), lbr-n]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lc-sr"
0 0 24 3 1 #" "
0 0 14 3 17 #"leg-centre-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lc-srd"
0 0 24 3 1 #" "
0 0 14 3 26 #"leg-centre-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 0 17 3 11 #";[1 260 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lc-ss"
0 0 24 3 1 #" "
0 0 14 3 18 #"leg-centre-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lc-ssw"
0 0 24 3 1 #" "
0 0 14 3 24 #"leg-centre-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 260 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lc-ssd"
0 0 24 3 1 #" "
0 0 14 3 24 #"leg-centre-ssquare-depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 260 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lc-\316\261t"
0 0 24 3 1 #" "
0 0 14 3 22 #"leg-centre-angle-taper"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 24 29 1 #"\n"
0 0 17 3 11 #";---SEAT---"
0 0 24 29 1 #"\n"
0 0 17 3 10 #";seat-area"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"sa"
0 0 24 3 1 #" "
0 0 14 3 9 #"seat-area"
0 0 24 3 1 #" "
0 0 21 3 2 #"#t"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 14 3 15 #"seat-area-width"
0 0 24 3 1 #" "
0 0 21 3 3 #"483"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 14 #";[457 508 mm] "
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 14 3 15 #"seat-area-depth"
0 0 24 3 1 #" "
0 0 21 3 3 #"427"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 13 #";[397 457 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-h"
0 0 24 3 1 #" "
0 0 14 3 16 #"seat-area-height"
0 0 24 3 1 #" "
0 0 21 3 3 #"419"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 13 #";[406 432 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"sa-\316\261r"
0 0 24 3 1 #" "
0 0 14 3 20 #"seat-area-angle-rake"
0 0 24 3 2 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[0 5 \302\272]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"sa-rf"
0 0 24 3 1 #" "
0 0 14 3 22 #"seat-area-radius-front"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 24 #";[0 100 %] of max radius"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"sa-rr"
0 0 24 3 1 #" "
0 0 14 3 21 #"seat-area-radius-rear"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 24 #";[0 100 %] of max radius"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"sa-\316\224wt"
0 0 24 3 1 #" "
0 0 14 3 23 #"seat-area-\316\224width-taper"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 38 #";[0 100%] of the rear edge of the seat"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";seat-panel"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"sp"
0 0 24 3 1 #" "
0 0 14 3 10 #"seat-panel"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"sp-t"
0 0 24 3 1 #" "
0 0 14 3 20 #"seat-panel-thickness"
0 0 24 3 1 #" "
0 0 21 3 2 #"10"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 100 mm]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 13 #";-SEAT-OUTER-"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";seat-front"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"sf"
0 0 24 3 1 #" "
0 0 14 3 10 #"seat-front"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 58
#";[yes/no] [p: lf, s: sl(+), sl-\316\224wf, so-sr (+), so-ss (+)]"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 24 29 1 #"\n"
0 0 17 3 10 #";seat-back"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"sb"
0 0 24 3 1 #" "
0 0 14 3 9 #"seat-back"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 65
(
#";[yes/no] [p: lb, s: sl(+), sl-\316\224wr, bs(+), so-sr (+), so-ss ("
#"+)]"
) 0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 24 29 1 #"\n"
0 0 17 3 10 #";seat-side"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"ss"
0 0 24 3 1 #" "
0 0 14 3 9 #"seat-side"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 39 #";[yes/no] [p: lf or lb, s: sc, bu, ass]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"ss-d"
0 0 24 3 1 #" "
0 0 14 3 15 #"seat-side-depth"
0 0 24 3 1 #" "
0 0 21 3 3 #"427"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 39 #";[397 457 mm] [p: (not lf) or (not lb)]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 8 #";section"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"so-sr"
0 0 24 3 1 #" "
0 0 14 3 17 #"seat-outer-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 29 #";[yes/no] [p: sf or sb or ss]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"so-srd"
0 0 24 3 1 #" "
0 0 14 3 26 #"seat-outer-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"so-ss"
0 0 24 3 1 #" "
0 0 14 3 18 #"seat-outer-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 29 #";[yes/no] [p: sf or sb or ss]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"so-ssh"
0 0 24 3 1 #" "
0 0 14 3 25 #"seat-outer-ssquare-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"so-ssw"
0 0 24 3 1 #" "
0 0 14 3 24 #"seat-outer-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 13 #";-SEAT-INNER-"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";seat-cross"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"sc"
0 0 24 3 1 #" "
0 0 14 3 10 #"seat-cross"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 42 #";[yes/no] [p: ss, s: si-sr (+), si-ss (+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"sc-\316\224d"
0 0 24 3 1 #" "
0 0 14 3 18 #"seat-cross-\316\224depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 18 #";[y 0 100 %] of ss"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 10 #";seat-long"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"sl"
0 0 24 3 1 #" "
0 0 14 3 9 #"seat-long"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 63
#";[yes/no] [p: lb+sf or lf+sb or sf+sb, s: si-sr (+), si-ss (+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"sl-\316\224wf"
0 0 24 3 1 #" "
0 0 14 3 23 #"seat-long-\316\224width-front"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 26 #";[x 0 100 %] of sf [p: sf]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"sl-\316\224wr"
0 0 24 3 1 #" "
0 0 14 3 22 #"seat-long-\316\224width-rear"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 26 #";[x 0 100 %] of sb [p: sb]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 12 #";seat-radial"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"sr"
0 0 24 3 1 #" "
0 0 14 3 11 #"seat-radial"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 51 #";[yes/no] [p: lf+lb or lc, s: si-sr (+), si-ss (+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"sr-n"
0 0 24 3 1 #" "
0 0 14 3 18 #"seat-radial-number"
0 0 24 3 1 #" "
0 0 21 3 1 #"4"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 14 #";[3 5] [p: lc]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 8 #";section"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"si-sr"
0 0 24 3 1 #" "
0 0 14 3 17 #"seat-inner-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 29 #";[yes/no] [p: sc or sl or sr]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"si-srd"
0 0 24 3 1 #" "
0 0 14 3 26 #"seat-inner-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"si-ss"
0 0 24 3 1 #" "
0 0 14 3 18 #"seat-inner-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 29 #";[yes/no] [p: sc or sl or sr]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"si-ssh"
0 0 24 3 1 #" "
0 0 14 3 25 #"seat-inner-ssquare-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"si-ssw"
0 0 24 3 1 #" "
0 0 14 3 24 #"seat-inner-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";---BACK---"
0 0 24 29 1 #"\n"
0 0 17 3 10 #";back-area"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"ba"
0 0 24 3 1 #" "
0 0 14 3 9 #"back-area"
0 0 24 3 1 #" "
0 0 21 3 2 #"#t"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"ba-h"
0 0 24 3 1 #" "
0 0 14 3 16 #"back-area-height"
0 0 24 3 1 #" "
0 0 21 3 3 #"521"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 13 #";[432 610 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"ba-\316\224h"
0 0 24 3 1 #" "
0 0 14 3 18 #"back-area-\316\224height"
0 0 24 3 1 #" "
0 0 21 3 2 #"76"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[0 152 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"ba-\316\261r"
0 0 24 3 1 #" "
0 0 14 3 20 #"back-area-angle-rake"
0 0 24 3 1 #" "
0 0 21 3 2 #"90"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 12 #";[90 105 \302\272]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"ba-rt"
0 0 24 3 1 #" "
0 0 14 3 20 #"back-area-radius-top"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"ba-rb"
0 0 24 3 1 #" "
0 0 14 3 23 #"back-area-radius-bottom"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";back-panel"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"bp"
0 0 24 3 1 #" "
0 0 14 3 10 #"back-panel"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"bp-t"
0 0 24 3 1 #" "
0 0 14 3 20 #"back-panel-thickness"
0 0 24 3 1 #" "
0 0 21 3 2 #"10"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 100 mm]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 12 #";-BACK-OUTER"
0 0 24 29 1 #"\n"
0 0 17 3 13 #";back-upright"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"bu"
0 0 24 3 1 #" "
0 0 14 3 12 #"back-upright"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 64
#";[yes/no] [p: lb or ss or sl or ar, s: bt, bc, br, bo-ss, bo-sr]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"bu-h"
0 0 24 3 1 #" "
0 0 14 3 19 #"back-upright-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 25 #";[0 100 %] of back height"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"bu-\316\261s"
0 0 24 3 1 #" "
0 0 14 3 24 #"back-upright-angle-splay"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 12 #";[-45 45 \302\272]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 9 #";back-top"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"bt"
0 0 24 3 1 #" "
0 0 14 3 8 #"back-top"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 27 #";[yes/no] [p: bu, s: bs(+)]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 8 #";section"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"bo-sr"
0 0 24 3 1 #" "
0 0 14 3 17 #"back-outer-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 17 #";[yes/no] [p: bu]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"bo-srd"
0 0 24 3 1 #" "
0 0 14 3 26 #"back-outer-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"bo-ss"
0 0 24 3 1 #" "
0 0 14 3 18 #"back-outer-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 17 #";[yes/no] [p: bu]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"bo-ssd"
0 0 24 3 1 #" "
0 0 14 3 24 #"back-outer-ssquare-depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"bo-ssw"
0 0 24 3 1 #" "
0 0 14 3 24 #"back-outer-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 13 #";-BACK-INNER-"
0 0 24 29 1 #"\n"
0 0 17 3 15 #";back-cross-top"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"bct"
0 0 24 3 1 #" "
0 0 14 3 14 #"back-cross-top"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 47 #";[yes/no] [p: bu, s: bs(+), bi-sr(+), bi-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"bct-h"
0 0 24 3 1 #" "
0 0 14 3 21 #"back-cross-top-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"75"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 28 #";[0 100%] of upper mid of bu"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 18 #";back-cross-bottom"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"bcb"
0 0 24 3 1 #" "
0 0 14 3 17 #"back-cross-bottom"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 47 #";[yes/no] [p: bu, s: bs(+), bi-sr(+), bi-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"bcb-h"
0 0 24 3 1 #" "
0 0 14 3 24 #"back-cross-bottom-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"25"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 28 #";[0 100%] of lower mid of bu"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 15 #";back-cross-arm"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"bca"
0 0 24 3 1 #" "
0 0 14 3 14 #"back-cross-arm"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 27 #";[yes/no] [p: ar, s: bs(+)]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";back-splat"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"bs"
0 0 24 3 1 #" "
0 0 14 3 10 #"back-splat"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 53 #";[yes/no] [p: bt+sb or bt+bct, s: bi-sr(+), bi-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"bs-\316\224wt"
0 0 24 3 1 #" "
0 0 14 3 22 #"back-splat-\316\224width-top"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 15 #";[0 100%] of bt"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"bs-\316\224wb"
0 0 24 3 1 #" "
0 0 14 3 25 #"back-splat-\316\224width-bottom"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 22 #";[0 100%] of sb or bct"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 12 #";back-radial"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"br"
0 0 24 3 1 #" "
0 0 14 3 11 #"back-radial"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 37 #";[yes/no] [p: bu, bi-sr(+), bi-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 8 #";section"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"bi-sr"
0 0 24 3 1 #" "
0 0 14 3 17 #"back-inner-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 37 #";[yes/no] [p: bct or bcb or bc or br]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"bi-srd"
0 0 24 3 1 #" "
0 0 14 3 26 #"back-inner-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"bi-ss"
0 0 24 3 1 #" "
0 0 14 3 18 #"back-inner-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 37 #";[yes/no] [p: bct or bcb or bc or br]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"bi-ssd"
0 0 24 3 1 #" "
0 0 14 3 24 #"back-inner-ssquare-depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"bi-ssw"
0 0 24 3 1 #" "
0 0 14 3 24 #"back-inner-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 20 #";---LEG-STRETCHER---"
0 0 24 29 1 #"\n"
0 0 17 3 19 #";leg-stretcher-area"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lsa"
0 0 24 3 1 #" "
0 0 14 3 18 #"leg-stretcher-area"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsa-h"
0 0 24 3 1 #" "
0 0 14 3 25 #"leg-stretcher-area-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 15 #";[1 99 %] of lf"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lsa-\316\261r"
0 0 24 3 1 #" "
0 0 14 3 29 #"leg-stretcher-area-angle-rake"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 28 #";[-100 100 %] of seat-height"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lsa-rf"
0 0 24 3 1 #" "
0 0 14 3 31 #"leg-stretcher-area-radius-front"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lsa-rr"
0 0 24 3 1 #" "
0 0 14 3 30 #"leg-stretcher-area-radius-rear"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 20 #";LEG-STRETCHER-OUTER"
0 0 24 29 1 #"\n"
0 0 17 3 21 #";leg-stretchers-front"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lsf"
0 0 24 3 1 #" "
0 0 14 3 19 #"leg-stretcher-front"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 42 #";[yes/no] [p: lf, s: lso-sr(+), lso-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsf-h"
0 0 24 3 1 #" "
0 0 14 3 26 #"leg-stretcher-front-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 15 #";[1 99 %] of lf"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 24 29 1 #"\n"
0 0 17 3 19 #";leg-stretcher-back"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lsb"
0 0 24 3 1 #" "
0 0 14 3 18 #"leg-stretcher-back"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 42 #";[yes/no] [p: lb, s: lso-sr(+), lso-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsb-h"
0 0 24 3 1 #" "
0 0 14 3 25 #"leg-stretcher-back-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 17 #";[z 1 99 %] of lb"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 24 29 1 #"\n"
0 0 17 3 19 #";leg-stretcher-side"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lss"
0 0 24 3 1 #" "
0 0 14 3 18 #"leg-stretcher-side"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 50 #";[yes/no] [p: lf+lb, s: lsc, lso-sr(+), lso-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lss-h"
0 0 24 3 1 #" "
0 0 14 3 25 #"leg-stretcher-side-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 17 #";[z 1 99 %] of lf"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 8 #";section"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lso-sr"
0 0 24 3 1 #" "
0 0 14 3 26 #"leg-stretcher-outer-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 13 #") "
0 0 17 3 28 #";[yes/no] [p: lsf, lsb, lss]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lso-srd"
0 0 24 3 1 #" "
0 0 14 3 35 #"leg-stretcher-outer-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 3 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lso-ss"
0 0 24 3 1 #" "
0 0 14 3 27 #"leg-stretcher-outer-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 12 #") "
0 0 17 3 28 #";[yes/no] [p: lsf, lsb, lss]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lso-ssh"
0 0 24 3 1 #" "
0 0 14 3 34 #"leg-stretcher-outer-ssquare-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 4 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lso-ssw"
0 0 24 3 1 #" "
0 0 14 3 33 #"leg-stretcher-outer-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 5 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 20 #";LEG-STRETCHER-INNER"
0 0 24 29 1 #"\n"
0 0 17 3 20 #";leg-stretcher-cross"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lsc"
0 0 24 3 1 #" "
0 0 14 3 19 #"leg-stretcher-cross"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 43 #";[yes/no] [p: lss, s: lsi-sr(+), lsi-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lsc-\316\224d"
0 0 24 3 1 #" "
0 0 14 3 27 #"leg-stretcher-cross-\316\224depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 19 #";[y 0 100 %] of lss"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 21 #";leg-stretcher-radial"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lsr"
0 0 24 3 1 #" "
0 0 14 3 20 #"leg-stretcher-radial"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 45 #";[yes/no] [p: lf+lb, s: lsi-sr(+), lsi-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsr-h"
0 0 24 3 1 #" "
0 0 14 3 27 #"leg-stretcher-radial-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 15 #";[1 99 %] of lf"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 8 #";section"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lsi-sr"
0 0 24 3 1 #" "
0 0 14 3 26 #"leg-stretcher-inner-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 13 #") "
0 0 17 3 25 #";[yes/no] [p: lsc or lsr]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lsi-srd"
0 0 24 3 1 #" "
0 0 14 3 35 #"leg-stretcher-inner-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 3 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lsi-ss"
0 0 24 3 1 #" "
0 0 14 3 27 #"leg-stretcher-inner-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 12 #") "
0 0 17 3 25 #";[yes/no] [p: lsc or lsr]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lsi-ssh"
0 0 24 3 1 #" "
0 0 14 3 34 #"leg-stretcher-inner-ssquare-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 4 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lsi-ssw"
0 0 24 3 1 #" "
0 0 14 3 33 #"leg-stretcher-inner-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 5 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 15 #";---LEG-BASE---"
0 0 24 29 1 #"\n"
0 0 17 3 14 #";leg-base-area"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lba"
0 0 24 3 1 #" "
0 0 14 3 13 #"leg-base-area"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lba-w"
0 0 24 3 1 #" "
0 0 14 3 19 #"leg-base-area-width"
0 0 24 3 1 #" "
0 0 21 3 3 #"483"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 14 #";[457 508 mm] "
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lba-d"
0 0 24 3 1 #" "
0 0 14 3 19 #"leg-base-area-depth"
0 0 24 3 1 #" "
0 0 21 3 3 #"427"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 13 #";[397 457 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lba-rf"
0 0 24 3 1 #" "
0 0 14 3 26 #"leg-base-area-radius-front"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lba-rr"
0 0 24 3 1 #" "
0 0 14 3 25 #"leg-base-area-radius-rear"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 15 #";leg-base-panel"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lbp"
0 0 24 3 1 #" "
0 0 14 3 14 #"leg-base-panel"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lbp-t"
0 0 24 3 1 #" "
0 0 14 3 24 #"leg-base-panel-thickness"
0 0 24 3 1 #" "
0 0 21 3 2 #"10"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 11 #";[1 100 mm]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 15 #";LEG-BASE-OUTER"
0 0 24 29 1 #"\n"
0 0 17 3 15 #";leg-base-front"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lbf"
0 0 24 3 1 #" "
0 0 14 3 14 #"leg-base-front"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 42 #";[yes/no] [p: lf, s: lbo-sr(+), lbo-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 24 29 1 #"\n"
0 0 17 3 14 #";leg-base-back"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lbb"
0 0 24 3 1 #" "
0 0 14 3 13 #"leg-base-back"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 42 #";[yes/no] [p: lb, s: lbo-sr(+), lbo-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 24 29 1 #"\n"
0 0 17 3 14 #";leg-base-side"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lbs"
0 0 24 3 1 #" "
0 0 14 3 13 #"leg-base-side"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 53 #";[yes/no] [p: lf or lb, s: lbc, lbo-sr(+), lbo-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lbs-d"
0 0 24 3 1 #" "
0 0 14 3 19 #"leg-base-side-depth"
0 0 24 3 1 #" "
0 0 21 3 3 #"427"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 37 #";[1 500 mm] [p: (not lf) or (not lb)]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 8 #";section"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lbo-sr"
0 0 24 3 1 #" "
0 0 14 3 21 #"leg-base-outer-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 32 #";[yes/no] [p: lbf or lbb or lbs]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lbo-srd"
0 0 24 3 1 #" "
0 0 14 3 30 #"leg-base-outer-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 8 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lbo-ss"
0 0 24 3 1 #" "
0 0 14 3 22 #"leg-base-outer-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 32 #";[yes/no] [p: lbf or lbb or lbs]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lbo-ssh"
0 0 24 3 1 #" "
0 0 14 3 29 #"leg-base-outer-ssquare-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 9 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lbo-ssw"
0 0 24 3 1 #" "
0 0 14 3 28 #"leg-base-outer-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 10 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 15 #";LEG-BASE-INNER"
0 0 24 29 1 #"\n"
0 0 17 3 15 #";leg-base-cross"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lbc"
0 0 24 3 1 #" "
0 0 14 3 14 #"leg-base-cross"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 43 #";[yes/no] [p: lbs, s: lbi-sr(+), lbi-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lbc-\316\224d"
0 0 24 3 1 #" "
0 0 14 3 22 #"leg-base-cross-\316\224depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 17 #";[0 100 %] of lbs"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 16 #";leg-base-radial"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"lbr"
0 0 24 3 1 #" "
0 0 14 3 15 #"leg-base-radial"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 51 #";[yes/no] [p: lf+lb or lc, s: lbi-sr(+), lbi-ss(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"lbr-n"
0 0 24 3 1 #" "
0 0 14 3 22 #"leg-base-radial-number"
0 0 24 3 1 #" "
0 0 21 3 1 #"4"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 16 #";[3 5] [p: lc] "
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 8 #";section"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lbi-sr"
0 0 24 3 1 #" "
0 0 14 3 21 #"leg-base-inner-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 25 #";[yes/no] [p: lbc or lbr]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lbi-srd"
0 0 24 3 1 #" "
0 0 14 3 30 #"leg-base-inner-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 8 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"lbi-ss"
0 0 24 3 1 #" "
0 0 14 3 22 #"leg-base-inner-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 25 #";[yes/no] [p: lbc or lbr]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lbi-ssh"
0 0 24 3 1 #" "
0 0 14 3 29 #"leg-base-inner-ssquare-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 9 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"lbi-ssw"
0 0 24 3 1 #" "
0 0 14 3 28 #"leg-base-inner-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 10 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 11 #";---ARMS---"
0 0 24 29 1 #"\n"
0 0 17 3 9 #";arm-area"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"aa"
0 0 24 3 1 #" "
0 0 14 3 8 #"arm-area"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"aa-h"
0 0 24 3 1 #" "
0 0 14 3 15 #"arm-area-height"
0 0 24 3 1 #" "
0 0 21 3 3 #"229"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 13 #";[203-254 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"aa-\316\261s"
0 0 24 3 1 #" "
0 0 14 3 20 #"arm-area-angle-splay"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 12 #";[-45 45 \302\272]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"aa-rf"
0 0 24 3 1 #" "
0 0 14 3 21 #"arm-area-radius-front"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"aa-rr"
0 0 24 3 1 #" "
0 0 14 3 20 #"arm-area-radius-rear"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 10 #";[0 100 %]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 18 #";arm-support-front"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"asf"
0 0 24 3 1 #" "
0 0 14 3 17 #"arm-support-front"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 27 #";[yes/no] [p: lf, s: ar(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"asf-\316\261r"
0 0 24 3 1 #" "
0 0 14 3 28 #"arm-support-front-angle-rake"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 12 #";[-45 45 \302\272]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 17 #";arm-support-back"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"asb"
0 0 24 3 1 #" "
0 0 14 3 16 #"arm-support-back"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 35 #";[yes/no] [p: lb, s: ar(+), not bu]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"asb-\316\261r"
0 0 24 3 1 #" "
0 0 14 3 27 #"arm-support-back-angle-rake"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 12 #";[-45 45 \302\272]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 17 #";arm-support-side"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 3 #"ass"
0 0 24 3 1 #" "
0 0 14 3 16 #"arm-support-side"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 27 #";[yes/no] [p: ss, s: ar(+)]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"ass-\316\224d"
0 0 24 3 1 #" "
0 0 14 3 24 #"arm-support-side-\316\224depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 16 #";[0 100 %] of ss"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"ass-sr"
0 0 24 3 1 #" "
0 0 14 3 23 #"arm-support-side-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 16 #") "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"ass-srd"
0 0 24 3 1 #" "
0 0 14 3 32 #"arm-support-side-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 6 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"ass-ss"
0 0 24 3 1 #" "
0 0 14 3 24 #"arm-support-side-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 15 #") "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"ass-ssw"
0 0 24 3 1 #" "
0 0 14 3 30 #"arm-support-side-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 8 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"ass-ssd"
0 0 24 3 1 #" "
0 0 14 3 30 #"arm-support-side-ssquare-depth"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 8 #") "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 8 #";armrest"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 2 #"ar"
0 0 24 3 1 #" "
0 0 14 3 7 #"armrest"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 45 #";[yes/no] [p: asf or asb or ass, s: bua, bca]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 4 #"ar-d"
0 0 24 3 1 #" "
0 0 14 3 13 #"armrest-depth"
0 0 24 3 1 #" "
0 0 21 3 3 #"280"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 13 #";[254 305 mm]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 7 #"ar-\316\224dr"
0 0 24 3 1 #" "
0 0 14 3 20 #"armrest-\316\224depth-rear"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 22 #";[0 100 %] of previous"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"ar-sr"
0 0 24 3 1 #" "
0 0 14 3 14 #"armrest-sround"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"ar-srd"
0 0 24 3 1 #" "
0 0 14 3 23 #"armrest-sround-diameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"ar-ss"
0 0 24 3 1 #" "
0 0 14 3 15 #"armrest-ssquare"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 9 #";[yes/no]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"ar-ssw"
0 0 24 3 1 #" "
0 0 14 3 21 #"armrest-ssquare-width"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 6 #"ar-ssh"
0 0 24 3 1 #" "
0 0 14 3 22 #"armrest-ssquare-height"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 1 #")"
0 1 24 65 1 #"\t"
0 1 24 65 1 #"\t"
0 0 24 3 1 #" "
0 0 17 3 8 #";[1 260]"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"xpto1"
0 0 24 3 1 #" "
0 0 14 3 16 #"guides-seat-area"
0 0 24 3 1 #" "
0 0 21 3 2 #"#t"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"xpto2"
0 0 24 3 1 #" "
0 0 14 3 16 #"guides-back-area"
0 0 24 3 1 #" "
0 0 21 3 2 #"#t"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"defvar"
0 0 24 3 1 #" "
0 0 14 3 5 #"xpto3"
0 0 24 3 1 #" "
0 0 14 3 15 #"guides-arm-area"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 95
(
#";-------------------------------------------------------------------"
#"---------------------------"
) 0 0 24 29 1 #"\n"
0 0 17 3 27 #";------CHAIR FUNCTION------"
0 0 24 29 1 #"\n"
0 0 17 3 95
(
#";-------------------------------------------------------------------"
#"---------------------------"
) 0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 5 #"chair"
0 0 24 3 2 #") "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 37 #";---------------GUIDES---------------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 37 #";------------------------------------"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"sa-\316\261r-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 6 #"sa-\316\261r"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"ba-\316\261r-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 6 #"ba-\316\261r"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 7 #";GUIDES"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 2 #"#;"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 2 129 4 1 #"\0"
2 -1.0 -1.0 0.0 0.0 0 59 500
(
#"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\3j\0\0\1\345\b"
#"\6\0\0\0\204R\17/\0\0 \0IDATx\234\354\335\353\227,Wy"
#"\347\371\337\263\243\16\253\377\200\2316`"
#"\260\261%\260\215i{\20\266\321\5\230"
#"W\323\334\r\36\343\213\250\252\0033\323"
#"\bI\200\220\0\337\260\275\326\214{\214"
#"\333\30\320\2451B\320o|*S\\"
#"\214/\200$\304\274\352\261\321\221\214-"
#"\331\313\355q\333H\302\346*<\275\346"
#"\17\260O\305~\346E\304\316\212\332\25"
#"\21\231U\247*3#\362\373\321:\252"
#"\252\314\310{f\344\376\305\336\373\331\346"
#"\356.\0\0\0\0\300J\230\231\362X\26Vt_\0\0\0\0\0\35\bj\0"
#"\0\0\0\260f\bj\0\0\0\0\260f\bj\0\0\0\0\260f\bj\0\0"
#"\0\0\260f\bj\0\0\0\0\260f\bj\0\0\0\0\260f\bj\0\0\0"
#"\0\260d\363\226\263&\250\1\0\0\0"
#"\300\22\271\273\314l\366w\363\367\204\240"
#"\6\0\0\0\0K\224\a\263\266\3365\202\32\0\0\0\0,I[(\243G\r"
#"\0\0\0\0V\310\314\24c<t\32=j\0\0\0\0\260B\356\256\20\302\354"
#"\367.\0045\0\0\0\0X\2224\3141\25\24q\367\366\341\220>\257.$\0"
#"\0\0\0`\251\350Q\3\0\0\0\200%K\375e]\375f\0045\0\0\0\0"
#"X\2624\4\2629\24\262\211\240\6\0\0\0\0K\264H\211~\202\32\0\0\0"
#"\0,I*\"\322u^BP\3\0\0\0\200%i\206\264\274g\255y\36A"
#"\r\0\0\0\0\226\254\331\263\326VX"
#"\204\362\374\0\0\0\0\260\2)\212\265"
#"\r\205\244G\r\0\0\0\0\226,\365\250\245\177T}\4\2003\220\357\\\31\254"
#"\0`,\330\277\1g#\357E\243\352#\0\234\201"
#"|bp\333\2211\0\30\"\366o\300j\20\324\0"
) 500
(
#"\3402\345\23\200\233\vX\322\230\0010"
#"d\354\337\200\325!\250\1\300\t-\322p\351Z'\5\0\326\31\3737`\365\b"
#"j\0pByI\335\346i\tG\234\1\f\21\3737`\365\bj\0p\231\272"
#"\206\0005\327G\1\200!b\377\6\254\16A\r\0.C\337\372'\347\317\237?"
#"2\277\203#\320\0\206\202\375\e\260Z"
#"\0045\08\241\276#\312\273\273\273r"
#"\367Yc\206\t\370\0\206\204\375\e\260z\0045\0X@\333:B]\215\222\235"
#"\235\35\355\355\355I\222\366\366\366\264\273"
#"\273{\350\374y\303\205h\350\0X&\366o\300\352\364\365\\\23\324\0`\1]"
#"\353\b\345\215\231\235\235\35M&\223C"
#"\227\231L&\332\331\3319t\371y\267Ec\6\300\262\260\177\3V'/\334\323"
#"\374|\20\324\0`\216y\353\b\245\277"
#"\233\215\30wW\214q\366\373d2\321"
#"\366\366\366\302\267\311$}\0\313\300\376"
#"\rX\235\346\347/\377\314I\0045\0"
#"\350t\234u\204\362F\214\231\35\331\351"
#"N\247S\355\354\354\320H\1\260r\354"
#"\337\200\325\313{\257\363\317\17A\r\0"
#":,\262\216\220t\320\210i\eg\236o\237\17\23J\30\n\4`\231\330\277\1"
#"\253\325\374Lu\25\357!\250\1\300\34}s*\3629\e\356~\244A\223_\266"
#"\2551\303Qh\0\253\300\376\rX\215\346g\250\331K\335DP\3\200\36}\325"
#"\230\362\341@I\336\200ik\320t\35y\6\200ea\377\6\254V\263'-\306"
#"\310\320G\0X\324\274u\204\3629\e"
#"R\377\260\240\374\357\275\275=\0323\0"
#"V\202\375\e\260Z\371g\260\255g\233"
#"\240\6\0\35\272\206\366\354\356\356\316\326"
#"\21jn\227[\244L\365d2\231-\36\v\0\313\302\376\rX\255E\206\4\23"
#"\324\0`\216\346\270\361\355\355\355C\215\230\313\221\256"
#"\263m\321X\0X\6\366o\300\372\"\250\1\300\2\314"
) 500
(
#"L;;;\232N\247\247z\235\322\301:D\f\23\2\260\n\354\337\200\365dN"
#"\1774\0\234\211\346d|\0\30\23\366"
#"o\300\331\243G\r\0\216\351\254\216o"
#"q\334\f\300\252\261\177\3\326\aA\r\0z4\327\rJ\316jM\240\276\365\214"
#"\0\340\264\261\177\3\326\eA\r\0zt-By\26\232\245zi\320\08k"
#"\354\337\200\365FP\3\200\5\234\325Q"
#"\346\256\333X\306\355\1\200\304\376\rX"
#"W\0045\0X\251(\317~\237\375]\377\341\365\357e:M\373\212^m\177\260"
#"i\234]D\34\254\6\260F\242.\35"
#"\372\333g\373\272\250\346~\354`\337\25\5l\232\266\3\30\0045\0X\231(O"
#"\273a\227\244 \223$/\253\323\254\376"
#"\347\222\233d\272$\231\344n2\223\344av-\346AR\254.o\325\251\0\260"
#"2\351 \223\242L\205\24}\26\316,\232\314%\213A\251)\352\212\362Y;\225"
#"\346) I[\253\276\3\0\260\271\352"
#"`\246X\207\253\240\250/\353\236\335\17"
#"\353\241:\304\231\242\24L\212\256\302\243"
#"\366e\262\260\245\"\276Xo\237\336\244"
#"\37\227)\310\345f\262Y\203\247\276:\0X\25\213\365>)\310\\RxT\367"
#"\354\334\256?uW\bU|\vQ\212A2\0172+\345nr]\255wO\336"
#"\256\253V}\377\2015\300!\v\0X\221|B\275K\n:\247K\2122+T"
#"\244q@\261\224\24\25\265\245\302\266$/U\6\251p\223b=|\350\310\220!"
#"v\357\0V\251\352\345w\367\252\247\314"
#"\203\366\345\n!\310\275:\300$I\346"
#"Q\26.\311\275\220)\312\334\264\277\322"
#"\373\r\254\17z\324\0`U\314\353a\214\215P\345/\320-\223\vj\16\a2"
#"\17u\27\331_\350\356\235\273\364'"
#"\372^\275\361\3757\351\205\222\24\242\244\255\203\236\271"
#"hR8\\a\r\0V\301g\243\6$\351\5z\373"
) 500
(
#"dOos\223\311\24\255\224\251\250\317"
#"\177L\37\331\276]\27\365\34\275\341w\336\246\237`X\0 \211\240\6\0+e"
#"\371\357vN\245\244BQ\325\220\2414"
#"\207\355\277\351\263\277z\207\276dQ/"
#"\275\355\377\324k\237n\222\305\331\345\252"
#"9lav\205\2044\0\253t\244\246\221\235S\364\372\20\224IAE=\37\367"
#"\377\323\347~\355v=b\3225\267\275O\257\177\206\352}\e\243\2\0>\5\0"
#"\260\"\246ph\302}\32\266\230BZ"
#"\275\221d\337\321g\177\355\26}\346\e"
#"\246\357}\303\au\323\v\255**\242"
#"\203\211\370u\315\21\311$\253'\355\3"
#"\300\252\230W\377\334\16B[\260X\357"
#"\273R\305\307\377\246\317\376\352\273\364\351"
#"\177\220\236\365\263\377A7\277(mO"
#"\363\24\220\bj\0\2602\236\212\210\244"
#"\271j\236fm\204\203\262\325.=z"
#"\367\273\365\351\257\27\322\325\267\351}\257"
#"{\206dQ\356eUh\344Pi\353\262\n~\241\252\250\6\0+\223\252\326J"
#"\263\375\221\327\a\247\252\263\202\36\275\373"
#"\27\365\373_\227\374\245\267\350}?\371"
#"\335\3256.\2313K\r\220\bj\0\2602i\250\242\231W\r\30\253\3335^"
#"UA\223\a=u\337{\365\241\207\n\351\232wi\357mW\251\no.\263\242"
#"\276\226P\25%\251/\343\351:\214\362\374\0V\247^d\244:\2404\353\362W"
#"]XD\372\346\347\177E\267?\374/\362k\337\245\351\215?^\35|\232\r\215"
#"df\16 \21\324\0`\205\342\254\a\315\242+\r\177t\223dQ\337z\340\227"
#"\364\v\237\372\246\364\234\237\326\ao\276"
#"J\322\276\344\241\ni\365\272k\256j>Z\264\262\352I\243\352#\2005PD"
#"\237\355\247\322\22$V\257\365\370\235"
#"\317\375\262~\345\223\337\220?\373z\375\366\315/Ti"
#"Qf&\257\273\333\234u \1I\24\23\1\200\25\252\327"
) 500
(
#"I\363P\207,\257{\313$\375\345="
#"\372\305O<\245\240\253u\333\277\177\235"
#"\236.\311\265%\257\307\20\5\253{\321"
#"\352\371\34A\2054\233\333\306D|\0\253U\6SQ\257\a\231\326Rs\271\354"
#"\321\217\350=\177\360-\231\275D\357~\337\353\364,Ii\342ZU\3)\255\277"
#"\6\200O\2\0\254J\232G\226\206+"
#"F\253\202\330S\367\351W>\370\260\202"
#"\236\255\237\371\355\233\365\242z[\223\24"
#"\352\322\326R\220,T\345\257\353\271i"
#"RPl\364\264\1\300\252\24R\265\374"
#"H\335\213\346&\351\237\356\327{\357\270"
#"(\225\317\326\e~\347\306zQ\353})\272dQQ\245h\232\2\a\3704\0"
#"\300\252\244yd\a%\321d\337\376\242~\371=\237\3227\264\257kn\373M\375"
#"\344wKn\361\240rZc\36[u\3449\312\255\250\257+V\375i.\261d"
#",\200\225rU\353\245\251\32\326m\337"
#"\376\254~\365=\237\321\327\274\3245\357"
#"\371M\275\356\31\222{)W5\242@\236F\6\0H\30\372\b\0\253R\27\377"
#"\250\227\265V\220\364\330g\357\3257\315"
#"Ux\320\303\267\377\274\376\324\266\264\25"
#"\245hA\301\312j\331\241\3402\17\272"
#"\372=\23\335\374\302\272\242\232Ie\335"
#"\3141\223\344[,\30\v`u\352\203"
#"K\301\v\311\244\307\376\370\323\372G\337"
#"\322\226m\351\342\a\337\244/Y\32497\271\233\\\227$+$\5\271E]w"
#"\333D7_\265\352\a\0\254\36=j\0\260*ir\275\231\212\272\342\231y\220"
#"kKe\330\227\353i*<(Z=\227-\26\n\341i\212*\345\26TD?"
#"\250\250\3268\26mL\304\a\260r\373"
#"\263\245G\\\325\320G\v\227\24\345\262"
#"\340\332\212R)S4\311\3529\266n\373\262X\366^+\260I\350Q\3"
#"\200\25r\17UA\20\253\326>\373\37n\332\323\364&\35\364\206yY\35i"
) 500
(
#"\256\27\216\265#\205B\352\303\326\a?"
#"\252\213\31\35j\0V'\252P\260\203\275\320\213n\232jrS=v\300U\17"
#"\327NkF\206\331\310\200\346~\f\330t\0045\0X\241\324\216Ik\252\35\31"
#"\346\220\326K\233\5\257\226\201\20\326\370"
#"Q\367\256\321\320\1\260J\315\275\220\315"
#"~\206\306\t\241\3454B\0326\227\373\3212`\f}\4\0\0\0\2005CP"
#"\3\0\0\0\2005CP\3\0\0\0\2005CP\3\0\0\0\2005CP\3"
#"\0\0\0\2005CP\3\0\0\0\2005CP\3\0\0\0\2005\263\376A\315"
#"%i?;1\326\213\335\307\331\337R"
#"Ty\3502\365\317\350\325\351\315\323\24"
#"ut\245\2\0\0\0,\203\247\377\371\354\207b\372ERj\333IQ\315F\333"
#"\241M\200\1k[7-\267\366A\255"
#"4\251\271.\267\327\341\314L\362\331\335"
#"\217r7\25\365\247\334\353\325\22\335$"
#"\5Wp\227\254\16u\365O\253\256\f\0\0\0\253`Ri\373\222\273\314K\5"
#"I\321\\.\251TP\364P\265\365R\273\256\272\210lv\240\36\30.3;\24"
#"\326\314\216.\367\276\366A\255\360X\205"
#"/U!\315<H^\337\355\331\203\333\252\36\254$\5\253CX\372\20\a\311L"
#">Ko\365\207^q\26\350\0\0\0\260<\246*x\5\267\252\201jV\2074"
#"\223\271Th\377\340p|l\4\263\252"
#"\261\267\364\373\v\234\205fX\v!\34\351e[\377w\272I^\207/\363 \267"
#"X\365\212E\227\231\251\254\273\304\335K"
#"\231\244Ru\257\233\205\372\0L\352I3\271Kn\261>=\350\350\220J\0\0"
#"\0\2349\227\314%SQ7\325\202\202\\\301\313:\305mIu\233-\204t\200"
#"\276\254/J\217\32\206/\205\262\24\326\334\375H\257\332\372\a5\5"
#"Y\35\304du\217\232T\a/W\21\253\360\346Vu\215\a\257?\276"
) 500
(
#"~py\225Q\246\375z\207pp\2365\206T\2\0\0`9\252\3\357\252\17"
#"\310kVC\300\254\250\352\vX\254\316"
#"\210\251A\27%+\352\206\334\0\232\257"
#"\300\34)\224\245\200\3266gm\20\357"
#"t7U\37\334\332\376\23w\352\245\341\234B\b\262-Sa\347TX\320uw"
#"~E&S\241 \177\360-\naKf\347\24\376\325M\372B\334\222\202\32c"
#"\235#s\324\0\0\0V\300<HO\336\251k,h\313\266d\205\311\302\277\222"
#"Y\241k?\374\270\n\17U3\355\2137\311\202U\3559\273A_\244\355\206\21"
#"i\206\264\266\260\266\376A\315%\257\23"
#"U\232g\266e\322\276\376W\335\357Q\36]e,\345~\237^p\333\233u\307"
#"\223Qz\342w\365\222\327\24\272\277\374"
#"\27\271\377\263\236\370\300\337\350U7>"
#"(\251\352fO\303!\231\243\6\0\0"
#"\260*AA\377\233\356\367\177\226G\227"
#"\307}\271?\240\37y\347\377\242;\237"
#"\220\364\17w\352e\257\216\272?\272\334"
#"K}\345\216\277\326+n\272_4\3370\26\251W\255+\254\255\177P\263(\223"
#"Us\320\352\261\213\256\247iK\246\252"
#"\247<\252z\214?\244\347_\363\210\376"
#"\353W\202t\345M\372R\371Q\275\262"
#"\376$_\361\352\237\323\265\37\377\3\335"
#"/\315\272\314\275\36R\t\0\0\200%3\325E\341\202\242BUG@\222\373s"
#"\364\374\353\36\321\337<!\331\367\277C"
#"\177\22?\246W\3265\5\236\373\252\35"
#"]s\317\37\351A\332o\30\221\346\\\265\346Oi\bA-\251\207>\272$\363"
#"Rn\246\230\252@j_z\362\363\372"
#"\375\213\327\352\371?\240Y\bs\17\222"
#"\202\236\270\357\223\272x\303\e\364j\217"
#"\263B\221\2044\0\0\200\325\211VU\340.e2\223\314\243\354\311/\352"
#"S\27\177B/x\256$\205\352@\275"
#"o\311\335\365\344\3\237\322\237\335\360S"
) 500
(
#"z9]j\30\221\346\\\265\334\332W\323p\325\325\e\243K!\34\f]\364\217"
#"\3525\366\261j2j\375\270\336\372\5"
#"\327;\257\210\222\252\2#\366\344\235\272"
#"\356\312w\351\242^\242\333\37\377\237\344"
#"vpy\267P\257\3031\234\254\n\0\0000\6.)\224A\362\217\351\247\354c"
#"*\225J\366\a\275\365\376K\272\345\312"
#"\252\230\210\251P\371\325\273t\335so"
#"\325\227\375j\335\376\225W3\364\21\e"
#"c\355S\212i\277\352\5\253V\270\2562\231\231\242\336\252\373|_1V\345,"
#"=\272>\372\212X\25\vq\311e\322\25\267\351!/U\372{\365\367\317}\231"
#"\356z<\326\25!C]\342u\355\37>\0\0\300\bE)D\235\263\e\3659"
#"w]\362}Ew\305X\352\243\257\n2\205Ye\310\342\373o\321#1\352R"
#"\3745\375\335\17\\\253;\236X\365}"
#"\a\226c\355\223\212\253ZG\243\32\363"
#"\270\257h\222\242\311\352e\253\315%\327~=w\255\35613)\310\352u6\202"
#"B\374\267z\355[\37\326\337<)\5\253V\2757\25T}\4\0\0X\201j"
#"\352\312\323\364/~I\222T\250\220fu\abU\203@u\345\307\272\v-\330"
#"\253\364\332\267<\254\377\372\225\225\334e"
#"`\351\326>\250\231Kr\253:\301\264\245\302KIQ\321\254\3525\263}I["
#"\325\4T\325\v\245=x\203\302\265w"
#"\352\311\264\346Z\370\242\376\370\236\253\365"
#"#WZ\225\367d\365\332\35,\230\b\0\0\260lU\0\373gm\251\250\227S"
#"\253\206:VKZ\327=j\17\274U\341\332;\365UUuGL\17\352s\37"
#"\273V?\374\274\25\336q`\211\326>"
#"\250IU\2602U\253\323{\275\330\341\226\273L.\371VZ/Q\246\262\372\344"
#"\277\374c\372\273\237\377\214\236\eL\26\nY\370"
#"M=\377\361?\325\333\257\220,z}`\206\371i"
) 500
(
#"\0\0\0\253`\266/y\241\322\322\232"
#"\326\325\324\225B\373\365\301w\311^q"
#"\217\36\377\331O\351\n+\24\266\202\314"
#"~C\317}\362\377\326-W\256\366\276\3\313\262\366\305D.Y\251s*\344*"
#"e\252\v\200\\q\253\3764\r[\264\272x\210\352nt\213rI\317\273\345O"
#"\345\267\324\253\332W\325_\353\355U\177"
#"\372\303\254[\35\0\0\0\313\343\332\222_q\213.F\35LE\t\222\264U\377"
#"\355R0]y\353E\305[\253\3\355\36\214\203\355\330(k\377.?\347\205\24"
#"]\246su\221\220 \331\301\321\226j\246ZZ\300:\324\25\202\302l~\232,"
#"\252\254\37\345lJZ=\344\221\220\6\0\0\260|\346RZ.\312m_\252\327"
#"J\223KfQf\246X\267\334LQ\n^O\207Y\311\335\5Vb\375\223\212"
#"\251\252\0R\377^\375\326\34\356(\251"
#".\341o\232\235\320\baAE\343\252\322i\247~7\263\225\304/\347z\0\0"
#"\0\316R[\233%_x\367r\256\253om(\257&\234\315\332e\246-\315\6"
#"y\231\224\332ia\266E\265.\356Aco\375\233\257\300\"\362\317G\3767\357"
#"\364S\342\356*\212b\376\206:x\21"
#"\362\27\343\264\302\36\0\0@\237\2660"
#"\226\332!\356~\350\374\274\335\222\266\351"
#"\272\256\256\353\351\273m`\0235?+m\237\27\202\332)\2111*\3068w\347"
#"\323|\21\232\3336_(\0\0\200\263"
#"\324\325\336\310CV\3763m\323\325\336"
#"\231\27\322\372n\e\3304\351s\322\354\254i~>\bj\247$\2040\3331\205"
#"\20\216\234\227^\204\20\302\221\363\233/"
#"\16\201\r\0\0\234\265<D\345=dy\233&\265a\232!-\17ly{\246"
#"\355\272\333n\e\330Tm\237\231\346\347\203\240vJ\232G\216\312\262"
#"\234\375\36BP\214\361P\267fY\226\207v|mC\b\330\211\1\0"
) 500
(
#"\200e\311\347\224\245\366I\32-df"
#"\263\321C\251\315\323\374\275m\372\306I"
#"\347\274\1c\3277t\230\36\2653\320vD)\355\304\332\266M;\276y\303\3"
#"\0\0\0\316B_\21\220\364{~\224\277\31\350\332z\326\372\32\240]\267\tl"
#"\232\276\272\24\364\250-A>\256[j\37V0\357(\24\0\0\300i\313\333("
#"]\333\244\251\35\315\321@\371u\304\30"
#"g\243\211\372\16</r\233\300\246X\344@\6A\355\24\345\303\5\322i\315a"
#"\216m\347\267\355\330\330\221\1\0\200\263"
#"\322w@\271\255=\323\34\r\224\244\20"
#"\227\316oj\273\316\274(\t\260\351\332"
#">sM\4\265\206\313\355\325\352\253n"
#"\224\207\264E\256\233\35\31\0`]5\277\307\30\0252L]\303\32\27\351\25K"
#"\277w\235w\222\353\306\372\350\373L\363"
#"\371>=\363>\27[\313\2743\353.\257P\264H\360\232w=\311\316\316Ng"
#"5$\0\0\206&\237\277\3246\274\37"
#"\343\220\277\316\371\334\264\276\252u\30\246"
#"\276\3174\237\355\3233\257\247\231\240V"
#"\313\237\250\343\6\261\346\345\323\exwww\366\373t:\235]v\336xpv"
#"p\0\200\241\240\3216N]\353;u\25\16I\b\351\343F\e\365t\344\237\257"
#"\256\232\25\e\37\324\362\235N_\252\355"
#"\vQ\351r\347\317\237\227\231igg"
#"G\223\311\244\365:C\b\207J\370\347\367\203\260\6\0Xwm\337U|\177\215"
#"G\333\353\330l\247loo\2676,i\307\214K\376Z\362\372\236\2164\3473"
#"\255M\330e\343\203ZW\231\331\276m\363\355wvvfEC.\\\270\240\311"
#"dr$\2445\245\27\246Y\272\177\321\336<\0\0\326\1\215\364\361k\em\224"
#"\27\32i;\r\343\300\301\230\263\323,6\2300\364\261\307q\276\\\362"
#"\371f\223\311\344\320e\233U\221\332vX\315\5$\233\333\264\205F\0"
) 500
(
#"\0\326\35\25\375\306\251+\244\345\205%"
#"\bh\343\224\207q>\333\247\247k\344"
#"^\216\240\246\356\22\371\315\363www"
#"g\177\247\336\262\246\274[\270\371{\36"
#"\312\232\345l\363\373\300\a\1\00004"
#"|\177\215W\333\353\232\2170J\247\21"
#"\326\306\207\317\366\331i\eV\232\333\370"
#"\240\326\367\346K\305@\334}V\fd"
#"\21m\225r\362\337\323\3656\217R\21\326\0\0C\261H#\3\303\327l\2434"
#"\0174\277\361\215ol\35\31DX\e"
#"\37\346\250\235\215\374\271\34|\217\332\274"
#" s\2227N\336\255;\257\347l\336\375\353\352-\313o+\375\235?.\0\0"
#"\206\200\357\255\361hk_\345m\2324"
#"B(I\363\363\273\256\247\357\2721\\"
#"\274\216\247k\336s9\230\240v\334b"
#"\37\307\221\302\231\231\235(\2345\2539"
#"\346%l\373.\323\334\221\245\341\221\351"
#"'\37\4\0\0p\226\332*_\247\323\333\16<\347\227\351+6\221\3323]\a"
#"\247\1\3147\230\240\266\310\207\3728\37"
#"\376\235\235\235\331\357y8;\316\3654"
#"w@]\303\35\273\326Jh\273\377m\245\373\1\0\0N[W\310\352\ni\315"
#"\313,z@\232!\262\300\311\r&\250"
#"5uu\321\317\353\211\332\336\336\236\355"
#"|\372z\316\216\333\243\225vD]\367"
#"\263m\247\226\357\274\322m\22\322\0\0"
#"\300Y\353+\22\3227\244\265\255\355\325"
#"\265]\363:\347\3356\200\243\6\31\324"
#"\332\312\205v\r\213l\226\322\237N\247"
#"\v\357\34\216\263\3\2317\24\263mg\3256\374\221a\1\0\0`\31\272z\323"
#"\346\265A\216\323;\326u\235\264q\200\305\f&\250u}\310\333\202Ys\333f"
#"\317Y\337Q\240E\217\20\235D[/Z\337m\260\3\3\0\0g\251\255]\265"
#"H\e\3458=j\363\346\261\1\3507\230\240\326w\344g"
#"\321J\215}s\304\346\315\37\353\23c\234\r\251<N\b\233"
) 500
(
#"Wx\204\35\31\0\08\vma\253\257*uW\317X\3276m\a\324O\332"
#"\316\0026\325`\202Z.\255qv\234J\215\213\36!:\256fH\223\26\353\21"
#"[d\b\0;2\0\0p\226\372\0160w\5\270\276\313\237E;\v\330T\203"
#"\nj'\tgM\213\216\271>\211\223\\\236\365\323\0\0\300\252-\243\rDH"
#"\3\216\232w\0c\20Am{{[f\246\275\275\275C\301f\254Gg\306\372"
#"\270\0\0\0\0,\326\336\17K\272/\227%\204\352n.\322\5?4y\360L"
#"\247\1\0\0\0\30\277\256\245\276\6\21\324\362 3\246\241\202eY\252(\nI"
#"\0044\0\0\0`\354\362\351Om\305\6\245\201\5\265\343.D=\4\314Q\3"
#"\0\0\0006G[\246i\vm\203\bj\323\351t\366{\276\210\364\2304\37\323"
#"\30\37\37\0\0\0\200\243#\351\332:o\6\21\324$ioo\357\320zic"
#"\352U\313\27\217\224\306\365\370\0\0\0\0tk\e58\230\240ff\2121\256"
#"\372n\234)\26\201\4\0\0\0\306/\357=k\313\0\203\tj\0\0\0\0000"
#"t\213\326\334\30LPswM\247Smoo\257\372\256\234\252\261\257\t\a\0"
#"\0\0\340@\333|\264\301\226\347\227\216"
#"\256\2356\226b\e\2043\0\0\0`\263,R\237b0A-\31k\261\215|"
#"=\205t\32\0\0\0\200\361i\266\377G\21\324\246\323\251vvv$\215#\310"
#"4\203gZ\374z\254a\24\0\0\0@e\336\210\301\301\5\265\346\3\30C\220"
#"i>\2061.\350\r\0\0\0\240\333hz\324\332&\337\215\325\246<N\0\0"
#"\0`Suu\326\f.\250I\207\207?\216M\363E\242g\r\0\0\0\30\277"
#"A\366\250Q\\\3\0\0\0\300\230\r\262<\177s\250\343\330"
#"{\230\334\2350\n\0\0\0`\375\203Z\333x\315\2660\263"
) 500
(
#"\310\242q\353*\17\242\24\24\1\0\0"
#"\0006\333\332\a\265\\\n1\223\311\344"
#"\320<\265<\330\f)\350\344\225\37\1\0\0\0l\266\265\17j]\253v\17\251"
#"\307\354$6\251\272%\0\0\0\200\303\326>\250I\355C\1\27\351y\32b\320"
#"I\3679-~\r\0\0\0`\363\f\"\250u\205\2624\3741\205\233<\230\r"
#"i\30a\336cH\217\32\0\0\0\260\271\6\21\324\372\214e\335\261!\337w\0"
#"\0\0\0\247k\360A\255-\340\214\245'\212\352\217\0\0\0\300f\32|P\313"
#"\253?J\343\353\235b\321o\0\0\0`\334\362v\376\340\203Z\323\30CL3"
#"t\322\303\6\0\0\0\214S\336\316\37"
#"UP\ec\210i\233\203\347\356\243\f\245\0\0\0\300&X\244-?\212\240\326"
#"\34\3768\266\0\323\2654\301\30C)\0\0\0\260\t\362\266|[\206\31EP"
#"\313{\235\306\26\326\332\26\371\36\333c\4\0\0\0p`\360A-\205\264fp"
#"\31[X\313\327XK\277\217\3511\2\0\0\080\370\240\226\2K\276\370\365"
#"\230\206\6v\25\21\31\323c\4\0\0\0p`\360AM:\332\323$14\20"
#"\0\0\0\3000\214z\216Zn,\275M\4N\0\0\0`\274\332\246rI#"
#"\tj)\224\355\355\355iwwwT\341&\275h\254\241\6\0\0\0\214Gs"
#"\312V[X\eEP\223\16'\321\261\25\332\30sEK\0\0\0`\23\265M"
#"\337j\2366\232\240\226?\2701\206\232\274Wml\217\17\0\0\0\330\4\e\263"
#"\340u\323\205\v\27f\213_\217m\250`\214Q!\4\206B\2\0\0\0\3\226"
#"\267\343G;G\255i\314\341\2459\264"
#"s\314\217\23\0\0\0\30\253\24\310\362u\240s\243\vj\233\202a\217\0\0\0"
#"\300\360\344S\266\272F\313\215>\250\345\201"
#"f\310\1\247\371\"\322\243\6\0\0\0\f_"
) 500
(
#"W\273~\224Am2\231hgg\247\265\2\344P\3\16s\322\0\0\0\200\315"
#"1\370\240\3266\3063i\353V\354\332v\235u\205\264\241=\16\0\0\0\0\213"
#"\31|Pk\26\330h;=in\223\a\267u\227?\226\30#\303\37\1\0\0"
#"\200\21\e|P\223\332\2073\356\355\355iww\267u\233\346*\340C\220\a\321"
#"\241\334o\0\0\0\0'3\212\240&\351H\357Y\337vC\v:m\367w\214"
#"\vz\3\0\0\0\250\214&\2505\2073\366\5\261\241\r{l\343\356\263\305\257"
#"\1\0\0\0\214\317\350Z\372\315\236\246"
#"\311drh\370c\327vC\223\317\265\3\0\0\0000.\243\vjR\373|\264"
#"y\333\255\253\266\373\237W\257\34\323Zq\0\0\0\300\246i\313%\243\fjM"
#"i\221\350\241\352\233\237\326\\\374z\f"
#"k\305\1\0\0\0\233\250-\257\214>"
#"\250M\247\323#\303\37\207\24\334\272\356"
#"+\341\f\0\0\0\30\276\324\371\222\267"
#"\373G\37\324rC\253\372\230\337W\302\31\0\0\0000\36]\26536.\250\r"
#"=\334\344U+\363\3409\244\336B\0\0\0`S\345\365&\362\234\262\21Am"
#"2\231hgg\347\320iC\n4m\367\265+p\16\271\232%\0\0\0\260)"
#"R\273}\343{\324\206:\247\253\357\305"
#"K\362^6\302\32\0\0\0\260\276\362"
#"^\264\215\16jC\233\233\226\264%\355"
#"\256\237\315\3077\304\307\n\0\0\0\214"
#"][.\331\310\362\374Is\370\343\320z\233\362\5\256\363\237]!th\217\23"
#"\0\0\0\30\273EG\277mLPK\26\31J8D\371c\32j\17\"\0\0"
#"\0000v}\225\335\223\215\vj\315\241\204c\222\277\270c{|\0\0\0\300X"
#"m\354:j\351A\247\341\217c\f11F\25E\261\352\273\1\0"
#"\0\0`\216<\224\265u$\215>\250\345\17\272\255(\307\30\214q"
) 500
(
#"8'\0\0\00006mS\261\332\252?\216>\250\265\215\377\314\213q\214\r\201"
#"\r\0\0\0XO\371T\254\256%\304F\37\324\222\261\207\27w\237\275\340c\r"
#"\240\0\0\0\300\330t\265\3377&\250\245\a?\231L\264\275\275\275\342{sz"
#"\332\326P\3\0\0\0\260\276\26\231\266\2641A-qw\205\20F\323\303F@"
#"\3\0\0\0\206g^;~\343\202\232\231)\3068\312\342\e\315\341\217c{l"
#"\0\0\0\300&\331\250\240\226\302\313t"
#":\35e\231\376\346\304\304\261=6\0\0\0`\223lTPkVV\31[\220"
#"i\316U\2437\r\0\0\0\30\266\215\nj\311\30\303L3x\2161\210\2\0"
#"\0\0\233d#\203\232\273k2\231hggg\325w\5\0\0\0\0\216\330\270"
#"\240\266\t\3056\306\374\330\0\0\0\200M\260qA-_\t|L\362yjc"
#"|\214\0\0\0\300&\330Z\365\35X\205\346\342\327;;;\232L&\203\r6"
#"\315\373\335V,\345\264\37W\32.z"
#"\326\317\327d29r\332\"\267\331\265"
#"\315I\357\257+\312\352\343\31\256}\231"
#"\266$\227d\261\272N\25\222IQ\245"
#"\202LQ\256\240\242\272\234\327\307A\32"
#"7\353\356\222\231L\261>e\343\216\225"
#"\0\0\0@\363\333\247\e\31\324r\315"
#"\341\220C\vkm\367\2679\264\263\371"
#"\270\362\307\327\25\350\322\357\273\273\273G"
#"\206Q\266\5\250\323\224n\273m\376\340"
#"\274\333\356{\375N\372\272\232\202\334K"
#"\231\n\231U!\315M\212\222\212:\244"
#"\271\227\n^H\222B\220\344\222Y\220T\312\315d\36TZT\341Af\256\352"
#"?UAnXo7\0\0\0\234\202\274\335\332\326V%\250i<C\5\363@"
#"6o>^\36\314vvv\344\356\n!(\306\250\351tz\350\374e"
#"\334\367fog~\336\274\360\266H\345\313c\207\362()\24\207\357\243"
) 500
(
#"K\262 Y\224\24\244\346\365\270$\333"
#"\227kK\262\242\3529\263\250BAn\365\25\372\226\314\"!\r\0\0`C\345"
#"\355\320\266\366\372\306\a\265\346\360\307!"
#"\313\207@\316\353=\333\335\335=ty"
#"3;\362\34,s\361\354\276\333H\347\355\355\355\35\331n{{[!\4\271\373"
#"\241\363\373z\326\216\25<C\224Iz\364#o\326\237]\375{\272\371*U\301"
#"\313C\25\326f\275g\232\365\232)\26"
#"\262\20\345\222\344U@3W\25\316b\352\205\263\352o\206>\2\0\0l\224\266"
#"\266(=j\35\206\336\243\226\367\234\265"
#"\205\253\363\347\317+\3068;\257-\364"
#"\344V\365|t\275\26m\247M\247\323C=nf\246\v\27.t\276\246\307\177"
#"\235\203\334%\vQ\241\264\272\307\254\36"
#"\312(\311\255\236\231f\241\376[\365\34"
#"4\223\325\177W\363\321B}Q\253\256"
#"\317L\325\225\1\0\0`\223\230\231b"
#"\214\n\341\340\200==j\35\316\262\370"
#"\3062\364\205\222\355\355\355\331\233\3418"
#"\217k\231\317\303I\236\377\266\341\235\251G0\5\266t^\nn'eV\335^"
#"\371\27\37\326\371;\377\\Q\256\353n"
#"\275\240\233~\254\32\275\350\n\a\243 "
#"\343c\372\310\356\355\272XH\26\277G"
#"?\363\201\237\3217o\373\244\236y\373"
#"o\351\365O\17r]\222\354\234\3521\225'\276O\0\0\0\30\2464\325(\375"
#"\336\325N\335\370\240\226\32\370\333\333\333"
#"\232N\247\203\viIW\17\324d2Y\370q\265U\220\\\206\343V\253l\273"
#"\237\315m\363!\234\371\334\266Ez\23"
#"\17\354W\267\31M\17\177\3739\372\235"
#"\275\267\351\273\276s\237~\365\27>\242"
#"\307&7\351\252\272\277\254\bQ\245\377"
#"\223\356\377\365\17\351\233\327\277_\223\327"
#"<]\372\213\217j\373=\37\222\276\357\177\326\a\236nu"
#"\261\310sU>k\251\b\t\0\0\200\361\313\333\273\356N"
) 500
(
#"\217Z\233\364\344\244yNC\rj\307\3217\264pU\317\301\"\225o\269\257"
#"\255XH[ps\367Y\261\224~[\263\333|\311O\275B\377\332L\341\351\257"
#"\325\317\\\273\255G\36\275YW\275H"
#"*\\\222\202\212\177\372s=\362\217\327"
#"\351\247~\363\231\222\244\370c\257\327\317"
#"=\373!\375\331\325\327\352\351ui\177\17\222\274T*B2\376w\e\0\0\0"
#"\332\314\353 \331\370\240&\315/\27616'\rAg\351\264n\267oM\271$"
#"\5\267\335\335\335\331\220\320\256b2\256"
#"z\216\231?[\317z\326\226\n\305Y"
#"\365Fw\351\261\217\354\352C\27\353\333"
#"\370\321k\364\354`\n\325\205\24\\\212"
#"\366\275z\361\213\377\273\272\24\177\265&"
#"\233+\310d\314P\3\0\0\330`\363\252\221\23\324jy\365\307\241\27\30iJ"
#"\217\343\270\363\324\306\240\357u\334\333\333"
#"\36\224\274P\0\0 \0IDAT\223T=?ixd>,\322\242K!"
#"J\366M}\355)\227\276+\310\364\377\352\e\337,T\274X\272\352\346=Mn"
#"\256\347\233=u\237~\345\257\276^\257"
#"\263\346\222\5\235\363o\350\37\276\341\322"
#"w\251\276-\251\256\357?+2\2\0"
#"\0\200\3153\257\203\201Vb\217\261\205"
#"\232\261=\236E5\337\374]\347O&"
#"\23M&\23\355\356\356\36Z\272\300\203\311\265%\323%}\371K\217Vk\247}"
#"\347a=\362\215\353\364\343W\305Y\257"
#"X\224K\317x\221\256y\366E\375\301"
#"\347\376I\301M\341\321?\324'\277\356"
#"\272\370\345\277\254\272\346\242IV-\242-UEH\0\0\0\260y\332\332\245y"
#"[\235\36\265\206\274\367e,=jMc|L\213X\364q\247\36\265\324\3036"
#"\231\\\220{PiA/.\276\254\2357\336.\vW\350\247\337\377\277\353"
#"*\vu\217[U|\337\365\f\375\344\373n\325\267\316\277Ko\372\224+"
) 500
(
#"\232t\315\273oS\270\375\263\372\343\327"
#"\377\230^\377\314t\373Q\356A\e\3702\0\0\0l\274\205\213\346yW7\303"
#"\206J\325\37\317\"\3204\327:[\246"
#"\346\302\325\233\366r_\356Zj\333\273"
#"oTp\351\302\344\336z\250\242\252\212"
#"\215&)\272dV\317Y\223\314K\311\212z\241k\315\202X=eM\212\222["
#"Y\25\21I\327\201Qk\16\247\6\306h\23\277WPa\377\266\231\370\314\237>"
#"\312\363/h\254\325\37\27I\354c\325"
#"V\376\3648\317\307\364\302\275\222I\333"
#"\273;2\217\332\233\334+\263X\205\265`\222G\271LA&U\245Fd\36e"
#"\252\2[\no\322\276\24\266\252e\260=\r}$\253\1\0\0l\252\266\221|"
#"\315\323\230$\323\260i\00576\345qJ\355\2235\273\2669*j\2727\321d"
#"r\257v\353!\221.\311\25%\253+8V\213\244\311e2+\252\271l\222\244"
#"\242\16c[\365\345\252\217\\i\221\220"
#"\6\0\0\260\301\232k\250\265\225\352'"
#"\250e\306\34^\362\324\276i\232\217y"
#"\321\256\373\262\356=K\303\31\253\352\240"
#"\347eJEA\252\300e&\271J\25\263K\6\231k6,R\365\345M\222,"
#"*\360\321\3\0\0\330h\315\351ImmSZ\213\231T\246\177L\362\200\322\374"
#"\271I\362\307\274\310sP(\324\225\32"
#"5\e\2478\231L\264\263\273\243\355\355"
#"m\35\372\by6\222\330\262\241\215\263?B]\247\37\0\0\0\233j^\333\224"
#"\240\226\31\343\274\255fB\317\177\342d"
#"\366\366\3664\235N\17\205\372\343L\260e2.\0\0\0\372\20\324t\262!q"
#"C\223\217\201\35[\30=k\371{\"=\177y\17\354q\236W^\3\0\0\0"
#"t!\250\351h\203y\254\303\37\333\312\324c1}\317]z\277\214\355"
#"=\3\0\0\200\325\241<\177\303\30\207=J\227\277\226\30\16k+\237"
) 500
(
#"\232\326\2229X(\373\350\3322<\347\0\0\0X\24=j\265\2616\242\273B"
#"Z\b\274\364'\325W\220e2\231t\366\310\216\361\375\5\0\0\200\263Ak\275"
#"\2267\242\367\366\366\352\252~\3036\326"
#"9w\313\266\310s\310pH\0\0\0\234\26\202Z\2071\25\334\30\313\343X\245"
#"\266\312\231}\333HUX\333\333\333#\254\1\0\0\340\330\6\37\324JE)\252"
#"Z\2208\226\362\372\217\250RR\2546"
#"\362\352_jB\273\227\a\177$\256\352"
#"\262\a\177\312\32\333\214\255W\212\342\""
#"\307\267\310\32tm\353a,R\234\206e\23\0\0\0006Oj\373\265\265/\a"
#"\37\324\nIn.\223\344\241\220\313\345*\25\274\320c\37y\223>\374X\224L"
#"r\223\252\340\266/\263j;\251~r"
#"\276}\237~\371\374\207\365\230l\26\340"
#"LQ\27\246\a\r\354\241\17!\\\344"
#"\276\323\363v6\334\2755\254\265-\v"
#"\301k\0\0\0\2609R\333\257\355\240\375\340\203\232<\34\364tH\n^\310T"
#"\310M\212\351\201\272d\321e\nR\271"
#"5\353.\253\32\306\256R\373\332\322\271"
#"*\274\231\352\36\270\303OM\263\21="
#"\304\300\326\274\357C\274\377C\226B\330d294\3571\177?\r\371\375\5\0"
#"\0\200\343i\206\263\266\203\366\203\17j~\320\t&y\224\233TZ5l\321\314"
#"T<\362\21\355\354\236\327\316\233w\364"
#"\341G%\25\365e<\310\252h\247\20"
#"\266\24c\251\207\357>\257\363;o\322"
#"\366\3717\352w\37\333?4\364\261\371"
#"\244\r\265\327\243\271\330u\214\221\352\217"
#"K\224\3363\323\351t\26\326\232\1-"
#"\357]k\236\17\0\0\200\361i\206\263\266\221U\203o\245Wa\252\236[V\a"
#"\264B\222\254:\355\341o<K\277=\271\240\311o\375\274\236\272\375n\375"
#"\271\227u\210\333\257\207IF\231\242"
#"<\\\324S\317\374\35]\230\374\236\246"
) 500
(
#"\357\274V\217\374\301\203zJ\256\275\275"
#"=\355\356\356\36\271\335!6\242\17%\364:\2405\37G\327\357\270<\371s9"
#"\235N\265\263\263s\350}\305:w\0\0\0\233#?`?\3129j\325\334\263"
#" \327%\225\n\212\346\207\206.\276\370g_\247gJ\3223_\253\327\277\344O"
#"\364\350c\205\366\315e\276%\223U\303"
#"!=H~\255\336\360\272g\310\25\25"
#"\277\373\373\364\335_\377\272\236\252{\237"
#"\362\206v3\371\216I\3631\21\22NG\327\a\257k\275\265\256^6\0\0\0"
#"\214Gs\4\225ud\216\301\a5\253+:\232L\205K!\252\232gf\222\374"
#"\331\372\236\377\336$U\5E,\272J"
#"\227\376\372\3567\351\215\273\327kw\347\274\266\357~TQ\245B\b\2522^5"
#"o\255\360-\271\307\326\306\362\"\325\377"
#"\326Y\336s6\206a\235\353j\336\363\231\227\357',\3\0\0l\206f;<"
#"\3068\276\241\217\262\250\3521m\325\325"
#"D\252`\346\222\24\276\246o\375\223\253"
#"\252\t\371m}\373[\347\24$]u\323\5\335;\371D5\314\361\246\27)\370"
#"V5g\313\274.F\22\25m\177\226n\27)\257>$\4\200\325\312\347\2435"
#"\303\32C\36\1\0\0\306/o\363\265u\16\r?\250)Tk\240yUp?"
#"\326\303\36\255\376\371\320#\177)\363("
#"}\347/t\361k\327\350\352\27Ii\3415K\325B\352P\246\350r\213R4"
#"Y(\30z\2063\321\265\326\332\366\366\366\302C\36yo\2\0\0\f\327\"\a"
#"\346G\20\324\252\242!fU\371\307`"
#"Q\256\262\236\273&]\255\207u\376\374"
#"ym\277\347\21]\367\376\233\365B\213*\25\252\265\325R\t~3)\226R\250"
#"\346\254y0\305X\312\254\375\351\31[#\271k\351\201\261=\316u"
#"\27B\320\316\316\316B\37\\\346\260\1\0\0\214\233\371\300[{\256j"
) 500
(
#"qjWh\374l\234Wm\320\334Xr)ZyPLd&\326e\373\323\346"
#"\207\273$wvv4\231LN|_\327\271q\35BP\214q\3667C\360V"
#"\343r\337cX/\274\236\30\273u\376"
#"^\303\331b\377\266\231\370\314/\327\340"
#"{\324\254\371\323\253\260&\35\48\251"
#"\261\230\234\305j\366\232\245\205\261U\217"
#"\202\254\347\264y\250\346\273Y\254\27\277"
#"\336\234\365\254\362\307HH[\216|\25"
#"\372\311d\322\272\34\4\0\0\0006\313"
#"\340\203\232\242\313\25\224*;z=\346"
#"\261\372\177\320\276\305zakI^\365\267\271\227\263u\326<HV\a<\237u"
#"\245\5\311\354 \4\216\374\350\301X\227"
#"\e\30\202\266\n\242y%\310\204\327\a\0\0`s\f?\250\231I^\312g\177"
#"\326\277\325\vao)H\26\253\"#VH\2122+\352pW\17s\264X\367"
#"\306U\275k\262\250f\177\322\330\203\214"
#"\231\251,\313\331\"\330X\276\374\275\225"
#"\212\2134\321\313\t\0\0\2609\206\3372w\257\2X\335\35v\250w\255:A"
#"RUd\344\300\341 &\5\271\325\201\254^\0\333\353\355\244\203\6\362t:="
#"TF}L\b\1\253\323U\314\245\371~\3\0\0\300f\31~P\v.\213i"
#">Y\254\v\212\250^\4;\324c \253\3363\227W\303\32=\250\324\276\352\315"
#"\252m\275\21V\354`\316[\2271\5\233\261\205\316\241\351[p\274k\30$\0"
#"\0\0\306m\370AM\241.\253_\377"
#"\256\320\bh\371\226u\0023\251\320\226\244z3S\353\366\371ic-]\337\354"
#"\315\31S\0\35\213\261-\270\16\0\0"
#"\200\303\332\332\340#\bjg/\205\262\2640qZ\353j,a\255Yy\220\240"
#"\266^x=\0\0\0006\23Am\1y(K\177\217\245\21=\266\307"
#"3F\315^\265\261\34 \0\0\0@7\202\332\202\232am\214\241&"
) 500
(
#"=\276\30#\325\37\327T\2637\27\0\0\0\343F\213\374\30R\3y\254s\206"
#"\332*\17b=\244\327$\25\27\3415"
#"\2\0\0\0307\202\3321\215\265\201\334"
#"\366\270\306\372X\207\2449?\262\355'\0\0\0\306\211\240vLck \347A"
#" \235ff\243{\254C\324V\264f\254=\272\0\0\08@P[\320X\e"
#"\313c\252^9Vm\201y,\357?\0\0\0\264#\250-\250\255\261<\266\200"
#"s\334\3073\266\307\277\216\372\236\343\256"
#"\36O^\27\0\300\272\253\276\251\342\301"
#"O/\217\234>\3736\253\317S\364\306"
#"6\300\370\21\324\216i\214\225\37\333\312"
#"\363w=\276|\231\2\234\255\276\36\317"
#"\256\302\"\274.\0\200u\227\276\251\242$\305 SQ\265=$IA6\373j"
#"\213r+$E\225\301$\355\213o9l\n\202\332\34]\215\340\346\342\327\213\\"
#"n\2355CY\337\375\36S8\35\222y\257\r\303W\1\0C\343^*>y"
#"\227^f&\3332\331VP\bAf\205\256\275\343\357\345\215~3sIO\334"
#"\245\227\330\r\372\242o\251\216w\300\350"
#"\21\324\346X$\230\344\215\344!\5\232"
#"t_\335\275\367~\267\365\270ay\272^\e\326V\3\0\f\221Y\241\20\203\314"
#"\336\242\aKW\334\257\206?z\274_"
#"/\270\355\315\272\353\253\361 \254}\341"
#"F\331so\323#:\247\222\257;l\20\202\332)\310{<\206\264\36Ys\330"
#"c~\277\233\341\240y^3\334\341luU\345\4\0`\330\242\24L\356\246\322"
#"$3\311\25\344\366<\375\3205\217\350"
#"o\277R(\310\364\305\267l\311^\363_t\347\375w\352%*\25\344r\232\257"
#"\330\20\274\323\27\320\326c\226\244\36\215"
#"!\365\242\345\26\231\233\326<\257mN\e\316F_x\226\244\30\343\241"
#"!\270\2048\0\300\20\270\202\344\256\240B\251<\210E\227=y\277>"
) 500
(
#"\363\360\265z\376\363\252\341\221/\377x"
#"\224\307\207t\313\363b=\3401\36\24\27\1Fnk\325w`\b\362@\322\26"
#"P\362\323\206\30d\346\335\347fh\30\332c\e\272\266\236M3S\b\201\2/"
#"\0\200\3011\355K.E}T\257\266\273%I\301\252\331g7<\340z\347\25"
#"\222T(\312\25d\222\a\271\225U\260"
#"\343\253\16\e\202\36\265S\326\34\2526"
#"\204\336\215y\215\374\256j\220Cxl"
#"c\223\277V\315\367Z^\330\206\327\a"
#"\0\260\336\266$\213r{\213\356\367(wWY\272bt\335\363\312z\23/\25"
#"dU\261~\223\314\203J\217\3444l"
#"\f\202\332)\350\32\3768\204\336\215\343"
#"\336\307!<\246\261j\353\331m\16\211"
#"l\2065^\247\323w\322\360\333|\215"
#"\332~.r\375\336\254p\346\263\245\204\252\301B.\35T@\213\215:iTE"
#"\3\260\230\313=\270\267\310\345;\267\361"
#"\203B\375\261\376\277{\265\337K\2270"
#"Y}\236$\243\351\212qj\373\214\360n?E\233\3248\246Wm=\344\363\5"
#"yM\316\306\274\271\233m?\223\3745"
#"\312\1776\257\277-\274\271\252\243\307\263"
#"sL2\213\351\327\372\177A\256K\325\0!O\227c\367\16`\276\313\331\2775"
#"/\337\267\215\324\322np)Z\254s\227I\n\n&U%D\252\3363Y1"
#"\333\371\5\217:'S\251\375\223<L`\220\370&?Cch4\267\225\355o"
#"\253D\210\325i~\371M\247\323\326E\260q2}U7\363\363\232?\363!\320"
#"}\237\225\266\20\227\230\231LR\214\a"
#"S2\334\275j\300H\252z\320\242\252QA\347f\333\230\214\241A\0z]\356"
#"\376-m\327u\20\252-\270\35:\317\244\20\237&wW842@\362C\a"
#"\243\352\2764+\264/S\320\226\234b\"\330\20\24"
#"\23\271Li'\225\206\235M&\223#\345\356\207l"
) 500
(
#"\221\302)X\235\266\367\332X\336{\353"
#"\240\253H\320i\26\336\351\17q\245d\205B\220<J\26\366eV/\366\352a"
#"6\4\310M\365\300\240\240\322\244B\373"
#"rm\21\326\0t\272\334\375[\333u\344\333u]gu\232dW\274M\27c"
#"u@\270\224THu\17Z\250\2\232\207\203Q\3W\274C\17y\275\370u\265"
#"%0z\364\250]\246\266\341Jcl$3\264n=\265\35\t\215\221\271I\247"
#"\245\353\263=\3573\336\3659Yt^\332\354h\266\n\331\23w\350:3m\25"
#"Af\347d\301T\330\226\256\273\353\t)\246Y\35\222<(>q\227\376\307p"
#"\203\36TAH\3\320\3534\366o\363\332\4]\327Y\365\250\355We\36\25$"
#"3\25\n\332W)Y\224\325\341,Z)y\220E\257N\227$;\350q\3\306"
#"\216\240v\n\314L1\306Q\6\264$\306\250\20\2s\323\326Xz\3771\374\361"
#"\364tUB\355:\257\357r\371\351\v\365\274[\325Kf\366V}\276\256\212\346"
#"\321U\372\3\372\341[\337\244\333\377\261"
#"T\341\365\1\347/\334\250s?p\233\36r\0235\321\0\314s\32\373\267EG"
#"\26\264\235g\332\252{\317\366\253y\270"
#"\356\332\362B\321\303\301\274\264\272\24\277"
#"\2074\344\273\32\6y0\374\e\0307\336\351\247$_\317j\254(\317\277\336X"
#"S\355\364u\35u\356;8\3237\367#\375\336\\<\276\253\0I\265\213\216*"
#"=*T\v\16\325%\37\277_?|\355E\375\355\337\27r\vz\360\206B\366"
#"\232\277\324\355\237\277]/\263B\356\263"
#"\372h\0\320\351r\367o}\205C\322\350\216\326\3364Ir\311m_\212U`"
#"33\271\274\352M\233M\312\225TV\205E\334T\215\34\220\35\24\212\4F\216"
#"\240v\212\362\265\254\306\246\257\350\1\326Cz"
#"]\366\366\366F\375^\\\246\256\211\361}="
) 500
(
#"\351mG\222\333\346\21\266\25\353I\227"
#"\253N\213\222o)\324\345A\312 \225"
#"\301\244\307\37\320\247/^\247\37\271\262"
#"\232\257\361\212\217\225\212\361\317\364\216\37"
#"t]\362}\235\263@\325G\0s]\356\376\255\353\374\266j\304G\16`\231d"
#"\276%\5\311UW\2705?\\\345V\222\212\250\322\252}]i\373\n\221bI"
#"\330\34|\223_\246M\350Y\332\204\3078T}G3\t\323\247\253\355 E>"
#"Y\276y\272\231\351\336{\357\235\r\31n\273\\~}\371mUak_1\374"
#"'\275\322\nm\5\32393\331\17\334"
#"\246\27<\360%\275\343\271\252\216<G\325e\371K\25z\232\376Y%\r\31,"
#"\35\337\25\303\325\265\177\313\303Z\332\227"
#"5\367}]\373\266\276\353>8\263q\275\nJ\315R;t~\250J\207\230T"
#"h\213\226\353\n\360\331>\e\213<\257\274\335/S\327\320\24619N\5;,"
#"W\337\320\223\256^\265\261\276OW\311"
#"\335\17\5\262\324Sv\375\365\327+\306"
#"x\250\347\2549$h\36S\224\354\234,\276E\367\371\276bt\2251\312K\327"
#"G_Ym\23U\312CT4W\210A\245]\322\323Td\207\244\201\263\327\334"
#"\37\261\237\31\207fXk\356\333\232\a"
#"\250\362\3631\16\315\3172m\277\263\321v\2207GP;E\3152\375c\331Y"
#"\215\345q\214\331\274\212\234]k\336\340"
#"l4\237\357\20B\353\351\v\277\6\36"
#"\24\355\222L^\327q\254\217n\333A\271\220 \223yP\220)\206(\271\251\24"
#"U\321\260\32\213\224w\3070\244}V"
#"Q\24\207z\326\272z\314x\335\307\205"
#"\317\362r4\303Z[\275\v\202\332)\351\34\203=p\363&\23c=t\355L"
#"'\223\211vww\217\34\1\305\331\310\207\t5{\316Rc\347\330_"
#"|\276%\251^s\350\320.\273\276\356\30\344\252\326 \n\345\271z\221"
) 500
(
#"!\247*\32\226\242\255\27m,\337\177"
#"\233.\17`\315\236\263|;\276W\306\251m\236!\237\357\323\223\27\346i{~"
#"\371&?%\371\30\3541\356\264\362\341[X\275y\325\5\223\346k\306kw\272"
#"\232\257A>\247#\35\03533\225ey\374\347\336\244\340RU\366\254\224T\25"
#"},\325(\26\22\252\333+$\251\2102\257\2\34\375iX\6\212L\215[\333"
#"\332\217y\200\313GmlJ\25\354M"
#"\322\374\214\363\332\236\236\276\317RBP"
#";\3{{{:\177\376\374\252\357\306\251\343Kx\375\\\316\321.v\266\247#"
#"\5\264\262,g\1777w\272y\243\3458sx\\\222\256|\273\36\362{\364\212"
#"*\212)h_\205TWF\213r\267\252\314\265K\361\212[\364\220\337\255W\305"
#"z\35Y`I\216\263\b2\206\243-t\345\313\213\344\350u\31\17>\327g\257"
#"\331^h\373Lm\255\350~\215Z_\27\346\320\361A]Om=\272y/["
#"\333p\25\\\276\274\321\322\354\275L\213"
#"\217ooo\37z\276\267\267\267\265\273"
#"\273;\367\272C,\25\267\266\252\353\365"
#" \267}\205\30ta\262w\360\232\273\244\260_-\36+S\364-\5\253*@"
#"\232\25g\361\220\201C\330\227\214[_"
#"(\313\317\243w\258\236\274\2672\237\eHP;%mO\356\30wT}\251"
#"\37\253\225\277\367\322\337i\236\332\336\336"
#"\336\212\357\341\370\344e\251\223\346k1"
#"\231L\216\364x.\372\371)%\25\321"
#"\245\340\212\36t\376M\273\212\263\333\212"
#"\325<\264\240j\36[\275\316\220\21\322"
#"\260d|\27\214W_@\223\272\207\332\363\236\30\2571\266mW-?\310\333|"
#"\216\31\372xJ\362\220\326\266\370\365\230"
#"\347\257a\365\372z\314R\17\357&:\215r\341i\a\232\377k\226\252"
#"N\267\221\37\310h;x\263\350\27]!\325c\30C\365#\272\16\n"
) 500
(
#"I\206\203\305\206\262\237\2044\0\213\310"
#"\367\217m?\373\212\207\364\2357\357'\200J_> \250\235\202|\2075\257L"
#"\372\30\217F\260\343]Oy\241\213\346"
#"i\353\352\270\367o\336\366\363\n\375\344"
#"e\363\315\354\320\232hy k\vg\371\3554\2573-\327\221J\3657\347\263"
#"5/\337\326\210\311\17773zF\1\234\212\276\221@m\303\350\333\346\334.R"
#"\266\277kh\27\200\371\30\372x\n\272"
#"\206<u\355\264\206\252\257\332\323\320\37"
#"\333X5_\257u\255\330\231\37\261\355"
#"\232g\327uZ\333\343\351\233\243\327\367"
#"\34tM\214_\344\276\247\6K\327\374\324f\203\246m>[\337y\351\364E\27"
#"\312\6\200y\362\220\326\265M\263,\177"
#"\276\17J\327\221\16D\315\233\237\277\310m\28@\217\332)i\v,\251\220@"
#"s\233!V\320i>\266\241\334gT\322\3535\231L\216T\"]\227\327\362,"
#"\16l\344\241\3548=d]\327\325\324\366\231\350\nXm\26i\34\265i.\240"
#"\r\0\227\253o\377\226~\357\352\365\317"
#"\2079\266\265\203\372\346\267\1\230\217o"
#"\375S\320\327\213\226\353*>\260\316\272"
#"\356s\263'!Y\227\306?*]\363"
#"\324\326\361\210\346\"\237\241\276\203\5y"
#"\30k\vdi\301\351\334\242\357\333\266"
#"\206H\363\266\3226\351\276H\325\1\233"
#"\364w\272\37E\321?\207\254\353\200\16"
#"=j\0\316J\3334\216t\240+\355\273B\b\207\366g\371\276\255k\304\3m"
#"\3\340d\bj\247\240o\250V\276\335\230vVi8Ds'\276n\215\177T"
#"\334}V\375QZ\237\203\4m\201d"
#"\336\21\336<\220\245\277\313\262<\24\306"
#"\216s$\267\357\371\310\347\260\265\335\337"
#"\374\266\322}03moo\37\t\210eY\366\366\216u\35\34\241G\r"
#"\300i\351\e\305\320\34\35\220\16\20\265"
#"\355_\333F\n\265\205\263\266a\354\0"
) 500
(
#"\346\343[\3772\365\355\210\244\303\325\37"
#"\307\34d\232\303\275\330\1\257\237u\235"
#"\304\235\a\222|\370L\372W\24Eg/Y\nh\371\\\257\344r\207\e\367\315"
#"\201\233\367|\366\315\263k\316Yk\273"
#"\\\333i\353\364\332\1\30\266\276\375O"
#"s\377\326\366\375\321\267?Zd\3778"
#"\326\266\20p\332\bj\227i\221\235\315"
#"\230vH\2134\24\307\364x\307b\221p\260*y\357X\ne\315\341\212\363z"
#"\311\346\r\227\224\2167D\271M~P"
#"f\321\320\273\267\267\327y\260\246\353\365"
#"\350:-\17\263\0pR]\a\204\332\366o\371\201\260|.n~]\363\302\32"
#"\3730`1T}\\\2021\355\220\272z\a\306\364\30\307l\321a\272\363\234\344"
#"\362yY\347\346u\365\365<\235\326\301"
#"\220\313\235\37z\32Cw\332\206\26\35"
#"\347z\306\334+\17`\271\372\16\22\35"
#"w\377\3267d}\321\203Q\300&\312"
#"\277\327\363\277\351Q[\202\275\275\275\331"
#"\334\240\2461\207\2331?\266u\323\34"
#"\212\322v^\363C\237\206\342^\356\227"
#"\344\274/\363\346\334\261\364/\rQ\314"
#"\3479t\205\217\261~\221\3675^\0"
#"\0\300\346\310\247t\344m\3z\324\226"
#"\240\353\250\371\230\ej\3151\3558[]\317u>\324\257\253G\250k\36\302\""
#"\257]Q\24\v\367\222\265\r\243\351\273"
#"\235\261\274\177\272&\332\3\0\200\315\326"
#"\326Vk\236FP[\22115\330\232\v\375&cz|C\320\26|\346\r\365"
#"\353\273L\276}\327k\3317\347-\337"
#"\331\344\177\317\353\356\37\313\373\247\255`"
#"\312X\36\e\0\08\271f\273\240\255\rFP[\222<%\217\245\2416\257'"
#"\a\313w\334\347\177\221p\264He\303"
#"\266\333\355\353\245\313\3\333\246\274g\b"
#"k\0\0l\266y\325\252\323i\314Q;c\251\201;\235"
#"NG\3318#\244\255\217\343\4\236\266\305\241\363q\322\315\177"
) 500
(
#"\371\3554\265\355h\346Ugl\e\6\331w\eC\225\317\r\314O\a\0\0\233"
#"\247\257\230\30=jK\324\325[1\246"
#"@\323\234\217\324W\34\2\247\257\255\267"
#"\252\357(M:\255,\313\23\277F\363\336\307}\303\e\27\351M:\356<\271u"
#"\226\17\aN?\207\376\270\0\0\300\345"
#"\351:PM\325\307\25\311{\21\306\326"
#"k\220\317E\302\331k>\347\351_\337"
#"\342\3201F\275\361\215o\324\371\363\347"
#"O\365~t\365\220\315\253\346\230\367\260"
#"\215)\2445\271\273B\250v\267|>\0\0\200t\264\35\224\267}\bjK\320"
#"l\224\215e\370S\327p\270\313i\200\256c\343u\331\367\251\255\a&?\277m"
#"\310b3\224\315[\34\272\375\272\353\313"
#"Hr\305\331i\a\347\226\a\247y\276C\331\227Y}}.y\375s\21]E"
#"L\206\374\331hcV-6\336\374\e"
#"\0\326Q\333\1\264\266\237\307\335\26\300"
#"Q\363\332=\4\2653\326V\365nH"
#"\372\302B\336\213R\226\345e\365\32\254"
#"\343\363\3235\257*\227\a\243\256\371]"
#"\213\334^\222\346\2215\347\223\245r\370m\377\232A\240\317d29t;Q."
#"y}\e\325\235\257\303VP\nfAE\343NJ2\253CY\224kKR\220"
#"\\\212)\260Y\\4\253\215^\327Q2\0X\245y\337\357]\243e\232\337\213"
#"\307\331v\336m\3\233h^\e\223\240"
#"v\306\272\346\363\fe'\325v\177\273"
#"\322\177\276\355q\32\246\353\332\230m\373"
#"\2\352\352\251\312\277\274\362\323\332\256;"
#"\337\266\257\207,\306x(\214\345\3010"
#"\205\344\256\373\330<}v~)\5\231\\^\365\231y\235\303\24%\213\222Bu"
#"B\352)S\220\274\254N\262(\363 "
#"ST\234\235\233\302^\320z\275\222\253\223^\313fA\221\241|\376\1\214"
#"\327q\276\337\233\3477Gv\364\rS"
#"\357+4\265n\337\365\300\262\265\35\354"
) 500
(
#"h\373\\\20\324\226\240\371b\244\306\332PvR\371\ei\336vi\333\374\264y"
#"\362\353_uC\266\357\313\244\357\265\233w^\336;\226\36ws\270b[\357\\"
#"\272\374\242\5)\346MPM\357C/\352\03653\25.E+\345fr\5\35"
#"\354\36\366\345V\5\304R\222,\365\256"
#"\5\271I\256\240P\215\207\254N\216\345"
#",\334\241\322uP\3\0Ve\221\357\367yC\350\217{@vh\a\253\201\263"
#"\322\234\22\321\3679\242\352\343\22\fy"
#"\307\224\357\220\273\2L\333\216\376\270\215"
#"\321\343\34\251;+}G5\272\266m\223\27\324h\6\260\266/\271EBW\337"
#"\366\213<_m\333\330\243\37\326\356\355"
#"\27%mI\366b\335\262\3676\375\204"
#"T\317U\223\242\242\nmI\376\347\372"
#"\330\371\17\353b\274\244\262x\266~\366"
#"?\\\257o\375\342g\364\314\17\374\37\372\311\357\222\244B\36$\327%Y8'"
#"S\324\276\231\266\350W;d\210\373\0"
#"\0\343\264\310\367\373qBY\3276\213\366\34\0\233$\37\t%\265\267\5\tj"
#"K\264\216s\260\26\3215\374\257mX"
#"g\337\230\364E\257\177U;\362\343\6"
#"\303\346}\\\264G\360\244\217\257m\336"
#"@~\336\"\327\227o\363\273\37\n\272m:\325Ur=\365\331_\327/}\344"
#"Q\355\335x\225,\270\244\240\302\203\244"
#"o\353\276_\277K_{\303\373\365{"
#"\257{\206\364\350G\264\363\213\357W\374"
#"\336\237\323\a\277\253\250z\317b5mM*f\363\334\n\243\303>G\343\4\300"
#":\351\373~\357;8\330\327\323\326u\35i\233U\34\204\5\326M\337A\215&"
#"ZRK\220\317\v\312\27\277]w\213\4\203\313\331\351\246\2\31\247q]\227c"
#"^oT\327<\2624w\254\253\200H_O\343\242\2016\377r;\311"
#"\363\325\272\3\260o\352\233O\231LA\317|\355oh\357\346\27I\301T"
) 500
(
#"*T\333\233\244\247\36\325\305\177\274F"
#"ox\3353\252\241\217W\275A?\363"
#"=\246\357\273\372\307\365\f\213U0\v\222T\315Y\253\356TA_Z\206\306\t"
#"\200u\323\367\375\336w\3205o\3\344"
#"\a*\373\256\203\375 PY\344\263A"
#"\217\332\22\264\5\232!\357\250\232C\371"
#".\267\227p\335z\31\273^\227\276\361"
#"\373\363^\313\223\316i\353\333\3668\341"
#"\254\357=w\323o_\243\367\376\322\266"
#">\355\246\340\317\321O\177\340\337\353\331"
#"\177x^w<Tu\223\225/\271M\367\276\276\372\335=\252\260 \327?\313\364"
#"\34]\375\242g\312\245:\220E\271\16"
#"\n\210T\247\327\305H i\375\336\353"
#"\0\220k\373~\357\32\311\321u\300\260\31\3208@\5t\353;\b\237\20\324V"
#"`\221\306\332\272\357\334\232o\252\20\302"
#"\241j\2041\306\205\32\245}\333\34\347"
#"\361\237\344\271:n ;\356\365\254\213"
#"\271\367\357\273_\253\367]xm\25\254"
#"\36\273[\347\357\270O\277\375[\27\264"
#"ws\343r\337\276O1\230\314\252\22\374\346A\n\377\240o~[\262g\250."
#"\305_\2074\253J\366\333\241b$HRo\372d2Y\365]\1\316\304\272\177"
#"wa\276|\bd\333\322/\213\314\207"
#"\236\267\35\206\201\317\364\331\232\367\334\322"
#"\222Z\222\274gcoo\257u\370\343\20wn1\306\331\204HwWQTU"
#"\1\363a\202M\363\202\334\274\363\363\352"
#"\207\363\206g\264\rYl\373\267iv\337\3739=U\217p\214\36U\206R\262"
#"z\0355EIQ\361\231?\246k\236"
#"\365g\372\314\347\277S\225\354\377\253\317"
#"\351S_\223.~\371Q\225\263q\217"
#"\261*\372\350\232U\177\334\304\347\263\17"
#"\317\a6\301\220\276\2730_^\360 \377N7\253\252\0317\333.\213\256\351"
#"\211a\3403\275Z\364\250-IW\230h\233h;D\251\27Mj\17O\315\236"
) 500
(
#"\267\346N\275KW\261\222\244\255\370H"
#"\272\336\346m\37\267q\274iG\216ny\366\357\353=\347?)s\311\3642\275"
#"{\362z=CQ\36%Y\265\206\232\351_\353\365\357\273E\337\331y\217v?"
#")\271I\327\336\366\36\205\17\376\241>"
#"\377\372\27\352\365\317\f2\257J\365\313"
#"\377E\321\236\246\302\225\252\213@\233\367"
#"\276\302f\351+v\204\341\313\2531';;;\263\203\234[[[\263\271\332\30"
#"\237\323\230\352\202\223!\250-YW\340"
#"\30\333\27\\\333\370\366\262,\25BPY\226s/\237?/\315F@\327\4\345"
#"fX\314\357\307q\356\363\230\314\253\316"
#"\371\3437\355iz\243\16\17_T\220\205\352\v\327d\325PG\3731\3358\231"
#"\350\255\212\263mt\357U\au\374\245"
#"j\311l{\232\212\350R0\346\250\325"
#"\306\370\276\2\232\bi\3436\357\300g"
#"\263\27\215\367\3018\361\31_\35ZQK\326\f\30\315\352\217c9R\321V\274"
#"\"\375,\212b\26\326\346]G\272\\"
#"Z\24\272\371\273\273\253,\313#\303\26"
#"\333*P\265\5\267\276\333\e\233|\202j\3635\2111\312U\17Q\3610+\n"
#"\22U\252Z\314:T9\254~Z\\\365\374\264jykIQ\245I^/v"
#"\35T\310\242\244P_ \216\357\371<"
#"\2111\276\257\200\34\357\363\361J\225\231"
#"\273\16\206\246\321,\315a\222ch\317\3400>\343\253A\217\332\ntUw\31"
#"\362\207 \237\367\325\325#\226\314\253F"
#"\230\266\351:\202s\322J\213'\271\256\241k{\16wvv\252\327E\241\352M"
#"\363P\365\200yP\260T\303\321\245\30\244PM;3\223\352$&\223\344\n\n"
#"\252_{\253B_\b\205T\367\244y\250z\344p`S\347B\2\30\256\274\n"
#"d\363\373\274k*\303\330\277W\201e\241Gm\205"
#"N\253\362\340*u\205\315\346N<\37\266\330<\275"
) 500
(
#"y$\256\255\260\307\274\235}\36\376\332"
#"~\266m?\244\347\370r\265\35\1mV\35\214\262z:Y\250\206/\272\252\200"
#"\345A\nQ\212.\2634\254\245*\34"
#"\242\272\0\211\371~\335+\27\24\274\250"
#"\207AV\273\25c\367r\204\231i:\235\16j\35E\240\317\345\314\t\306\372k"
#"\e\362\226\317Iobx\3348\345\5\334\260<\364\250-A\337\e{2\231h"
#"wwW\27.\\\230\333\303\264\216\272"
#"\346\213I\322\366\366\266\246\323\251\244*"
#"\230moo\317\316\233N\247\263\277S"
#"\243\265m\376\336\242_\374'\331yl"
#"\322\16\247mH\212\231U\201\313L\322"
#"\276\344[\222\25\ak\243\245\360\26\352"
#"\340\246\250Y\a\231\251\272\214mU\275"
#"k\365t\264\203\322\374\207\327U\0030NmU\1\tl\343\322\367=y\234\321"
#"+\30&>\323\253EP[\202Ez\205\362!\5g\261\223;\253\353o^o"
#"\263\247 \205\261{\357\275\367H\271\336"
#"\351t\252\311d\322\371\3307)D\255Z\365,o\325\25\36\273\316\227t$x"
#"\35\354>,\244mC\307\266\0\306\212F\334xu5\322\273z\324$\35Y["
#"\25\343B\333\354t\315k\35726i\305\232;\271\263\354Q[dNX\327\375"
#"j\376\335\325sff\263\205|'\223\211\246\323\351l\333|\2r^\r\262y"
#"\237\332\306\300\3C\3276D\27\0\326][\1\221\346\367s~\36!\rX\334"
#"\"\235\22\364\250\255X^z\376,o"
#"\247M\333\355\266\235\226\337\307\274\347l"
#":\235\312\254Z\310\2739\2718U\266L;\373\266`\332v_\351Q\303\230\344"
#"\a*\0`\210\232WW\332_\0\0 \0IDAT\245\370\245\243\353kq"
#" \n8\231\256bc\4\2655p\341\302\5\355\356\356\36*\360p\226"
#"\372\206\27\266Ul\224\16z\315\222\256\373\232W\200J\363\27\372z\312"
) 500
(
#"\272\202!0&\34|\00004y[\241\253HW\337\371\0\216\312\333\342\371\22"
#"S\351o\202\332\32\310\203\3212z\327"
#"\332\326\35\313\337(\273\273\273\263\337S"
#"Q\220\\[\1\220\374\274\375\375\375#"
#"\267\333\34N\321\26\f\201\261\311\17t"
#"\244\241\302\0\260\316\322\1W\2064\2\247g\321\2668Am\r\264-F|\26"
#"\267\3217\374\2529\2441\275y\372\32"
#"\221\371\233\251m\336Y\363\272?\361\211"
#"O\34)\357\3325O\255\353>\3\0\200\345J!-\377\316\277\376\372\353\17-"
#"\261\223N\247W\rX\314\274iF\22"
#"Am-\230\331\354\b\373\336\336\336\231"
#"\204\223\276\20\324\234o\326V\211q\336"
#"\365\345\241+\237|\334\326s\320\25\326\372\3563\0\0X\236<x5\177O\363"
#"\317\233(\6\6\234\\[{\230\240\266"
#"f\272\306\250\236\266\335\335\335\331\365\347"
#"!\3528\303/\333\252?-z\237\347\2055z\324\0\0X\215\256\300\325\367}"
#"\335\374>'\254\1\375\346\215v\223\bj+\327\266C[4\240\0347\334\344="
#"g}\372\346\2155\207=.\262#\356"
#"\233\217s\234\2#\300\230\360\376\6\260J'\375~\357\e\1\3236\347~n["
#"\305U/\330\31%\5\271\342lMNw\227\314d\351\256X\224\263N'F`"
#"\321v.\353\250\255Xs\3476\231L\16UW\234\367\2.\22\322vvvf"
#"\377&\223\211\366\366\366f\303\e\217s"
#"\377\362\323\272\312\210\316\323\26\310\332\256"
#"\213\243q\30\203\276\367\361\336\336\236\266"
#"\267\267\17\235\306{\36\300\262\234\366\367"
#"{n\356\324\206'\356\320u\26d\241\n\206!<M\205=M\327\336\371\244\344"
#"u\21\262'\356\324K,\310\n\223\25"
#"\246\e\277\20d.\271\227\227}\377\200U\352\352\244\310\321\243\266fB8"
#"\234\235\273*\302\344b\214\263\313\266"
#"\365\234]\356\360\304\334q\253Sv-"
) 500
(
#"\216\331\274\236\256\245\1\200\241\232\367\236"
#"N\23\361\227Q\355\25\0\232N\353\373"
#"\375\270\327?;O\222\364\26\335\357w"
#"\353U\n\252\372\312\276\240\e\355\315\272"
#"\3635\17\351\235W<\240\267>o\252"
#"\237{<\352\241+\244\370\325;\364\262"
#"+\257\323\207\36\177H\357\272\242\270\254"
#"\373\6\254\203\274}\300\320\3075\326,"
#"\304\321\324U\2351/\6\322L\346y8K\227;\311\216\267\257\327\3568\327u"
#"\334\353\241\301\2121\351\nc\2044\0"
#"\253rZ\337\357\213\\\177\333\\\234\250"
#"s\222\244\340A\262j\320\243\353\a\365"
#"C\327>\254\277\375\212\344\177\377y\375"
#"\247\267\374\206\366\257\224\244\250p\305\255"
#"z\357\r\357\322\37?!\351\312\313\276"
#"{\300Zh\266\3\362\265\210%\202\332"
#"Zh\356\300\246\323\251\266\267\267g\353"
#"\226u5\354\232k\234u\3157\313\e\200\247\271\343=n\3032/\315\177\226G"
#"\361\200u\323\374\fv-a\1\0\253t\26#Z\372\276\363\203.\325\eE\311"
#"\202\334M\366\304\347\364\211\213W\353\372"
#"\347\225\322\25w\253|U\224\317\256\353"
#"\v\372\243\217\277X\377\346\335:4\217"
#"\r\30\262\256\371\235\tAm\r\264\r"
#"\207\222\216\16\233Z$\234\315\253 s\222\35\360i4,\27\t\213\364.`l"
#"\332&\326\237\306g\22\0N\303Y\378j\273\256Cm\e}L\257<\367q"
#")\246}\244\351\337=P\352\235WHR\224\334e\26%}Uw\275\344\325\372"
#"\273\17\376\275>\376\274j\220$0&]m\1\202\332\32JE\6\246\323\351l"
#"\276\231\231\315\326X\353\233\344\333\226\310"
#"\363^\265\343\316-;\215\360\224W~"
#"\354\233{G\243\25c\32157\264\355\375N`\3\260L\25388z\3506\25"
#"\344v\203\36\274t\217^.\227\202I\321\253\n\220.I"
#"An\222\371\377\245\e\213\227\353\257\356|\\\217\274\343\312"
) 500
(
#"\203\"\221\300\210t}\26\tjk*"
#"\2040\vk\213\254\263\320\324\266}\263"
#"\301x\334\271e\371\316\3744v\356\363"
#"\346\336\321h\305\330\264\0350\231L&"
#"\332\335\335=\263\205\356\1\240\313Y}"
#"\277's\257\333\203\266<\252\f\222d"
#"\212*\25\314$\363\252\307\314]\376\304"
#"\177\324K\237{\233~\370\1\327#\257"
#"T\325\363\26\330Wb\234\350Q\e\220"
#"\275\275\275\331\357\227S\0dv\344\311\322:$\251XI\230\215\373\266tZ="
#"\241\367\360\5\17\306\201\233Yu\262\231"
#"\344g\323\363E\257\0326Ez\217\247\2B\34\234\0\260l\371w\356Y\314i"
#"\357\372\31\303\376l[\227\24\274\250\326"
#"I\363P\rw\374\352\235\272\346y\357"
#"\326\217>\20u\317\313\353\355B\335\226"
#"aW\211\21j\e1\307 \337\221\253BX\224\3525G\252\243TA^\217."
#"\250\366u\241\372\347R)i_.Y\234\r=\250.'U\241-)u\334U"
#"V\346\r\333\4\306\252/\204qp\2\300&\n.\2252U-\17IV\27\t"
#"\261\252\255\362\304}\177\244\277p\327\307"
#"_U\255\241\26\254\372w\303\27Wz"
#"\267\201\245\"\250\215\234+(\312d\252"
#"\216T\231\242\364\344]zY\260\331\""
#"\223\351\337\265\37~BE\274\244\342\253"
#"w\351\245V\310\266Lf\205nzP\252\343[5~\\\222[!\0353t\305"
#"\30i\214b#\365\275\357\333\212\213\0"
#"\300\350]y\253.\372\307\364*\25\215"
#"\203\300[R\224\314\245+\337\371\237\265"
#"\357\2562Fy\3753z\251\217\276\302u0:\b\0307\202\332\310\231\244\340V"
#"\37\251\252\206;F\213\332\267\e\364\205"
#"\322\345^*\272\253\364\a\364on="
#"\257\273\276\372\237u\323\25\237\326O?"
#"\356\362\262\224?q\207\376\372\325\327\350\256'\267d1T"
#"\207\300\244\272\22Sy\254\373\322,\216\2l\202E\16L\314"
) 500
(
#"[;\21\0\306\312g\377\223\322\250\235\30\252!?e=\322'\2655\314\\\346"
#"AA\325\3746`\23\360N\337\4u\273\317\\\a\363\315\334dr)\6I\373"
#"\n\372A=\377\232\207\365\267\37\370\3"
#"\335\363\226_\327\255WV\343\304u\305"
#";\364\2537|Y\377\317\343\252\336-i\347h\246\343Nqd\16\0166MW"
#"\357Xs]\301\266\5.\1`\23X\375\277(\227\253\236\253V\3055\25\256j"
#"\316Zjk\304T\322\37\330\34\4\265\321\213\3624D\240\316H!JR\320\276"
#"Y\235\273\266\244\307?\257\337\177\370:"
#"\375\320/\374\256\374\236W\34L\346\325"
#"\3\372\374=?\241\27|\277$\227\366"
#"\323\221\2554\367\355\30\232s\324h\230"
#"b\223\344\357\367\346\274\264\275\275=\235"
#"?\177~\25w\v\0V\307\2539i\212\222\311d\36f)\314%\271I\321\203"
#"L\365\242\327\263j\217\261\232G\17l"
#"\0\252>\216^\310\212#E\2252\25"
#"\341n\275\306\356Q\263\n\344[\36\334\327;\277\317\252uKT-0y\347u"
#"\257\321_\336\365\25}\344yQR\320\226\212FE\310\343\347|\n'`\23\315"
#"[\344\272\355\300\5=\320\0\306\2544"
#"\251\230U\233\256\332\30fUi\221\302"
#"\203\242\271\202\254q\340Xr\v\325\372k\242\360#6\3Am\344\16-|\255"
#"j8caA\373\361-\372\242\177L\377\266\261\267;<V\374A\275\325^\255"
#"\377r\347\343z\344\355W\36\204\263R*\v\2518ag,=i\200\264\273\273"
#"\333\273\350\273\304\301\f\0\343V\270\32\a\206\17*L\27\222d\3510s)S"
#"Q/\24d\263m)\321\217MAP\e93\227\313d\332\227iKV\217\5"
#"W\32LP\257\215&/\253\241\211\26dO|H\327<\367=\372"
#"\321\373K]|\325\301\316\323\264/\25[\2275^\226\240\206\263p9"
) 500
(
#"\275O\307]\340\365\270\267\225BYSZ\340:-v}\32\267\3\0\203b\a"
#"K\4\331\241\277\233\333\24\315-4\e"
#"\311\303\256\21#\323\325>&\250\215^"
#"\212UU\311\333j\361\264\250\240\230\16"
#"eU\25\34\353!\215\376\344]z\351s\177A?z\177\324G_Y]\322\335"
#"%sE\257B\232\231$\217r+e:\327{\353y#x:\235j{{["
#"\323\351\364\314\03616O\36\264\372BN[\317U\376>\355\vom\267\321W"
#"\3154\5\261\266\353$\244\1\0\260y"
#"\3626A\372\227\177\377\23\324F/\0052S\31\242\n\17\n1\310-H\236\306"
#"\204\37\324Z\372\352}\237\326C\26\365"
#"\320\253\v\335S\315\360\225\314\364\357\356"
#"\213\372\370+%\305K\222\235\323\276\231"
#"\266\346\2044\351h\3Z\222B\250{"
#"\351h\214\342\0244wr\315\337\273\264"
#"\275'\363\323\372\346R\266\205\262\311d"
#"\322z[\367\336{\357\241\333\350\272\316"
#"\266\307\2\0\0\306\251\255M\320\326\253"
#"FP\333\0V\217\21\260j15\351\312[t1V\23v\245(E\223\207j"
#"\344\367\225\267~I~\353\276\244\240j"
#"\32\357~\325\223f\252\263\334\271z\f\271-<\2317ot\246u\243h\214\342"
#"4\364\5\256E.#\351Ho\234\324>\217L:\be}s\314\232G\312\332"
#"\316\357\273_\34\300\0\0`\374\26),FP\e\275P\255C\342\241z3\204"
#"*\204E\17*R\345\306\272\350R\341"
#"\245\334L\346\365\333\302$\251\236\223\346"
#"\373\222m\35\314U\233\r\251\234?c\215\"\tX\246E\207<\246\323vww"
#"\217\204*\351h \353{\37\317{\217\317\233\a\327\326\233G`\3\0`\274\26"
#"\371\216'\250m\204\252\344m\325\20\335\222\313\25l\277\376\375\200Y!"
#"\213^/l]\235\346\252\347\244\351 \244\225U\221~-\332\245Fc\23"
) 500
(
#"gm\2219i\273\273\273\255\347O&\223\336\313w\5\254\266p5O\337\274\267"
#"\266\361\352\0\0`\274\272F\343\244\323"
#"\bj\233`V\3716\225Tr\271\27\325\3643\351 l\271T\206\252\20\256L"
#"\262h\325\2\223\36UZ\250\373\316B"
#"\25\322\242\313\203-4\364q\221\256]"
#"\340r\344;\271\343\314#;\311P\311"
#"\256\323\26\275\177m\267\317\32\203\0\0"
#"l\226\276\220&\21\3246CHEC\352!\220\365XG\257W&\221\16~O"
#"\205p\345\322l\35J\213*\352\5&U\207\254EC\232t\264\341I\345G\234"
#"\226\256j\213m\241\254+\220\35'\30"
#"]\356p\304y\325)\31\356\b\0\300"
#"\346\351\32qCP\333\b\a\363\311\232"
#"\257\2775\346\227\245\360\3268Ay\236\257B[q\360\373\t0\254k\375\2552"
#",t\335\366q\2Y\227\323xL\247}\35]\245\377\1\0\300fik\3\20"
#"\324\260T4D\327\337q+\17\236\244W\250\257w\253k\330\"\275M\0\0`"
#"\223\20\324\260\0244\262\207\343\270\257\325"
#"q{\205\372\346\221I\335\241\214j\210"
#"\0\0`\223\20\324\260\0244\254\327\327"
#"q\253\r\36\267\307,\17d\351\266\366\366\366Z\vk\244m\272\360^\2\0\0"
#"\233\200\240\206\245\243\352\343z\231\267~"
#"W_\361\213|\233\235\235\235#k\222"
#"\355\355\355\365^\177\333}\351\272~\0\0\2001h[\2035o#\23\324\260t"
#"f\246\311d\242\235\235\235c\25\203\300"
#"\331\351[\23\254\255\370\305I\213{\314"
#"[\217\254\313\274j\211\0\0\0C\302"
#"\202\327X\271\276\36\30\254\217\256\235\305"
#"iT[\314\207Vv\35A\232\327\233\306b\320\0\0`\314XG\rKu\334"
#"!nX\215\24\310\3629b\227\23\310\222fO\335\274m\332\34'\324\1"
#"\0\0\f\25\353\250am\214\245Wm^pXF\260\230[\"\337%\227"
) 500
(
#"\313\314u\375\356\233Ux\224\233\24<"
#"\312\25\2647\231Tk\343\271\262E\362"
#"\252\305\322\323\257n\245\314\212\243\233\351"
#"\350\\\2676\213l3\17!\r\0\0l\2\202\32\226\252\253G%?\177H\332"
#"\346M\365\315\371\352\322u\371E\347p\345\177ooo\313\254PiQ\205\a\271"
#"EI\322'.L$\213\222\aycasW\224\325\333\271LA&)\324!"
#"\257\224\205B\246\242\272?2\271\305C"
#"\213\246\3\0\0\340\364\20\324p\246\372"
#"\206\3015\v\212\214a\356\321\242s\250"
#"\372\26{\236\367{\233\355\355m\205\20"
#"\24c<\24\356\246\323\251\244\252\307Lu\b\223$7I\n\262Y\320\212\222J"
#"\311\203\24$\363 ;Hou\230\263\331\337\262\352DB\32\0\0\300\331!\250"
#"\341L-\32\274\206\34\320$\265\6\264"
#"E\2Y\276\335\242\345\357\233\241\254\n"
#"d]w,\310\24\345\362*\240\271\244t\e\36$\223\\A\26M\26\254\312a"
#"i;\213\222\351\377o\357n\277\344\252"
#"\256;\217\377\366\271%g\376\200\231\200\204\1'\226\210c;\211-a\241'V"
#"\362.A\346\301`lO\350n\341d\331 \1A\b\2603\206\314\274\231\330Y"
#"\211\307 \300\226\200\311\254\25\243\226\t"
#"\362C\202x\234\344\325\214\221\4\266\204"
#"\2752+Yc\20\216-@\3023\363\17$\352{\366\2748\347\336\272}u\253"
#"\37\204\272\272\272\365\375\254\5\245\256\272"
#"u\273\272\253\356\351\263\317\331g\237<"
#"\313\26d\261\224\302\377\323\323\367\337\255"
#"S\327\357\323\216\313\t\324\0\0\0\26"
#"\n\201\32\26\325rY\247\326U(c\256\233B\317V\376\336\335\25B\220\273O"
#"\233}\234\2534#V\344o\220\376\227\2\262\224\376h&)T\257\333%\205z"
#"\326M\212\3518\5)\24R\364\24\370\5\2024\0"
#"\0\200\205D\240\206\0057S\241\213\256\373g[\3076"
) 500
(
#"\252\272\252\e6u\245\201\266\313\337W"
#"\307\314Tmq^\373\220Y\224\216\356\325\370\356WdV*\372&\335\275\357V"
#"\255\263\236t\352\31\335\377\305\357\350g"
#"1*\204\240M;\277Y\317\222\325g\363 \351\250\366N<\250C\346\322\305["
#"t\245\27\212\315\"#\0\0\08\347"
#"\b\324\260\340f\332@\271\353\376\245\30"
#"\244\265u\5\240\23\23\23g\334w\266"
#"\e~\267\203\335\201\301\255\377X\217="
#"$\335=\371\204\326J:\365\314}\372"
#"\342\236\177\320\276\333\242\366~\341\25\255"
#"\377\352\23\372\362\205\246\370\316\323\372\223"
#"{\37\323\253\373vhmh|\17\231\216\355}Xo\177\346\253\232\274z\225\364"
#"\352\243\372\203\a]W\304\263z\331\0"
#"\0\0\230#\0025\214\244\245\34\244\245"
#"j\213g\276\376\263\r\312\272\314e\206"
#"R\222\242I1\276\245\23\357H\37\275PZy\315\237j_\236\t\3331yy"
#"],$\\p\261V\365NJ\241\224r\232dJ\203\374\261^9\262^7\334"
#"\266R&)\256\373\204n\270\370%\275"
#"E\352#\0\0\300\202\"P\303\242\352"
#"\252\374\270\30\316&\335\262\235\266X\231"
#"\261\270\307\2\230\351\365\6\255\325m_"
#"{K\367\335\273M\337\266(\363U\372\364\177\371\v]{az\374\330\243c\332"
#"\375R.\265\357\277#\333s\263v\37"
#".TZ\251\260q\227\366]\377\226\336\366BU2d\320\205z\357\305\2567\235"
#"\324\307\241rI6%yO.\345\2020i=\341\364c\244T\305Sy\373\205"
#"T\331s\332C!\312\275\2776\262\377\331O\353\26]\251\0\r\357/\0\0\213"
#"\213@\r#c\246\312\207\263n\350<\303\261s9f\320\214T\273\332bU\374"
#"\244_\376\376\354\276\377\260\270\273t"
#"\341\265\372\312\344\265\351\353\37>\246\211\207\277\247\313\277"
#"\362>\375\355\330\203\262]\373\365\304\16I\357\34\324}\367"
) 500
(
#"\236\320\246\333\276\251\333v\24u\1\21"
#"\227t\221\275\251~\24\360\226N\275\31"
#"\344\e\350\304\17\213\347\240\311\274'\263"
#"\177\225<\177N\243I\226g@Mi=\242\202\244\240\350R\310\305bd\325C"
#"1-9t\223Y)\251\227\213\312\344"
#"\317\352\264\233j\333\6\336g\0\0\206"
#"\245\335\207$P\303\310\231K\261\214\231"
#"\2\241\331f\306fz\254=KV\225\302\37\366,\331\271b\257~Cc\337\275"
#"X\177\376\225ku\221\233\254\210r\25\262So\353\355\260^7\\.Yt)"
#"\6\5{;\245H^\220K\366\273d\266N\e6=\254\357\34<\251u\327^"
#"$\35{VO\275)m\214\22\35\371!p\311,\2504\311T\312\25\344\3462"
#"\267\274\27y\221\2020\213\252\352\247\232"
#"\252-\26\322\226\345\256(\vQ\36{"
#"\262\220\367\321\363^\336zAu\200\327\17\320\32\223s\0\0`h\332\375S\2"
#"5,\252f\351\371\331\212\214T\307\317e\266j\246\347T3d]\59\3166"
#"\5sT+V\372\332\333u\317\17n\326\227\306\276-\5\227\307-\272g\377u"
#"\272P\322\3557\336\257/\216oK\235\362K6h\313%'\364\346\333\205tA"
#"\352\244{\356\310\257\335\361\347z\353K"
#"\367h\342\200+^r\2456\274\317U"
#"\6\202\264\241\310\37\241\"\377\337\275T"
#"\220\345-\27$\271K\301\25\3636\v\226#\254z\6M!mtn\312o\327"
#"\224\244^\377\371\212*\25\24T\357c.Ir\235\226\371\n\2425\0\0\26\310"
#"\\\372\212\4jXTf\246\262,\347\34\214\315\364\201\356z^3e\261\371x"
#"\263\260\307\2404\310A\347\236i\206oP\n\345b1\231\326n\177B\177\265#"
#"\355\236\26\32=\357U\327}Y\373\256\213\251H\210\a\5\335\2266"
#"\300\366<ccQ\262 \367\177\247k\377l\277\256V\251\240B\212\333"
) 500
(
#"\345\301\231v\31\22W?\0+\362\240Fi)q\321R\210\225\323\34]\262\""
#"\35\37\232oOs\306\254\247\370\3163"
#"\372O\367\276\245\e&o\321G\254P\221\362$\353\2315W\251\240\25\215TJ"
#"\0\0p\256ue\220\265\21\250a\321\235\315\214YW\340\324,\177_\231K\245"
#"\305\371\314\320\315'\245r$f\325L"
#"\222G\25\356\222\212\234\366\346\222\231,"
#"\272\314\362\276i&\225J\351uA\205<\257o\352o|-\5\317k\241B\16"
#"\20\b\322\26\\\n\266b=\3\366\257\36d2\365T\277\215\365\0326Y\314\351"
#"\252\351\211Uz\244\254Yp$\252\210&\367R\226\302\356\24\244Iy=[T"
#"\360B\256r\361?\273\0\0\234\347\b\324\260\350&''566\246\375\373\367"
#"\317)mpP\265\305\271\226\277?\233b%\325\3273\315\266\265_\373\250tt"
#"K\v*\362 MJi4\271\\\26LR\256\0(\253\323\353\322q\375\316\275"
#"\233\251J\231ST\232e\233^\177\2"
#"\v$\245#\6Y\256\262\271\302\322\214\227\35}L\333\36|YnS\222_\251"
#"\273\367o\327G=H\2778\250\373\356yR'l\205\314\2436\3343\251\333?"
#"R\327\24I\1\237\225\222\365th\357"
#"\204\368\224\356\333t\327\23\332\276.(T3\251\236f\352\0\0\300\342!P"
#"\303H\b!\324i\212\373\366\355\2234"
#"\377\200\354l\326\257\r\272o\276\305K"
#"\346r\334\342\210*\24\32k\222r\261"
#"\211\372\253\252\a\37\e\371r\375\31\32I2\17r\353\325\225\5\315C\16 H"
#"\215[h\245U\241sz?\322g\374\37\264g\267t\327\376oj\255K\247\236"
#"\275__\374\3061\355\273\275\320\327\357"
#"=\244\215_}R\177\272\312\25N=\247\373\277\360\r\275:y\233"
#"\326\246\222\")\0\367 \351%\235Z\365UMN\256\224\216=\242"
) 500
(
#"\361\357<\243\e\326^\253\225f9S"
#"\322\352\31;\0\0\2608\b\324\260\350"
#"\252\365c\325\277\307\306\306\24B\230\367"
#"\6\321\243\27$\215\202\234\3328\303\21"
#"&\365\323\343\32\251\216\365\2555\237\337"
#"Oy4\202\264\5W\344\333:\320\216e\16\271N\350\344I\323\272U\322\252k"
#"\376T\223\321$7\3351\371\321\374x"
#"\220V^\244\367\352\204R=\310\220\337"
#"\255\230\317\267Y\237\276ve\n\314/"
#"\272T\227\274\365\246N\231\264R\252S"
#"!\271\234\0\0\30\236\256\t\a\0025,\272j\26\215@\v8S\324i\231V"
#"\244/zA\346\353t\353\327N\351\376"
#"{o\322S\336\223\374b\335\370\325/\353\23\253RH\366\243=cz\340p."
#"\363h\e\345\337\270Y\273\217\244\364U"
#"\337|\217\366_\357\362\\\341\321%\271"
#"\233\344E\n\350\274\31\2441c\n\0\3000\f\252\32N\240\206\221@\220\6t"
#"\v\2152\371!\357\231\26.\270Z\177"
#"\266\357\352t\347\321=\32\373\372\323Z"
#"\377\225\213\364\275\211\a\24\356zR\223"
#";$\275\363\264\276t\357I\255\277}\237v\334V\315\234F\305S'UX\220"
#"|J\246\236LE\256\b\232\322+\243<\257X\f\254R\3\0`\1u\3259"
#"h\6k\f\227b\244t\225&\5\316[y\315`uY\2346\223~\364\230n"
#"\276\357i\235\312\367yH\351\214\341\324"
#"\333:\25\177GW\254\313\3171S\317"
#"N\350\255\2231\315\220\345\31\264\340\251"
#"\200\214\254\227\v\207\224\212r\225\351,"
#"9p\233J[\2\0\0\200\5\323U\347\200\0315\214\244Q\333,\32Xl)"
#"=\321r*bPP\224>\262Cw\276<\246{'\276\253^\224\246zW\350"
#"\356'\256\323\5^\352\216\177\377\37"
#"u\357\330\357\313\302{\344\357\275\\\e/>\241\267O\5"
#"\371\252\264n\315<H\205\344\232R\232;\v\262\340\222\205"
) 500
(
#"\24\300)\217\352\311e\24\213\1\0`"
#"\301\314\245\277k\316\24\306\320TA\b"
#"\3164\333\206\322\300R\364n\257\371j"
#"\0375y\252\3109\276m\233&'\237\250\v\206\270$\227+\270\345\202#1?"
#"s\332\216\327\215\177\347m\26\362\372\263"
#"RR\341e\336Q\273\227\216\213R\265"
#"e\0360\e\376\256\235\277\306\307\307\347"
#"]\364\vK\37\327\374\30213\305\30\247\365\201\31.\305Hh^\370\4i@"
#"b\232\222W\e\217\347@\313=W\334\364\262\277\325\202I\26SuG)\244J"
#"\252\312\233aW\205C\\r\365r\25HI.\25.\271\25\222z\351\372\263\251"
#"\34\244\305\356\27\4\0\0\336\265f\265\363JW\377\227@\r#\201Y4\240K"
#"/\ac1\aj\325\272\262*\300\212i\e<wy\310\213\320\24%3Y\336"
#"\363.\35P\326\345\366C.\35\342\226"
#"\316i.E\2259\345\261\247\376\362e\2025\0\0\26B{=Z\265U\25\345"
#"\3711\222\b\322\200\1\246\355m\227\367"
#"H\253\367\266\313\373\344U\327O>\266"
#"~\254\272\333\212\376\303\232\376\\\231\0244\375q5\37\a\0\0\vjP?\230"
#"\277\304\0\0\0\0000b\b\324\0\0\0\0`\304\20\250\1\0\0\0\300\210!"
#"P\3\0\0\0\200\21C\240\6\0\0\0\0#\206@\r\0\0\0\0F\f\201"
#"\32\0\0\0\0\214\30\0025\0\0\0\0XD]{\251\21\250\1\0\0\0\300"
#"\"r\3673\356#P\3\0\0\0\200E\342\3562\2633\2025\0025\0\0\0"
#"\0X$]A\232D\240\6\0\0\0\0CW\5g\325m{\235\32\201\32\0"
#"\0\0\0\fY5\223\306\214\32\0\0\0\0\214\200\366,\32\201\32\0\0\0\0"
#",\242j\26\255\211\362\374\0\0\0\0\260\210\6\245:\266\21\250\1"
#"\0\0\0\300\20\265g\320H}\4\0\0\0\200\21\303>j\0\0"
) 500
(
#"\0\0\260\310\332AY\327\2725\0025"
#"\0\0\0\0\30\222\256\222\374]\325\37\t\324\0\0\0\0`H\232\373\247I\352"
#"\f\330$\0025\0\0\0\0X4fFy~\0\0\0\0Xls)\321O"
#"\240\6\0\0\0\0C\3265\213\326D\240\6\0\0\0\0#\206@\r\0\0\0"
#"\0F\f\201\32\0\0\0\0\214\30\0025\0\0\0\0\0301\4j\0\0\0\0"
#"0b\b\324\0\0\0\0`\304\20\250\1\0\0\0\300\210!P\3\0\0\0\200"
#"EPmz\335\265\247\32\201\32\0\0\0\0,\202*@\253\2\266\352V\"P"
#"\3\0\0\0\200\241k\6gfV\337V\b\324\0\0\0\0`\310\232\301Y;"
#"H\223\b\324\0\0\0\0`\250\232k\323\272\2024\211@\r\0\0\0\0\206\252"
#"\2716\315\314\352\200\255\211@\r\0\0"
#"\0\0\206\2549\223\26c$\365\21\0\0\0\0\26S;\335\261=\233&\21\250"
#"\1\0\0\0\300Pu\255Ik#P\3\0\0\0\200\21C\240\6\0\0\0\0"
#"#\206@\r\0\0\0\0F\f\201\32\0\0\0\0\214\30\0025\0\0\0\0\30"
#"1\4j\0\0\0\0000b\b\324\0\0\0\0`\304\20\250\1\0\0\0\300\""
#"\352\332W\215@\r\0\0\0\0F\f\201\32\0\0\0\0\214\30\0025\0\0\0"
#"\0\0301\4j\0\0\0\0000b\b\324\0\0\0\0`\304\20\250\1\0\0\0"
#"\300\210!P\3\0\0\0\200\21C\240\6\0\0\0\0#\206@\r\0\0\0\0"
#"F\f\201\32\0\0\0\0\214\30\0025\0\0\0\0\0301\4j\0\0\0\0000"
#"b\b\324\0\0\0\0`\304\20\250\1\0\0\0\300\210!P\3\0\0\0\200\21"
#"3r\201\232\273/\366K\0\0\0\0"
#"\260\314\265\343\216\305\214C\272\276\367\310\5jf\266\330/\1"
#"\0\0\0\3002\327\216;\314l\244&\215F.P\3\0\0\0"
) 500
(
#"\200\205\324\f\310\232\377\36\245I\243\221"
#"\n\324F)\202\5\0\0\0\260<5\3\262Q\233I\253\214L\240\346\356\323~"
#"I\243\370\313\2\0\0\0\260\374\214\322"
#"LZed\2\265\352\227\323\276\5\0\0\0\200\363\315\310\4jM\314\246\1\0"
#"\0\0\30\206Q\215=F*P\233\230\230\250S \1\0\0\0`!\264\v\210"
#"\270\273&&&\26\361\25\235i$\2"
#"5w\327\370\370\270\366\355\333\267\330/"
#"\345\254\234\253(|T\243y\0:\353\365\263\203\216\347z\a0*\6\265o\347"
#"\242\235\242\366\0FQ\327\304\220\231i"
#"\337\276}\323\202\265\205\374\334\316\345\334"
#"\213\36\250U\321\353\344\344\244\244\321\255"
#"\2722\310\240\31\300\371t\316\252\373("
#"\246\2\214\236\346\365\331\274\235\351Z\235"
#"\255\314o\263\335\340Z\a\260Xfj\337\346Z\344mPp7[\333\t,\246"
#"\231\342\215}\373\366i||\374\214\343"
#"\316\365g\267\375\32\272\372\v\213\36\250"
#"5\2034i\351u`\6\25?i\177\335n\260\232oz\363\330\242(H\377\4"
#"F\310\240k9\2040\360Z\35\324\260w\r\312T\327|\373X\0Xh3\265"
#"oU;\325\274m\0363\350\34\325\327"
#"!\2049\35\17,\226\231\342\215\311\311"
#"\311i\301Ze!\203\265\252_\321\264"
#"(\201Z\365\"\306\307\307\247\5i\322"
#"\364_\332R\272\230g{\275\203\32\262\346\375!\4\225e\271\244~n`9\353"
#"j\220\233mTQ\24\263\36\327\336\247%\306X\377\273\372\232\21g\0\3036["
#"\373V\265Q]\367\317t\216\352\370\366"
#"\0\365l\337\eX\f3\365\337\233\301Z\373\2328W\337[\352_/]\257e"
#"Q\00253;cMZ\327\210\313R"
#"\273\220\347\22\\\316\324\2505\203\264"
#"\245\366\263\3\313\321\240\321\346\352\266\n\262\346\323^U"
#"\243\314\355\347\314\226\376\0\0\347\322l\355\333l}\232\371"
) 500
(
#"d\0240\253\206Q\3235\2200\323\314\332B\364\317\333\3 ]\347\36j\240V"
#"\275\200\261\2611MNN\316:B\263"
#"\24.\344\256\334\354\366\317R\245\20H"
#"\232\366\357J;\275\0\300h\0304\200"
#"\324\356\210\264\203\265\366Ht{\24\256+H\343\372\a0L\363i\337*EQ"
#"\324\355Y\325\237\351j\333\332k\334\6"
#"\5\205\300b\231m)R\363\261v\32"
#"\344\271\374\374\266\257\223EM}\254f"
#"\322\366\357\337\177\306\375\322\322\n\320*"
#"]\277\324f\307\255(\n\305\30\247}"
#"\20\232\217\17ZH\270\224~\a\300r"
#"\3255\202\326\274F\333\r|\325\211\251"
#"\256\363\352\261\366u?ht\231`\r"
#"\300\260\314\326\276U\2175\333\256\262,"
#"\353\373\252\276M\363\361vjw\363\\"
#"\315\357E\37\a\243b\320\322\203v\340"
#"4h\315\332\271\374\376]\301\332P\3"
#"\265\231J\360/\345\21\345AoX\263\321j[\212?'p\276\32\3246u\215"
#"\276\315vm\317\326\300\323\201\0010L"
#"3\365\275\272\262\5\332\317kvl\253"
#"\324\356.K\255\366\0\316\37\355\301\212"
#"A\263\301\315`m!\276\177\327\340\306\320\2\265\252p\310LAM\363v)\253"
#"\336\334f\221\200\246\346\a\200\206\vX"
#"\32\346r\2356\257\347AiE1\306\31;3\323\316W\375\317\363\215Ic\343"
#"\333\362\3\375c\242\312\306\23*\261~"
#"\236\24\353\333\364\37\2600\30\204\\\232"
#"fj\337f\352\257T)\220sy\337\351\353,M]\357\355r\273\316\273>\327"
#"\203,D\2606\323\372\267\241\4j]"
#"\325\35\227\233A\37\332\2565k\315r"
#"\334\3639\27\200\321\324\265.c\2665is\345r\2256%\223\24<*x\n"
#"\330\2523\230K\301\213\374\205\3449@"
#"\223\202\334\244\274:6\335zP\271\370\273\262`\231b\340"
#"qy\351Z\273\323\365\357f{V\rD\321\217Y\36f*"
) 500
(
#"\30s>\30\364s\266\253A.\244s"
#"\376\27\273\375\202\317\207 M\232\371C"
#"\333\374\240\207\20\6\246C\266\217\5\260"
#"\264T\327n\273\344~;H\233\353un\351\4*rS\355\222\236\330\377\204J"
#"\271,\2372Z\231\0024/\345\2122"
#"\5\271\245\231\263\352;\270\227\222\242\372"
#"w\224\357\366G\5\316\350\250\363\267k"
#"y\31\264\246\266z\337\253\200lP\332"
#"\30\226\276\245\272$i!4\a.\244"
#"\351\325 \333\217\235K\346\357\362\254\203"
#"FZ\244\264\231uW\372\317\240\224\300"
#"\245\252\235\26\260\177\377~\215\215\215M"
#";\246]@e\266s\265\377\r`\351h^\273\355\266`^\347\361\240~\252b"
#"\220\202\253,O\353[\337\372\226\334\203"
#",\317\254\245\331\262\352IQ\362 YJwL\347P\376:\244 \315\n-\237"
#"\26\30\213i9\375-G\267A\5\220"
#"n\272\351\246\201\217\23\254-O\274\257"
#"\335\205\304\232\23R\357\346w\324y\255"
#"\235\313@\255\375\265\273kbb\342\234\375\0KEW%\307\371|}>\374\216"
#"\200\345\244\335p\267S\177\332\2039s"
#"\35\204\251f\310$)zN\201\260)\271\0272\231\\\245\314r\332\243r &"
#"\311]\n9\r\322bP\31\244\"\272\24\\u\"E\35\341\1gg\320\337\177"
#"f\330\226\217\256\301\365f\321\220\256\364"
#"H\6\231\227\207\231\256\357\363\371\332n"
#"\376\374\23\23\23\3\213$\236\215\256k\347]\247>\16Z\200\327\2142'&&"
#"\6\36\277\334\265\253\"I\263\ab4"
#"r\300\322\322\374\3\326\\\203\332\356\304"
#"\314\267\3753\17\322\361\335\332\24\n\365"
#"B!+Lf\277\244\20z\332\374\365\327e*\352\211\2647\36\372m\0053\205"
#"`zO0\335\362\242d\n\212!\257J\313AZ\335\262\234_M1\26@"
#"\327\337\377\263\375\254c45\333\264\252"
#"=\253\6\242\232\205\221\b\322\226\237\271"
) 500
(
#"V;>\337T?\377L\225\354\317\245\5[\243\326|#\367\355\333\267 \345,"
#"G\305\240)\377\256\221\305\256\216\e\27"
#"\2\260<\24E\241\262\354\257\377\352\32"
#"\205\236wG\306\n\231\377\241^\360\323\362\350i-Z|N\277q\347g\365\320"
#"\361(S\324??\264E\253\17\334\250\327<\312K\327\224?+m\r\272\362\301"
#"\237(xQ\27\22qwYN\245t\252?\342\34 \ed\371\352\352\257\264\373"
#"5eY\22\234-S\263\25\2169_t\365\361\253\372[\254\362\301\0\0\22\206"
#"IDAT\e\355\211\230A\317y7\316y\2406\250\34\375\344\344\344\273Z\253"
#"1\312\346\363\341\35\364\373\1\260\364\315"
#"\326Q\235\367\372\334\372\320\2402\177\341"
#"\222d\277\252_\337tD\377t\\\212"
#"\376\367\372\263\273>\250\347\16\355\324\232"
#"\272\314\343\307\365\370k\17\250\274\347\1"
#"=\237\253\216D\253^[Z\367fT\177\30490h\215:\226\276\366{\333U"
#"\315\261\352\3774\a\241\350\323,\17\355"
#"\312\305\355\373\316\27\355\237y\333\266m"
#"u\220\326\225=p\256\333\302\241\374\245"
#"\256^\360\376\375\373\247\245A\216\202\256"
#"Q\345Xo>\224\312\\\307\326\246E"
#"\256\251\274\276\277\377\334\3643NI\212"
#"\262\220\e\253\330\375&6G\245\232\271"
#"\336\0\226\246\2565h\355\307\253\216N5\2=WQ\245\334T\aj\346Q:"
#"\376\242\16\34\271B\37^\35\244\27\277\247\277\334\374A]&5\252:JZ\275"
#"U\237\336\364\270\16\276hJI\217Vm\272\6\234s\347c\a\356|3\337\1"
#"\351z\357\306\252\337\224\237\3369\233\337"
#"\330/2\335\316\336P\315z\376|\177"
#"\377\234\315\343\201\371O\2244\323\35\a"
#"\265y\363m\v\273f\354\232\206\32"
#"!\270\373\310\245A\326\25\321\352\200,\326\35\32W\220"
#"L\nn\365\205\355r\231zR\310\351C\356u#\20U"
) 500
(
#"(\330\277Q\214\236\32\n\233:\243\363V\225\347']\4X\32fk\310\a\225"
#"\337\257F\230\233A\\5\243\326\36\240"
#"\31\230>!)\224A\362\307u}\335"
#"\206\24\2625\273\364\e\317\36\322\35k"
#"\246\24d\362_\377\240\336/\245\212#"
#"\232\312\373\251\255\326e\37\222\24c]\0252JR\210y/5\"6\0\263k"
#"\226\341o\246@\266\323!;\a\236\335%\223L\275\264mH\364\324\357j\4e"
#"\222\322 \223\273LS\325w\235\373\v4I\336}~SH[\231\344\363\247u"
#"\272\316\22]\314\251\357\335\374\273\274P"
#"\333\2155\257\237\256\3274\324@\255\372"
#"\346\203v\365n/\300\37\0067\345\206"
#"\242\224\311\245\343\17\353JK\213\366C\260\264x\2770my\344uYtY5"
#"*\255 \371\317\364\215-A\267\274\230"
#"\366,\352\205B\261\374\27\231\244R."
#"\305\336\264\237\315\335;G\323\273\336\34"
#"R\a\200\3210\250\364t\363\261\256\353"
#"\265\32\220\31t-\267\367Zk\257c\315GI!j\205m\327Aw\235\366)"
#"Ew\305X\352\321\255A\346\271\215\ty\252\254Q0\304\364S\275\366\217Ri"
#")(s\271\314\242\244\240\242\32\210\2\0\r\356sTU\37\233\307u\375W\231"
#"\326\256)Jf\365\230\220)H\241L[\205X\365\270\3723a\301\345^H\26"
#"\353}\"gb\312\203\336\3\317\257\2646We\32\304\252\213\335\270\350ba."
#"\23$\3251cccu\272\243tn\373\350]5+\232\347\37\332_\352\366\210"
#"s\263\32d\273\3233\334\331\245j\23"
#"\330\"\257\331\b\212v\213\236\365\230\26"
#"\356\227.\237zQ\37\336\371Y=\374"
#"\263t\345\227\371\345\35\177\344f\375\321"
#"\341\364\357\20V\244\306\314LRT\317\v\225g\f,\315\274\303{\273"
#"\274-\200\321\320\16\242\6\25\vj"
#"\36\323\326n\3\253\333\366\314\332\264u"
) 500
(
#"\1\36$\275G\377\352\247%I\205\nI153J\235\221x\3255\272\345\277"
#"\376\215\376NA\212\325\0324Io\274\240o\37\272U7^%\311C\177}Z"
#"\36]\236KG\b\300\3626S\332UW\266@\363\3373=ff9H\222<"
#"\244\301\354\24\220\365\344y\226\313=\267"
#"uu\312\266\311\254?\3535\373\213\17"
#"\222\231b(\323 T>\177\364\306,\232If\205<x\32l7\3133w\300"
#"\334\214\215\215\325{!/D\234\322\325"
#"\227h\236\177h\201Z\373\205Ti\220"
#"\23\23\23\235\217\r\355u\345)\362\322"
#"\252\225hQ\301\243\212\346A\341W\364"
#"\201MG\364\217?I\217\27.\351\370n}\366\311_\323\3477\25\n\36\24="
#"Uz\253\332\35Y>.\233\353\e\313L\0320Z\332\225\317f\32Q\233k*"
#"E3\360k\246B\2371\333.I\366/\352\251\310}\216\264\231ujm\202L"
#"R\360\217\353\v\17\276\252\253\354v\275"
#"\20,\307a\317k\373\352;\245\335\367"
#"\352w\333\3531\362\b\266\323S\1\316{\355\262\372s)\263\3375\3\320uL"
#"\bi\0\334\224\333\254f\233c\2225"
#"\22\35\243\372\301\235\252\231\270\271\274~"
#"\5\5\25\365\371\323kS\277\235\353\177"
#";y\260\264,\305\3\333\223\340\f]"
#"\237\345\361\361\361:H\253\234\253 \255"
#"=(2\350\261\241\316\250uE\215\325"
#"\232\265\256\3522\303QJ&\25\n\365"
#"\364yii-Z\25\270\305\343\177\247\277>\274A\37\\#IA\262\343z\344"
#"\346\3\372\324\344\37\353\303\262\264\270?"
#"/~M\257<\324\353\333\316\6\301\32"
#"0:\272\n\203\314t\354l\1\334\240"
#"\321\263\256\321i\263)\311\v\225\226\227"
#"\237\345\31\261\242Z /I\26\265z\347\313\212\317\227\332j\205\n3\205"
#"p\265\312\27J\35\332\271:\245\375\344"
#"NK\272i\244\35\18\357\265\333\243"
) 500
(
#"A)\333]\263\t3\3150\304X\312s\337\250Ps\335X\376\276&\25\371\373"
#"\5O\331HU\3036\327\356S\373\3742\353?\267J\253\314mg}\177 J"
#"\303\231\332\237\341f\t\376\312\271\354\237"
#"\3174\3201=\263fD\242\202\346/"
#"d\330i\177\315\206C\307\37\322\3465"
#"\273tD\236:3\36\344\212\332\376\274k\317U\247eZ\2417\36\272R\237\365"
#"o\352\177\356<\255\a\266|@\257\377\211k\357U\375N\220\334T7\0253\374"
#"(]\353\322(u\f,_\363\275\256]\251#\22\252\16G\343\251^\2450V"
#"\3\304\371k\257\217\213)c\300R\345H\363P\247\25\245sMI\352\t\300\371"
#"k>Y\0\355>\212t\346\322\215i\347k\265Y)P\253\326\210Ui\216\375"
#"\303\322}\375\342m\2636\225\355\363\247"
#"%\270\315\177L\373\236\351\230\220'\324"
#"\32\307\0-\355\302!\303\354\223\267\277"
#"\327\310|J\2535k\303\17Nb\377"
#":\367\264\327\220\333\347\365\\\351\212\321"
#"Uz)\217)\20\223VH\257?\254m\an\324_\355\374U\311\n\365\352\342"
#"\"it\332bj|\334\224*\20\315`\246\221z\2024`\371\31t]\17\32"
#"\2613\357wV\334\246\244*Q\310%"
#"\263\334v\205\264\360\336\253\340L\312\205"
#"\217\202dQ\245\2246\2756\223\273\345tJ\211 \r\300|\n*\264\373(]"
#"}\226i\347\373\351C\332l\246`\251"
#"\375\261\220*_oz\360\347\375\301l"
#"\17\372\351C\277-\v\205\212\20\24B"
#"\320\255/(\27>\232\305\e\273\247\235"
#"?\364\322Z\334\315\273O\324\375\262\24"
#"\360\375L\273\267\24\332\376|\320T\360"
#"\274>wd\272\277\0301\315\22\374\322"
#"\302\ai\355\345\24gV}\364\364"
#"\207\334\275\314\37\354\251\376\223;O\271p{P4\177"
#"1\303\222F\254\e\353\313<(WpM\35\236\326Z\216"
) 500
(
#"\343/|[\207\17\337\245\325\301\24\302"
#"\32\335u\330\365\330\307M[\36:\236s\244\323\202}cCY\0s4p\220"
#"\306\372\3\306\246\236\352\340*Eh\371\221\3208.7\\ujOH\353m\253"
#"\t\376fZ\20\0,$7\271}N\a\375t*\316\26]\245?\253\337\274\373"
#"&\355~C\222\a\275\366\365\315Zs\3403:\36]\321K\225\361y\351\343\246"
#"+w\3774\205Y\317\337\222\2020+\24,U\343\16f\332\376\202\224\226\231|"
#"^\317y\251\322\243\3128%/_\324"
#"o\354\32\323\303o\244\216\234Iz\343"
#"\241q\355\312\205\337z\264\200\230\305\344"
#"\344\3449\2318qE\351\324\323\272o|\233n\332v\277\2369\331\270?J\322"
#"1\355\35\337\246\211m\177\242\203'\373"
#"\325R\333\361Up\v2\271\314\212\224"
#"6\243^\35\260Y\35\220\305\234\322'y\234c5\236%\"\245\6\25\365o&"
#"x\324\n\231\312*`5\251\314K\367"
#"\245\250\325w\376\217\272\301\361\370\23\355"
#"\336\334\323\255\317\271\16\355\274LE\336"
#";\255^K\302\32\20\0\0p>\312\25\26\337\223\a\220\242\271\202>\240\17n"
#":\252\377\375\232${Q_\275\363C"
#"z\341\320\35z\177\314\201\225\377\236\366"
#"\34\177P\345\256\a\364\367n\322\326\307Uz\324i/U\272+\226)\240{\364"
#"*)e\20\230B\265\306\315M\n\357"
#"\327\a6\37\326?\275\236\262\235\342\e"
#"\17\353\263\a~K\237\333\20\372c[6\265\214z\261\30U\246 \255\274N\237"
#"\334\344\n\361\237\365\3247\16\352\224\362"
#"\270\251I\257\356\331\255\227\243t\361\247"
#"\356\3205+s0\30%y9\355<\301\24\25\242\364\213\203\367ilb\\\333"
#"\356{VoY)\251\247\252\204\263{\220y\320\311g\376\203&\266\215"
#"k\374\361c2?\2750\323j\213 \375\322r\371X+4%SP/"
) 500
(
#"\317\264E\365\252\222\330R\232q\253f"
#"\354=\325,\212U\352\263\aI\275\334\26\220\377\f\0\0\316OQ\245L=\305"
#"\272\210\210\313_?\250'\217\254\327\a"
#".\213\362\27\276\253\377\266\351\303\372U"
#"/\345\241Z\233V\252x\377\325\372\375"
#"\215{\365\275\27\323y\202L\205\367\327"
#"\341\326\3\341V\324\337G\226*E\306"
#"7\16\352\333\2076\351\203k$\267\327"
#"\364\310\315\177\255\e\377\352.}8\250"
#"\337g\365\36\333\223`h\326\335\266K"
#"\233\335\244\177\376\266\376\366hL\321\304"
#"\217\367\352k\207\244\262\330\240\e\257\375"
#"\345zm\246\25&\253\252\230f\301\335"
#"\345\301t\30157j\263\273\374\315#z\365\235\242_\361P\351\272\210vRG"
#"_y[\222\264\351\362\265\222V,\217"
#"\362\246\26\e\1g\220\277\377\217t\310"
#"\367j\253K\246\242.\30\224\376k\315"
#"&\332\32\335\376\222\353\361\217\247\364\311"
#"*,\213\365T$3j\0\0\340\374\23\\\212\366\230\256\16\205\212\302TX\241"
#"\342\327\356\321o=\373}\335\265:\255"
#"'\363\17]\2465u\312\227\347\340k\265V\377\246T\310\25_\270U\301LV"
#"\230B\21\24BO\26L\333\237\17\222\227\212z\\[\303/\311\254P\260B\305"
#"\352/\350C/\276\244;V\227zc\367\37\352\300\247'\265s\215)L\345\314"
#"\260\274n\215\355I\260\340\\yv\354"
#"#\332~\317F\231\231^\372\336s\372\277zU_\177\340\373Rpm\274{\207"
#"\326z30Kk\313\233[\204\5\263\"\225\t\263\217\350c[\242\344o\352\345"
#"W~\221\3\222\220\226:\230d\357\34"
#"\325\221\237E\205\367~J7\254\313\305"
#"2\206\373#/\220\240h\245\344A\26]\252\26\350\347b \346!\5\2531m"
#"\240\230\226\342\307TEH\371\227\351J\215\213Ug,"
#"%K\233g\3\0\0\234w\242k\205o\327\323^\252\314"
) 500
(
#")\213e\31\265wk\352\ey,dV\346\r\260\313\272\300\210\353\247z\355\177"
#"\231N\233+\\\365\230J/\25KW\31\247\24\247\246\344\261\324\243[c.\252"
#"t\213^\314E\337\242\237\226\307R\217"
#"\377\256)\274\276G\177p\3403\372\346"
#"\316K$\231\274\27\24\363\326I\251["
#"\313@:\26V\312\3065\225\n\362\265\267\353\316+O\313N<\245{n\332\255"
#"\37x!m\332\245\333?b2\233R\221g\305\352\314\275\306yB\277\6j\320"
#"\307>\266Y\322\224N\274\374\262~\241"
#"\376\254\220Kz\347\207Gt\302V\350\275\e\327k\245\212\24\264,\217H--"
#"\2677\245\235\353\253\315\26\253\322\326\222"
#"\n\227<\304\264^\315B\336\300\321\322^i1\315\240U\325\263\245(_>Q"
#",\0\0\300\274\305^\310\373\313z]"
#"\16\277\252\346\350^\312\266^\243\317="
#"\376\254^P\352\320\272\305T\210\355\215"
#"\347\364\324\221\317\353\372\337K}\260j"
#"\233\21S\265\316\254\332\2536=\336\337"
#"L;\324\313X^\177\376I\275\364\362"
#"\235\272\314V\310l\215v\36\216\372\313"
#"\217\2336>r\274\277\247\t\260\200LS2\17*\24\25d\372\330'~_\227"
#"\272\244\340\232\322\6\335\263c\235\334\244"
#"\30\323\347:z\232 r\233\36_\2052o|\352\212\322\272M\332\34W\310\337"
#"|EGOy\336\3709H~JG_\376\271\202\336\253+\326\257\354\247\371."
#"\227\251cW\332\367\272Z\177\346!5-\215\22\373\226\313f\26^=\305e\232"
#"\312E\326L\256\323\215\252kEc\202\35\0\0\340\374\22\\J}\3144\31\220"
#"&\261\322`x\252p\267U\367<\364#]c\267\352y\257\366R\373\357\332\261"
#"z\247\354\301?\326VE\371\v\237\227\5K\245\373s\n\244\205\\\365"
#"\321\243\314M!O*\244\347\a\225\222\326\354<\254\30]\321]\356o"
) 500
(
#"\350\353\e\202n}\326\365\362\35\253\363k(;_3p\256xc\v\34\227\344"
#"\27\254\323\25\227\26i\251\324\245\227j"
#"\245\247\1\214`)\215\267\216\251\274T"
#"\363\363\31\252<H\213A\256\265Z\177"
#"\345\224Lo\351\300\337\3748\355\30/\227\35{Z\a~.\305K>\246\365+"
#"s\201\21\371\262X\242V+bjP\\*mJ!Z\236\36O#4\236\27"
#"\255Vk\332R#\323\253g\316L+\352\31\310\364\213\217y\202\35\0\0\340<"
#"\23]\275F\32W5\211\225\266.\n"
#"\222K\227\335yX\345\263\205\256\356\365"
#"R\t\376b\253\342\363Q/\355|\237"
#"\242\a\331U\217)\272+\306\250\322O"
#"\313O\247\252\333\217]\245\274\r\211\313"
#",wks\260W\344sW\263\22\356\2475e\236\"\307\274\337di\205\200\5"
#"\325(~c\212z\347\231\275:p\342\264Bx\217\374gO\352\221\347N\251^"
#"~eEJ\177\364\220\253\360\367?\237"
#"\346\365Nk\251\332\216\235z^_\372\343\247\364s\337\250{'o\323Z7\375"
#"\350\321mz\340%\351\222\317\374\205\276"
#"|\315\205\252\363\374\210C\0\0\0\0"
#"`\232:T\362\243\3323\361\240^\n"
#"\227\350\246;\257\324\241\207\276\2457\265"
#"I\273\236\270M\353,\346u\232\251\352"
#"c\214\336\250p\232\263}=\377\317\254"
#"\220V]\256M\253\\A\257\350\345\37J\322Q\275\364\322\224Tl\324\r\327^"
#"\230\367\25\213i\226\211\305\230\0\0\0"
#"\0\320\20\363\332\314\250c{\37\326\21"
#"7\275\357\223w\352\352\313\177O\273n"
#"|\237\344/\353\201G\217I\n\362\306\264s\273\320MHS\305Q\36b\256g"
#"\370\313\272|\313\245rI\207\217\35\223"
#"\216\35\325\17B\241\270\341\n\255\315"
#"\233\260\25y\332\332X\214\t\0\0\0\0\r!\25\27<"
#"\266G\273\17\27\362\260I\237\274n\245\244\240\177{\335'"
) 500
(
#"\264\321\242\354\373\273\265\367hl\324\210\317AZ#c1x\275y`\312\347\r"
#"^h\345\3076\350RI\376\375\37j\317\17\17\251\364)]y\305G\363\276b"
#"\261^\213E\352#\0\0\0\0004\270d\366\177t\360;G\24Uj\313\256["
#"\2656\317\234\5\277\\\267\337\265I\352"
#"E\35\332\375\270\216\271\322\366`\326\177"
#"n%/\305\214R\314eMM\322\5\353\265\341\342(\205C:r8\252\320o"
#"k\375:\353\227G\245\372<\0\0\0\0\234\301M:yp\267\16\274\351\262\213"
#"?\251O\254-d\222\242\312\24o\255\375\204>\265\312evH\337}\366m\271"
#"\247\"8\245\302\264\252\372\251\230H#\352*M*4%\275\372\230&\276vD"
#"nAq\363N}k\373:\2256\245\242\332\277BQr\313\325\17\1\0\0\0"
#"\0ule)8K\365O{R\336S\260\2524\342.\231\245\345g!\24\362"
#"\322\25\315\353\312\361\241>\320N\247M"
#"\326\252\23\255\335\250+,\255Z\333\274~\235dRP/-t\233R\275\3513"
#"\0\0\0\0 3\245\302\213.\231\nI\275\274\277rH\267y\253\b\253K\370"
#"\207\264\207\205{\265.M\222\24<Gq\346+$/\353\a\375\27'tR\205"
#"\374\222O\351\206\265\371d\222\344.\357"
#"\245*&\304i\0\0\0\0\320\224\312\356\313r\365GO\205A\\\375[\251\232"
#"x\213\212\236B9\5\233\226\372\330\263"
#"\234\306\350\26e\352\345\240M:\365\203"
#"\37\350\204\242~\345\212\313\265\322T\327"
#"\370\217f\215\215\234\363\364\35\0\0\0\0@j$/J\252'\267,\377\257~"
#"\314]\262\240`\322\224\246\35\232\216p\245 L^H.EE\311^\325\337>"
#"\365s\25\276I\327_wQ\177\3036\233\312\325G\252\32\377\4"
#"i\0\0\0\0000\37\356>k\255\217\236\253\224y!3\323\253{"
) 411
(
#"\306\364\340\221 \367R\346A\27\177\372z\255\323\224\344=M+\343/OA]"
#"c\261\e\0\0\0\0`~\334]\356g\326\324\17\301\213T&2\272V^|"
#"\211b\224\314\n\225[v\351?_w\201\344\2754E\27si~I\262B."
#"\2024\0\0\0\0\230\217j6\255\n\316\2323k\315\200\315\334K\357\207\\y"
#"?\265\20S\345\221\\\221\244\232I\253S ]\222M\311\325#T\3\0\0\0"
#"\200yh\247>v\245B\6\305 STT\251(\223\207(\271\253L;a+"
#"\255a\223\344\245\254\372\242*%\311\256"
#"\327\0\0\0\0000/\355\240\2549\303V\t\36R\341\375\340E\336\31-H\226"
#"\223\34-**\310\242Kf*-\315\257Ii\347l\246\323\0\0\0\0\340\335"
#"\351\232Q\263\350\245\233\a\271\312\274!"
#"\233r\251\376\274\36\255\236Ak\236\251"
#":F\242\362#\0\0\0\0\314\335\\\252>\232w\225\30\1\0\0\0\0\234s"
#"s\t\322$\246\303\0\0\0\0`h\272\326\243u\226\347\37\326\v\2\0\0\0"
#"\0\364\213\211t\225\350\257\20\250\1\0\0\0\300\2205\367S#P\3\0\0\0"
#"\200\21P\5g\355\331\265\n\201\32\0\0\0\0,\22f\324\0\0\0\0`\304"
#"\fJ\177$P\3\0\0\0\200E\304\214\32\0\0\0\0\214\30\312\363\3\0\0"
#"\0\300\22@\240\6\0\0\0\0#\206@\r\0\0\0\0F\f\201\32\0\0\0"
#"\0\214\230\377\17\234B\322\332\314f\203\360\0\0\0\0IEND\256B`\202"
) 0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 7 #";POINTS"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 16 #";absolute origin"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"PO"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 3 #")) "
0 0 17 3 27 #";midpoint of the base front"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 21 #";initial bounding box"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+z"
0 0 24 3 1 #" "
0 0 14 3 2 #"PO"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-h"
0 0 24 3 3 #")) "
0 0 17 3 27 #";midpoint of the seat front"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"P2"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+sph"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 14 3 4 #"pi/2"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 4 #"pi/2"
0 0 24 3 1 #" "
0 0 14 3 10 #"sa-\316\261r-rad"
0 0 24 3 4 #"))) "
0 0 17 3 26 #";midpoint of the seat rear"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"P3"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+sph"
0 0 24 3 1 #" "
0 0 14 3 2 #"P2"
0 0 24 3 1 #" "
0 0 14 3 4 #"ba-h"
0 0 24 3 1 #" "
0 0 14 3 4 #"pi/2"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 10 #"sa-\316\261r-rad"
0 0 24 3 1 #" "
0 0 14 3 10 #"ba-\316\261r-rad"
0 0 24 3 2 #") "
0 0 14 3 4 #"pi/2"
0 0 24 3 4 #"))) "
0 0 17 3 25 #";midpoint of the back top"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"P4"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cx"
0 0 24 3 1 #" "
0 0 14 3 2 #"P3"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cy"
0 0 24 3 1 #" "
0 0 14 3 2 #"P3"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 2 #"PO"
0 0 24 3 4 #"))) "
0 0 17 3 29 #";midpoint of the base rear "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 9 #";GEOMETRY"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 2 #"#;"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 6 #"guides"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 1 #" "
0 0 14 3 1 #"g"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 18 #"with-current-layer"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 9 #" "
0 0 19 3 8 #"\"guides\""
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 2 #"PO"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"PO"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 5 #"))) ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #"))) "
0 0 14 3 2 #"P1"
0 0 24 3 2 #") "
0 0 17 3 12 #";front panel"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 5 #"))) ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"P2"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #"))) "
0 0 14 3 2 #"P2"
0 0 24 3 2 #") "
0 0 17 3 11 #";seat panel"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 2 #"P2"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"P2"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 5 #"))) ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"P3"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #"))) "
0 0 14 3 2 #"P3"
0 0 24 3 2 #") "
0 0 17 3 11 #";back panel"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 2 #"P3"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"P3"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 5 #"))) ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"P4"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #"))) "
0 0 14 3 2 #"P4"
0 0 24 3 2 #") "
0 0 17 3 11 #";rear panel"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 4 #"line"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"PO"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 5 #"))) ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"P4"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 7 #")))))))"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 29 #";---------SEAT-AREA----------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 2 #"#;"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 2 209 4 1 #"\0"
2 -1.0 -1.0 0.0 0.0 0 99 500
(
#"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\2\325\0\0\2x\b"
#"\6\0\0\0\2521\37[\0\0 \0IDATx\234\354\335}\220\\\327y"
#"\337\371\357sn\217R\373\367V9N\326\eK\304\0\324\213e'Q,\22\0"
#"\351dk\23\221\0(S\261D\275`\6P,\23/\222E\2\244\35o\22\307"
#"\331\332\265\343\332\212\327\"@Z\21\1"
#"2\211\315\231\221-\352\325\22\t\200v"
#"\245\266\326\"\0\332\2167\e\231\22I"
#"`@\311\336\255$\273\265\373\367&\302"
#"\334\363\354\37\347\234\236;wn\367\364"
#"`\200AO\317\357S\5\314L\367\355\267;\335\323\277{\3729\3171wwD"
#"DDDD\344\206\205\333}\aDDDDD\266:\205j\21\21\21\21\221\r"
#"R\250\26\21\21\21\21\331 \205j\21"
#"\21\21\21\221\rR\250\26\21\21\21\21"
#"\331 \205j\21\21\21\21\221\rR\250"
#"\26\21\21\21\21\331 \205j\21\21\21"
#"\21\221\rR\250\26\21\21\21\21\331 "
#"\205j\21\21\21\21\221\rR\250\26\21"
#"\21\21\21\331 \205j\21\21\21\21\221"
#"\rR\250\26\21\21\21\21\331 \205j"
#"\21\21\21\21\221\rR\250\26\21\21\21"
#"\21\331 \205j\21\21\21\21\221\rR"
#"\250\26\21\21\21\21\331 \205j\21\21"
#"\21\21\221\rR\250\26\21\21\21\21\331"
#" \205j\21\21\21\21\221\rR\250\26"
#"\21\21\21\21\331 \205j\21\21\21\21"
#"\221\rR\250\26\21\21\21\21\331 \205"
#"j\21\231`\21\317\3379\261q\372R"
#"\377\364t\336\362\366\365\352\23\323\217\356"
#"\235?\267\277\16\332^DD&\233B"
#"\265\210L.\a\363\3625\320\17\331\261"
#"\327\332\346:N$z\240\312\333\324\266"
#"\362\252\314\226Op\367\376\317f\266\342"
#"\347\366\371\"\"\262=(T\213\310\344\262\200[\4\3,\2"
#"!\205\354\260\204y\32\275v\3l\n#\20\f\312\237\305\252"
) 500
(
#"1\262\335\36\215n\a\350\303\207\17\257\274Y\5j\21\221mG\241ZD&\226"
#";\374\337_\377'\314\316\3162\363\271\177K\r)D{\17,\246\254\375'O"
#"3;;\313\354g\377M\272P$\a\356\260*D\227Q\351\345\353O\201:\306"
#"\325\1\\DD\266\27\205j\21\231X"
#"f\360\27\177\362\247\330\343\206\275\374\n"
#"\337\2\34O#\327\0\4\376\370\217.\201\275\225\207>\3647r\341G:\337|"
#"9L7\203rs\24\332\314\2101bf\314\316\316\252\354CDd\eS\250\26"
#"\221\211\225\242\360_g\357^\307y\231W\376M$\340D\a\b\324\374!\177r"
#"\261\206\37\372q\336\373\3N\300\3115"
#" \215\340\275z\204\272\230\231\231aa"
#"aa\305v\240\321j\21\221\355H\241ZD&V\251\233\376\261\273\366`U\340"
#"\342+\377\26\b\4\213@\244\3727\377"
#"\216o:\374\360\356\273\370Kf\304\272"
#"1\2311\327Tw\325Q\267\271;\363"
#"\363\363\314\314\314\254\271\255\210\210L&"
#"\205j\21\231\\yrb|\317\a\370\350_6x\345\217\371c\0\17D\376\37"
#"\276\366\325\377\205`o\345\275?\376\203"
#"8\327\t\25@\310\203\324ah9\307\241C\207XXXX\325\t\0044R-"
#"\"\262\35)T\213\310\304r\2F$"
#"\360\227y\317\236\267\2\177\300\227\276\361"
#"\37\300 \374\207\313\374\321\237M\301\236"
#"\237\342\301\277\0040\225/\223\377\353\250"
#"\251nOR\204\225\243\322\363\363\363\314"
#"\316\316\336\362\307%\"\"\343G\241ZD&\2269\324\244\222\216\37x\357{x"
#"+\25\377\347+\177\302\277\a\376\343\37"
#"\275\302\237\23\331{\327{p\232\375\254"
#"\1\203h\365\362\365\264zQ\317\316\316"
#"2???\370v\a\324`\213\210\310\344R\250\26\221\211\345\324T\16x"
#"\240\372\301\273\371\361\277\342\330\367."
#"\361'\377\376\377\342\225?\372\36p\17"
) 500
(
#"\357}\217c\244V{\16\375\t\212N\265\342\272\332e \203VP,\265\325\355"
#"^\326\303.+\"\"[\237B\265\210"
#"L,\263\n\267\245\374\323_\342\301\17"
#"\336C\b\177\306\345\337\375\22\177\370g"
#"S\204\335?\316_\303\200\230[\350\345M\35B#\3706\373P\227Q\352vi"
#"H3D\207\20\6\266\341\353\372YD"
#"D\266>\205j\21\231X\251\254\243\227"
#"\3129px\317]\354\306\370\363\213\27"
#"\371?\374\207\370\251\17\276\247\277\320K"
#"\32\241\216y\270\372\372\320\220\334\324,"
#"\365(_\347\346\346V\255\262(\"\"\223M\241ZD&\226\345\377\234H\300p"
#"\377k\374\370\336\200\273\21\376\353\273\270"
#"\373\a\363\206\356\300R?\\\273M\321"
#"\216\320f\306\314\314\f\363\363\363\253\2"
#"v\273\373G\272\312\341%\36*\1\21\21\231,\n\325\"2\341\"\236\v\245\r"
#"x\317\337\270\v3\343\277\332s7?H\304\251s\30\356\201\327@^\276\274#"
#"\363\256'<\227N ]\235C\332\327!\"\"[\237B\265\210L\260% \20"
#"p\334!\332\177\344\e_y\31\354\207"
#"\331\375\336\277\b\200Q\245Q\351X\272{\204<a1\256\270\246RK\335n\253"
#"\267\326\2420]A\\DD&\217B\265\210L\260\36\370rW\217\360'_\341"
#"\371?\257\360=?\305O\376 \220\313=\f\362\362\344\351ObY\374\245K\263"
#"\206\272\335j\257(\347/,,\254\352"
#"[\255\262\17\21\221\311\324\273\335w@"
#"D\344VI\201\367?\362\273\377\350\37"
#"\362\225?\257Yb\211`w\360\341\17\374\365<\213q\264\3539t\350\20ss"
#"s\215\353\264\25\3377\273\203\300\360\260"
#"\255\21k\21\221\311\244\221j\21\231XfF\344\a\370+?t\35w\243\362\212"
#"\275'\376)\17\376\240\215\34\250!\265\324k\6\345"
#"v\e\275\256\240\\\266\233\237\237\347\340\301\203+N\23"
) 500
(
#"\21\221\311\243\221j\21\231\\\16f\316"
#"_\377\324\2\317}\252\254\226\30\2010"
#"\362Hus\365\304\365\326G\227\355\252"
#"\252\352\ar\215T\213\210L&\215T"
#"\213\310d\363*\367\253\216\271\275^\376"
#"\263\327\232\2108\314Z\223\21\233_\273"
#"\264\373Vk\264ZDd\362\230\353\257"
#"\273\210L\250%\362\307qyT\272\374\261[1b=\304\354\354\354\252\222\rw"
#"_\261\30L\251\251n\267\331\353Z0"
#"\246\214x\213\210\310\344Q\250\26\221\311"
#"\346\340\0261\2\260\4y\205\305\221/"
#">B\333\274\303\207\17\363\334s\317\255"
#"\n\326\355\t\215\243\\\237\210\210lM"
#"*\377\20\221\311f\344@\r\320\313#"
#"\324q\325\212\211\3/\276F\0\356\352\364\321\376y\320\367\"\"294QQ"
#"D\266\231f/\352[C\301YDd\373\321H\265\210\210\210\210\310\6)T\213"
#"\210\210\210\210l\220B\265\210\210\210\210"
#"\310\6)T\213\210\210\210\210l\220B"
#"\265\210\210\210\210\310\6)T\213\210\210"
#"\210\210l\220B\265\210\210\210\210\310\6"
#")T\213\210\210\210\210l\220B\265\210"
#"\210\210\210\310\6)T\213\210\210\210\210"
#"l\220B\265\210\210\210\210\310\6)T"
#"\213\210\210\210\210l\220B\265\210\210\210"
#"\210\310\6)T\213\210\210\210\210l\220"
#"B\265\210\210\210\210\310\6)T\213\210"
#"\210\210\210l\220B\265\210\210\210\210\310"
#"\6)T\213\210\210\210\210l\220B\265"
#"\210\210\210\210\310\6)T\213\210\210\210"
#"\210l\220B\265\210\210\210\210\310\6)"
#"T\213\210\210\210\210l\220B\265\210\210"
#"\210\210\310\6)T\213\210\210\210\210l"
#"\220B\265\210\210\210\210\310\6)T\213"
#"\210\210\210\210l\220B\265\210\210\210\210"
#"\310\6)T\213\210\210\210\210l\220B"
#"\265\210\210\210\210\310\6)T\213\210\210\210\210l\220B\265\210\210"
#"\210\210\310\6)T\213\210\210\210\210l\220B\265\210\210\210\210\310\6"
) 500
(
#")T\213\210\210\210\210l\220B\265\210"
#"\210\210\210\310\6)T\213\210\210\210\210"
#"l\220B\265\210\210\210\210\310\6)T"
#"\213\210\210\210\210l\220B\265\210\210\210"
#"\210\310\6)T\213\210\210\210\210l\220"
#"B\265\210\210\210\210\310\6)T\213\210"
#"\210\210\210l\220B\265\210\210\210\210\310"
#"\6)T\213\210\210\210\210l\220B\265"
#"\210\210\210\210\310\6)T\213\210\210\210"
#"\210l\220B\265\210\210\210\210\310\6)"
#"T\213\310\206E\352\376w\"\"\"\333"
#"\221B\265\210lX\300\361\bx\371\223"
#"\22Q\300\26\21\221\355\244w\273\357\200\210l]N\304\210\340=,@\304\t8"
#"\344\377\355v\337A\21\21\221M\242\221j\21\271aF\0\357\201\201{M\300p"
#" \375'\"\"\262}(T\213\310\6"
#"\244\22\217\224\241\3\1\3\2\30\230\202"
#"\265\210\210l#\n\325\"\262\19@\23\301\34\267\200\21q\5j\21\21\331f"
#"\24\252Ed\203\"\356\206y \215\\\a\260%\3344QQDD\266\17\205j"
#"\21\331\20w'\232\341\226'&:\244?-\372\363\"\"\"\333\207\336\365\2445"
#"\251,\327\310\366?\277\217\375m\234\330"
#"\337\326Wl\277<\"\271\362\364|\232"
#"C\335l\257\26\235\324'b\365\315\273"
#"{\276\255\345\177\364\277/\267\337\276\37"
#"\313\367\241\377\263\312\0176\215YEE"
#"\n\324\16\271\34$\250\363\207\210\210l"
#"+\n\325\333\\\nAqy\361\216\334g\330\314r\300M\255\321<\a\245H\352"
#"\362\320\237\204\346\201\210\341,\245\313\225"
#"\223=\5g\362\365W\36\226\203p\260~\273\265\210\347\353J!\333,\rwZ"
#"t\254\337\256-Mz3\17855\1Ji\201\247\366mx\300\275,@\222"
#"\316_\376Yn5w_~\316\210\210\210lC\n\325\333\234\21\361\230\2736"
#"xL\255\321\372gz?%\e1\5`\3\243Z\256\2275\bnDz\320"
) 500
(
#"\30I6*\234Tc\353\236&\263y\276n#b1\0K\30\245f\240\214l"
#"F\360\32\202\245\216\307n\371r\351^\271\225'm\272n3\307\335S\3507\3"
#"\317[\306\0V\335\352\335'\231\231)"
#"T\213\210\310\266\246P\275\335\325\201\30"
#"\0\2\265-\217&\23=\367 \316\235\35r\360.#\324\351\243\376XR2\25"
#"yt:\a\344~}-`\26!\345\365|\271s\34\231\352a{\236\346\315R"
#"\316\321\340V\221\2029`)\211\227\21"
#"\354\200\245\373\3it\372\352K\234\277"
#"\226\306\274\361\220\302\235/A\210*?\330de\264ZDDd;R\250\336\356"
#"\252\230\237\4\221*'\337\324\36\255?DM\314#\315uI\306\324\20\3FX"
#"\331\341!\217\f;\21\352R\343\234\266"
#"\303\226\372\365\316\327N\375*\377\362\275"
#"wq\367+\217\360\317.,\245\21\355~\255tyJ\3462\24\317\241\274\37\274"
#"\e\23\340\256}\206\275\273~\205\253\226"
#"\17\0\322=c\311*\312\212~\"\"\"\"\233A\241z\233\363~\331EXq"
#"Z\251Yv \344\357\253\30p\256\247"
#"\300\2357_\356\366\220G\206c\216\262"
#"U\310\243\335\344\211\207=\0j\269"
#"\367\245?\344\256\217\375\26\377\344(\234"
#"\375\332\277\316W\24s\271\310\312qk"
#"7r\320^\16\336\313\23\26{\371\276[?@WDzni\371l\245\352M"
#"\245\362\17\21\21\331\316\24\252\267\271\264"
#"PG\351\306\21\372\223\2Y|\212\335f\0043\314\246\260`|\362%\a\237\202"
#"\357\376\6{V\234W\261\367\364\367Rms\260\324\371\301\353TV\22s0\316"
#"#\340\325\265\363\374\316\305\273\371\310\201"
#"i\356{\360(\275\263_\341\367r\335"
#"\265q\225\323\367Nq\357\251\253\3752\24{\351\30!\30G^\"O"
#"\250t~\377\350[\260{\367\260w\347\t.\361\n\217M\e\367<u%"
) 500
(
#"\325]\347Q\365\230\27%\221\315\243\362"
#"\17\21\21\331\316\24\252\267\275T\207\\"
#"&\20\2\3047Oq\317\316\347\371\350"
#"b\236\4\3505\365\325\323|k\177\340"
#"\330K\3478~\307\t~\354\234S\347"
#"\363\256\236~/\227O\376O\374\236\31\346e\2cE\300\360~ms\252\313\276"
#"\372\302\27xe\357C<p\a\204}\17\362\3678\313\377p\352Z.\235\336\311"
#"\201\17\3758\257|\361<Wr\177\266\v_~\226\335{\356\346\333o,\342\36"
#"\b|\227\357\274Zs\374\27/q\361\312\23\354\345nN]\215\274\374\351]x"
#"j\e\2\244\21k\215\232\212\210\210\310"
#"fQ\250\336\366J)E\352\264\201E\360\36\201w3\275#\217`{M\330\361"
#"(\27\375:g\247\337\316\337w\347\237"
#"\357K#\332\3565\323\373g\331m\177\312kW\1\v\251<#k.\6\22\303"
#"\213|\346\344+\334\375\320O\262\3\200"
#"\375|\360\b\\~\376\2\213y\216\343"
#"\364\3\37\342\356K\337a\21\a\273\302"
#"\325Ww\363\320\207\377*\257<\377\2"
#"\327\f\270\366\"_\276|\214\367\357\253"
#"\301R\27\22\307REJ\251\373v\250\363\301\202\334z:x\21\21\21Q\250\336"
#"\366R\273\273\230\373=\247z\3520}\234\177p\364\f\17Z\300l\212\336'_"
#"\302\251S]\364\35o\343\16\"v\356g\260\252G\250z\330\316Os\331\r\v"
#"\336XM\2579\2011w\3768\3775\316p7\37=pG\276>\270\377\27N"
#"\263\347\362\27x\361Z\276\v\323\17\360"
#"\221\275\377\202\337=o\260x\201\337\16"
#"\37\344\201\23\17\362\323\27\277\3035\340"
#"\352\v_\344\322\236w\262\223\n\250\301"
#"\255QQ\r\301\323d\311\252\265(\215\334\32\352O-\"\"\222(Tose"
#"\1\26\314R\317h\"\356\306\3763\316u\257q\177"
#"\201O\2349@\25z\364\354\223\234\17\277\307q\253\260"
) 500
(
#"\3\337\341\324\325\353x\254YZ<\315"
#"]fX\235\322\363\342\351{0\253\362"
#"\277)\366\236~\23\200\337\373\352\263\260"
#"\347\243\3347\35\373\243\310>\375\0\37"
#"\334{\221\223\377\354B\356\362\261\213\351"
#"w\325\234\375\332K\260\370*\227\177\344"
#"\355L\3636\376\352\335\377\222/\237{"
#"\203\27\237\277\304{?\274\217\235@j"
#"\344\327#\346\200\36\251S\300\263\270<"
#"\271Qn\251\22\250\273>\25P\320\26"
#"\21\221\355D\251C\b^\245\305]\254"
#"\316\275\236\323h\257\21p\366\361Lt"
#"j?\317\21\316\362\265c_\341\354\356S,\372eN\3540\360@\270\372\35^"
#"q\243\356\245\221\352\35'\376\327\\\213"
#"\235B\367\313'\336\212\373y\276\372\214"
#"q\367C\367q\247\a\210\226\373V\337"
#"\301\203\17\335\203=\363e\316\23\2108\a\36<Jx\365\rN\177\345\31\36~"
#"p\37\370\235\354\377\360{y\346\353\237\341\365K{9x`:w\0IQ\332"
#"\254\207\305\32\243\242,\377X\367\327\314"
#"\226[\315\314\b!\20c\\u\272\210"
#"\210\310v\241P\275\335Y\4\213\244n\321U\2320x\356\30\26\216q\1\357O"
#"^\264\253\257\363*\357\345\35\357\214p"
#"\371w\370\306b\276\374\342)\356\331w"
#"&-E\36\313\212\207U.\325N\213\300@\300^\372*g9\302/\236\334\225"
#"'\23\346\221j`\307\376\17r\27\317"
#"\362\313\247\256\246\321\362}\37\340\341K"
#"'8\371/v\363\356\235\260d\316\216\267\377(\234=\313\331=\17\261o:\5"
#"r\237\336\301\273\271\310kW\35B\205"
#"E\250-\215\202\a\350\227\264\310\255\247"
#"\316\37\"\"\262\335)To{\1'\320\363\264\212!\321\261\375g\360s\316>"
#"\353\245\22\216`\330\256\257\360\241\253\227"
#"y\344\3043\274t\364\25\36\333\231\226\245\266;\237\347\243"
#"W^\344\250_\346;Wr\330\205TG\355\3271\217\230\277"
) 500
(
#"\311\351_~\226\300Y\36\260^j\3037\225Z\362\0053l\327c\3741\360\312"
#"\27\317s\315\301\355~\36<\26\260\273>\302}\323u\352;}\377\3739\202q"
#"\327\207\357c:\337o\263\3\374\335\243"
#"\2013\373\3v\374|\177e\307$\342A\241z\263(P\213\210\310vg\256\302"
#"G\351\213@\340c\207\17\22\3524\362\270\204\361;\363\vy9\362\322O\32<"
#"\365\334\240^^\a&_\232~\2606'\3277\347Q\314<)2-8\263\4"
#"\364\360\374\225\b\26\36258@\356\356A\2762\312Hh\332\306\363J\213\ag"
#"g\322\b\273\247\232\352\371\205\5,\206"
#"\3455\321eS\224\332\352\355:b=;;\313\374\374\374\355\276\e\"\"r\e"
#")Tow\321!8\301\376\2\ag\36\302\351a\304\24{\35\2029\344\20\234"
#"\236(!\5XKK\217\3\364\352\36\261r\360\272_\306l\300\222\5z\261G"
#"\fK@\304<\225\203XY\31\321\2!\366\210\341?a\336K\23\333\202\23b"
#"\332\316\r\202\307t\237\314\361:B/"
#"\340\365\22\225\365\250\315\t\271\2147U"
#"T;\21\307B\17\274V\310\331D\333"
#"\275\3\210B\265\210\210\364n\367\35\220"
#"\333,\244!\335\2033\37Y\21\nfgg1\34\263\300\334\334s\235\27\35\207"
#"Q\311\331\331Y\0\314#s\v\v\253N\27\21\21\21\331\f\n\325\322inn"
#"nh`\36\207@\rhtp\fl\347\21j\21\21\221B\23\25\5X\35\214"
#"\6\5\346\262\3358\4\352B\241\356\366"
#"j>\27\364\273\20\21\221\355J\241Z\0\ba\345SaP8\32\307\332\331\256"
#"\3734n\367q\273\30\247\203-\21\21"
#"\221\315\244P-\0\375\316\rE;\250"
#"\266\317k\237v\273t\215\234\217Ki\312v1\216\aZ\"\"\""
#"\233M\241Z\372\332A\264\371s38\215S\tHW\351\3018\334"
) 500
(
#"/\21\21\21\331^\24\252\5\30>\352"
#"\334\16\253\343\32Z\233\301\177\\\357\343"
#"$\322\276\26\21\21Q\250\226\254k$"
#"\272|\277\225&\242\225\373\32c\274\315"
#"\367d\373\30\367\347\204\210\210\310fP"
#"\250\226\276\256\221\350a%!\343l\253"
#"\334\317Q9\21\210\224\325u\37216"
#"\222\227\274i\236\230\317\240\343\347\306\5"
#"\323\32<\336\277l9k\305AU\353vY\365s\343>\216e\270N\217\333\313"
#"\302De\377\371\362\216\2148us\177"
#"\371\312o\373\17+\326\215\353[\276\356"
#"r}\336\3779\355\243\225\373#\342+~w\261k\27\212\210\310\26\246P-2"
#"\316\34\234%\314\3\20\270\366\344\275X0\202\31f\206U{x\362Z\2368j"
#"\315\320\35Y|\362^\314*\314\214\236UX0\216\\\350_mZ\305=\\\343"
#"7\366\4,T\204\220\256\263W\5\314"
#"*\216\235\317\253`\22\226\227|\367@"
#"\364\364s\335\272\253\343y \23\200\230\366\225\247U:#uZ\241\323k0\b"
#"nT\375\3\205%\362a\6NL\253\335\e@\304C\325?\20\301R,NA"
#"\275\246\207c\204\34\256\323>3\214\345"
#"\340\35\300V\36\214\214\343\336\22\21\221"
#"\e\247P-2\316\f\214\36\321\234k\247\3672\375\330;\271PGbt<:"
#"~\356Gyl:p\374<X?\374.r\372\236)v~\341\247\270\32k\242"
#";\327c\304\257\374:\257\0350\354\370\vi[\207\232@\35\234{O]\301\243"
#"\23\335\251\227\"~\341a\236\331_q"
#"\364%r\20\314#\253\26\t\226\226\254"
#"\257\6\f\265\216\325\210u\177\200>\205"
#"Z\3\2\226B\257\247\220\354\6\344}"
#"\354\364R\212v\372\373(\205\347\364\247"
#"\322\b\20\fc\211@\205E\307\315\2109P\2339\226\303x>j!\5"
#"\365tCn1ekwV\177\232 \"\"[\231B\265\310\30+\245\2\201"
) 500
(
#"\253\234\373\302e\36>\367Y\336\207\245"
#"\321S\213\260\357i\276q\324x\346\227"
#"\237\340J\336\366\334\261]<\356\247Y"
#"\374\346cL\333\22\346\244Q\323\351\307"
#"yy\351\2\307\316\374$\307/\2440Yy\304\34\226<\335\2309i\351\372\277"
#"\363\363\234\332\ex\365\3657(\3\320"
#"\221\34Nc/\337\267\301\275\314\307\205"
#"\347\277pF\314\367\35 p\355\324\36"
#"\252^\32\361\257B\300\354\36>{\255\334\357\210\177\3674{-`\275c\374>"
#"\6,\245\214\34\235\350/q\334\336B\265\367\24W\203\245\35iS`\327x\362"
#"\236),\244O\5\312\247\4fS\34?\a\230\341X\32\264\266j\371\316\211\210"
#"\310D\320_u\2211f\200\347\322\217"
#"h\360\355\327\377\f\263%\334\351\217\236"
#"\368\23\211\227N\260\313\301\375<\337"
#"8\e\370\304/=\312\17\207\32\310\1"
#"\330\362\350h\270\217\237?\275\233\263\377"
#"\343\23\274\351\221\332\"\301I\345\20x*!\1\bF\35#\204*]>\227H"
#"X\256\eq\206\367\2\37\227\321j\203\24^=`D\b\221\305S\367\260\353\261"
#"w\363\365\230z\263\307\30\251\317\275\213"
#"\23\323\306\261s5\346\1\253\235\n\303"
#"\342\353\274~\25\240\227\366y\250\t\213"
#"\257\361j\36\217v\322\276\213\366\237\323"
#"m\325\221\237\370\314\233\351\223\4\257S"
#"9\310\213G8{\240\342\223\347\312(\371\365T\3263>\307\36\"\"r\23("
#"T\213\214\265\230G\212\357\340\321_z"
#"\230W\36\333E\317\246\270\347\311\305\24"
#"pY\16\260\216\343\277w\216\247\371\4\37\274o\211^L\201\270\2664R[B"
#"\360\333\36\370 {/\277\316\efT\36\250C\276\16s\214T+\355\347~\215"
#"\237\263\323\374\346\243w@\235\202c\377\317\205AXUQ\275\322\370\214V"
#"\347\211\205F.\312\370\36/|\351\"G\317\237a\177sr\346\2763\234;"
) 500
(
#"\2\317\376\352S,\2X\340\272E\216"
#"\36\335\305\363\347\256\20\211\230;\320\343"
#"\332\271/\360#G\36&`\364H\373\245\362*\355\267*\260du:\30b\211"
#"\232\210\357\377\5N\355q\276}e\21"
#"\0c\n\270\336\377\375\211\210\310dP"
#"\250\26\31c\236'\3329\1\273\357,"
#"\321k^;\265\233\313\217\355\304\252T"
#"\276\320\373\344\357\23=M\214\v\361:"
#"\0\225\205\364\352v\362$\274\0\236\202"
#"pU\367p^\345\312\242\341\226F\262/?\366v\252P\21\254b\312*z\a"
#"\376\5~\351OY$\20\253\272_\252\340\251\334\230\272\324\30\17XMq\\F"
#"\252!Wg8y\\\31\252h\274\372\3325\314b.\v\201\312k\356?\343\304"
#"\227O\3626\3b\240\2\342\a>\310"
#";\237\177\221\357y\252\245\306\257\362\215"
#"\347\247x\373\273Jg\20\303\211\324\276"
#"D\0\254^\256\2236\240\352\3577\247"
#"\356G\370\230\313E6o\37\210\210\310\255\247P-2\306\254\224y\344N\25K"
#"\324\354|\364\22u\254\361\332\211~\236"
#"\207\317\334G\357\236\337\340Z\32O\205\320#z\32K\216e\204\331\"n\25i"
#"\344\266\4b0\276\17\21\366<\371:"
#"u\236\0\31\275\346\272\177\235\343<\313"
#"\201=\247y3\315\226\314\35CR\tH5\244\36\270\3646\37\213`\355!\217"
#"\32\227\356\34o\343\221_\372\4\27\37"
#"\337\205Y\305\336\323o\246\376xV\345"
#"}\225\17B*\317\223\25\247y7\257"
#"\361F\16\300\366\346\357\362E\36\342\375"
#"\273<5\342\2634y10\225\2z\331-N\236\364\30\261\363\237\341\347\374\t"
#"\346N\356\244\277\377[-\371DDd\353S\250\26\31g\245t\3\362\250s\225"
#"F^K\247\17\277\2373W\237`\317\245\337\341\e\327 \354\373 \17\363"
#"4_=\237r\241\341\271\217u\256)"
#"&\360\275\27\177\233\213\374\30\273v\220"
) 500
(
#"B\247\1\236\313CR\2\305\331\317\347"
#"\316\35\201\313\257q\315Sk\270\376\377"
#"F\36e\355\16\205c\265\362f\377` \337{s\330w\26\367\232\305S{\270"
#"\364\330NBxKj%x\354\34P\362n\215c\230\275\215\375\37y\215\257\237"
#"\313\217\365\352\25\370\360>v\2444]v\27nK\270W\324f\\:\271\263\337"
#"\3660\330\24v\340sp\351U\336`y\204_DD&\217\376\302\213\214\2614"
#"\332\e\210\337\375\347\354\256\356\3417\26"
#"\353F\325@\314\251.\20\211\251\344#"
#"\376\35\376\356\303\360\314\257\236\342\32\344"
#">\323\327xj\267\21\216\375>5\347"
#"\371\325\237\273\4\307\16\260\17R\3504"
#"\300\247\210\271\3\210\e\244j\3544\322"
#"Z\333\362\244\310@\232\334Gc\242\344"
#"8\353\367\343&M\370L\3679\215\24\3578q\21\2175\356\327q\177\201\243g"
#"\37\300\356y\222keb(\216\2731"
#"\275\363\335<\363\265\177MM\344\305\257"
#">\313\217LO\343\225a\236F\376SiI\22pv\237\272\226\332\35z\32\365"
#"\217\361\353\374\214\375K\336\277\367I\276"
#"[\356\230\225\t\250\"\"2)\364W]d\214Y\351\231|\307\317\362\337?|"
#"\221\307v\376-\236\270F#\324^\341"
#"3?}\202W\216\376\22\237\276\243\206"
#"\340\354\377\334\"\277\356\2171]\35\345"
#"\234A`'\217^\276\302g\376\364~"
#"\246\302\373y&\36\343\374\347\16\344["
#"\360\24\nc\235J\206\361\\g|\205"
#"'\377\351\347\330}\352\27\330\37s\355"
#"\261\327\271\234\302\373\243\264\343\256\324L"
#"c\271\375t\343\300a\271\24&\202\337\317?_|\202{/~\231\257\277\231W"
#"\215$\227\271\354\373\0G^\373w\274"
#"\351\347y\361\354\303<x\300\261X\343"
#"\226j\324\335 \272a\26\250\"\4\377\376\362\35\210\16\274"
#"\237\263/\34\207K\257r\215t\240\264\2043\16\3\371\""
) 500
(
#"\"r\363(T\213\214\265\b\236\272r\334w\326y\355\324u~n\332\bU/"
#"\227\27\334\311\227>\264H|z\37\321"
#"\322\322&\330\35<v\361:\376\302\24"
#"\17\224^\311a\27\217\275B\236\254x\206}\341\b/A^\220\4.=\376\366"
#"T\262P\5Bx\v\225\275\203\347?"
#"x\205K\217\336\221\333\352\245U\26\323\310v\231<9\376J\331KYV<\274"
#"y\232\237\b{yj\221\274\362a\351|R\21<\225\267\364bZ=\261\a,"
#"\5p\376\e\336\377\256\257q\341\311\27\371\334\321\237b\177^<&xYJ\6"
#"\254\nD\226\210f\304\320\313-\fk<X^\3f\t\307\250IA\277\267%"
#"\16IDDd=\24\252E\306Z\352:Q\347p\270\363\304%\242\327\324q)"
#"\215x\372\367\271tbGn\354\26\372"
#"\253\36:=\330\377Y\226\374\373D\257"
#"\323j\211\321\251=\255\304x\365\364w"
#"\370\312y\300\2469\361\262\23\343\177J"
#"%\v\321\211\361\373\304\272\346\345\307v"
#"\200/\a\317\262\20M\204\376\4\300q"
#"W\332n\233\245Qi\277\343Q\376\301\261W8\261s\17O-\346Qz\253\210"
#"~\215S\37\177\234\213\307\376>\217N"
#"\3670\257\363\252\213\0\25\357x\273\361"
#"\330\3113\334\363\216\351\264|yH\213"
#"\230\233\307|;\251Z:\344\5t\312"
#"\365\246}\264\310\351_~\226\273\236\372"
#"\5\366\247\306\326\351Nm\205\243\22\21"
#"\21\31\231B\265\310\330\213\375%\301="
#"\206F\330\213\4\246\322\312\206\315\371\203"
#"\215\356\22\301\2534\251\261\204KO%\36\323\217|\223\247\367-_?L5:"
#"O\a\b\221%,\327[;\230\245\211"
#"\216\36\b\375\245\277\307\277{\205\207\345"
#"\305s\312B-\373\236\256y\343I\343\361\235=zy\345\303\252\232\346\371"
#"\207^K#\376@\252W/=\302\3o;\360!\356\266\335<\364\300\16 "
) 500
(
#"@\fiI\362<j\37siIm\201K\217\275\35\253\32+*\206\235|\361"
#"\303\337\345\362\247v\344\224\37\264\370\213"
#"\210\310\4\352\335\356; \"\203\245\361"
#"\320\322\351#`!\246\220\230\303\36\224"
#"\272\353\34\326J\267\v+\255\355 r\235`S\351\372\f\314S\374.\335@\314"
#"\323\204\307\252Na\32K!\264G\314\27(W\32\300\226\300\2\276EF\252\323"
#"\312\2175y\212%F\5\356\354z\344\233,}:\344N*y\24;\r\311\247"
#" =\3758/\327\217\343\226;\257\354"
#"|\204o\326\217\246V\201D|\377\323\304}\3456rK=\333\301\311\213K<"
#"\232\vK\334-u\e\311=\302\323\274\304\346~[B\177\202ED&\207F\252"
#"E\306\230\345\227\250\227N\37\321\301b"
#"\277SG\3418u\236|g\375\313\246\36\36\201\2521\222\35\361\376\220vY!"
#"\261\227\276\257\32\365\322e\225\306~\375"
#"D\271\245\36F\300\334\267D\367\217\264"
#"$Nz|\1\203\350\271\366\274\361\330\362H\276Y\32\311^1\2711/q\236"
#"\16X\362\244\321\274\344y\31\3216 "
#"\306\245\274]\314\205:\226\3x\n\363"
#"\204\24\346\315\363dI\3s\5j\21\221I\242\277\352\"[@\t\327\204T\247"
#"\333\356\34aV\365#t\343B\331\362ii\364t\330\355\244\355\3236i\222]"
#"Y\314e\205\334\207y\320j\212c\321\243z\225P\216\35X9bLc\27\205"
#"\376\b\177yl\375\276\333\375\377\322v"
#"\241\375iA\343\347r\355\3512\215[jvM\31\307]$\"\"7l\374\207"
#"\232D\344\206\265\303\355\260\260;h\5"
#"\304\346\352\210k\255\222hfc\32\250"
#"\273\265\37O\271\377\345\300`=\217e"
#"\224}3\354g\21\21\331\332\24\252E&X{\311\360v\360k\376<"
#"li\361\256U\22\273Bb\214\343?y\261\251\375\230o$L\227\353"
) 500
(
#"i^f\320\b~\3636\306b\31w\21\21\271i\24\252E&\234\273SU\251"
#"\350\241\35\260G\31=\35\24\376\272\2"
#"y\271\374V\n\214\355\307\34c\\w"
#"\250.\a\23\356\336\271\37\232\247UU"
#"\265\245\366\217\210\210\214F\241Zd\e"
#"h\6\305\346\327\265\302]; vm\3375\22\276UK\e\232\243\310\303\0160"
#"\272F\267a\365\210u\327>\337j\243\371\"\"2\32\205j\221m \306\324\321"
#"#\204\260j\204\271\371}\373_\b\241"
#"\177\231f\275q\3632\315\260\275\325\313\32\332%\34]#\371\315}af+>"
#"\5\30t0\321\334\367\n\325\"\"\223I\241Zd\e\b!\275\324c\214\375\20"
#"X4Gg\273\376\325u\275\3422\355"
#"\221\351\366\345\267\352(5t\327\234\267"
#"K9\252\252Z\361x\273J?\312\376.\252\252\352o\327>ODD&\203Z"
#"\352\211l3\245\24d\320\350s\321<\277Y>RF]\213a\223\27\267\232A"
#"%\37\315\375\265\326\304\306\366\250\375V"
#"\37\275\27\21\221\321l\233!\23\275\251M\266a]-d\265f\330k\227#\f"
#"\252\213n\217Jwm?\311\373\275\253"
#"\36\272]\376\322\324\36\265\237\344}\263"
#"Q\303\272\245\310\344\e\265e\247\310\270"
#"\3336\241\272+ \310j[u\277\264\303\213>b\37n\330d\274a\35<\272"
#"F_\233\333o\305\356\37\303\264K["
#"\332\317\253a#\321\355\222\230\255>\212"
#"\177+u\355C\355\257\355c=\223\247"
#"E\306\331\266I\36]\177\260\365\342]6\t]\e\nuX\30\254\375{n\227"
#"u\224\257]\201\273L\264\e\24\22\333\341z\22^_\355\203\265\366~\31tp"
#"2\250L\244\371\263t\267\34\224\355M"
#"\317\3\331\312\266M\250\0366\"\267\235m\3650]h\265\272\321\2240"
#"\\\327u\377\347vm\365\240\300\\\16T\326\n\314\3556r[\331(#"
) 500
(
#"\362\203\2uW\250\236\224\327\333\3152"
#"\354\23\23\231|*\373\220I\263mB"
#"u\223^\300\313&\345\315L\277\323\265"
#"\rj\245W\316\eT\242\260\326D\306A\2671I\6\205\344\366\276i\266,l"
#"\207h\215Vw\323>\331\276tP%\223f[\204\352\346\e\242^\300\243\331j"
#"on\3556o\262\322Z\235>\232\3334\265Ki\206\205\304r\372$\352:\340"
#"(\2453\315}\3215\221\261M\243\325"
#"\203MZM\276\254m\273\34\230\313\366"
#"0\361\241\272=\2\2477\262\341\266\362"
#"\e\376$\265v\273\331\6M\4\32\326"
#"\227\271+8\17\252\233\336N\335\e\272\16,B\b+\372Uwm_\276\327s"
#"s\245A\237\2\310\366\240\t\2522I&\276Ou;\30\230\031333+\316"
#"\333\316\312\276YXX\230\2507\263\362"
#"x$)\243\250\a\17\36\354w\260\30\34NT\310\0\0 \0IDAT6"
#"*x\350\320\241\25\333\f\272\316\265\266\231\4k=>3c~~\236\371\371\371"
#"5\257\253\335\337[\317\321\325\312~)\177\247er\225\367\234Q^;\"[\301"
#"\304\207jX\371\246833\243\27\360\0[q\277\244H\0221\17`\21\207\364"
#"=\221\271\371y,o\344\324\230U\20\35\202\1\221\376\a5^\343V\221Nu"
#"\2\6,\321|yl\344\200\343v\36\254\264\227%\a\230\235\235ennn\340"
#"eF)\24513fgg\2111\366Gi\313c,\317\243\233\371\270\233#\343"
#"\233\271/\333m\361\6m333\303\334\334\334\320r\217\256\337\305v7\250."
#"\177P}\377\315\336\177\2234\220\260U"
#"\315\316\316\336\356\273 r\323l\213P"
#"-\223\313\34\260\220#r`\361\364\36v\235\374C\314\"\237_\370\2nwq"
#"\352\215K\234\230\316\313l[\4\276\313\251{v"
#"\362\330\305\200\21q\243\244s\216\237\213|\356>"
) 500
(
#"\207\260\362\2451\312\e\357\260\200\260V"
#"\307\210\365\\W\347~\30P/\335\365"
#"\321\352Z\201:\306\310\241C\207V\325"
#"\t\267o\273\204\310\256\320\336\266\321\3"
#"\266a%)\233a\320\357\256\334\237\331"
#"\331\331U-\a\333\227\355\272\374v7lblW\200\36\264\357n4l\257\347"
#"5&\"\262\226m\25\252\313\233\375\354"
#"\354\354\226\34\225\225\16\226\27{\301\270"
#"vz7\273\36{7\27\374e\346\16"
#"~\234\371\317\317\301\371\343\330\235\306\353"
#"/:\237\333\aP\341D\314a\367\23\257s\361\344\316\376h6\27>\205\35\b"
#"\330\v\316g\367C\b\206\307\325!i"
#"\255\300;\254.y\320u\271\373\252\316"
#"\21\253\36j\343\272\332\23\344\332#\245"
#"\203\302A\363\366\6\5\304A\333\27k"
#"\365\0\237\237\237_u\335\345\265WN"
#"\0374\252\333\276\335.\2673\364\264\353"
#"\250\a\265\315\et\377\25\330V\32\266"
#"\237\206u\227\31v\340\2+\373\257w"
#"\335\326\250\a\300\"\"\353\261\255B\265"
#"L \a3\307\271\3127\276\360\nG\316]\346>\"\317Uu\n\312\367?\315"
#"\371\207\317\262\377W\236\344\344\276G\271"
#"\323\0\257p\313o\3348\345\177\333\367"
#"\363<q\367\347\370\342\325+\230\357\302"
#"\353\356%\271G\251\261\35\264\375\2407\355QK\3JM\356ZeL\243\214\216"
#"v\335\257\256\340\321\16\213\275^\2573"
#"l7/\323\276\375vI\310\354\354\354\212z\312Q&D\216K\320)\217/\306"
#"8\364 \251\375\363\270=\216q0,\370\16;(\354\n\321\315\3134\277\326u"
#"\275\3422\n\324\"r\253(T\313\226"
#"\226\342p\252\2026*\376\364\2157\340\276;\201\\c\355\316\375g#1^\307"
#"s\221\210\231\203\en\0200\274_?\235G\177y\vi\370:\366k\206\333"
#"o\314m\315 5,\224\266\257\243\214x6;G\f\v\334\203\202\367Z#\273"
) 500
(
#"\315\373\326\16~\303\356{\373\372\233\301"
#"{\330\307\363\203BJ\371\276y@0;;\333\337\266}\240p\273\203N\327c"
#"]\353@\253\353\261WU\245U>G\260\326\363o\324O/\232\257\227\346\344P"
#"}\202 \"\267\222B\265lmV\246\27\356\342\321_\372iN\356\177'\366x"
#"\344\277\374\253\17\366\247\34\246\262\353\251"
#"4Y1_\314\3350\217\20\35\263\251\24\242\317\375*'\355\24WN\3740\356"
#"ib\243\331\362G\311\355\217\224\a\205"
#"\345\366\317\303F\336\272\2[{\333\256"
#"\217\262\233F\251\277\36t~\327\250\352"
#"\240\373\332\16(]\267\323\365\330\207\205"
#"\342\22\244\3136\245\226\273\31\256\327z"
#"l\267Z\327\301Q\323\260\21\373a\a \222t\375>\207\375\274ViS\373r"
#"\315\327O\263\356\275y\231\265B\273\210\310(&\276OuSy\243V=\365\344"
#"0\ab\232ph\373\316\340^s\365\327\357\342\377\375\337\276A\b\206UF8"
#"\362\"Dr\304No\244U\210\\:\371\16\254\nXHo\246\325\3\317\302\345"
#"o\363&\206YE3\6\271;UU\365\277\207\3450UUU\177\304\331\314\372"
#"?\267\3775/\333\274\374\212\307\223\267"
#"\235\231\231\31X\233\273V\250[O\350"
#"\354\n\364\203\266\351\32\245\356z\\m"
#"\355m\206\35D<\367\334s\314\317\3173;;\273\242\16\273\353\3726S{\244"
#"\276}\336Z\227\31e\373\355h\224\203"
#"\216Q\177\377\243\234\336,\331i\36T\352\300GDn\206m\25\252e\362\270E"
#"\bK8\201%\28L\237|\205\231"
#"\231\217\21\243\343\365\v\34\177\366\375\330"
#"O<\301\25J\177f'\272\261\373\364\extb\214Dw\352\370\22G\374\31"
#"\366\355~\212k\36i\277Ew\225\200\224\322\20w\357\277a\227\237\333"
#"\377\206\275\211\227\363J\233\272\366\201"
#"\337Z\341w\330\250t\227v)\307"
) 500
(
#"\300\375\3338\177Pw\213QF\270\233\347\r\273\275f\31\310\374\374<333"
#"\375\236\331\267S\363\367V\16\256\232\347"
#"\25\315\307:h\224^\243\241\313\272^"
#"\17\355\257\303\236S7\252\371<\36\245o\273\210\310(\24\252eK3\2i\f"
#":\322\213\340\326\357\216\227J?\354\0"
#"\237[<\315]\27\277\310\205E\350\367"
#"\2476\247\212\371\351o\251,\304\375\277"
#"\345\354\213\307\341\225oq\265\343\245\321"
#"\16I\353\rM\245>\273Y#\35\254\302\202q\360\340A<:\317\315\315a\326"
#"\32\331\4\f\203\350\371\261-5\2575"
#"\325\212{\371\236\376\367\351\333\326y\220"
#"F\341\335\323i\236Cq(\365\344e\363\34h(#z\0251.\337\356ZA"
#"z\224\3751\312\366\v\v\vk\216\\\17:\355fi\327\2747\227'o+\237"
#"R\224\355\312e\272>M\220dP\231\324Z\a_7C\373\200w\255\353\356\372"
#"\264ED\244P\250\226\t\20XZ|\212=S\367\362\e\213% \247Z\3534"
#"\337\360\373\274\205\212\364>\30HQ\323"
#"\210iv#\346\275\264\255\245\256 \230"
#"a\326\317\225\300\362\233o\371\276kdm-\355\362\0013\343c33x\254\323"
#"\n\220\226\313Y<\340\215\200l\220&"
#"]\206r\304\320\313\267\233\36\217\21\372\a\23F\4j\312K\333\b\371\nB~"
#"\214\206\373u\310[\231\245\272r\257\35"
#"\217N\bF0\303*R\320\16\25\321\235%\257\ea\243GtV\35P\334\312"
#"\2401??\317\334\334\034333\3G\352o\306\350e\373{\263\345\356\21\355"
#"mK\215y\263\224\240|ZQ.\333\334\276\214\210\252\334`\274\264?Mj\236"
#"\3366\352\201\244\210lO\n\325\262\365"
#"9T\323\217\360O~\346eN\356\374\233|f\21B\16\316\356\3278"
#"\375\211\237\347\233G~\221\237\335\2317w\250\34\314j\334\353<\244\35"
) 500
(
#"\200+<\371\313Os\367\251_\340>bZx1\353*\335h\177l\274\226\346"
#"\312\203\245nza\3767\363\1@\16\304\26s\320\317\25\340V\36b\256\e\267"
#"2\372Y\367'aB\16\343\304t]\245\36\334YQ\27^Y\205G\a\17\234"
#";^1e\25f\0256Uq\374\245t[^;\3565u\f\2514\306k\314"
#"\301\250\313\256\6\226\b\266\224\256\177\35"
#"#\326\eQngaa\201\331\331\331"
#"\25%!\353\251\357\36t\335\345\362\243"
#"\224o4\225\20\335\f\323\355\353m?\206Q\256W6OW)S\327'\21\203"
#"\312SDD\n\205j\331\342r\177Z"
#"\340\276\263\316\353\247\226\370\371\235\306\374"
#"\347\177\233^\250\250\3024\317\177\350*"
#"\361\354\373\350\261\224\33641\202\303\305"
#"\23\273\b\341-\251\256\262\n\364\354N"
#"\276\364\320\25.=:\235C\366\360\26hku\345hjNj\234\231\231\1\322"
#"\350kL\5\26@\n\316\351vs\255x\3419p\327\201\232@,K\256[>"
#"=\2\356\30\275~\351H\t\344\326\270"
#"\375:\207\200\363\2374\16\274\372?s"
#"%/l\343/>\314\231\375\306\361\363"
#"\251|\206\30\350\205\330x\3745F\5"
#"\236\203=\320\374\323\261\31#\257\315\375"
#"<77\307\334\334\\\277$d\2435\313]\23/\207}\0221l\4s\255\323"
#"\332\245\6r\373u\205\345\256\337S\373\240Z\277C\21iS\250\226-.\3408"
#"u\36\311\335y\342\22\321k\16\316~\254?\1\361\342\211;rZ\f`F\264"
#"\267\361\310\245H\364\353\270\247\321\352\30"
#"#K\356\374\301\211\3514\32k\271\366"
#"\272}k\255\236\321\243\274\2716\27l"
#")\223\20\373\223\377pJ?\355\346\310"
#"4y\322\245\3\321j\234\200Wy\204\275_\312\222\357c\210\304PF\221"
#"\313}^\312\2318\227|\244z\r\260s\374\356\318\366\217\37c\272\334"
) 500
(
#"\324}gy\361\b\234\371\352\205\264l"
#"{\210D\267\345\226\204V\345\313\222JS\f\226H}\276\213vy\303\315\324."
#"\313(\373\256Lf\354Z\26}\275\327"
#"\337\16\326\303\352\266\273~\337\243,\336"
#"3\250|Hn\257A\257\337\256\327\267"
#"\312?Dd\30\205j\331\362\314\234\252"
#"\344\23\17D\17T\271\246:\346\372bc9$\6O\335\e\214^N\242!O"
#"\320\213\364\337+=\364K'\6\215T6\313\r\6}T\\\302\323\354\354\354\212"
#"\216\36\313u\272\241q\3712\2310\215"
#"\20Gsl\361I\376\246\365\bV\321\263\36V\31\237z\t\314\300\257}\226{"
#"B\232D\330\263@e\25\367\236\276\222'\310\365 DB\350Q{,;\n\256"
#"\275\301\253\354\341\235\323\244r\217\264#"
#"0\v\230\325D\34\273\366Y~o\341"
#"\2179\375\324\36\314\214\312\216r>\337"
#"?\v\25\36kz\370\252\356(\355\362"
#"\206\233\245\275\237\333\327\335\236\310X\266"
#"]\357\365w\335\367QG&\333u\327"
#"\315\332\371\346\3654\177n\367\374\226\315"
#"\327\374\35\r\v\327\243\256x*\"\333"
#"\233\26\177\221--UN\207\345\272h\213\4B\16\222\201\220f\357\245QUO"
#"?\344E\311\201\330\37\31\266\30\300\312"
#"\244\276\230\276\367\324m\243\253\274\240\35"
#"\266\312\eo\263\355^3\f\266G)\373\347\227\221g\"\26\3\26R\2606\a"
#"\273\366$\367\354\372\"\17]u\276Y"
#"\206\225\27O\263w\247q\354\3029|"
#"\337\243\274\353\5\347\233\373\301q\26\237"
#"\374\t\336q\342\327\271p\342\f\373I\373\343z\214ijf)'\361*\35h"
#"X\r\245\360\344\374q\366\237\371\31\316"
#"\371\201\264\277\334\201\253<\376\352)\242"
#"\357\243\37\367\363\376-\243\350i\377w/rr+F\362\206\215\22\226\3\226"
#"\22\254o\264\27};8\265osP\270n\a\344QJR\24\322n\277Q"
) 500
(
#"\237\247\245sO\373`ID\244IC%\262\245Y~\n{\t\310N\2529\16"
#"\275\322\16\3g)-cn\326\357\356QJ%\334\r\217!\275\22r'\fk"
#"t\312\30x\273\35\1\257\256\353\25\335"
#" \332\235>\332\333\273\373\312\332i\313"
#"\241-w\363\0\307\375]\334\271\203<"
#"M\20\330\361\263\\\214\316\231\35;\371"
#"\357j\347\314\276TW\35\334\330\265\377"
#"!\356\346U\256]\205r\300\220\306\344"
#"c\232\370\350\201h\21\243Gtc\361"
#"\364\337J\23\25\367\277\312\251\305\263\354"
#"\213\216[i\233\347\374\314\a\366\365G"
#"\243\203\e\321\234\340\313\a#n\267\347"
#"\343\360a\241\246\331\337\372V\334\306\260"
#"\321L\231l\315\205cDD\272(T\313D(\341\32\v\4*(]=\310e"
#"\36\375\355\226\377A\376\310\277\377*\b"
#",\267\374\30\355\245\261\334e#\366'"
#"\0346\362\375\362v\203BZ\f\270-\245 \235' \226\221j\237>\311?:"
#"v\226\375\301\350\231\21\216\275\230\212."
#"\f\3301\315\16\213\370\371c)\30\a"
#"\303v>\306e\240\356\267\320[y\37"
#"\232\367:`L\237\370\203\34\374\177\23"
#"\16\e\341\336\317r\225\36x\244\346\a"
#"x\367\316\306\250\234\225n\340\276\274o"
#"nS\220\34\245\215\337\302\302\2\207\16\35\272\341zk\5'\31dXM\274\16"
#"\256D\2667\205j\221\e\320\177\363t"
#"\357\207\330\231C\37\1\2\321\34\17F"
#"\3251\301i\225\220\353\237K\237\354~"
#"\217\274\364\345\300\347\234\350\216\3739\216"
#"\234}?a\352/`v\234\v\274\304\21\253\b\17\274\312\23WS\217i\277\372"
#"k\354\306\372\255\2\27\237\274\227`F\260),\30{N\277\221\16\"\200%+"
#"\345(\340\354\342\304o>\305]\227\36"
#"\341\327\317G\260\212\264\300\314\352.\25]\223\266n\247a"
#"\365\333sss7e\"\243lo\203\302s\371T\252i\34"
) 500
(
#"^\23\"r\373(T\213\f\321\25\332V\364f\306\250\210Tf\374\366\302\363D"
#"\277\236F\251\353\b#\264N+\223'\311\255\362\260T\252\202G,z._\211"
#",\361>\316\324\221\270\3645\216\331\31"
#"\276z\374K<\273\3473,\306\2279\261#\a\344\305+\\2\307b\272W;"
#"\36\375f\277\327tt\347\322\311TG\342\374!\317\237{3\327\213\203y\r;"
#"\357\340\307J]\272\327\4\233\302mk"
#"\214\304\255\325\237Z\301Z6b\224\356 \352]-\"\240P-\262\246A\243Q"
#"\245&\332,\255:\30\275\324c/-"
#"\237?\240\6\263\377F\234\206\212\323\310"
#"\27\6\364H\v\322\4\352\337?\206\331"
#"\21\316\247\16\324\251#\340\342\233\374\251"
#"\357\345]\357\bp\351\213|\375j."
#";\271\366\31\356\335\367L\272\335\220j"
#"\307\215\245\345\16\37\0\364\260\220\352\305"
#"\377\350\321\303\234^\314\313\224[\305\271"
#"O\36\340\314]O\360s\373I5\347\356\244%'\351?\226\266q\n\20k\325"
#"\272*X\313\215\32\245UbU\345\216"
#"B\n\330\"\333\232\272\177\210\254CY"
#"\360\245\337\305#\364R\351E:7\205"
#"j\357\245e\303\343\312\316\30]\213\305"
#"\30\226\202\271\a\210\226\233\230\344\261\353"
#"\367\235\3115\323\1l\n\374:p7"
#"\247\257^\342\321ic\372\265\300\3\273"
#"\336\302\343\26\t~7O\\}\201\37\331y\200\327\3360\270\3J\261x\236\363"
#"\230\227A\257\201\335<\371\306/\362\255"
#"]U\232\237\351\300\236\323\\\273\374\b"
#"w\0\2659P\323o\235\302\352EQ\306e\1\223\256\3732(`\227`}\243"
#"\235Ad{\32\345y\336\376\2730\352\345Dd\262(T\213\334\240\20\2\36\277"
#"\337o\353\227VD\254\201\252\337y\244\375f\273\352\343b\3s\247\266H"
#"e\315r\220\374\246|\337Y\242?\235"
#"\232\0z\352\311\235\272\202\30\373\316D"
) 500
(
#"\3523yD:\327e{\274N\363\275\274\304\342hu\232\300\31\235hP\333\375"
#"\234\211\316\323\371\26\275\316#\336\21\252"
#"\35'\271\377\340\377\316\211;V\367g\36\267\25\345\272zX\2172b\255`-"
#"\243\32\345\271^:\2034\333j\212\310"
#"\366\243\362\17\221\21\264\353'\313\3103"
#"\204\324\343\232\230W\35\254r\2539("
#"m\371J\217\333\22\260\323\345\222T7m\230\207\34o\323y\375E`\362$\310"
#"@\343\215\332S?m#\2172{:6\216\36\226\333\5\346Em\314\351/\177"
#"\343\16\261r\252\306j\211\351t'Vyq\213\20s\22_\2\213+\16\0n"
#"u\37\352\215\350\352'=\210JAd=\272J:\332\317\257\322\247<\306\330/"
#"\5\21\221\355G\241Zd\4\315\22\203\225#\242\201\30\34JK\275\376\342)P"
#"^^%H\2277\333\25\253\263\231\261"
#"\204\23,\207\331~\270.\227\217\375\340"
#"\334\357\255m\313\267\21\315\373\313\205\a"
#"J\251G\271\375\322\253:\207\177REGd\t\257<\337^\272\17U\314\2014"
#"\32\263\207\16\2\221\231\331\277\307\354\354"
#"\354\330\5\350A\332\253\343)X\313\315"
#"\322>h\e\366\232\350*\363\22\221\355"
#"A\345\37\262\355\215\362\361n\331\246\214"
#"8\267/\347\356\215\276\330\266\352\262e"
#"$k\325\250\257A\2172\311\251\\\276"
#")4\256\267\361\265\254\342hi}\310"
#"\32\250,\202\a\314b\332\312\313e\303"
#"\362\5\247\37\347\222?\276\342\26\f\230"
#"=\334\f\230\245\26;=\316\22>gff8t\350\20sssC\367\325\355"
#"\262\336\366f*\5\221\215\352\372\3331"
#"\250+H\327v\n\337\"\223E\241Z\266\265v0\36T\227[F\252\333\243P"
#"\243\224C4K>\232+-\2565\232\332u\37\333\327\v\2169T\271\35"
#"^\352\372\21\362\0t\304\3358t"
#"\350\320\320\373\346\356+\202\345\354\354\354"
) 500
(
#"\212\333,\347\265\357\373$\230\237\237_"
#"u\2400I\217On\255a\235}\312\301t\327\310\265\236c\"\223I\241Z\266"
#"\265\256\305L\272\336\0K0\35\24\272"
#"\207\205\343A\301}\255\225\331\272\352\204"
#"WMz\314#\331\16\251\6\232\0\16\263\207?J`jU`\36\305\334\334\34"
#"\207\17\37\356\34\221\236\3040077"
#"\327\37\261\236\304\307'\267\316Z-3"
#"\a\35\204\216\323d_\21\271y\24\252E\262Aor\207\17\37faaa\335"
#"\223\364\6m\337\354\22\320\234\304\330\274"
#"\17]\223\2\333\1\334\362\244Ds\300"
#"\"\207\17}\34\374:\316[X\230\373\35\260TK=\350qu\205\375\256\333i"
#"\337\346$j\226\202(\354\310\250\206\215"
#"@\227\327Q\263#\210Z\356\211L6\205j\331\326\326\32\21>t\350\320\212@"
#"\335\276\3140\303\266i^GW\217\333\256\373\323u\232\21\231=t\30`e "
#"\364\345vzk\5\352A\2675\350\261Nj\350T\215\265lT\327\353\250\353\365"
#"=\251\257!\221\355N\241Z\266\265A"
#"\201\261\254\222V>\276m\237?\350\347\366ik\365ynOd\352\232\3304\250"
#"\374\243L \\\230O\241?\225\200X"
#"Z$\306\246\362\352\216\203\37\367\240\217"
#"\245\327\332nR\303\200\202\216\334\210a"
#"\257\243\256\327\273\236g\"\223K\241Z"
#"\266\265\256\300\330~\3l\352\372\b\267"
#"\375\3069\354\372\272\276v\366\257\368"
#"1\21\16\35:\204\273\263\260\260\0\300"
#"<\277\231'(B\3041\246\322\5\242C\30\\\3>l\324\254y\336\240\307>"
#")\232\277\267\347\236{N\243\3252\262a\223\233a\345\353x=\223\223Edk"
#"R\250\226mm\320\e\341(\23\b\333?\257Uf1,\210\257\325\333\266\331S"
#"ynnn\345}\240\227\313\247#!O\\\214\324"
#"\4+\255\372\206\277\331\17\272\337\355\363\326\n\20[U"
) 500
(
#"\373\340Be 2\252Q\16\232\213\365"
#"v\375\21\221\255G\213\277\310\232\334k"
#"\322\212\201\345\224\330?m\371\255!\215"
#"\262\326\304\274ml\\\266q]\313\233"
#"\366O\250\363\3659i\365\277t~\363"
#"\3666\327\2607\275\265\312%\326\332\276"
#"\353\364\350\327S\37\353\274\30K\275b"
#"\a\301\314\241Y R9\314\315\3177.\233\333\364A~%/\277\234\3U\273"
#"\341\365\206tM\234\234\4\203&a\226"
#"V{\243^V\266\257\256\203\346\346\327\366v\223vP*\"\313\24\252emV"
#"\261\274\bI\352}l\371\264<\25'-4\22\235\212@\304\300\362j\200V\255"
#"\b\343\0\204\330\250\1\206\340!O\272"
#"K\253\377y~V\326\2662\\\336\n\315\32\346v\255\362\246p\200^z\223\265"
#"\210\eT\271c\307\354\354,\37\2379\210\3074r~=/+\343\375\3\16\275"
#"|7j\330\1Ti\265\a\335\1Z\301H\3262\350\323.\5k\221\311\244\362"
#"\17YC\\9\341\315\3\345\275\240\377\306\20C\n\302\226\252zC^^\273\264"
#"{K\313j\327`Un\377\26ps\202\203[$\265\252H\245\nX^\311\317"
#"\3a\23\336s\272\312 6u\305@\3\363\232\353q\t\v\25\36S\333\216\331"
#"\331\303\230Eb\230\302\270\316\334o-"
#"\340!\355_\213\206\2078t\"\242\214n\255\21\304I-{\221[o\330Dh"
#"\215\\\213L\36\205jYC*K\210\346\230G\214\212\24\230\3\230\245\271p!"
#"\225m\364<\367E\316\223\346\322\302$K8\25n\25U\16\330\26s\275\2575"
#"\202a\t\352\4\214HmP\305\230\256"
#"|\23\f\253\243\276\225\312\ejE\300"
#"\243\23\314\370\350\314G\251\302[xn"
#"n.\37\204\344m\361\\\352\221vd\331\317\262q\203\202M\263\276Z"
#"\301Z\326k\330D\350f\357j\21\231\f\32\352\222\341\242\343\226\n="
) 500
(
#"\314*\2429\20x\363\211{\250\314\230"
#"\n\251tc*\354\345\364b\16\315\274"
#"\311\351\275\251\244!\330\24=\353\3213"
#"\303BE\260\212\320\233\"\34\177\21x"
#"\223S{\3V\31V\31\301\214\312\322\355|\352<\271\204ds4K>6\363"
#"M\3160j\2u\256#\257\335\371\302"
#"\302\27\230\233\373W\215@\35\323\301\v"
#"\216\23\372\a4\246\367\342\r\e4!"
#"\263i~~\236\231\231\231\25\333)\b"
#"\311(\272\236W]\2552\273\276\212\310\326\243P-Cy\250s\35ob8W"
#"\236\274\227]\217\277\213\363\356\3241\342"
#"~\35\177\361\335\234\274\263\342\370\371\b"
#"\274\225\23\177\220\352\246kw\226\256\236"
#"f\217\335\315\251\305\32\367\232:.\21"
#"\317\34\300\201\312\235\275\237y\35_r"
#"\242\247\177~\376\bg\367W\34\177i"
#"\363\36\347\302\302B\277\245\335\246\216D"
#"Z\252#\257\0327Y\307T\213\236\252"
#"\316\323\350\177\240\214\342\247\222\32#\346"
#"\25\23e#\272\202M\327G\366!\177b2\211\2235es\f*-*\317-"
#"=\247D\266>\205j\31\312\274\327_\231/\365@\3763\316=\3772\17\237;"
#"\303\373\210\271^\272\207\357{\232\27\217"
#"\30\317\374\312o\260H\244\356\227HG"
#"\202G\314+\314S\275\260\21\3604\235"
#"\221\332\f\v\377E\36\1\317!\361\376"
#"_\340\311\335\316\267\336xss\36\343"
#"m\374X?5\374\b\270\245\32\364\v\307zXe\20 \204\36\301\246\330{\372"
#"\315\345Zs\310\333\346\21k\271)\6"
#"\215\36\226\323\312\244E\5\37Y\217\366"
#"\302Q\355\323\312\317]%\"\"\262\365"
#"\250\246Z\206r#\227!\244\t\210\221\377L\25\215?\275\362=l\337_Is"
#"\fsm\357\3763\221\3505\220;~4FRk\3131:\aB#\244I\217"
#"\301\361\372:\301\215h\20\210D<\325p\263y#\261\267\263V\326r'\217\b"
) 500
(
#"\354;\363u\216\235}?\274p\2353\a*j\367|~\336o\16f!\265,"
#"\334\304\362\230\355`\320\242>\205\2\265"
#"\254W\327\242Pk=\217T\267/\262u\351]Y\206\262\376\177\201TM\375v"
#"\36\371\245O\360\312\311\267a\241b\357"
#"\223\213\351\354<\260R[\32\215\366\\\377KLA\32\257\372]C(\2430\26"
#"\t5x\325\303-\246\342\206\30\340\374"
#"?\343qN\363\334\211\351\306=\311\243"
#"\264\215\333Z\217a}\247ok\240\316"
#"\377\271E\202\201\263\237\247\375\e\324\a"
#"*v\237\276J0\353\357\377T\362\321"
#"\274`\267\25\2175w\337\353\2670\244"
#"\337\16\eZ\a-\263\263\263\375\177\353"
#"\3215\362\326u\372\340+H\367e\365"
#"\346\313\367\317\333\r\316\353\233\337\306|"
#"\255\36\344\315\26{\"\243\32\345o\313"
#"Z\213H\211\310\326\240\221j\31n\271"
#"\230\32+=\252\367=K\355\317r\355"
#"\324\36v\235\334\211\235\314=\251\217\236"
#"#\236\331\327\357\352\341^C\250pw\246X\302j\200\200Y\351u\355x\b\\"
#">\361V\302\343\244!\357\350\271\236\370"
#"\247y\3\347\255\271\337H\t\365\375\220"
#"\337\30!\37\305\212\305Vb\354\3271"
#"\256z\270\233\334>\315\211X\352G\230"
#"\333\353]\340\223\341\1\2365\340\304\235"
#"\260\3473\215\217\203C\343q\17>\36^19\252\264\336+\327a\216y\232\362"
#"\210\245~\330\207\17\37\356\f\300\245\334"
#"\301\335\373\23\365\6-i\276\326jr"
#"+\36s\263\235\30\371\327\351\245\aw~\236\345O3j\"\25\251\215c\351\f"
#"\3@\25\260\274\f\273\210\210\3108P\250\226\341\254\214\16;f\1c)\215@"
#"{`\372\304%\352\23\216a8\3479V\35 |\3733\274\376\362IvQ\302"
#"]\304B\217H\300\253\24\231\226\373W\e\356\221\335O."
#"r\361\221\35\224Iy\356\347\371d8\300\3{\177\214k"
) 500
(
#"/\177\212\267u\2259\244u\271\327\365PJ\230kN\fj\207\311a\37\377\337"
#"\nF \232\23\334p\277\312\23\367\356"
#"\347\351\243\347\360\247\357\a\269}\317"
#".N\36y1\335\237\350\324\6\241\224"
#"\330\264\356ZW\240-\341\333=\375\236fgg\3626F\35\"=\257\372}\271"
#"gffV\264\26,\313t\227\5qJ\310.\a%e\337\3157Vy\34e"
#"\264mU\335\262\3458\35-\35p\21R_s*\252~\251\v\371` \35\214"
#"\1x\360\274\34\316\346)+-nj/s\331\26\264\204\271\310\326\247P-C"
#"\325\244\350\332\17/\326K\205\35\345\307"
#"\234\272\335\356\347\354\225\323|g\347\357"
#"\360\322\325\223\354\232\256q\253ri\210"
#"\23\211\224\24h\36\372\253&\272A\250"
#"\253\374\206RzV\357\343\351sG9\263\377[\\\265\300\333\362}I\225%u"
#"k5\307\2655k\32\313\367\245\323G"
#"\363\374\266\315\372\0306\340\2709v\341"
#"\327\370\271K\2739\365\257\336\a\16u"
#"x+'\376\361QN\356\377z\252\237"
#"\366\324\307\332r\240\216\324\4\252\316\307"
#"\327t\350\320!\242\e\26j\346\346?"
#"\237\16\220\226\233\211\367-,,\254\270\f,w'(!\2629z]\224>\316"
#"\353\261r\361\213\2640\20y4\32\317\375{\363dV\2674B\35-u\3526"
#"7\302\32\243\365\267JY\rOu\257r35\273\312\350\271%\262u)T\313"
#"Pipy\t\254G\rT\213\237\345o\356Z\340\357^}\231\307\357\b\313\365"
#"\300\220&!Z\244\266\230\2\265//"
#"Xb\30\304\346\3420\221\264\2149\324"
#"\341\373\351M\244l\337\37\355\204%j"
#"\234*\327\23\207F\210g\305\302(\303"
#"t\255\\\326\353\365\2101\336\3667"
#"\260\364V\232\16\20<\32\354\376\20\357\337\231\302bE"
#"\17v\356b\17_\346\303o\\'T\2754\0214}\0"
) 500
(
#"@\b\2510f\320\342\22\245\376\367\267?\377\34uM\177b\243\227\0357B]"
#"v\373\0dnn\256\177{\345\372\313\2)\345\373r\371QF\253\1\314\253\374"
#"\311C\2151\205[\5\274\311\223{wp\362R\16\316G\317\341O\377m\312\b"
#"\375\22No\23W\277i\36\2704\27"
#"\204\21\271\31\312\353!\306\250\321j\221"
#"-L\241Z\326\344\236\202L\360\32v\374,\377\360\310\2479\260\363\36zW."
#"\361\310t\32y\306\256\362\304\341\223\\"
#">r\201\213\323\251\236:\205#\303\375zZ<\246\fO\263\4\336\3\2\36-"
#"\255\264H\232\323X\341\3005N\377\312\31\356z\342\n\373b\5!\225\4Tf"
#"\271\207\363\350\201zP\215\357(\375\206"
#"7\343\315\315\274\206\376AD\2051\305"
#"R\343\374\310[\362v\201\3505\301,"
#"\365\362\16+\367A\363\361\35:t\250"
#"\37\376 2?O\277\375\2369\324\26"
#"\350\365\273\260\344\333\31Pg\336n\t"
#"\326\334\227\315\0]\276oN\344k\6\360Ar\343\23\250\301\302T\252\36408"
#"w|\a'9\305U?\301\16?\317\247\252\375\354~\347\353\\~t'\356\320"
#"\e\365\tp\223h\344PDD\326\242P-\303\31\230\347 E\205\e\354\177\332"
#"\271\372\216=\354\334i\234\f\3401\200"
#"E\366<q\215\370\350\35@Y\316\234"
#"\274\214y\217\32'\226\352\16\357\365'"
#"\31\366p.\236|\a\325c\21<\365\257\306`\357\251+\\\376\364t\n\324\356"
#"iD\333\235^U\261\264\264\224\222\327"
#"\b\243\314\355@]\312\31J\375\360 "
#"\315\232\341[\253Z\376v\327\235\334}"
#"\351\363\234[\374\24\273\246\323\316\nW"
#"^\345\25~\204\177\260+\365S\211\356"
#"X\250\210\261^1Q\263<\316\331\331\331\25e\34\245\356\274\337x\305\""
#"=\317\223\376\32\17\277\271\270\311\2406r\203\366Ws\3376GoK\251"
) 500
(
#"\310\334\334\334\340\221k\367\364\273\254\2"
#"\321s\225\v_\347kg\367\360\344\225"
#"\23\244\376/\373x\352\334'x\313/"
#"\237\347\315\23\323\334\221\373\320xs\231\373MV:\201h\264Zn\226fiZ"
#"\ba\305'D\"\2625(T\313\232\274\337rc\t\243\a\6\323'_\306O"
#"\346 \6\230\247\22\21\210e+ \365"
#"\266f\307\t.\371#\224\211\210\313\246"
#"\371\364E\347\223\271\303\303r+\bR"
#")\311r\341H\377\254\372\372\22\226\337"
#"pF\235\244\326\25\346\206\205\241M}"
#"C\263%<\357-\273\343\0\37\331\363"
#"\30'\177\355\3679\361\364\337\306\370."
#"O\376\352\31\342\321\27y\0[.}\211\251\256\334\375?S^\302e\204xa"
#"a\241\243\273F\\.3\361\300\260\225"
#"\30\a\215\316\17\353\341\334\356\303[\264"
#"G\257\347\347\347W\215v\257\370\35\226"
#":\375\363/\360,\357\342\e;\227G\243{;\177\224\273/}\2337\334\271\303"
#"V\36(\334\16\372\210^n\266\366\353KD\266\36\205jY\323rxi>]"
#"\302\312\363\255\327?\275\327?14.\334\b\323\255R\330\252\234g4\2766&"
#"\"6\267\17\255\311\206\276\366\344\236\365"
#"\264\311+\333m^\255u/?\266\210\3334\217\276\374\6\266g\27!\244\311y"
#"~\364\2~\346\276~_\3514i/}_\366\351\314\314Lg\a\16(\373m"
#"\345\276\\k\222\347\240I\2337:\241"
#"s\376\271\371\364\211C\230\342\320\301\2170?7\237;xX\256\271O\a\vi"
#"RbL\323\23\367\274\213;\373\265-"
#"\351t\370\26\213\327\34v\344\223m\364"
#"\311\252\267\302\302\302\302\252\321\352\333]"
#"\243/[\317\215\266\361\324sMd\374h\361\27\31{\203FNC\b\253\202d"
#"9}aa\241?zZUU\277\225\336\250%\37\233"
#"5Z\344e\24\331K\233\277\235<z\331q\257\211^"
) 500
(
#"\343g\356\203\334\5#\365\251^^X"
#"\305\254\352\227{t\325\213\337,\355\21"
#"\264\365\275\231\307\374W&b\365u\346"
#"\347\3479xh\206\345\262\224\345C\204"
#"R\316\362\2757\276\3\227N\260\323\f"
#"\v\206UF\330\3618\227\251\210\271K\b6t\300}\323u=\17EF1h"
#"\316G\327k\254\371\274R\240\26\31?\n\3252\366FYD\244\b!P\3275"
#"\a\17\36\354\a\300\322\345\243\224t\fZ\300\244]\362\261\31oZ\3469(["
#"\\^\330$/\203X\347\5o\322\313"
#"4\205\357\322\243yvv\226\331\231\217"
#"\365\313=n\345\375n\277\221\257k4\215\220\217\3R\331\220;,\314/ph"
#"\366`\236\234\272\374\b\213\267\355z'"
#"\266\3474o\270\343K1\35\\\\y\212\2758\241\371X\303\355O\325\245\23H"
#"y\256\201\372\r\313\372\264K\251F\331"
#"ND\306\223B\265\214\275Q\337h\232A\246\375&\345\356+z/\17\272\334f"
#"s\243\337\375cy\t\366@\264\232\312sw\20\312j\202\20=ph\366 \317"
#"\315\31537\377y\334\235\252\252\272\257"
#"\374&(\365\345\353^z<\353\227\343"
#"\347\345\322\315\322\250\373sss|\374"
#"\320LyT\375\22\237\230k\307\343\345"
#"W\371\36@\260<\31\361\377\243\266w"
#"\261c:\265b\\\35\305o\217\256\221"
#"\303Q\26\300\21\201\225\a`\243\256B"
#"Z~\26\221\361s\373\337\225D\326\260f[\266\326\310`W\307\n3[=\211"
#"o\215\21\305\315x\3432b\32\276\365@$P\347Y\231!\27\31\273\345\305]"
#"r\220\374\370\341\264\232\237[\351q\315\r\a\336Qt-,\263\3779\270{\0"
#"\0 \0IDAT\236\333Y*\367r\305\2570u\207ynn\201C3\263"
#"\270\207\376\203\t8\276\377\0G\374\333\274v\255<"
#".\270v\341\313\374\341\335\357d'\315\205\177n\377H"
) 500
(
#"u\373\271\251\260#\353\261b\322n\307@@WY\221>\t\21\31_\n\3252"
#"\366\326z\363\30\324\215\242\371\221|\373"
#"\272\206M\16\332\314\211\212N\0K\355\361*O\r\366RI\304r\207\213t?"
#"\2\207g\01727\367[`F\25\257\367\257\243,\30q\253\337hodd\277"
#"\347\226\27\356\311}\265\1<\37<\20"
#"\2118\321\322\242?\245\266\334x?\378z\231\307\17?\305\"`v\236_{"
#"\3642w}\344~v\366\2579\366{o\217\203Q\372\236\213t\31\245\226\272y"
#"\336\215Lj\24\221\3151>\357J\"\0034C\334\240Q\331f\20.\365\321\315"
#"\321\237\322\326\255\374\334\234\224\330\325\233"
#"y\263\336\260\214\210\305\36PBr$`,\321\30\212&u\370xn\376\363\324"
#"\4\360\ba\271\344c\330h\327\315\320\265\257G\335?\245L\303I\35<\322A"
#"DL\335\271=\260\2600\307O\317~\0343o\204n\270\377\314\e\374\272\235`"
#"\227U\230\355\347\354\321\v\\>q'\251\30f\2114Z}\373G\252\201\25\235"
#"W4z(7j\255\327U{\320@D\306\217B\265l\t\203\352UG\355\231"
#"\334\234\3207^\37\235\6\242\1ya"
#"\235\322\5\244\207\347\376\3401w\370\230"
#"\3Oc\263n\275\25\253!\26]\37\27\337\f\355\300\270\236\3536\213,W\200"
#"\4\314K+\300\230\333w\4~k\35679t\350\343\375\256\36i\333\235\234\374"
#"\246\23\275&\372u\352\247\337\a@E"
#"\304\275\227\272\246\370x\375\371R\330\221"
#"\365Z\253\233\307\240\256 \343\363\367K"
#"D\232\306\353]Id\35\206\265\235Z"
#"\261\252`\177-\354\270\274\314w\236\0"
#"\330u]\267\262F\271K\260\348\241\24A\260\\7\\\332\0\246\257%w\16"
#"\212n\267rB\323\215\5\306\260\262\317\270\205\345"
#"\323K\211\213Y\177\205\302tBc\202#`\364"
) 500
(
#"\32\267\235V\202\264\326\212\220\343@\201"
#"Z\326k\275\317\31M\202\25\31o\n"
#"\325\262\2454Cb\327\312\207\345\374\376"
#"2\344\16V\03133\37\303\302\24\261?\332Z\255(\257h^~\2557\256["
#"5!\260\3536ggg\231\233\233\333"
#"\360\365\215\363\310V\363\276\215\363\375\24"
#"\271\0354:-\262u(T\313\226\262V\320]5K\2762\314#_X\370<"
#"\36K{\272\374\265uU\243\326$\337\212\240:l\344i\275\267\23c$\204\225"
#"/\355\215\214\210\335\352\221\373r\e\363"
#"\363\363\375\266\207\267\362\366n\225\303\207"
#"\17\337\356\273 \23\246]\36\262\331\237"
#"\242\211\310\372(T\313\2267h1\227tf\300s\253:\263\264B\337T\350a"
#"V\255\232\3506\350\rl\220\233\365\21"
#"\354\2407\312\262\4\366\272\26[\351\350"
#"j2\250\3\312\250\367i3\372\3436\203u{R\3518k\356\217\366\247&\""
#"\e5\350\357\332Vxm\210lG\n\325\262%\265\303cW\33033\260\264p"
#"I]\347\325\24\243S\327\251\246\332\254\352\217N\267Gv\327jmu3u\205"
#"\340C\207\0161??\277\376\305V:&5\r<\340hh\267\37\34\324\361\343"
#"Vv\27)\327=77\307\241C\207\266\304h\\\363\2717??\317\314\314\314"
#"m\276G2i6\263\305\247\210l\214B\265lIfF]\327\3750\334\16\326"
#"\v\v\v\251\255^YX\304\300=o\237\27X)oV\356\313K\230\17\v\331"
#"\315\333\276\25\217\247\31.\233\367\247\313"
#"\250\201s\224\221\346v\377[H\365\352"
#"\315^\337\243\366\322\275\21\355\337]\263"
#"%\342\270\353\352<\323<Od#\206\315\361\320\363Kd\374(T\313\2263h"
#"R_\363\315\347\340\301\203)\254\1i\345\275%\234@\254sX3\240"
#"\321\1\244\31 \313\277\22,C\b+B\366\255.\201H-\364\26:"
) 500
(
#"ok\224\266v\355\313\264\3\373Z\347\267\257\243k?\337\252\321\372baaa"
#"\271\e\310\30\353\352o~#\255\aE"
#"\206i\177\222\4z~\211\214\243\336\355"
#"\276\3\"\353\325\36\rlv\1i\6\323tB\304-\200[j\301\226\313A,"
#"\267\326\e\366\266\324\256\221mO\336\273"
#"Y\301\262\334\237\256\209(\320\16*"
#"\341\350\332\246L\\\0346\372=\254Ddh\315\372M2)\37oO\312\343\220"
#"\3610\354\365.\"\343G#\3252\326\326\23\\\273\312\b<zc\251o(O"
#"yw'\214\20\222\333u\306\251>\273^Q2QF\263\a]~\224Z\345\365"
#"\30\264}\263\346\271\275\315z\313)\232"
#"\a\24\233\361\206\336u\e\315I\213["
#"\305V\274\3172\336\6\225\27\211\310\370Q\250\226\2616JMq\t\214\303Bq"
#"\327ye\4w\330D\240A\247\265KE\352\272\246\252\252\25\301\266l;\254$"
#"\240\353@`~~~\315\307|#\206M\352l^\277\336\274E\306\213\352\247E"
#"\266\6\205j\331r\332\241\257\353#\322"
#"v\210\355\n\211\245$\242\253CF\373z\332\6M\256k\6\364\366\277\366u6"
#"G\261K\177\346ae%7#\350\272;UUu\236>\216\355\272\272F~\25"
#"0d\273\31\247\327\244\210\f\246\232j\3312\272Z\3045\303m3 \17\32\265"
#"nw\265h^o\327\210u\327\214\373"
#"\256\360\331\356\2\321.\267h\226\207\224"
#"\316%\315\363K\271Es\202\342\255\352"
#"\270\321\265o\266\322G\314\2523\225\355"
#"F\317w\221\255A#\325\262e\214R:\321l\217W:\2004;x\224\363\333"
#"e!\355\300\275\326}\0306\23\277\353"
#"\315\257\324a\227\333o\226\212t\215f"
#"\217\322q\343FGl\233e/\355\353\333\no\334[\345~\212\334,"
#"[\351\240Wd;S\250\226-aX\e\270.\315\21\353v\220\36t"
) 500
(
#"=\203JA\206\215\354\216r~\327\317"
#"\315R\221r\20\360\371\317\177~h)"
#"\312\315\354\300Q\202}\373\372\306\265\264"
#"bX\213?\221I7\256\257K\21Y"
#"I\241Z\306\336\240\32\352\346\371\315\257"
#"\303\276\37v\335]\345\37kM\356+\367\247}\235\3535???\264&\373f"
#"h\327\231wu\4Y\353`\341v\230\237\237_Qs.\262\335\214\363\1\257\210"
#",S\250\226\2617,P7O\e\24\20\233\227\31\245l\243]7\335\16\326\303"
#":\212\264\257\263m\255\321\362\346v\315"
#"\177\3152\226\e5\t#\274\n\27\262\35\251\354CdkP\250\226-cX\240"
#"j\207\343\231\231\231\316\222\201QF\225"
#"\333#\326k}]\357cX\317\351E\31\305n\226\250\334\350(\366\212v\204^"
#"\247~\335\16D\207\25\273#\266/z"
#"[\224\356\37\345\253\202\365\315SV\34"
#"]\2717#\332\275\343\345VMZ\26\221\233K\335?dK\30\326jn#\272"
#"\336\234\332\335A\306A\273D\245\353\274"
#"b\255\373\275\342\0\304\3\265_o\4"
#"\325\210\367\217\265\307\347\230\273\264,l"
#"\376,\eg\371\300\311\0<\342\30nF\0\334k\314V\267_\224\315\323\25\240"
#"\307\351\357\222\210\2544>\357\232\"C"
#"\f\352\2721l\333Q\214\332\207z\\t=\266A\245\"\203F\262W\205rz"
#"x\355X0\360\220V\240\34\243\321\312"
#"\271\271\271~w\226q\373\235l\325\16*m\321!/=J\360\34\265\25\250o"
#"\273\256\277{[\361\371%\262]h\244"
#"Z\266\214Q\3\313z\202\327\250}\250"
#"\307\311\260\375\260\326Hv\31\361]5!3D<\246\245\333\257\273\23-`\26"
#"\271\335\307\335\355z\366q\373\235\214\322"
#"\372p\274\245\337\257\31x>\240\302\")a;\267\373\367/\311\270=\357"
#"E\244\233\376b\312\2261JYFs\233A\313}7\r\n\240\343\32\214"
) 500
(
#"\206}\34\334\356d\322<\277\374+\213"
#"\316\224>\331!\30\20\261\230\277\32T"
#"\375\213\336\376?\17\345\3614'h\216"
#"\343\357\246\371;iv+\331*\214\230"
#"G\252#\356\201\200a\361\366\377\376\245"
#"\333V\375DDd\322\351\257\246l\t"
#"\315\221\312\265\332\276\255\347\rg\353\215"
#",&kM\302\34\324\361\244\234\336\237"
#"\370\350\216\331\24\2417\205\205\2514Z"
#"\31**7\"\365&=\232\265\225\22"
#"\20\370\377\331{\333o9\256\354\274\357"
#"\331\247\32\32\345\237H$\342\2\244F"
#"\32\347\2334\4(\217\263\2264C\202#ge9z!\273\357\35'\31\202\234"
#"\221\b\200T\234,G\322\2078\312\362\262Vf\bp$\221\0\345XFw\203"
#"\262e+\311\214\0\220\313\372\342\31\22"
#"\30\257|\310\22\2551\207\300\5\307\177"
#"\206,t\235\235\17\347\234\356\323uO"
#"Uw\337\333/\365\362\374\326\2n\277TWWUW\235zj\327\336\317\256g"
#"\324.\316\367N=\257/vZ\234*>\237^\340/\304LS\326\241\e4q"
#"\234\"\244k0\375\203\324\236b\4\266,O\270(.\203[\304\242y\ec\216"
#"x6\3275\22\24\3227\212\371\305E"
#"\301Y\225\203\34\346\21\246}\361\305_"
#"Cf\200\34>*l\201\341p\204\261\274[+a=\30\f\246\353T\307\213\241"
#"[\267nU>\257'\6\200\365i\37"
#"\202\211\366\0\375k\b\f\24\365\333\377"
#"\273H\\'A\b\2517\24\325\244\366T\t\3522\217j\0K\245\177\264\215\324"
#"\5HYC\e\207\313\233V\v\210q\217-r\310@pS\207[_\376E\f"
#"\207\263e\252\323\205\317`0\230\333\337\212\317k\213Z\250\370\\jL0;%"
#"X\bod\326\202\272\354\343\204\220"
#"\305p\324$\215a\321\311\245\216\321\313m\223jfS\325"
#"5qZ\250ff\2173\351E\316\305>\5@\275C\4"
) 500
(
#",4\366\257\216\255\255m\16\5\240a"
#"\32?\275\373;q\223\207\351\343\317M"
#"\37\333\351?\265\360\3373[\222\310]\333\245'\324Xk4F\bM\00550"
#"\37c\341\251\241\356\224\325P\20Bv\a#\325\244\361\24\3054O0\353CC"
#"z\200\230\251\314\0225\200*\324\2107"
#"\211p\376\3260\31Ds\0\331\264\350"
#"\r0\310\5\310\374P#\230\0\332\203"
#"\212\365\36\311&\212\224\32\247\251%\270"
#"Q\bTf\342^`\274\0007\200\324W\3665&JMZCc.\342\bi"
#"9u=/\21\262\22!\3470NyX&\247\232T3\25\273\200\17\25\233\251"
#"\237\261\300B0\201@\0\311|d9\233F\220\203\0346At\3\200\364\234h"
#"\206\1\320\233\26\306\205\17\250\1T,\254\344\20\b$\274\257NP\a\301-!"
#"\n^\3xAGv\t\3679B\352\3E5i\5q\361]\235rm\333\201"
#"\235F\220\343\264\rU\201\23\306n\32"
#"\361\202{\332\245OgE\205\256\24n"
#"\226J\22\220\351\374\25\271X\27\334\6"
#"`\2748W`\232\352\241\376M\r\366o5!\225rC\3106\260\326\"\313\330"
#"\244\207\220\272@QM\32O1R\310J\371u\342\305\262\261.\2739D\241\305"
#"BD\361\360\3323\350e\0021\231\337"
#"\356O\343\332#\237\347\351#\332P\300"
#"@\361\340[?\357\2461\2\221\fF\316\341\315C\205U\3\30Ef\37\341\215"
#"/\b29\5#\342\377e\310\314g\360\312\335\211O;\201w\246p\315J\b"
#"\3512e\251o\214^\23\262\exV\"\215\246\30\225\16\217\213\26y\344x\250"
#"\32_Xh\\\232\207\272\324\v\201\301"
#"\303k\177\eO]\371\34\276\235\347\260"
#"\3267\230\271\3739\\\3313x\345\16\340\4\271\5\364\21\256\236\357\341"
#"\251?y\1\17U\241V\2416\307\307\327\200\313gz\370\372\373\271K"
) 500
(
#"\357\220\f\260\3003\337|\210\3347\253"
#"\261\372\30\366\366\177\217\e\27>\203\227"
#"\357\344N\250k\324\254\204\220\216\223\362"
#"\247\347\330G\310n\240\250&\215\246x"
#"\22\t\21\232\340=MNF\310_\326\351_/f\365S\334\371\227\37\342\253w"
#"\336\302\5\261\356=\0x\366m\334\271"
#"\230\341\306\377\376&\36\371H\362\335\257"
#"\357\3415\\\303\341\207\277\201=X\327"
#"\265\17\300\331K\367\360\360\3329\\\377"
#"G\177\210\a\276\250\321\30`\"\217!"
#"\0r\37%\327\347~\23W\237\261\370\17\237\374G \210\351\232E\251\31!$"
#"\273\"u\247\216\20\262\e\350\376A\32"
#"O,\240\3436\345<\271\234\34\205\217"
#"L\213O\347\200\213*+r\300\0\177\365\340S\310\227\236@nB{s\203g"
#"\257O`\247E\204\177\201\377\347\6\360"
#"\362\235\337\300\23\n\250x\v?\261\200"
#"\25\234~\365\273\320K\342m\370\36#W\240g\\\232G&\2418Q\2409\220"
#"\367\374w\373\345\20\324#\2274n\264\303}\216l\2332?zB\310\366\251W"
#"\270\207\220\4\305(`\3747\325\272\232"
#"'\226\343S\214\264Jp\344\0\274\333"
#"\307)\27\265\306\31\\\372\207\27q\357"
#"\265\323\220L\360w\256\36N]?\202"
#"[\207\2\300\341\17\361Wz\16\237\335"
#"\3\254\350\264\20\0210P\23\211\1\237"
#"\376q\312\2\23\310,\265C\0y\357"
#"\367\360\32\256\342\237_:\213\360\323\212"
#"d\250\213\373\a\5\r\251#\274kB"
#"\310\366\241\250&\265&\25\205\211\377\236"
#"\244\371\1O:G\267\301\221\326\346\342"
#"\274\245%\370C\3\20\353\3348\344\302"
#"[\320\211\342\341\265\317\343\203\327\317 "
#"\23\201d\2y\345\256\213d\373\371+>\207\263{p9\331P\b&N\244\333"
#"\360\273\206\2\310\tl\6\334\277\374$\304\27*\212d\350="
#"\367\16\314\375\37\340\201\267\36q\242}\266<u\200\373\22\331"
) 500
(
#"\25\251\v:^\344\21\262\e\352sV\"$\301\262Q\300eO \261\370\341I"
#"g~\e\244\362\202\235\313\206Ls\252"
#"\1\0F\247\201d5\300\336\245\373\320\\]q\241}\37_\275~\1\275\237\377"
#"C<D0\377\370\b\237<r\276\3260\316\206\17\352sJD\346\304\261<6"
#"x\372\332'\276H\321\25*\376\265\336"
#"\306W\361\16~\351\351\337\2073\26\261s\326}u\240x1B\221M\266E\354"
#"\0\222\272sG\b\331\36\24\325\244\366"
#"\244N\20\361\311cY\1\303\266\276\325"
#"\244\332\232\v\0H\346\5\254kC>"
#"\231\265u\231\372L\347\241XQ\177\21"
#"\357\34^\305\317}\370.\336\177\4\350"
#"\351=|\16\367\361\361\203h\233\253\377\16U\0w\360uy\32o\36\302%m"
#"\237\22\30\233\373\371;wk\203\347p"
#"\375\316\327\240\337\377\b\207\0l\344H"
#"R\27\212n3\0245d\233\204\274~\356w\204\354\226\372\234\225\bY\202b$"
#"&%\252\313\4s,\250y\3629J\234j3\303F]\0253\2708\263\0\207"
#"o\342\274\234\307\233\17\334{\6\336!D\24Nl\e\250\2*\27\360\17\256="
#"\203\353\277\373\6\36!\203b\342\225\272"
#"\5\214\342\323k\377\30o\313\347\260\267"
#"\a\210\30\344vV\200\2500\200\32/\335'0\20X\235\300\204\26\3475\371\t"
#"\323\333\215\220\315\303\273#\204\324\v\212"
#"jRk\216\24\316\25\322\25\212\321\347\370\371h4B\277\337?2/\n\352\243"
#"\244\374\276\335\366\362\215V\346\246\25`"
#"\3577\360[/}\37\227\177\352<\256=t\335\23]z\310\247\270\372\225K\270"
#"\177\361\267\360\352\236\223\327{\257\3763"
#"\\\305o\342\314\371k\370T\275\341\220"
#"\32<\274\366\f\366\256\334\303\313\177~\3\27\0\250O\4\311\r\0\270"
#"\3107\4\260\370\4o\374o\357\340g\257\376&\236\223\36\0\3X\343\333"
) 500
(
#"\242\357\236\370\2o0\30`4\32Q\340\220\255P\f\24p\277#d\267\320R"
#"\217\324\2322\1\\\24\201e'\225\262\3504\243\3253\212\27&s-\337\1\37"
#"'\316\321C\206\t\\\244Z!\370\322"
#"\215\307\370\344g\276\200\247\316\n\256\0"
#"\0\f \26O_}\210\311\245\323\230"
#"\272s\310\36.\177`q\346\25\203\275"
#"\354\212O\333\260\200\234\303\233\17'x"
#"u/\314\25\200\364p\377\312\31\310e"
#"??\37\221~\372\352C\334\273\264\347"
#"\227\330\2b\274c\310\266\266\322r\360"
#"\302\215\354\2:\320\20R\17(\252I\255\251\252l/zRW\235T\212\242\221"
#"'\237j\214\361N\37\0\240@O2"
#"\250\27\326\360E\213\31\f\316^\372\267"
#"\260\227\n7\274\302u\215\5\324\210\27"
#"\313\300so?\206^\317\234\360\24W\270\250P\0=/\336\367p\371{\177\215"
#"\313\310\274m_\230\235\205X/\260\335"
#"\322\2716\3515\311\251\216/\344\350W"
#"Mv\5\243\325\204\354\36\212jRk\226\21'\251\2\273\0306G8!s\336"
#"\320\363\257%3\310\302{AP\207\227\375\347g\277\201\231\276?\235.L37"
#";\343\277\306\314\277V\223\237\222w@"
#"H\335\340~H\310n\250G\250\207\220"
#"\25X\345d1\32\215\260\277\277\277\362"
#"\347\272D\252\v%[\274\257N\310\247&d\327p\254#d7PT\223Fr"
#"\334[\234\2745\232&N\247\t\317\311\361\340>Fv\t\367?Bv\aE5"
#"i$Y\226\35+\232\232j\224@\34\314\307<9\274\355Nv\211\265\26Y\226"
#"\3618&dGPT\223\332\223\354\364\267\202x\31\215F\30\f\6G>G\361"
#"3\17E\365\361QU\214F#\356Sd\247\260v\204\220\335BQMjO\352"
#"D\261\352I\203i\r\213\241{\300\361a\247N\262"
#"+\252\274\374\t!\333\205\242\2324\202\242\330[U\274"
) 500
(
#"\360D\263<\334V\307\207\333\216l\223"
#"\242\307|\374\227\20\262}(\252Ic\250jMNN\6\243\324'\243h\253G"
#"\3106H\335\275c\372\a!\273\203\242"
#"\232\324\232u\t\224\341p8\315\253&\363\320\307{1U\373\341`0\230{\237"
#"\333\220\354\n^\320\21\262[(\252I\255I\245}\34G\264t]\350T\245\316"
#"\2344\265\246\v\244\242\370\334N\244nt}\234#d\327PT\223\332\223jS"
#"\276\neE\212]\22E\305\333\304q\273v\21\231\266%g\264\372(e\373O"
#"Uqb\227\366-\262{\312\3667\356\233\204l\27\212j\322(\216\343O\35\304"
#"\317\315\2337\223\326z]!tM\4\312[\273\323\305\342(e\373\211\252b0"
#"\30`<\36\317\275V\365\31B6A\252X1\\0\a\342\256\251<\276\t\331"
#"\f\24\325\244Q\234D\f\27\vy\272tb)\236d\213'\337x:\200\305\240"
#"\313\220\272\0\241\230&\273$U\254\30"
#"\37\323\254\235 d\263PT\223F\260.\2017\32\215ppp\0\240\e\2\250"
#"*u!u\2>\211\27x\227\bQj6|!u$\276(.v\221\345\376"
#"J\310\346\240\250&\215 \216\262\234T"
#"`\37\247\275yS\251\2128\2638\361"
#"\370P\230\220\272\223r\365\341~K\310"
#"f\241\250&\215\343$y\277\252\212\361"
#"x\334){=\272\245\254\237\375\375}\214F#\0\214\376\221zSva\315\v"
#"iB\326\17E5i,'\21\213\24A3\270-\252Y$>\230\177N\352N"
#"\352\30\347qO\310\372\241\250&\235\244"
#"k\315`\312D_\361\366p\230\256K)2\213(\212\217\301`\200\2337o\356"
#"hi\bY\36^\360\21\262](\252I#X\367\311\241k'\232X4\247r"
#"\251SV{]\333F\313R\264*#\244\256Xk\247\36\364Ex|\23\262~(\252I'"
) 500
(
#"\21\21\214F\2439\337\352\2306\236pb[=k\355T`\207\327\213\321i\n"
#"GG\274/0JM\332\2\217oB\326\17E5i\f\305\250\352:\346W\314"
#"\261ns\363\216x\235\212\321+\26\333"
#"\225S\364\361\346v\"\204\20\222\202\242\2324\216UEMU>\361p8D\277"
#"\337\237{\255\215Qjr2\212\335\23"
#"\271\217\220\246P\34/\271\357\22\2629"
#"(\252I\3559i\27\2602\v\276\360\274\30\265m{$\262\270\35x!\261\230"
#"\262v\356\204\324\35km\262\321\23!d\375PT\223Z\263\211T\217@x~"
#"\363\346\315N9\201\224\235T)\254\313\31\f\6\30\16\207\273^\fBN\4\5"
#"5!\233\205\242\232\324\232u\t\300\252"
#"\223I*R\333E\201\331\305\23\356\262\277s\27\267\ri>]\34\307\b\331%"
#"\24\325\244\366\24E\357&na\26\273,RDu\203e\272s\366\373}\f\207"
#"C\246\311\20B\b\251\204\242\232\324\202"
#"\2626\272\301\352-\0264\233\22\274\243"
#"\321h\256h\221t\203\252\213\264\2708"
#"\21\340\305\26i\26a\334T\325R\277jB\310\372\340QFvN\0205\305\306"
#"$\251\34\350T\343\222ub\214a4\262c\0347\2\315\375\2044\201e\356\306"
#"\20B\326\3E5\3319\261\273\307\"\247\216MF\254U\0257o\336\304\376\376"
#"\376Z\347K\352K\325\2764\30\f0\32\215V\372\f!u\242JHSd\23"
#"\262~(\252I-\210\305r\225S\307&-\241\252D=i'\307\331\227\230["
#"M\232B\325\270\311\213BB\326\17E5\251\rqw\3038%$5\315\272\211"
#"\5\375h4\302\301\301\1\205S\307\210"
#"\177\357~\277\237\214R\207\351(HH\223\20\21\344y\316\274jB6\f\2170"
#"\262S\252\n\24\267I\261\301\314p8d\32"
#"H\307\b\373\300\376\376\376\\qbj:\200w"
) 500
(
#"3Hs(\vR\20B\326\vE5\331))\361\34G\254w\271,\243\321\250"
#"\365Ma\272p\242]e\375\366\367\367\227n\362\302h5i\2q\260\200\373,"
#"!\233\205\242\232\324\2168\25c\327\214F\243#\21\353:,\27Y\216U\356z"
#"\224\25&\22\322d\212\365*\361_B\310z\241\250&\265CD`\214\201\265v"
#"\327\213\2\300\245\202\204\2105\363i\233"
#"\3052\277\225\252N\e\274\204\347\204\264"
#"\211\330\2624.\310&\204\254\27\212j\262s\352\222W]EH\5\351B\272D"
#"\327\b9\324\305\274zB\332Bj\277\3468F\310\372\241\250&;g\eM]"
#"\326A,\254I3)\356[!\345\203"
#"\336\323\244\255\224\tj\356\353\204\254\37"
#"\212j\262s\212\3|\350jX7q\315\23Q\363)\373\375R\257\327m\377#"
#"dU\312\0045\255\365\b\331\f<\262"
#"\310\316)K\251\250\213\200\215\243\2307o\336l\275#HW`\307D\322v\230"
#"\256F\310v\241\250&\265\240\316\203\177"
#"\261+Y\27\254\366\332\316`0(\265"
#"\316\253\363\276H\310\252\360\342\220\220\355"
#"AQMjC\35\a\377X\\\305\313\227\262\332[\364\371\324\363\272P\327\345Z"
#"\304\252\333w0\30L#\324U\373[\35\367EB\b!\365\246\267\353\5 \4"
#"\230E\201\353\26%\254r\204\210\255\366"
#"B\261[q\272\342\347w%\326\342e(.g\223s\305\213\353T\366{\205N"
#"\211\364\241&\344h\207\305&\217\1\204"
#"\324\tF\252I-\250\363\200^\325\226z4\32\225\332\355\25ssw\331x!"
#"\336\276\261\360L\235\\w\265\214\307\245"
#"\270\16\251}\251\350\362\321\244\365#d"
#"]\224\211\350:\217\277\2044\t\212jB\226`Q$g4\32\241\337\357\227\212"
#"\273T\264z\333\302.vT\251Z\266\246E\255"
#"Rw\1\342m\e\27$\356\372\216\1!\333\2448"
) 500
(
#"\306\24\217sB\310z\241\250&\265\241"
#"\230\242P\a\312Dhj\232*\37\353"
#"\324\347\267)\354\212\235\324R\271\342q"
#"\307\265\272l\377\343\22\326\241\337\357O"
#"\363\247\233\276N\204\254J\331\270\25\217"
#"\265q\347Z\36#\204\234\f\212j\262S\342A<\264&\257\223\260K\245n\244"
#"\362\246\303\337E\316 \333\216\2\227\t\370T\376zUNr\23988\300x"
#"<\6\220\316#'\244\355\224\25Z\213"
#"\b\254\265\20\221\271\276\0m8\356\t"
#"\331%\24\325d\247\24\323%\352P\324\227b\225\324\215*g\220mG\342\253."
#"N\312N\242u\332\356\307\245\337\357\317"
#"Y\346\225\25\220\22\322f\226=\226\313"
#"\356b\21BV\203\356\37d\347\224\271R\324\215es\217Uu\352\f\"\"I"
#"?\344mF\204\353\274M\327M\270K"
#"\20\"\324)\212\2510\204\264\231U\307"
#"\31\36\27\204\34\37\212jRK\352("
#"\260\313\322>\312\246\v\305q\261\355\336"
#"2\237\337\4U\226zu\241\350HR\365^q\232\262m\234\242\216\353N\310\246"
#"\340\376N\310\366\240\250&;GU\247y}\2016\345\366\6+\267\330\326m\233"
#"\0027\365}\251\242\245]n\357\252\264"
#"\237\262;\4\341o\277\337\257\214L\23B\322\204c(\344W\267e\314%dW"
#"PT\223Z\220\22Km\31\334\343\366\346\375~\37\306\230iJH\325:\256\353"
#"\4\227\362\243]\344[\275m\252\276\263"
#",\37\372\340\340\0@u\252\a!\244\232x\254m\313\230K\310\256\240\250&;"
#"%%\346\3326\260\307\353\27\4`1\337\272\312Ud\35\24\267spZ)~"
#"W\35\266}\231\300\17\317C\21\350\315"
#"\2337w\265\210\204\264\2062\253=B"
#"\310\352PT\223\235\222r\325h\343\240^\214\6\307\371\326\301GyS\244"
#"\362\221\253\266s\35\242\326)\317r\21\301`0\300p8L\212mB\310"
) 500
(
#"\352\244R\303\230\nB\310\361\240\250&"
#";\247h\253\a\264S(\245\242\301\261"
#"\257u\20\332\353^\367U\357\4\354\342"
#"\204Z\32669\216N\307\27#\305\345"
#"-\316\247\215\373\17!\233 \316\247\6"
#"\352u\327\212\220\246AQMjG\233\205Qj\235B\3445\26\327\233\20\326\361"
#"\367/\272x\331\266WmYqbH\365\210\243\323U\356 m\335o\b\331\6"
#"m\36{\t\331\6\24\325\244v\264iP/\213\300\306\204\352\373E\26|\353 "
#"\225RQ\\\336\375\375\375\251\310\337\304"
#"2,C\210L\27\213\20\313N\372\251"
#"\2\327\266\354C\204l\2136\215\275\204"
#"\354\2\212jRK\3322\250/Z\217\270p0\20\204lU\312\303\246N|\273"
#"\330\356\361\272,\272\240\250\2725\275\311"
#"BOB\272\2\217\eB\216\17E5\331:)\337\341\256R\25\31\n\316 A"
#"h\2\363\251!\307\25\326\251\317\27\37"
#"\307\276\341U\351\26\251\367\227i\336\22"
#"spp0\315\353\334Ud\234\220.\263l\0213!\244\32\212j\262u\312n"
#"\333wu0_\224\256\20\v\315`\305W\26\301Na\255\235\213\204/#\250\303"
#"\343\262e\252Ji)\233>\25\221."
#"\256_\240\253\373\2!\273\206\307\35!"
#"\307\207\242\232\354\224e;\351\265\235E"
#"\353\0327\220\t\4a\32r\262\307\343q2j\34\v\352\324<\213\2y8\34"
#"\316u)<\316\357P\374L\277\337?"
#"\342zR\365\231\256\374\356\204\20B\332"
#"\3E5\331\32\261h\n\321\323\252\250i\27\204UJ\330V5\202\211\337\v\216"
#"\30\341\2658\212\35\263(?9E\34\255.s\aI-s\3312,\352zX"
#"\225NB\b\331\34t\316!d}PT\223\255\21\213\255XP\27\247\tta"
#"\200/\n\311E\371\311)\227\213\360\267L<\307\251"
#"\26\0\246\21\355*\312\334A\342\345(\316\267j\31R"
) 500
(
#"\363_\264^\204\220\315\22\217;E\277"
#"\352.\214\277\204\254\e\212j\262\25\216"
#"#\230\2724\240\27\5r\325\366Z\24Q*\276W\214h\217\307\3439A\34\237"
#"HC*\311\255[\267\26.s\261\263\341*t9\325\207\220\272P,\30\347\335"
#"\"BN\6E5\331\n'\315\311\355\2)W\224\252Hq\31e\251#\213r"
#"\232c\26\245k\2448I\301)O\346\204\354\226\342\3055!du\322\25L\204"
#"l\230T\352G\361\375\256\261\214\213\306"
#":Y\267\225\341:r\341\273\370\273\23R\27xQK\310\311\240\250&;\201\3"
#"\367n\341\311\223\20RF\227{\a\20r\22(\252\311N\340\240\275=R\305\240"
#"\24\324\204\220\230x\234\340\370@\310\361"
#"\240\250&\244c\360\202\206\20R\204B"
#"\232\220\223CQM\266\316\242|j\262^\270\275\t!\313\302\3240B\216\17E"
#"5\331\32\24v\273\203'IB\b!d\263PT\223\255QljB\266C1"
#"W\222\333\236\20R\5/\302\t9\36\24\325d'p\320&\204\220z\302\vo"
#"B\216\aE5\331*\214\224n\37^\300\20BV\201y\325\204\34\17\212jB"
#"\b!\244\3430\330A\310\311\241\250&\204\20B:\16#\323\204\234\34\212jB"
#"\b!\204\224F\253\31\305&d9(\252\311\326`>5!\204\324\227x\214\216"
#"\363\2529v\23\262\34\24\325\204\20B\b\1P\236\6\302\364\20B\26CQM"
#"\b!\204\220\2050ZMH5\24\325\204\20B\bY\b\243\325\204T\323\333\365"
#"\2\220\366\243\2520\306\300Z\273\353E"
#"\251\35\203\301`\343\337\21\362!\307\343"
#"1\6\203A\362;G\243\321F\276\273\350wK\377[B\232C8^\255\265<"
#"n\tY\2\212j\262q\2724\30W\211\306m\212\331\24\267n"
#"\335\302\315\2337\223\313W\\\266U\227\253l\275\203\240\217\v\236\b"
) 500
(
#"!\315\242x\34\23B\322PT\223\255\21\6\344\266\r\316U\242q0\30LO"
#"H\261P\335\3056\210\277\263\370\375\305"
#"e[UdW\255K\361;\333\366\373\23\322\5x\307\211\220\305PT\223\255\20"
#"\213\251\246\17\306\305\23JJH\a\312"
#"\304\350.\267\301\242\23\242\210\34Y\356pq`\255\305x<^y\336\251\v\17"
#"\236\230\t\2517e\205\211\2748&$\rE5\3318!\237\272\251\225\343e\""
#":\274\36Dt\34\221N\235p\254\2650fw\265\301\253\210\332T$;^\337"
#"\262u]\306\216\253-\27W\204\264\235"
#"X<\27\307o\36\277\204\34\205\242\232l\2340\03071BYLY\b\177\373"
#"\375>\2141si\35e\323\6\202\240"
#"\336\325\372W\235\24\213\313\234Z\217T\32KYzK\32524\345\267'\204\314"
#"\340\261K\310b(\252\311\326i\322\300"
#"\34\213\312X@\216\307\343\322\bv\325"
#"\255\321m\237\230\226-\22L-\3632"
#"\221\355\242\300\16\f\207\303\322\302\305\262"
#"y\21B\352\vs\252\tY\fE5\331(Moo[\226\37\235:\251\254\232"
#"\6\261\r\212'\302e\247-{\277\352d\32o\237~\277?\215n\17\207\303\225"
#"\347E\b\251\a\252z$\5\204\307-!i(\252\311\211\331\2658:iT\270"
#"8\335q\v\r\233t\2429\356o\266\354g\342b\3068U\6\230m\323\223l"
#"\257]\357s\204t\5\36g\204,\17E591\253\16\272\353\26D\353\20\324"
#"U\305w\344\370\24Seb\273\276\20"
#"\305\256\262\372+\203\221nB\266C\252"
#"\316\202\20\222\206\242\232\234\210U\304+"
#"\200\215\271>\24\213\352b\227\215\252e<88\230\332\304-*4l2\3054"
#"\234m\255Wj{\306\371\326A`\207\24\221U\226\253-\277\r!"
#"u%u\301\333\306\361\221\220uAQMNDY\361\212\252\"\3132"
) 500
(
#"\250\352\234\225\334\272\a\342\242=[\30"
#"\354\27\t\310X\314\25\363\240\333~\302"
#"\330\346\272\245\362\270\213V}\0\260\277"
#"\277\177\344.A\233\177\3B\232@|"
#"\374\205q<\330\243\362\330$\344(\24"
#"\325\344D\224\25\347\305\221\3218j\274"
#"\356\2018\2256P\366\35\252\212\203\203"
#"\3\250\352\21w\212E\r]\332\3046"
#"\5\353\262\3334\264O\357\367\373\323|"
#"\354\252BPB\310va\241\"!\213\241\250&'\242L\370l[\0-\372\316"
#"\2203}\363\346\315\351\364#\267\25:\0\0 \0IDAT\305\317\267\231\272"
#"\256_\361N\303x<\236:\207\24\213D\353\272\16\204\20B\b@QM\326L"
#"1\205\"\260I\221]\325\241/\244y"
#",\323\230\244\255\24\323a\200\372\b\324"
#"\342\305P(l\4\370\333\21R\27x\227\210\220\345\240\250&\ea[\205qU"
#"\203\375\376\376~\347\5Y\23N\206e)\"!\277z0\30t\376w$d\227"
#"\244\212\25\t!G1\213'99:\375\317Ba\247\317\335a\31?\267\310\347"
#">\24\36\332\302\363\370\363\276\30J\335"
#"|\24\26\200\235}\316O\257\376\373\335T~\32\216\vk\241N\3lX\226\220"
#"7\335u\352.\250\27\21\322@\6\203\3014r]\334\337\342\337\234\20\262~x"
#"l\21\262\34[\210T[\b\f \0`0=\305\313\4\242\6*^\327\213\233"
#".S@\5PQ\b\324O\357>\37D\262\370k\1Q\37791\0\304M\253"
#"\6*\356\353\344\356\327!\317+n\333"
#"\353\270\340\277\337@\241j`\5\310\232"
#"\2557j\301\256r\250\313\274S\203E^\323\305$\231'D\255\343B\306@j"
#"\377kB\204\236\220&@7\36B\226g\363\221j5>\202\34\376\263\376\215\36"
#" \6b\25\2\353\27%\210f\v\2018\361\254\6"
#"\342\343\313\22Dyt\321\234\303\370\331\252\213AK"
) 500
(
#"\356\205\370\4\20\201\370o\17\313\220)"
#" \2d>\262MN\306\266\6\333\252"
#"\234\340\360\270\337\357c8\34\36\21]"
#"\304\321\344hS\330\307\306\3431\6\203"
#"\1\366\367\367\347\336\357Z\341)!\333"
#"b\221\253\22!d\306\306E\265\212E\352Pt'x\v\30\1\20\204\267\1\304"
#"\2\326\ti\353\2244\0\343\242\322^|\347b\1\1\254(2\265N\224\e\1"
#"Ta\220\371\324\20\343r>4\203Q\0014\207(\220\373\310\270B\274\230''"
#"%\316\267\0030\327\222z\235\337Q6"
#"\317\220wK1\235\246\330\260\241\211\342"
#":>\241\17\207C\f\207\303\271v\362\204\220\365SL\255\n\343Gl\223J\b"
#"\231\261\361#C\242\b4d\2\300`\2@>\375\3\234\227\236\353~'\2#"
#"\31^\271\353\27\311\0\371\3415|\301d0\"\20#0Fp\376\332\247\0\200"
#"\f\6P\227\376\241b\20d\273\310]\274\"\306O\3774\256>\20/\352s\27"
#"\236\366(\\z\200n'\245\2743\24\305\365:\305[Y4<D-C!\e"
#"}T\253\331TG\313MR\346\"\23r\255\227\371\34!du\312\32b\361\330"
#"\"$\315\346#\325\376k$\a\24=\0\26\275\303kxf\357]\374\352'\26"
#"j\25V\25\372\340\e\370\301\363\202\227"
#"\356\2\300\35\374\372\331\327\361\331\333\271"
#"{\317>\306\307W\237\301\375+\337\300"
#"{\310g\351\37\"\20\5\214\n,\356"
#"\342ey\36\377\337\325\207\356j\332\376"
#"\257\370\370\312\333.o\e\231[U\t"
#"\205\212\306E\2567\275\362\35\"\26\322\233H\tIE\252\203+D,\2509\350"
#"\37\245\351\325\372U\316\3UE\214M\273x \244\316t\2459\26!'a\343"
#"\205\212\342\317q\232!J\267\310\221\343\247\261w6\a\240\310\321C\266"
#"w\t\337\313\257@\0\350\3033x\335*\316\372\317N\220\341\354\227\177"
) 500
(
#"\5O_\371\23|r\230\341\27\367\200"
#"\f\326\27:\272\371\232\367\376/\334\300"
#"W\361\336\345\237t\351\37\362E\374OW\237\301\215+9T\0\3472b` "
#"~\2312L\263K\310\261)k\23\276"
#"\311\357\210\375\213\227\351\244\330e\302\355"
#"\3326l\233\262\3379\\T\305E\214mYgB\352B\323S\310\b\331\6["
#"\310\251\206s\350\260\n\250O\3258\375:~\347\342;x^z\20\371\fN\275"
#"\374>T\fD\\I\241\2349\203=(\360\336+\20\311\360\343b`\366.\341"
#"\36&\208A\35\"\317\2\27\270~"
#"\364\311\307\220s\237\303\2365\310\275\373"
#"\307O>\377\3138\347\213\24\241\229"
#"\217X\252\3515\221\362\243\336D\224\32"
#"\230\345N\217F\243\251]\36\205S5m\334>\251\23zh\32\23.\270\332\270"
#"\336\204\354\222\262T\20B\310\214-\344"
#"T\207\2D\177@B\240\310q\341\272\273\332\265z\e\27o|\31\231\b\304|"
#"\rw\4\0n\343\353b \27~\200k\17sL4\207>|\3\347\320\203\5"
#"\360\350\332y\30c \222A$\303\371\253\217 j\1U\344\306NE\267\1\0"
#"\223\271\347\"\2309\217\30X\5\4\223"
#"M\257~'\330\226\363\307\376\376>\30549\362\333\307\21\264b:Hx\237\20"
#"\262=x\314\221\256\262%\237jWP(\230@\320\3\274C\207\2134?\213\267"
#"\365?\341m\374\e\274\"\317\343;\357"
#"\275\205g\345;\270~\356*\16?\274"
#"\214\323\276a\213y\360\0\367\240\370e\3<q\371>\362\313vZ\4\2510\320"
#"\273?\3\275\3771>\205\340,\374-\357\303\217p\317\nTC\24<\244\240\4"
#"ok6\224\\'\305\234\346u\t\337`\237\26w\325c\244dy6\361\233\324"
#"\211bZ\310p8\204\210`\177\177\0377o\336"
#"dd\215\220\23\262\352\361\303c\215t\225-\24*"
) 500
(
#"\272\224\17Q\0\352E\354{\257@\314K\270\239\203\330G\37\343#\374,>"
#"\273\ad9\200{\177\206\333\217r\0"
#"\6\346\341[\370\371\347\337\2\220\343\324"
#"\4\316\371#,\272\267\3373\317\375\327"
#"xI\256\343\371\213\177\1U\201\340}"
#"\274\362\334?\205\340\307\246\306\37\242\6"
#"\220\314\275\317\v\351\265\220*P\4\326\227[\235*F\f\363'\313Q\334fm"
#"\217\"\305\342z\177\177\37\203\301\2403"
#"\353N\310&\210\217\237e\217!\36k"
#"\244\213l\276P\21\200\204\26\207\326w"
#"^\371\322\333\260w/\302\210`\232\24"
#"\215\237\303\233\207\337\307\253O\0z\372"
#"-\334~\305\340\371\263\247p\331\n\200"
#"\237\303\e\17o\343\247\316~\31\37\35\2r\326\t\361\\-2\351Aa \366"
#"\2\336\266\177\16\225/\302\374\21 z\16o\\{\31z\305\"G\16@\240b"
#"\220[\0\">j=\331\306&h5q\24\320\30\3k\355\334{\307!\314/"
#"\b\352\262\357#\313Ste\351\3126\214\243\326\3411!du\3421\303Z;"
#"\365\253\316\363<y7\214\307\32\351\""
#"[Q\224\352[\220\303\210\363\2106\6"
#"\362\354\rh~\335\273w\310\264\265\270"
#"Cp\341\17\25\372\226\367\224\6\0\30\250uy\323\301\22/\223\36r\0\31\0"
#"kr\30}\36\357X\305\r`Z\304x\351\222O\371\320\f\"\26\231\t\255\322"
#"-T{\340q\177r\326\235^\20\4u\310\237\216\351\212\30\\\27\251v\356m"
#"\333\206U\353\23G\255S\27i\204\220"
#"\345\210\217\261\320\374\245x\354\305\217\333"
#"6\316\20\262\f[hS\16\327\252\\s\0\26be\326\36\334\370\310up\361"
#"\320\334\211huB|\232\346\241\316\301"
#"C\24\220\220\267!\31\0\213L\341\235\247\5V\24\20@\202\210\a\274O"
#"u\317'\231\30\30\233{7\20\337\275\221\324\206p\273\260\337\357c4\32"
) 500
(
#"%\a\344\246{.o\233\370\356A\e#H\253\234\270\0275\213!\204\254F<"
#"\36\27\307\3456\2153\204,\313\346E"
#"u\260\257\23\327\200E\215\313gv\""
#"\333E\234\247\213!\342\304\260\314\26M"
#"U\335gU\1\261\276\3758|*\266\201\212u\17\325yP\253:\353>\300\2"
#"\352\354\365\0\337\305\34\200\r\2^\242"
#"\274l\262V\216+zC\204\272\330n"
#"\234\203\365\311H\235\364\332ra\262J"
#"\256t[\326\231\220]R\326\341\224\3432![*Tt\1d\euB\264^"
#"(\3\"\231\217\34\317Dn\210JC\\;q\370\b\265\302\247n\210En\0"
#"\370\0060&\314S\1\210\217X\303\t"
#"\347\314\372\334i\215\322\267g\vG\326"
#"D\261H\3618\224\245|p\260>\31\251\26\303m\333\246\313\254\217\2100ZM"
#"\310\ta\212\a!\345l\305\247z\32y\236\346M\233\350u\314=>\362\231\350"
#"q\224\321\205\fG\347\31\36\233\350\177"
#"7\213^4\177\223\374N\262[XH\266Y\330bxF\20\326m\214\334\23\262"
#"Mx\334\0202\17\363\37\310Z9\316"
#" \333\357\367\247\202\232\203\364v\350\372"
#"v\36\215FS\377s\200\271\372\204\34"
#"\207\256_\240\23R\204\242\232\234\30c"
#"\314B\177\352\262b\226b\0165\a\351"
#"\343Q\266\315\253\\1\272.\"\343T\220bz\f!d9\212=\n\b\3512"
#"\24\325\344\304,SH\230\312\353]u\276$M|R\213\267Y\352\2650}x"
#"\277k\24\267E\20\326L\217!d=p\334&]\206\242\232l\205T\241\334\376"
#"\376~\3227\270\313\242\3578\304\27,"
#"\251\213\226b7\264.o\327\324\272\217"
#"F#\364\373\375\271\327(\f\bY\r\272\200\20BQM6HJ\330\205\307e"
#"N\37\341}\212\232\325(\372\305\26+\364\3034<"
#"\341\245\31\217\307Sa\315\333\331\204\20B\216\3E5"
) 500
(
#"9\21\305\326\3441E\1\27D\312\242\316v]\217\246\36\2278R\224jK\36"
#"\350\222X\\%\315h<\36\317\245\202p\37$d98f\23\342\240\250&'"
#"b\225\301\264*\345\2438]\2307\251"
#"f\331\2\305\256\346\f/\23q\216\267\a}\254\t!\204\34\27\212j\262\21R"
#"B&xQ/K\227\304\337q)+\n%3\226\335\36]\215\346\23\262Nx"
#"\354\220.CQM\326N*R\32r\2509\340\222:\22\357\263\301\303\272\314\6"
#"\262\3545B\272L\321\341\211\220.BQM\226&e\235\227\22\27)A\35R"
#">8\340\222:Q\346\257\0367\207\341\335\0B\26c\255E\226e\274\340$\235"
#"\206\242\232,\305*\36\323\361\373!\207"
#"\232\267\326I\35\211\305tQ(\307\302\232\373,!GIy\340\263&\206t\31"
#"\212jRI*\222\227\262k\v\217c\267\2118\345\243\350QMH\35H\355\217"
#"\361>=\34\16\321\357\367i\261GH"
#"\202\252\261\234\343<\351\"\24\325\244\222"
#"\242kDU\nH\360A.\332\270\25\0055\305\t\251\ve\315rR\36\353\214"
#"\300\21R\r\217\21\322u(\252\311R"
#"\24#\326\306\230\244h\16\317\a\203\1"
#"\306\343\361\334<\350\377K\352Jj\37\16\24m\366xaHH\32k\355\\p"
#"\205\220\256AQM\26R\274E\276\250@qQs\27B\352H\325\235\224XX"
#"3\205\211\20BH\212\336\256\27\200\324\2372\1\261(\37\265\31X(\f$z"
#"\0165\200\0\2529 \31\4\241c\244\231\377\214\2\321\a\217t1t/\316\246"
#"\231 G\17\331l\372\371\217\37\213\320\0010l\367p1S\325\3512\206\2q"
#"\306\242;)AX\257\342\265NHW\341\270B\272\bE596\251As\231"
#"\216\211u\302\tj\213;/g\370\362;\2"
#"\205\2\332\3d\202s\337\374\21>\274\362\237"
) 500
(
#"\3j\240\202\251\210\16\237\201\314n\364"
#"\304\342t\256\220S\274p\2669z&\336^\23Ht\370\245\2129c\257\344*"
#"\202x6\306L\243\251/\276\370\342\221\337bQ\247\305e\5vW\205xX\357"
#".\256;!\213\350\352\270@H\fE5Y\211b>ux\3558\342\254\16\204"
#"(\364\205\267\337\307K7\236\203\336\265"
#"\270\361\254\5T\1d\310\1d^P\253X@\5\2\231\211\3450\237\222\365\225"
#"\20\3256\231\337.\0,\0sTP\17\6\203\351\366\265\326\36\311IO\21\234"
#")Dd\3563\"\202\27_|q.\222\235\212h\317-\353\n\355\346\343\345n"
#";\261\230\16n \343\361\270r\375\273\262m\b\1\216\6\5\226\275SFH\333"
#"\240\250&KQ%\22\302\353Al4"
#"\v\3\v\205\312/\340\272\275\215\213\231"
#"\301\271\253\17\360\341\245=\b,2\365\321h\261p\351\37\nxA]\226\2761"
#"\237\6b\274 \367\271\350\230\370\224\222"
#"Y\3769\340\336+\n\335e\204Yq{\307\27;\341\275~\277?=\311\305y"
#"\357\201\341p\270r7\264.\211\306\342\5\343x<>R7P\274\320\350\312\266"
#"!\48zA\336\2744@B\326\3E5Y\212E\371\246M\216V\273\214\352"
#";x\305|\31\357\0\220\313g\220\375"
#"\213k\370\341\207\227pV&\200\366\240p\301\353\220}=\237\207=O12,"
#"S\t\r@{88\330\207\265\23\330L\360\356\350V\351r\35G\340\246~\203"
#"8\252\32\242\341\243\321()\260\201Y"
#"\24{\231\v\251\256Q\265\377W\275O\b!\244\375PT\223\265ppp\220\214"
#"\334\325\37\v\350\177\304\e\347\377.\256"
#"\277\374m\350[\277\4\225C\374\376\271"
#"\263x\362\342\36\354\215g]\312\6L\210SC\24\20I\347A\a"
#"\246\"\27\2+\212\236\0/\274x\0\30\305\350\346\20\242\0260\331"
) 500
(
#"\221\245\t\254rQR\2142\247Rs"
#"\302{\251\264\217\20\251\16\323\357\357\357"
#"/\235~\322UB\267\305P\264\230\332\17\232taI\310q\340>N\310<\24"
#"\325d%R\226c\241\223b#Q\3\373\336?\301?\270\177\16W\377\371/A"
#"\305B\360\4^\375\355\213\270\364\345\377"
#"\ewo\\\300\205 \242\243<j\305\321\3068s\263\r\221\341\203\257@\255E"
#"\256C\210:\1\246\2@\262\312\350\376"
#"\252'\252\244\240_\342\316AJ\4\6"
#"\241\30\362\261\213]1\273D\322\321\305"
#"3\34\16\347\272\206\226]X\21\322V\312\366qk-\363\252I'\241\250&'"
#"\246\30\245\6\32\24\301\20\227gl\237"
#"\376o\361\334\31\0000N1\237}\n\347\365_\341\360P\201=/R\255\2F"
#"\241\276X\261\312\17/8w\214\307\303"
#"#\366{\323\342\305\302\fV\315k\16,r\365H=O\345\376\26\305u\370M"
#"Cz\310h4\252\24\231md\225\264\247.m\27B\252`\363\27\322U(\252"
#"\311B\216#\24\32#,\324@5\207\32\201\201\205D\366y\n\343#\220~}"
#"D\240j!\342\205w<\233(g\31\230O\263\220\351\177\1\223x\315O{\214"
#"\355v\234\"\241\252\357)F\270\303\272"
#"\4\247\221P\2547c\2\240\347\267\323"
#"\314\323{9\37\3568\222\25\371\200\273"
#"\312\316\351\373\342\177\v\21]a\336\233"
#"'\24-2\247\232t\221\262^\5<\16HW\241\250&\225\304\221\311,\313\216"
#"\b\2666tO\224\263\177\v\347>|\27w\16/\341\325=\357\37}\370\37p"
#"\17O\341\177\331\233\25$ZQ\30\337"
#"\274%e\251\327\357\367\347\n\0\267I"
#"*b\272\16\342\350u,\244\303\305\303p4\362\371,N\360\3460\310\246Bx"
#"\231\5\217\334U\374\"[Q\230\251\a\270\231\366\343"
#"\201\370\273\4S\367\25\v\251AS\330\330f\262\251"
) 500
(
#"\305\272\204\34\207\324\376\35\306\237\252\16"
#"\245\204\264\225\335\237\221H\255YF\250"
#"5y\320\264\242\220\323\317\343W\317\337"
#"\307\345\337\273\343\e\262\34\342\332\357\276"
#"\3\271\370\337\340\202X\337\360\0050\352"
#"O :/\30\367\367\3671\30\f0\36\217wr\22Y\266\215\374:\31\215F"
#"\256Xo0\200x\213@\205A\246\200\eVl1\230\237F\374?\270.\226\271"
#"\300]\270(\340\324t\36\336\202\250q"
#"\321k\353\347\254\365\30\276\306\343\361\234"
#"]a\200\202\232\264\235\262q&\345\215"
#"_,\240&\244\2150RM\226\246\30\205kZ\367\304\24\2\201\305O\342\322\a"
#"\217\240\317\234q\351\v\2\340\253\267a"
#"\257?\a\301\4\260\342r\251e\226\e"
#"m\2418\30\354\3\230\345\32O\347\271"
#"e1\265\215\357+\273\305;\34\2150\350\277\0H\206\321p\4E\16\361a\374"
#"\345\226\312\345\227\3az\27\226V\344"
#"\20d\b\3271\256I\217\27\353\306L"
#"\363\333\353\22\27\240\200&]\244*\365\243Xc\300\"^\322\5\352qF\"\215"
#"\240(\34\e\355\372\341\21X\37\201\376\t\\\372\336\4V\0256\2378+=\205"
#"oY\36\225\24\372\a_\331\37\340\346h8\275\250(F\207w\261]6\375\235"
#"q\304if\31h1\32\277\213\233\343"
#"w1\330\37\370\334s\343\204\362R\213"
#"\343\246\23\315\1<\302[\237\377\f\304"
#"\bL\357\24\344\342{\341\213\341\277\f"
#"2m\21/\250\313\360U\364\0'\244\253\244l=cx|\220\266S\217\263\22"
#"\251=E{\244\320=qQ3\214\372cf\256\34\"\336\203:\3\324\265\"\317"
#"Cz\202\272()\0\f\372\177\0377"
#"\207\303\271\366/\305[\235\333\212\304l"
#":B\236\232\377\374\367\30 \a\214>\306h4\302`p\200\34\360\21\375"
#"\345\354\264\4@.\31n_\334\303\345S\277\207\207\232C\363;x\371\235\v"
) 500
(
#"\370\333o<\364U\243\69\340\204z(&]\317*\236\210\370wO\345T\23"
#"\322vR\373y\321I\210\205\274\244+PT\223\245(\363\340MyV\307\357\327"
#"\35E\b\250z\321\34\204\240\27\330F"
#"s\300\267\31?\350\378_\342\361\37"
#"\37\21t\307\365\227>)\233\26q\313"
#"\254\217f\230\3467\217F\177\214\377n"
#"\360\25\237\266\261\304\360\242\26V\24\31"
#"\356\340\333\177\3644\256\376\237\257a\17"
#"\6\300\263x\373\316E|\360g\337\301\217`\0UW\"*\0\304\272\313\233\32"
#"X\340\26\v9\373\375\376\221\367\bi+\313\24#\26\255;\ti3\314\251&"
#"+\23;~\244\212\263\232\344z \360bT\4P\205J6\353\230(\26@\6"
#"\300b\1770\300h\34Z\212{\237\351\220\346\213z8=\24\213\203\326\275<e"
#"\363\24X\250w\353\20\355\341\346\350\237"
#"\241\277?\200\250\305\250\242\r\273\377\260"
#"\363\353\276\373m\334\300\177\211\333g\374"
#"e\216\32\340\314Sx\372\203\37\342c"
#"\5\236\360\376\340\341\242'\3\0\23\375"
#"\0;f\327\277=!\273 5\346\244\376\22\322\25\352qF\";a\225\301n"
#"Y\321P\aq\271*\323\345\225\314[\265\371h\273\217\220\16\6\a\5qhP"
#"\f\304\326e\2357y2+_G33\361\360\ef<\34a4\2725\265\336"
#"+\307\314\2\316\237\377,\366\202\240\366"
#"W,\202\177\217G\217\\A\242\25@\254q]0\241\250E\250\272@\321\267\232"
#"\220\266S\274K\267\253\273v\204\324\1"
#"\212\352\16Pe{\264\f\"\202<\317\1`\352\305\\5m\223\250\312\a\4\320"
#"\b\207\223\342:\324\351n\201\313\263\256"
#"\20\326\352\242\316\217\36\374%p\377\n"
#"\236\222S0\231\201\310)\310\231\327p\17\n\365\353\221)\0c!b"
#"!PWDZS\30\241#\304\21\217E\273.\346&d\323PTw\200"
) 500
(
#"\223\234\340\2139\322\241\311E[(\23"
#"\236\203\301\240\21\202\32(\267\265\252\313"
#"\357T)\254\375\242\237~\362s\300\323"
#"\337\304\241\346\310\363\34js\350\203o"
#"\340\34\4F\25\26\n\25@U|\352"
#"\315\254\300\264.\204\355=\32\215\246\335"
#"'\213\357\225='\244\315\24\243\327u\271\350'd\335PTw\204EVG\213"
#">\a\270(\365p8\\)\25\244\211\204\234\361\341p8\367z\23\326'vi"
#"\251\323I\253JX\273,j\3\334\377\30\37+ \222\273bD1\0>\207\275"
#"=\205Q\201\205k\26025c\251I\372G\2528\267x\361\311\3060\244\313\244"
#"\356\246\21\322F(\252[\316\272N\346\313D\26\232*\34\342\1?\b\352Ei"
#"!u\245\316\21\240\264\260\266\20X\310"
#"\263\177\27/\341/\361\350S\0\350\1"
#"j\360\351\235\177\201\357\237\373,\316\370"
#"a*S3\263\256\233\366.\337=\251\256q\303\341\20\a\a\a\273\\,Bj"
#"A\335\356\234\21\262I\352qV\"\e#%\262V-P\\\324=\261\351\203f"
#"X\366*W\223&Q\347\337\241(\254"
#"]\223\30\3\305\5\374\275\227\276\217\313"
#"\373\327\360\20\200\312{\370\306\345\177\207"
#"\237\375\345\347q\32\0\4\230\210B$"
#"\312\317\\\256\273\314VH\25g-\372\35\352\374;\21\262.BM\2161\224\e"
#"\244\375p/\357\0)\217\351\343\234\320\313>Sl\f\3234T\25\a\a\aS"
#"A\275\354\266\251\223(\332e\233\364U"
#"\211\205\265s\f\261\20\5\276x\375\207"
#"\270\232]\301Y\21\30y\36o_\274\215\373WNC\275|\356\251@U\274\363"
#"\207\251\315z\226\355\aa=\213Q\354"
#"@]\226\237\220M\303}\235t\5\212\352\216P\326\274e\21\241\375\362h4J"
#"\346e\327\311i\342\270\354\357\357\317\345O/\325\360"
#"\244f\353\\\247eY\206\251\340\f/\b\0y\22\227"
) 500
(
#"\277\253P\315a5\207}\373\27\240\232"
#"\303\250L\305\267k\31_\237u]\264\37\314\265to\330oD\310:\250S\360"
#"\201\220MCQ\275.\254\217F\18|\363\274\357\"\225ADpJ\236\301\265"
#"Ga\232C\\=\347\3373\263i\214\377'F`^\276\355[2\37\342\332y"
#"\27\221\23\23\336\357M\347\375\312{+"
#".\242\265\v\335;B\367\253p\253."
#"\345Z\20\213\204\246\f\230e\313\271("
#"\255\245\214:\n\244:\246\341,\334\327\0D\35t\246>\327\2\370c#\213\\"
#">\"?\354\232\260j\235\1@\221A\272E\35\307JB6\5E\365\211\261P"
#"\315\241\306\r\34\237\276\361\f\316\\\376"
#",n\253u\266`\252\370\233;?\205"
#"+{\202\213\177!\260\272\207\313\367\24"
#"jsX\253\260\17\376\17\234\3039\\}haU\241\271\302^\177\36\342-\304"
#"\0\340\3517~\350\246W\205\346\23\367"
#"}\232\343\355gW[R\21\231\23\326\261kA\370\27^\267\3269-\274\370\342"
#"\213\270u\353V\322\330\277I\342 \225W>\30\f\2168|\304\3577\355dP"
#"\307\273\6U\373\311p8\234\313\257\256"
#"\323r\257\213Tqf\e\327\223\220E\324ml\"d\23PT\237\30\343;\361"
#"Y\300~\202\357\374\253{x\371\356;\270\0\27uS\0\362\354;x\357\242\301"
#";\377\350\r\374\b\241\2553 ^\214\v\304\373\357\372\342+u19Q\3@"
#"!\222A]\354\32\20\300N]\17\216\227\307\254\2520\306 \313\2629!]\226"
#"\373i\255ml\204:E\325\340\236\262Gk\2u\376=\252\354\34S\242\263l"
#"?l:m[\37BV\241\216w\322\bY7\24\325'\306\302\302{\355\32\327"
#"\346\372\243\37>\232\2113X@\201/^\317\241\337{\rO\204,"
#"R\5 \31\214uBZ\305\247\225\212@\345\261\233F,\340\5\267"
) 500
(
#"\340\24\254\27\326\342zi\303.y#\274L\244\304B:N\v)\313\275n\313"
#"\240\30\347\211\247\336k\342\372\3251J"
#"\35S\265lEa\335\326\34\344\266\255"
#"\17!\253P\34\243\2328\316\22\262\b"
#"\212\352\23c\220\301\272\250\262\236\306\245"
#"\337\376\37p\377\365=\30\323\303\2717"
#"\17\235\227\256\0\242\0\220C \310a \342RH\335\34z0.(\r\v\205"
#" \363\16\a\26*\212\f~0\362\257\207\242-\263\244\250.\23\\\361ky\236"
#"'O\372\261\360\254\273p;\t)\367\214\246\r\372u\274 H]\250\325m\31"
#"7M|\321\320\265u'$\3468\305\362\2044\t\212\352\223\242@\330\214\"9"
#"\344\271w\220?V\34\276y\36\337\277|\6&\23\210\311 _\273\v \203\212"
#"uS+ b\0011\230\310\4\310]t\332 \a\324\270\16r\232\301B\360\301"
#"\353\247q\312\30d\"\310\214\2011\6"
#"\347\256\376h)\227\336X\324\244\36\a"
#"\221\34{\210\206\327\372\375\376\334\363\342"
#"g\232&\20\302\362\206(ul\3\230"
#"j\340\321\264A\277\216\277I\361\2\245"
#"\354\242\254\230_\335&\332\224:E\310q\211ku\bi+\24\325'DC*"
#"\206(r\364\0X\230\314\342\364\257\177"
#"\0\253\212\334\346P\275\215W\256?\17"
#"y\346\32~\4qQk\261\256\361\205\270\347\2719\5+\nh\17P7_\3"
#"E\17\212\363\337x\200\211*rU\330\334\302Z\213{W~r\251\345+\212\351"
#"8\207z\272\16\205\234\352\342\240\227eY\322\207\272i\203c1ZZt8i"
#"j\332A\361b\251\216\242\255\270mS"
#"\236\315U\255\314\233J\352\2\224\302\232"
#"t\211\324\370\312\375\237\264\25\212\3525!\20d\200o\235lfE\2120P\374"
#"\2\336zx\r\347\356\375K\374\371\241xW\17\237"
#"\274\241\26\"\26\231\2650*.\277\332\204\246\30\200"
) 500
(
#"\325\f\231\1\324\27%\272\242\306\34\252"
#"\306\345k/\263l\t\221\230z-\313\262\271\301.xS\247\242\vMJ\3\211"
#"\327)\345\271\335\364\324\204\342\272\324\365"
#"\244\325Ea\31\326\263\330\b\246)\307\16!'aQ\332!!m\203\242\372\204"
#"\b\340\213\f-\360\360M<c\236\301"
#"\325\303\311\354=\0\202\36\240\217a}"
#"\205\241\250\317\32Q\300\"\203Q\3\210"
#"q\363\221Y!\243\302\"\323\34\217E"
#"\20D\270\235\266i\316]\244\373\244\270"
#"\324m\250\330i+\331 u\314\212\302"
#"\247\256\"\251j\0/\276\327\226\301\276"
#"\216\353\261\314\266.\212\317\24u\335\317"
#"\312(\346\2216m\371\t9.\213\32"
#"#\21\3226(\252\327\200\213\30\e\350"
#"\231K\370\255\257~\210\327\316\374Wx"
#"\343\323\370\275C|\353+\377#\376\335K\277\205K\247e\326\275B\0#\271s"
#"\17\21@0\1\324@lp\16\1\362p\313L]a\243q\271&\200d'Z"
#"\346i\216\253\270\340\272\301\314^/\23\301\213/\34\300&\\CR\3aS\242"
#"oU\276\324M\245\354\304\324\344\23\326"
#"h4\302\301\301\1\200\352\346CM\244"
#"\251\365\b\204\254\213\370\216\32!m\203"
#"\242\372\204xC:(\\\354\370\271\e"
#"\212\207\327\200\337\334\23Hf \362\343"
#"\310\344,\376\344\205O0y\373\271\251"
#"\240\16\251\37\320\34\6\2U@\321s"
#"o\32\227\"\242\350\1\242\20\265\310\305"
#"[\351\371<l\327|nu\237\352\330\301c*\206\255\"Wg\375\247\252P\v"
#"\274\373\356\315i\304\272\252b{\31\213"
#"\244:\b\210\266\16\344U9\312M\""
#"\345\215\16\224G\267\353\260O\35\2076"
#";\350\20\262,\334\377I[\241\250>!.[\3039F\367|\303\227\323\257~"
#"\27Vs\350c\v\325\277\301c}\214\17^=\3#\0"
#"\3247q\201s\376\300\336\353\370\236~\27WN#2\310\263"
) 500
(
#"\20X\b\236\300\225\357)>\274|\26"
#"\31\274\340u\237t\316!\272\332\317\227"
#"\22^N\247\v\214\205\363\305\226\34\222"
#"\271F4\306\273\202\304b\264\230\27[\345*\22O\227\372\376mrpp\200\233"
#"7o\356|9\326M\325]\202&\255g1z;\36\217\261\277\277_\272\16M"
#":)\207u\b\251-MZvB\326A\352\216\23!m\204\242\372\244\370\363\243"
#"\"\32(|\0164\274\2106\310f\202"
#"\331\247m(f\271\313\200\201\212\213\24O$w\237\365?Mp\27q\271\331\342"
#"\304\266\270\2\310%m\252g\213\232\210"
#"R\3\256\355\271d=(\fz\346\24\240\263\367\363<\237:JHAd\27\5"
#"]\321:,f\227\321\271\220\366\321\306"
#"\352\363\324v\16\177\233\"\336R\373Q"
#"\370\333\224u(\243\270\16e\27\236\204\264\2252KVB\332\bE\365\32\260p"
#")\32\256\235xx\5P\231\0\3100A\356\363D,0u\361\b\232\330\316\274"
#"\256\305\"C6-b\234\345_\330iA$T\21\3252\256DzP\353\1\222"
#"\301\352_#3=\344\271B\215\27\324"
#":\231\353\264\30\332\225\27\355\367\342\177"
#"\305\357Z\264,\273\240m\203z\352\256"
#"@\223\326\257,\305c\231\242\305\272S"
#"uq\331\244\337\210\220\343\222:\276\233|L\23R\5E\365\32pfz.\362"
#",j!\336\251C\264\a\25\240\247\263"
#"\350\264\205\272f\3436\367\272\331\300u"
#"Z\214\3229\354\304\th\201\237\332\270"
#"\34j\5|\230\332\235\234\227X\266E\202\313-3 \346\307`\355\337@\214`"
#"\360k/\272\364\17\233M\375\234\343hCx\255(\262C\24\333\370\0065s\333"
#"\310[\363\25\227e\323\24\333\221\267MP\3G\323p\2m9q\265\341\367j"
#"\313oA\310q(\326\336\304}\2\bi\23\334\253"
#"\327\200\300\2\301VOLt\2ubY\241.\275"
) 500
(
#"\3\26F3dV\221\233\fb\25\n\365)!\336R\317*\304\364\240x\f\227"
#"\242\235\1>\345#.Kt\326{\213\v\25\213\202\244\3509-\260\220L\0\e"
#"\346gps<\no\2p\203`\360\260\216\5\\j\336\252:\375[\214b\327"
#"a\20m\203@[\2266\254\353h4"
#"\302\376\376\376\256\27\343\304\304\321\367\320"
#"\251\224\220\256\220*v\347\205&i#"
#"\273W9\255\300\314\375\235\16 ^,\273\202@3\313\2036\276Q\214\t1m"
#"?\271\177\315\315\351\224\27\352\263\371\32"
#"\231=\216\363\256W\341\350\255\270\fj\303\340\346:BNSS\242I\255\265S"
#"Q\274\254X+\213d\37W\354\255:"
#"\b\27\243\324\244]4\365\244\334\206\213\35B\b!G\241\250\356 !Z]\225"
#"\333\226z=|.\316\251N}\246\314\221\"\26\331e\271\330U,\232.\265L"
#"\251\266\327M\25c]%\345\223\336\304"
#"4\36\356w\244\313\324\271\316\206\220u"
#"AQ\335\1\212\242\244\350\326\221J\313"
#"H\25\227\204\334\352\2624\216U\3345\342\bvJd\2572\300\226\271G\24\37"
#"\207\347,\224i\26\241`\21Xm\37\253\23M\274\b d\235,\332\377y|"
#"\2206@Q\335\1\212\2\244ho\224\347y\251#A\20\271!\312\f`n\372"
#"\252\357\f\363\217)\23B\326\332\271Hv\234*R\24\361U\215N\212\342e<"
#"\36\227\26k6I\224\221\2434\351$\334\244e%dS\254rg\224\220&B"
#"Q\335\21\302I=\270v\224M\363\302\v/\34\361\242.Fw\323~\327\363\224"
#"\245\200\224}&e\311\27\376\345y>\267LYv\264E{\374}\305\224\2172"
#"/g\n\235\346\322\224\223pS\226\223\220mP\346W\315 \ai\v\24\325\35"
#"\"\b\352\224\320\r\205\210qTz\221`\216"
#"SA\252\242\307E\312\336+\313\323\26\221\271&"
) 500
(
#"4qNxU\204\275\254H\221\3x\263P\325\251\vH\323.\210R\27t\334"
#"\367H\227I\35\273L\217\"m\201\242\272#\4aZ\25)\266\326\226\n\321\262"
#"\250B\234\17\275\fU\202\"5\217\244"
#"\267v\24\305\216\5\2661f\32\245.\313\253n\232(#3\212\27\204M\24\247"
#"\"\202\361x\234,\240%\244\253p<&m\201\242\272\3\24}\245\2173\200\225"
#"\335\266\213\237/#rN2x\26\323O\212\ri\342\264\226\361x\234t\27\341"
#"\340\335<\342\324\245&\273\177\20B\312i\342E2!E(\252[\3162\26x"
#"\253\314+\376[\234\327\246\233\273\24\305"
#"qq9B\364/4\330\210\233\320\234"
#"\324#\273\212]\237\f\332\236\316\22\326"
#"m8\34N\e\3014i\235\233\262\234\204\354\202\223\4{\b\251\e\24\325-'"
#"\216\350\26Y\347 V\207\\\321T^50s8\211\267E\231\310\256\262\343["
#"\366{W\371,YL\331~\332\224\223p\361\2\200\373\6!3\326\21\360!\244"
#".PT\267\234\252\333\344\305f-'"
#"\241\314Bo\e\250*\6\203\301\322\371"
#"\332E\373\276Xd\207v\354\361g\212"
#"\333)\265\335V)\324$\307\247\251\333\225)H\204,\246*\bDH\23\240\250"
#"n9U\205]\361m\267\361x\214\367\34\325W\0\0 \0IDAT~\277"
#"_:\3552\354b0\\\366;S^\325\361{Ad\27\355\373\342\351\213\205\232"
#"eB\211Q\226\315Qf\aI\bi\36\252\212[\267nM\237SL\223\246C"
#"Q\335\1\269^\204\367c\347\217\343"
#"\344\254V\345oo\212\340K\275\350;\253\6\353x\231\343u\210\235M\226)x"
#"\244\263\310\346i\213sF\334%\222\220\256\222:_4\251^\202\220\"\275]/"
#"\0\331<\213|ASN\36e\237+cUk\275uS\26)^&\222\275HpWM["
) 500
(
#"\24\337\204\20B\226\243\351\365\22\204\24"
#"a\244\272\203\24-\360\312R#\226\215"
#"\26\304\302u\27\21\206\321h4\215\262"
#"\217F\243dDy\321r\255\262\256\305H\366&\235E\310\321h\326:k\1v"
#"I\323\227\237\220u\303c\2024\35\212\352\226\223*\256[\207ouL,\\\353"
#"*,\27E\243\217\273\334)\221\235J\27!\307\243x\27`0\30LS~\232"
#"\276}\233\276\374\204\254\e\36\23\244\351"
#"PT\267\234\252b\273e?\273\352w\355\202\301`P\332\rr\21\233\260\26L"
#"\211\354e\2420\307\211\324\270\345\267\376"
#"\363\371\3641Z\20\364a~e\370\31-\24\361O\312\202MB\b\251\e\24\325"
#"\204l\220\270\333c\226es\351\"\361"
#"4\201*\337\354\362\357\20@\335\241l"
#"%\3``\221C\245\35\302\253\t\302\3728\277\333R\27s:\231\312g\1 "
#"\260^Ys\350&\204\220\272\301\221\231"
#"\220\r\22;\202\4\333\276\270\323c\360"
#"\306^Fd\247\362\212\215\b\254\346\376"
#"5 \363\357\e\315 \266\35\267R\327\231\252\264)\212V\177\3134\4Z\352B"
#"A\f\262\302d\352g]\357\313\fB"
#"\b\351\36\24\325\204l\220e\254\374\202"
#"\310\216\e\320\244\"\237\251\334u\25@"
#"\24NQ\213\205\223\327\23\367!SO"
#"\1\272*\361\266\30\16\207\20\221c\247"
#"\372l\212M\244S9\f \326\375\205\373\253P(\374\357N\b!\2446PT"
#"\23\262E\312\234+\212\rh\212\371\330Y\226M\247\233\23g\"Nt\31\201\0"
#"\310,\0\364\0\261\320\226\346\335n\333"
#"\v\3758\304\221\353\223\270\225\270<j"
#"?L\253\1\24\20\b\4\26\352/\241\b!\204\324\3\372T\23\262ER\335\30"
#"\303\353\305\307\305t\17c\314\334sU\205XE\16\203\f\26\n\0031\200"
#"E\16c\263\326]2\27\323b\352\3426\223\362E7\306\224\336](~"
) 500
(
#"\246\n\201\5\254\1\4P\261ps\b\363\316\26|\232\20B\3106\241\250&d"
#"\213\244\204`\2258\214#\326\311\274]"
#"\5z\306\305.\21\362\267\221\301J\336"
#"\312\244[\21\301\257\375\332\257\325BL"
#"\a\202\300\37\217\307G^\a\216\372\302"
#"\307\217\213\2379\212K\377\20\365\271\324"
#"\276 \325@\360\30\n\243\214V\23BH]hY,\213\220z\263\212\240NM"
#"_\244?\330\207\332\34v\222\303\252\""
#"\327\34\23\235@\255\272\177\332\256\177\326"
#"Z\334\272uk\347\313Q\\\246~\277\237|\275X\234\32?N}\346\350\277\34"
#"j\25\271*4W\250\375\e\250>F\256\23\30}\274\226}\222\20B\310z\240"
#"\250&\255 x5+\340#\264\26M\360\362=N\3045\366\275\26\365El\276"
#"(Q`\\T\23\360\5n\356\261\205\23h\361v\t\201l\305d\372d.\17"
#";\314G}\272\202\337\256\32\375\17L\346|\224g\321\361\372o\373&!\341?"
#"o\231\350\340\360M\b!u\202\2432i4N\303M0\32\216\0/(!\0"
#"\254\314\n\274\32N*\2278\274f\375*\272$\0/de2\313\305\205\313\303"
#"5*SA\2460PX\357\32\2\270\302\306\360eQ\336\257\370\234^\261\20\b"
#"r\261\200\272mlT\3746\356\301\302"
#"\25\323I\364q\267\355'\233\330\34\204\20BH-i\207\352 \235E,`\265"
#"\207A\277\17\0\260\222\373\336\30Ycc\245\305\"\266\270(/\26\324\0`,"
#"\0Xd\210\242\312\3509)-\0\340\34#\2340v\226{b\25\28\221\354"
#"_\207\272X\263@\240>\352<\225\327j`\1d>\277W\5\230\b\246\321\361"
#"\f\23\210\346\3763n\253\v&\260\312\222\rB\b!\335\201\242\2324\eca"
#"d\26\2615\310\0Xdj\321$Y]\214F\307\257\ec\246n\22G\\$\304 x\30"
) 500
(
#"\213\32\250L\234\303\236\3524j\234\213"
#"E\0167\235\1\234\30V\343\242\315\352^W\2610\20X\311!>\302\355D\272"
#"q\221o\261\3234\17\1\\|Z\1Q\213\t2\204\2663\32D\274\315 m"
#"\254\224$\204\20BJ\240\250&\r\3078/\337\251(\235@`0\21\0034\250"
#"\243`Y+nc\314\\\301[Qp\3134\247\331\370,\347\36Tr\250\270t"
#"\f\250;\310\235\344\265\20\315\243\310\265"
#"\3706\"N(\253\367@vS\0327\255\0\316$\310\247\326\370!C\247\242\335"
#" s\3716\2636\332!\212]#\207\16B\b!d\323PT\223\346c\201["
#"\243\177\216~\277\17\240\347\edX\3004+RZ\364\247.\332\260\25\323?D"
#"\304]7\250\2\230L5\254 \363\2\330\t\\\321Y7> C.\26V}"
#"\247>\361\361d+\376\363\0060A\204g.\25D5\352\336gf\313\343\347\352"
#"\212\350\f\240\23\4q\17\260\343\37!\204\220nAQM\32\215\302B\f\0\364"
#"` P\5T&\323(jS(\246\177\24#\327Eq=\235V\215\213\b\333"
#" \203C\261b\350\306\207Yn5\\\3\221\340\37\241*\20\205K\3670\229"
#"\200`:\17Q\3\21\205\212\365\355\261"
#"CJ\215\23\317F\354l9\245\347\243"
#"\347\26\363I\331\204\20BH\373i\216"
#"\352 $\201\370\326\315\0`\215\205\210\205h\317Y\3155(R\32\204rJP"
#"\307\357\37\301\372\351|\321`\370\324\341\233?\17#\0312??#_\300\325C"
#"\227\32\3\204\b\263@\5x\364\255\363"
#"\356{M\6#\202L\316\341\332#\365"
#"\305\213\0\360\b\327\236\311\220e\247\220"
#"I\0061a\236\2#\31^~\3375\315\3260O\370\16\200\211t\26B\b!"
#"\244\255PT\23\0@\277\337/\315\353\215\275"
#"\237\0253?\342\242?\261zw\211\331\207\302C"
) 500
(
#"[x\36\177>f\346\227\\\364\232\16\3375}}\232c\200iDT|\321\335"
#"42[\223Hi\330\246\213Df\312\335c!&\233K\263\20\30<z\363i"
#"\234\271\374S\270\255\nk\25\232[<"
#"\276\373\323x\355\314\177\206\257\335UW"
#"\244\b@\345\1~\377\234`\357O\177\5\17\255B\3651Ts|r\25\270\262"
#"\327\303\313\357\331\20\337\6\0|\376\352"
#"\17\221k\356\346\351\e\223\344\252\270\361"
#"%\24::\206\365\241\250\16\24\367\201"
#"\301`\200\321h\264\313E\"\204\20\262"
#"f(\252\311\2\354\254\361\4\214k.\28G\b\2653/h\261\20\30d^"
#",[\t\251\2>\227W\340\5\271\235"
#"\211\256Xsy\277\344\367_\361\221\320"
#"\254\207\236dx\345\256\317\341\205s\226"
#"x\370\3469\27Q5\347\360\346\341\374\222\226]\24\354\2328\n]5M*\335"
#"c1\316\342.D\254U\37\341;\177\372}\274|\367\6.\370\326\326j\24\331"
#"\227\276\205;/Op\375w\377\0\17\304\371G\337}\371)\\\226k\370\370\203"
#"\313\330\23\347k\255*8s\371\36\16\257~\0367~\367[8\24\267\335{\271"
#"O\25Q3-e\234\25/\372\"G\21\0\371,ED9\274\0\363m\312\353"
#"\324^\235\220]S\34\347V\16*\20R3h$K\3468r\322W3\265f"
#"\23\357\32\341\256\305\\\303\20\261\352\v"
#"\2g\305p2\375\353\362t\235\35\233"
#"\361\251\a\205\264\214(\342|\347b\206"
#"\347\177p\25\207\366U\234V@\337\177"
#"\5\346\202\300\336\265\270\376E\0\362o"
#"\360\215\327\356\343\345?\317\361\366\5\203"
#"b\250\333Z[;\321R\24T)a\225\22\324+\257\207\b\254N\263@\360\321"
#"\17?\1\276\364\244\377\315\234\270}\356-\365\206(\26Vn\343\333\357"
#"(.\336\276\204\247t\2\325\36`"
#"\302\5\217\342\364\345\17\241\227\335E\221"
) 500
(
#"\2\310\r \222\371/\263\336j\317]<\31\350\354\267\25\279W\232\177LY"
#"\346\242\212\220.\222\32\v\201c\216\201"
#"\204\324\0\206\222\310\34G\"\ab\223Y\24n:\353U\234\267\265\363\315A`"
#"\235\260\266\323b53s\243\200\361M"
#"G\234 \263\200\27\352\357\341\333\177d"
#"\361\312o;A\r\344\220g\377\20\357"
#"\275d\360\316\277\376s\210(\354\243\37"
#"\342\257\364\34\236:\353\277\257\260`\343"
#"\361\30\203\301`\215[\343\344T\t\352"
#"\225\363\247\223D\221\177\261\200=\215+"
#"\277s\21\367_\373,\244'8w\355\321\264\2418|Q\241\205\300<\374\21\376"
#"J?\217'\237T\250\364|\345b\350B\31\222>\\\367\305\320\330E\365q\324"
#"1\321\345P\233h\357\230\266.\327<LD\b!K\23\27d\23\322D(\252"
#"\311\234\330+\212\274i\4\22\0\304Y"
#"\246M\0\310\247\177\200\363\322\233+X"
#"{\345.\20,\331\362\303k\370\202/|\23#0Fp\376\332\247\0|g>"
#"u\221\357\251\215\333\303\37\342\337\353y"
#"<y\306\373\34K\6UA\16\2051\237\1\16\177\37\177g\3572>\304=\274"
#"v&C\366\362\355#\226mu\275m"
#"\230\212T\226\345O\257\272\16\242?\346"
#"\2356\334o\3\3\340\213\327\241\232\343"
#"\341\e\347p\377\265=d\"\350e=\310\313\357\1\"\256\351\v,\24\177\vO"
#">\3417\267\367\250\16\336\36\352_\203"
#"\217t\v\24\367\257<\351\n\37\263\36"
#"\2141\310$s\277\251\367\3w\2\333\270v\350S\217kB\bY\16\212i\322"
#"t(\252\211\363;\266v\356y 4"
#"\26\221\334\265\277\6,z\207\327\360\314"
#"\336\273\370\325O,\324*\254*\364\301"
#"7\360\203\347\5/\335\5\200;\370"
#"\365\263\257\343\263\267s\367\236}\214\217\257>\203\373W\276"
#"\201\367\220G)\37\301\351\30^\331\345\0201\200\372\342\307"
) 500
(
#"\273_\307\227o\274\204\333o\377\"\260"
#"w\t\337{x\r\347\344\363\270\366I"
#"\216\311\365g\217D\252\213\215Q\352H"
#"\350\220X&\246W=\251\250\374\215\337"
#"\16\275i\241\240\273[\0\354]\372\236"
#"\213L[\205\265\337\306\313\357<\17s\356[8\204wJ\301_\341\360\20\256h"
#"T\\ZN\6x\237\357\220\302\341|B\24\202\317_{\210\\s\350\304E\274"
#"\37\353c|x\371'\0#^\200\e\177w\242~i8\204\220zR\f0,"
#"[\330MH\35\241\250&SRB(D+5C\24\307\314\221\343\247\261w6"
#"\ad\342\34?\366.\341{\271\342\235g\1}x\6\257[\305\365\347\334\324\23"
#"d8\373\345_\301\323\370\b\237\34f\310\5Nxid\211'\342\276\304Z<"
#"z\363\v\316\332\355\371\277\304\e\207\327"
#"\361\254o3b\305\265\342\266\306\372v"
#"\344\253\255\313\256\21\21dY6w\1"
#"\3\234,\177P\325\305\227\335&\314\221"
#"\373\327\324\300\345\303\207\351\360,\376\340"
#"\3017q\356\376\237\340\366\247\ns\372"
#"\263\370)\334\303\17\36\312\274[\212u"
#"\212\332\3426\276&\347\361\315C7D\30Q \317\274\303\212#C<\177\327a"
#"\321\370\374\371\264\273K79^\1*!\355GD\360\302\v/\314\245\302\261\6"
#"\2014\31\212j\2`\26-\330\337\337"
#"\237{]\203\0\266\316\212\315B\200\323"
#"\257\343w.\276\203\347\245\a\221\317\340"
#"\324\313\357\273\266\330\342\304\225\2349\203"
#"=(\360\336+\20\311\360\343b`\366.\341\36&\20\204\6%.\377:DH"
#"]\376\356\0040\6O\\\372.TsX\275\t\371\212\300\234\177\23\2070>m"
#"!\203\212\0014oTvA\330\276EA\35\336K\261\234\0s9\320\242\356N"
#"Bv\370M<c\236\301\267\36\3009\264\204\256\212"
#"0\310BCq\261\0\276\210\177\370\3063\370\243\337\275"
) 500
(
#"\212\a>/\333\312\254\322\361\323\253\377"
#"\0307\3603xj/D\215\0001\271"
#"\373\275\246\213\353\34_\334\211P\247\321"
#"j\201\365m\322\217\256k\27)\246\375"
#"\f\6\3\f\207\303\35.\21!\365\201"
#"\305\211\244MPT\223J\361\26\254\354"
#"\202\225\203k\356\221\343\302uw\273\316"
#"\352m\\\274\361e\227kk\276\206;\2\0\267\361u1\220\v?\300\265\2079"
#"&\232C\37\276\201s\350\301\2xt\355<\2141\20\311`L\206\363\337\372\24"
#"\242\nk2\30\4\317c\3\340\t\\"
#"\372\343\253x\372\336e\374\223\367\341\224"
#"\235\231xG\213t\244z4\32\325\252X1.R\\\225eN0\316\v:\264"
#"#\a\362\275+\370\235\227\356\341\312\223"
#"\347q\355a\317mG\v\0\207\270\372"
#"\367/\343\336\305\337\306k?\351\266\335"
#"\23W\376)\256\352\353x\362\374\267\360\bp\27-\n\34\276y\36g^\373\20"
#"\27\357^\307\263\263o\362\361\360\231\353"
#"\312,\213'\344R#\262^t\177\273N\331\357N\361@\272H\352x`d\232"
#"\264\t\236\365\310\34G\a=\353#\217"
#"\360\221O@\220M\233\260\b\236\305\333"
#"\372\237`\365=\274\254\357\340;\357\t"
#"\362\367\277\203\353\347\256\342P\277\207K"
#"{\326\211\261\a\17p\17\n\30\340\211"
#"\313\367\221\333\211\217\334\346\370\360\322O"
#"\370\2\272{x\367;\237\370h\250K"
#"#\260\247\237\302\347 \310r\337\4\306"
#":/\354i'\301\232Q\334~\251\374\351\324t'\371>\205\1\254\302\212\"S"
#"\203go\344\370\344j\216+O\31H&\220S\2#g\360\247\277\362)&o"
#"?\347\274\253U\2418\213\337\370\320\342"
#"\275\237y\35{F \275\36\304\b\316\\6\270\372P\361\366\263vV|\350M"
#"\21\21\274\257\21\212XI\25q\24\216\220\256\223\22\316'"
#"-\326&\244N\360\254\330q\26\335rS\270\224\17wk"
) 500
(
#"\337\333\232\277\367\n\304\274\204;\2213"
#"\210}\3641>\302\317\342\263{@\226\3\270\367g\270\375(\a``\36\276\205"
#"\237\177\376-\09NM\340\v\341BS\27\347r\254v\202L\201\373\257]\304"
#"\233\17}J\3,\336\377\332\5\\\177"
#"\346\233x\355\202\370\324\4\205\205\365\336"
#"\330\363\353\21\330U\304\243h\235W&\250\201\365-c\210\t\253Q\37ivi"
#":g.\337\203\346\276\220tba\255\342\203K\377\5\214\0\222{;?\270\e"
#"\20_z\3731\324\346\230\344\23Xk"
#"\241\366{\270\274\27\276\301\2x\2\227"
#">\314\361\341\253{.\25\b>\277\236\347\276\245\251kc\"BvM\361\302\223"
#"\307\ni2\24\325\35\247\350\230q\353"
#"\326\255\351c\300\335\3157\352\213\331\302"
#"@\367\245\267a\357\n\236\27\201\230\f"
#"\"\31\262\275?\301\v\207\367p\3514"
#"\240\317\275\205\333\257|\27\227\317\236\202"
#"H\69{\v\177\357\341m\274$\377/>:\f\216\22\26\271N\340R\27\4"
#"\"\6\26O\343\215\207\3773>~\322"
#"\333\364\231\37\303\205\217\276\211\207\377\366"
#"2\236t\306\326.'[f^\312\251\365\330f\276jJ\314\a1\235\312\237N"
#"}\356\344D9\352\306\375V\352s\235"
#"C\21\250\6;\17L\200\314\267\223\367"
#"\231#\271\337\236&\254\203X\377S\317"
#"\266\263\300\370\3460\336#\274h\275B"
#"*a\276(!\363\24\307\311\330\5\204"
#"\307\ni*\354\250\330q\212\3X\312\332M}\vr\30qm\306\215\201<{"
#"\3\232_w\266k\20\4\335\355\20\\"
#"\370C\205\276\205\250-\271\201Z\353\205"
#"\271+4\314\2447\rv\206\370\247\301\5\274es\274\35/\233\n`s\3303"
#"\257\342\3{\3115\215Q\37\353\16"
#"\315H\22\215U\266\301\242\356\210\313~\356\270X1\20+"
#">\325\331_h\4\377o\227|>k+.\276\23&\340"
) 500
(
#"\332\311\213\205\0253\263\321\363\215{r"
#"\3d\323\316\231\323Y\316\234?$\344r\363\304\267\flSN\272L\274\337\27"
#"\37\3G\vy\ti2\214Tw\234#\315^\216\264)\207\263f\323\34\200\205"
#"X\231\335\3657^\275\371\224\0\325\334"
#"\211\350\310\367X`\0\325i3\21\t\35[$\303TJ\333Y\32\203\205ob"
#"\242\256\220Q\303\347\2153pS\227,R)\250\303k\333\244\254;b\31\353Z"
#">\243.:\255\212YZ\206\270\213\31XwxO\240\276\360\23\310\247\vl\275"
#"#\b\200\330\245\303\0Fg\342\334\345"
#"\256\373\v#\261\3239hd\327G\252\211\5\365`0\300h4\332\365\"\21\262"
#"5\26\271{PH\2236AQM\346\310\363|~\220\v\26j\222\0010P\337"
#"\350\303\211l\27q\236\356F\"ND\a\337cx\361(\231\367d\233y\30;"
#"\35\347r\262\235\247r\216\334\0\6\275"
#"i\247\304X\274\317\354\332\"\247\211\n"
#"Tuk. \361m\313\252\242\304\370\357\272N$*\341b%\3448\207<w"
#"\337]Qs\364\274c\v\200\310\335{"
#"&\234\247?\207\272\202G\211\177\277\250"
#"\r\275\365\206\210\256p\265Y\226\206u"
#"\201\271\242\244\253\244:\312\2<&H"
#"\273`\372\a\251\274\375\246\336\3\31b"
#"\235\350\n\241e\357\0\342\242\311A\330y!\6L?#\241%\271h\360\217\0"
#"\304\"\27\343\374\252\303<\367\256\340\373"
#"\371o\370|\335\350\263\200\213\224G\351%b\325\211\373\222e.{m\23Tu"
#"\243,\276\266\t\353\250\340#\356l\17"
#"\37Cp\n\241\310\323m\333\314\177\247"
#"\377\235\246\237t\237\21\357a=\215\372"
#"\373\313\26\205\205H\370\355\375zh\20"
#"\361\356s\205\31\222\22\342\213(c\30\307 \204\220\266\302\21\236TF"
#"We\372\237\23^!?z\366:\346\36\37\371L\364x6IH;\210"
) 500
(
#"\346)\0\320\233:R\314\331\265IA\273E\202\272\212M{V\327!OV|"
#"t\332\245~\234\212\3369\32\315\237\177"
#"j\346\236\317.P\302s3\367\206\373]d\372[\25\177sRN\252f\201\20"
#"BH\373\240\250&GDa\277\337G"
#"\226e\255\27\0\251\366\321\251[\222\305"
#"\327V\315\237&\244\b\367\35\322\5R"
#"\343(\307N\322f(\252\311\21F\243"
#"\321\316#\260\353b4\32\241\337\357O"
#"\237\247\362\232\343\307\251\24\215\370\2658"
#"\177\232\220e\b\373J\277\337\237\26)"
#"\266\341\330\"d\21\261\200f\347D\322"
#"\5(\252\311\34m\27\213\251\224\215e\ayFX\310q\250C\232\20!\273b"
#"\327\316L\204l\23\212j2G\e\205\343x<F\277\337O\372\242\2\213\ay"
#"\246{\220\223@AM\210#\366l'\244\215PT\223d\316p\277\337o\225\20"
#"\250\22\306U\353YL\367\340\311\200\254J\233\216#BN\2021\346\250m+!"
#"-\202\242\232$s\335F\243Qk\6>U\235:\201\34\34\34$\337O\221\362"
#"Re\224\205\34\207\270\351\v\367\37\322e\332r^!$\5E5)\245\r'"
#"\377\270\223]x\276\277\277?7M\231\267t\231\3774O\n\344$p\377!]"
#"\247\r\347\26BRPT\223R\6\203A\343\213L\302\362\307\255\241\253\326!N"
#"\23\241\370!\313P\226'\332\264c\205\220M\222r\2!\244mPT\223R\1"
#"9\34\16\217\274\336\344\3010Ni\31\f\6GDO\30\364\343\b5!\213H"
#"]\204\305B;N\375 \244\253\26059\351\2\24\325d\316\257\271H\333\242o"
#"7o\336LFK\212Q\224\246\257'\331.\251\334\373\370o\325\264\204t\5\336"
#"\5$m\207\242\232\0\0\254\265\311\201.\244\2004\371\266]\261Y"
#"\313x<\6\200iS\230\242\210\346\240OV%\26\321\213\366%\n"
) 500
(
#"\v\3225\2141\260\326r\277'\255\207"
#"\242\232\0\300\221[\327\201\341p87]\23\243l!O:<\6\\*\2101"
#"\206\202\232\254\205x\37\212\367\237\375\375"
#"\375#\307Pq\32B\332N\223\2032\204\254\2E5\1\220n\337\35S\214\256"
#"5}p\24\221\271T\220\370u\240Y\27\rd\367\30c*\367\231\342\205\e!"
#"]`\231\224BB\332\4E5\1p4\a4\26\331AL7]H\a\252n"
#"\2773\242BVe\231}\246\351)T\204\34\207T\323-\6.H\233\241\250&"
#"IK\260\262\310t\223\a\3028\335\243"
#"\254\0\263\r\353I\266KYa\353\376\376\376\\\303\27\212iB\34<\36H["
#"\241\250&\245\221\333b\236u\312\267\272nTuG\314\363\2744Z\330&\353@"
#"R\17\312\362\254\ti\23\253\4 \30\254 m\207\242\232,$x7\337\272u"
#"\253\266\203bJ,\27-\362(l\310\246(F\253\351MM\272\302\262iO\361"
#"s\216\305\244\255PT\223\205\304yq\a\a\a\273^\234#\24\323W\212y\340"
#"\251t\17B\326M\323\273\217\22\262I"
#"\330\a\200t\1\212j\262\2200\0\306\16\au\32\24\213y\337\"\202w\337}"
#"\27\"2\355\216H\301C6A\330\217\342.\234!J\315h\34\351\"U)x"
#"q\300\203c0i#\24\325\244\222\370"
#"V]\236\347\30\217\307\265\314\255\216\ahc\f^|\361\305\312\333\214u[~"
#"\322L\302~\264\310R\217\2206\222*\370N5B\212\243\324L\1!m\206\242"
#"\232T\222\212(\324q0\214\a\352\320"
#"\271\253\n\n \262N\302\276\327\357\367"
#"1\32\215\270\177\221NP\2263\275\314"
#"t\204\264\221\336\256\27\200\324\237X\260"
#"\306\21\206T\247\270]\240\2520\306L\37\3\351A;\265\16\204\254"
#"\223\2664G\"dYR\316Ie\301\30\216\275\244\3550RM\226"
) 500
(
#"\"\36\b\343\\\345:\20n\275/\312\367n\223\3476\251\37\261\343\a\367-B"
#"\216\222rg\"\244M0RM\226&N\257\b\321\2102\333\260e#\22'\215"
#"\\\234$=\245\t\21\23Fv\352C\361\267\210\237\227=&\244k,[\204\310"
#"c\204\264\21F\252\311R,\22\n\361 \272\212\250Xv\0\256\312\323+~w"
#"\233,\364\226\335\346d\363T\tjc\3144\35\212b\201t\35\216M\244\2530"
#"RM\226\242\230\17\27\347'\217\307\343\271\367W\25\25\313L_L?\t\313P"
#"\24\360m\313i\215\363\305\213\305\230m"
#"Y\307&P\314\307O\245C\361\367 ]\207Vy\244\3530RM\26Re\332"
#"\37\4_x\177\223\337\37/CU\a\3056\221\212\216\266)\22_w\212\373Y"
#"\352\30\350\367\373\24\324\204Dp|\""
#"]\205\221j\262\2202A\261\310\t\344"
#"$\271\245\252\212,\313\346\"\200E\337\323T\325y\333\251r7!\353'\225'"
#"]\334\366\306\230\271\302]\346T\223.Q\354^\vp|\"\335\205\221j\262\24"
#"\251T\213\342{\341q\370{\222\2015\3132\344y\16 m\321\264h\336m\212"
#"\224\244\322[\310v)\273\255=\30\f"
#"0\34\16\371\e\221\316Ru\27\207\220\256\301H5\251\244\230CZl1\e\213"
#"\347\2705\363q=IC\204:\317\363R\277\323e\212&\343\264\224\246s\334\""
#"P\262\36\252j\5($\ba]\1!\201\366(\17\262\21\252\232\250\304\317\307"
#"\343q\3454\313\262HP\27\227\251,B^'\37\355uC\21\267=\252\366\343"
#"\375\375\375\271(5\177\27\322E\312\2"
#"(<\36H\27\241\250&\225\244\6\306"
#"\262T\220\301`\0\300\r\262\306\230\251"
#"0N\375K\315\273\350\201\275\212\327i\331\337\266\320\266\365i\n"
#"eB!\244}TMKH[(\e\213\253\306h\36\17\244\2130"
) 500
(
#"\375\203TRu\313\273\350F!\"\30"
#"\217\307\245B\274\230w\232r\365`\324\357(L1\250\27L\301!]#\225\376"
#"\27\202'\313\214\367\204t\5F\252I"
#"%U-\277\253\212\27\213\237-\212\345"
#"\242\233\2\355\342\312\341\366\330\35\251\273"
#")\a\a\a\30\16\207\374]H\347\210\307\354\252\213}\nj\322U(\252I%"
#"Uyr\341=k\3554bQe\253T\214D\27\243\36\24)i\342.\221\326"
#"Z^xl\221\342~\331\357\367\3319\221t\222U\306\35\216O\244\253PT\223"
#"\225H\245g\304\305\205A`\307\224\25"
#"\e\246\204x\331\364$\35\335'\233\245"
#"x'&\354\333\334\366\244k\304\3650\213\306\37^p\222\256BQM\26\262\214"
#"\3G\34q\356\367\373\310\262\354H'\306\2428)~.\2367E\313QR\333"
#"\234l\226x_\214\213\23\271\355IWYf|\346\370M\272\n\v\25I%e"
#"\3027P,T\211#\325e\r1R\371\325E(Z\346I]x\220\355\20."
#"\24\213\266\221\204\220\243\347\b^\360\223"
#".\303H5\251$\225\363\34\377-\263"
#"\305\v\217S\363\213\347Q\374\216\30F;f\360$\265;\6\203\1\0055!\230"
#"/P\217_K\375%\244\213PT\223\205\224\r\232q\224:%\222\373\375\276{"
#"\f\0\0260q\221\",\220\320\314\253\264\"'d\35T]\274\361\302\216\20G"
#"U\21:!\304AQM\226f\231\302\224Xd\217F#\0\6\231\b$\313`"
#"UaU\1\5\4\6\250H\373\240\230"
#"!\333\242J \354\357\357\373\375\230\220"
#"\366\222\272\v\31\377\5X\353B\3102PT\223\245Y&:qt\32\vU@"
#"`g\201i\231\270hu4i*\215\204\220]2\30\f(\250I\353)\272\n"
#"\225\375\r\16O\204\220r(\252\311J,\e\251"
#"\2305\a\310\241P(\\\372\207\e\222{\20\b"
) 500
(
#" \312\333\211d\347\244\366\351\224\240f"
#"\224\216\264\221Ec/\213\17\tY\36"
#"\212j\262\22\305\202\305\262t\215iA"
#"\v\f\240\200\325\34@\234W\r\b\216"
#"\266\277%d\233\244:y\226E\250\271\177\2226Ru\261Xtw\342\205%!"
#"\325PT\223\225)s\365(\372R\3\200(\234z\206\1\f\360b\277\357\204\265"
#"\231 \354~\252\212,\313\246\256!\204l\2138\nW\354\366IH\27\250\272X"
#",K\313\343\361AH\32\372T\223\23Q\364&=R\314\"\26P\3\21@'"
#"\n1\31\372\375>\2149\5\2659\0S\32\375&d\e\304Ba\177\177\177i"
#"\373<\356\253\244\r\224\355\307Uw%"
#"\271\337\23\222\206\242\232\254\215\330\243z"
#"n\20\26\300\0020\310\2416\207\30\327L\303H\206\3347\213an5\331\25a"
#"_\rN\37\313\210\6\n\v\322\26\312\4u|\347\220\215\247\bY\16\212j\262"
#"2EAQl\16\3\304\3\257\201\0"
#"\310\0@\262\351\255\365\320\245\316\30\303"
#"\264\17\262sB\36\365\262b\231\302\202"
#"\264\205b\24\272\230GM\bY\36\212j\2622EA\21\242\32\313\370\230\26o"
#"!\6a\35\213mB\266EH\371\b\205\211t: m\244\254\205x\361u\n"
#"jBN\6E5Y\212\262\3018\26\322e\302:5\240\27\333\237\247\332\240S"
#"\330\220uP&(\200\243\315]\230;J\332D\261\b7\25\20)\255\207!\204"
#"\254\fE5Y\212\224(N\345P\247\204H\231\320\216?\27\4y\370\e\277G"
#"\310IH]\270\211H\322:\217\373\36i\23\251@H\3619\0055!\353\203\242"
#"\232,M,8\202\5^*\2\262\352\340\\\26\261\246\250!'\245,RW\24"
#"\324E\301\3014\20\322\6R\335\22\3a\37\217S>\270\317\23r"
#"2\350SM*IE\230Cq\341I\6\337eRD\b9)\251"
) 500
(
#"\b\334\"A\315\213:\322\26\252\356\22"
#"\2G\233\2730bM\310\311\240\250&\225\24\315\376\263,+\35t\227u\361H"
#"\271\205\24\v\25)h\310\272\210\367\245E)\37\305\351\ti:\251\buU\312"
#"\a\367\177B\216\17E5Y\2120\b\347y^:\315\242\312\361\242hIy\237"
#"\252*^|\361\305#\357\23\262\16\312"
#"\366\317\324\205\36!m#\336\317\271\257"
#"\23\262~(\252\t\\k\226\331\343\351"
#"P\253\363\323XU\b\4\32M\257\260"
#"\200\316&\25QX\344\323\371\304\263\220"
#"\377\277\275\263}\222\343\272\316\373\357\334"
#"\36H\371\23\354\274X!\261\vI\224d\307r\254\b/J\234\252\304\304\213$"
#"\323\222HE^,Te\213\0HIx\241\222\312\213\253\34W\305\316'Ix"
#"a$\23\240\234\17\344\242b\221\222eQ$\0:\345\252T\4\200T,\225-"
#"\205\22\t\356\202\224c\253\342\17\371\3\22c\372\236|\270\267{{z{fw"
#"\261\273\330\335\231\347Wdaw\272\247"
#"\247\267\247\373\364\323\347>\347\\\363z"
#"[^\375\333\21\330/]\272\304\314\314"
#"\314\32\376\36!\226r\370\360\341\241\263"
#"%j\204D\214;\352A-\304\306\243BE\1\4\334\2228\306\300\34\334\"f"
#"\241V\305n`\321!\30\346\1\274\361\263\201\1%P\20\bYM\327\372$\377"
#"[\22\b\200{ p\e\267\35ti\30w_\3227\270z]\242G,\307\250"
#"\326yj\231'&\225\312\272\247\363^\210\215C\242Z\0\21\363j*\3610\230"
#"\240\266\264\234\30 @\244\314V\220\200"
#"\0231\2138=\314s&\332\263\302\266"
#"\334j\217$\300\215\222\302\v<\30\301"
#"\0v\244\345#Z\360\r\233\220CE\215b\24m\0175\300\323O?\275d\231"
#"\316\0351\216\f\213\251U\315\213\36*\205\3308d"
#"\377\208\1\267\220\304nt\242E\34g\341\354\36"
) 500
(
#",\30f\5E/\20l/\217\337\"g\252!\235>?\346\334\336\36\26\214^"
#"(\322\372\371=\26\n\216\275\350Il[\17\179\200{\277J\212/)\22\253"
#"\250^\237\233\233cffF\202Z\feXw\203\252(\361\351\247\237\326\271\""
#"\306\232v\a\217\346\353\303\2725\351\232"
#"\20b\375\221\250\26\30\21\242\3\21\202"
#"S\20x\363\334/1\375\330\317\361Bt<:e\214\224\227\357\343\364\324[8"
#"v\265z\37@\300(\331sv\236\30#\245G\274tn\347\177/\334o\340\201"
#"\350YD{\375F\274\341\251\36\25\340"
#"\233\303\366\362\276\2126\355\a\263\331\331"
#"\331\201.\37\355sE\236R1n\f+\262m\vj\235\373Bl,\22\325\23"
#"\216g\323GJS\347\323!\336\344\371"
#"gop\354\362\357q\320c\355\350\340"
#"\300\223\\~\30.\376\316\31\346-\213"
#"p\0\214\340\251\0&P\342\6\275l\2646\222#$d\e\211W/\2202\336"
#"\253\21<m\v\210\20M\314\254\366NWv\217\212f\267\3=\220\211q\244\253"
#"5d\273\313\207:\334\b\261\261HTO8\346!\377K\356\342\21\360P@4"
#"~\370\332\2n\241^\6\260\377\342m"
#"\374\332i\2461\334\223\257\2724\210V"
#"eCzx\356\376\221\332\177\224\230g\361\35\r#\342V\3408X\177\351\376\f"
#"\21<\355b\305#G\216\254\353q\20"
#"\333\237\303\207\17wz\247\333\243\34B\214\em\341<jfZ]\aBl\34"
#"\22\325\23N\335\365\203Xg\226\315\247"
#"\370\314\277\377u\256\235\236&\4c\357"
#"\371\5\260\230l\"\36p\253\204JZ\377-ez\177\325&/xA\352(\2"
#"n\5X\326\3279\226\247\234x\22\340"
#"\3\373\322\20\316\315\177a\251H\232\233\233\323\315A\0IL\317\314\314"
#"\324v\217a\376\374\256eB\214\3M[\334r\263(\n!6\16\211"
) 500
(
#"\352\t\307\0,\342\274e\340\305\342\376"
#"\213Dw\346\317|\200\357\234\232\306B*<\f\307\236\e(0\4\350\a\270q"
#"\352\355\204\\\234\30\n#X\301\a\316\30jc\341\0\0 \0IDAT\277"
#"\331\360]W\357\31~\312\265\375\322\243"
#"Ds\2635\324\341\303\207u\323\270\3"
#"\266\3131\e\265\237\225\335\243\331\177z"
#"\224EH\17bb\2531,\231\260\332\353\263m\367\30\226\224\20Bl\34j\251"
#"7\341\244\260\e0\377\177@\237$zCJ\\\e\334s\362\277\321?\221~\247"
#"\270\312q\373 \341\207_\344\365k'"
#"\230\2624\315K\21\3\373\316\274\306\267"
#"O\335[\267\320\303\234\273\21\306\253\352"
#"\366K\227.-\251p\337n\235B6"
#"b?\333\333\334\256\307\244\275\277U\253"
#"\274\366\224\343\355\367\255\366s6\212\366"
#"\337\261]\216\277\330X\272\316\207\345\222"
#"\n\355s\247\232\320\245\335\203Z\347\227"
#"\20w\37\211\352I\307\3f\375\344\243\366^\335\227\332C\0/)H\376g\v"
#"F\364\375|y\341\363\2742\375\f/\274\361iN\356,(<\20CI\f%"
#"UF:b\271\333\365\335\31\b)\313\252w\366b\206\262}s\331\16Ej]"
#"\342w=\267\271\222\327\3576\303\376\316"
#"\246\17\272\271\316\354\354,\260\274\230^"
#"\351\337\327\265\376z\v\336\325\b&1Y\254\344\1kX\201v\365Z3\231\240"
#"\36\324Bl.\22\325\23N\212\273\275TLhyV\304\371\363\354\333\365,\17"
#"-\\\347\344=9P[$D\303)\210\336\307\254 u\363\350\223L\323;\362"
#"\214\214y&\306\273\350,\32&\246\273"
#",\1\333\201\215\314Xo\265\343\260\234"
#"\350oZ|\314\214\247\236zj\344\337\260\332,pW\367\231\365>F[\355\230"
#"\213\255\305\250\207\312\366\371hf\3\231\351\325lS"
#"\b\261\361HT\v\252Vw\21\247p\203\351S\374\346"
) 500
(
#"\321\323\34\232\332C\\\270\301\311\235\236"
#"&\30\17\v\234?r\202\227\217^\346\306\275Pe\246!\25<\326\223)\3466"
#"}\215\226\324w\215\352FT\211\260\346\215g;do6j\37\2732X[\371"
#"x4\37\2\232=\247\227[\37\356,[\327~\350X\317c\263\225\217\263\330Z"
#"\f\353\307\337|\275k\"\27\235cBl\r$\252'\35\arf9\344\366\37"
#"\16\34x\"\262p\337>\336>U\3609\213\270\a\214\310\356\2637\211'v\325"
#"S\231\e=\300\3234\345T\326\217\264\0217\3076XV\17\363\f\217\372y+"
#"2\314\356\260\221\333\337J\307\243+#"
#"\a\203m\362F\275\247\313\257\274\232\277"
#"o#}\316[\3518\213\255\305\260\363"
#"\276\275\254(\212\241\331\351\355\24\347\204"
#"\30w$\252'\35\213\270\e!\302\242"
#"R\276\215\331\16v\236\370\357\364O\26"
#"\271\37\36\224!R\304\200Sf\261\34"
#"\200\277\317\311k\316I\253\2\272\23\211"
#"\271\334\261\330\370\335\357\310\3444iz"
#"\251\253\f\317V\273\361\270;EQ\20"
#"c\352\347\275\321\302\256)\256\267\n]v\17`\240M\336r\17Ok\365+o"
#"\324C\315\260\355m\265\357@\334}\226"
#"+Fl\307\206\345\266\261\225\342\232\20"
#"\223\210D\365\204\23=\20,\22\263\5\332q`\aD\307CQ\317\210hF\222"
#"\310\1,\213e\247\217S\324\263%\232"
#"\205$\320\341\256\373>\332\202\253\315\260"
#"b\237\255@[\360\337\215\317\333j\307"
#"\240\302\314\230\231\231\31\360\303\17\353\234"
#"\321U|\272\26A\334\364\344\257\347\361\31&\250G\t%1\31t\235\257]V"
#"\244\345\336#\204\330\32L\224\250\336\252"
#"Bb3I\2028\317\232h,\3325\302\242q\243\321\274i\340\275\226&#\37"
#"X\266\25b\375\250\354O\325\202o\271B\237\2252J"
#"\360\255\366\306\267\21\202\256\315V\26\324\263\263\263\270\373"
) 500
(
#"\200\240\206\341\375\313\207\211\325;\245\235"
#"\371\336\b\357j\363\374\23\242\353\\\n"
#"!\305\322a\347\210\4\265\20[\227\211\22\325\nF\302\314\6Z\360U\"sX"
#"A\343r~\305.\241\267Za\335\365"
#"\31\313\25X\256\3047\334\345\327\254\266"
#"\273\331\331\256\346\337y\344\310\21b\214"
#"K\304\364\335\336\227a\373\327\374}\330"
#"1[\351\367^yc\305x2\314\246\264\334\365\326\216\37B\210E\3263y\265"
#"\321L\224\250\336\212_\200\330x\206\211"
#"\326\352\346Uu\ni\256_\321%J\227;\207V{\261\267\327\37eoh\357"
#"\327\260\241\341\366\347\267\263\243w\373:"
#"\350\22\370333\230\331@g\217\315"
#"\270FG\215l\204\20\352\207\260Q\373\266\222 _-\2171\326\331H1^t"
#"=t\217\362\324\267c\221\4\265\20\213"
#"\f+\340_I\375\314f\351\275\211\22"
#"\325\353\345\275\24\333\213\345\206\360\347\346"
#"\346\230\233\233\253\213\343Fy\257\273\316"
#"\231Q\31\354\265\356c\333\202\320\316h"
#"\375\332\257\375Z\247\360o\336\244\213\242"
#"\240,\313e\367y\275\30u<\334\275"
#"\236\300\245+3\275\31\327\344\250c\321"
#".n\255\204v\233\352\1\241\275\335\212"
#"\246\345H\202z\274\351z\200l\262\222"
#"\370\242\373\223\20\203\17\245\325\365\3205"
#"\233\356z\334\203\327\213\211\21\325M\221"
#"\2\262\202L\22+\35*\232\233\233\353"
#"\\\267Y\300\326\305z\335\b\273\206\216\253Li\ba@dW\353\36>|\270"
#"\363\346\34B\2503\242]\336\340\365<"
#"\377\207\211\210\346>6Y\257\251\305\327"
#"\213\345>\263-\250\273\316\207\231\231\231"
#"%\337C\363{j\306\35\t\246\361a"
#"\230\335\243\213\266\230\36e-\323\371!"
#"D\242\353Zh&\301\346\346\346\266\324"
#"\36521\242\272k\270@7\267\311`\271\241\242\366\260R\325"
#"\27\271\272p\253\247\344\256n\r]CR]\313V\263\237\315\367"
) 500
(
#"5E\364j>\253\22\342]\202{=\375h\303<n333\365\347/7q"
#"K\327\376\337MV\362\331m\333P\327\303O{\375.\177<H0\215\23+y"
#"X\35&\246\273F\230\224\251\26b\220"
#"a\265A\325}e\271\366\253w\233\211"
#"\21\325\2608D[\315\320\246\2405\376"
#"\254\324\3=l\335\312\32\322\\\257Z\267zm\224g\362N\350\332f\225qn"
#"R\5\223v\v:\240\356m\333\364\4\257u\277\226\333\327\346,\226\227.]Z"
#"\265\257\0346\317S\275\\\1L3S"
#"\335\374\36\332\231\350\346\372\355\355\211\311"
#"\241+Vt\211\351a\357\321\275I\210\304\260\373n\305\323O?=0\"\332\34"
#"q\336\f&BT/\27\314\304\3702,\3\264\232a\333\346:]\347\3220{"
#"\310j2\240]\373\335\334\377Q\342\254"
#"+[V\211\274a\333_\257\240\323\264v\254G\301\341f]\243\355\21\200.A"
#"\r,\351'>\354\241\2529J0*\313-\306\207\366w^\321\214\31\372\376\205"
#"\270s\206%0b\214C3\327w\233\211\20\325\nb\223MW\6h%\303\266"
#"\243\266\325\274i6o\230\315e\2432"
#"\237w\362\271M\217\364\250\365\272n\350"
#"\243,\b\313\335\350\333\313\207\t\351a"
#"\333\0377\232\331\351\256\207\365\256\343\255"
#"\214\365\370\321\365\20\275\334z\343|]"
#"\254\225\365\264\245\211\361aT\275A\265"
#"\254i\277\253\356I\325\274\aU&\273"
#"k[\e\301\330\213\352\346A\234\233\233cvv\226\247\237~Z\27n\213a\""
#"`\2533\314\207x7\367}\224\337y\271\354\344r\205M\355\354x3S:7"
#"7W[?\232Et\253\335\367\225\b\352\246\265c\2632\0\233AWf\4\250"
#"\37p\206\25'\202D\302\2700\352\332\36\266\236X=\233\21\273\305\366"
#"fT|\255j\243*q]Y~7z\364v\354Eu\373 \252\373"
) 500
(
#"G7ma\272]\216\317\250'\330\315\332\217\3469\326\314b\267;wt\355\363"
#"\260l\366r\26\226Q\202\272\235%]"
#"\311\303G\263\275`\25\220\356\30423"
#"\16\f\373N\206YA\332\357\233\204c4\316T\235w\252\a\334a\350{\2763"
#"t\334\304(\226KL,\227\205\356\22"
#"\327M\326[\363\214\275\250\0365t \226\242\343sg4\205\3250q\337%|"
#"\273DX{y\327\5_\275^\365\251n\373\256G}\217\355u\252,t\263\365"
#"^W%\365$\n\352Q4\217\343\314\314\314H[N\265\276&~\331zt\235"
#"\343\355\207\320\325Z\244\304\312\351z\330"
#"\27\242\311r\302y%\243\301\225\270\36"
#"V\320\270^I#\363\t0\3715\305\306\221#G\344k\354\340\322\245K\3\23"
#"\211\334\251\235`\322X.S9\312g"
#"\351\356#\247\346n~\27+\375\314\225"
#"\354\347J\327k\212F\235\a\211;\375"
#"\276W\263\216\270\2734\317\363O|\342"
#"\23\3q\257=\"\321\24\335\355\376\357\355\230)\221\2702.]\27240yR"
#"W_}!`01\321\365\260\333u]\266\317\253v\242\252\22\3330\272w\374"
#"\212\367q\334E\265|\215+\243j3"
#"\270\335\216\323v\333\337\3250L\200\265=\326\313=\374\f{@j_\e\223j"
#"\357\30\305(\21\334\16\316\315`\336u\354$\250\2677\e\355\305\234Tfgg"
#"y\352\251\247t\237\26\235\264\205\356\354"
#"\354\354P\v\307J\256\321*\271\32c\34Hj\311S\275B\332\303z\22\331\335"
#"433\315\327\266\3721\32f\213\270"
#"\333\373\276\222\341\247Q\357\205\225u$"
#"\251\2665\254e[\27\225\360k\37\233\366P\367r\337\375v8\0376\232\256c"
#"\330\316\\/\367\260\322\334\216\330>\f\373\276t?Y\e\315\207Q\35"
#"C\321\246\255\335\272\256\267\345t^\365zeulf\247\333\333X+"
) 500
(
#"c/\252\333\350\342\355\246\353xl\307"
#"c\264Y7\270Q\237\267\334\276\214\22"
#"\343]\353v\t\350\345\204\3650ot"
#"\373\275\243\256\217\355x>\254'\355\343"
#"\323>\336\355\357@\307r{\261\226\270"
#"\241\357s\375\321\203\212h\262\234=\250"
#"\35\237\233\361xvv\26\270;\275\253'NT\213\361g;\5\342\22(\34\""
#"\20\362n;\21\3h\374\31\16\30}"
#",\354\300\243/\276\230\327s\300\275$\230Q\272C\35`\"f;\222\320s\210"
#"\346\30\216\21 :\204\352)\276\217Y/\177N\26\364fl\237#y\347\f\313"
#",\267G\2\332\231\221Q\326\34\331<\266\37\333)n\214\23\243F\0\204hR"
#"Y\31\273\350\32\351\255\274\372w\263\r"
#"\254D\265\20\233H\341\340\3667\4z"
#"\340\1\f,\6\b\340\261!\362\0\263\267\22\2638\206HiP\20(\211\4\2"
#"\321\0031\213\272\350%\356\21\243\300\210"
#"@\37\267\36\1\203\2307\21\f\313\202\36+H\241*B4,\224LBx\30"
#"\225\245o\276\336\36\242^\316\303>\314"
#"\n\322\265\236\20B\210\345\251b\361r"
#"T\35>\2529\34\356&\343\177\327\24b\v\343\6F\17\b)\213\354Y\324E"
#"\207\340@\0\"\301\212\234m.\301\n\234@\221cEA\26\343\26q7\334o"
#"\347\354t\211\5K\231m\a\317YjB\310b\272\304<`\30107\242\225\4"
#"\n\b\21\274\307$\244\251Wj\27*\212bI_\352Qt\211\351\346\315@\202"
#"Z\b!V\3170\353\aPwwkf\246\357v2C\242Z\210M\304\0<"
#"\340\26S\246\330\2\21'X2i\224\3767\204\320\243\240\0\"n\5xIi"
#"\201^\266w8I$c\220\f\e\1\217e\22u\321\301\"\20\bn\200\21-"
#"m?P\340\1\262\323\203\340\5\0n!\tt"
#"H6\2211g%\325\342\325z]\355\322\226\373\271"
) 500
(
#"\313w-A-\204\20\3133\254(\261"
#"\271|vv\0263\253\273\310\254\346\375"
#"\353\215D\265\20\233\215\221S\326\351b\17n\270%_u\b=b,q\f\v"
#";\300\35\217%\275\350)\211MH\366"
#"\216\312\217m\221\20\212$\324=\t\353"
#"\322+\301\36\363\372\226\5s\26\333\364"
#"\301{\370\200\207;LB\242z\t\303Do\325m\245-\264\273\2\266\273S\24"
#"\305\22\373\207\262\323B\b\261:F\215\3705'r\351b3\272\201IT\v\261"
#"\2118\21\213y\32d\300<\351k\334\260\252m^\4B\304c\37\250\202LI"
#"rF\207,\200\373\24\366\267\210x\316"
#"N\347\355G\307\212@\354\337\36\370\214"
#"H\312B\247\202\310^\336\27'\3442\311PWA\216w\246zT\26\243\335\17"
#"\274z\255\271^\333\nR\255_\226\345\310\214u\327g\v!\204\30\244+F\17"
#"\233r\274\375\236\315\350\3666\336wL"
#"!\2668\6\365U\230\264t\204\\\341<\177f/=3\254((\302[0{"
#"?\217\317W\1\243\300B\201YA0\303\354\2558%\20\261\302\bVp\374j"
#"\332\250\367#\241\350\1?\346\374^\303"
#"\n\243\350\31!\244\237C\350a\3018"
#"~\325\210\36\222\324\366\22\237\200\3600"
#"\252\235a\263m^W\206\272\271N\b"
#"\241^\267)\250\333\333\e\366\273\20B"
#"\210\245tY\350\236z\352\251\221\35="
#"F\305\326\215.\\\34\377\273\246\20["
#"\230Z\270V\36\346l\35\230?\263\227"
#"\351\323\367\361M\217\270\227\224\345m\374"
#"\312\317qbW\301\361\313Y\324E\307"
#"\343M\316\357\6\333s\206\327\262\320\363"
#"\350\304\205\317\363\375\3\206\35{1\t"
#"\353\3221\233\6`\337\27\347\211\245\23"
#"\335\361\262\244\214}bt.\356\217\4"
#"\213\271\250qG\362i\2179\243\332\342ue\227\273\304\262"
#"\273\23c\\b\367h\243I.\204\20b\3654\343\345\245"
) 500
(
#"K\227V\35?\207\331\3656\2\211j"
#"!6\221\344k\316\27\273\203\205\0361"
#"\276\316\345\257^\347\221\27.r\20\317"
#"\376g\303\367_\340\312\303\221'\177\367"
#"<\257\347\367_>>\315\311p\206\327"
#"\257\177\206i\250\333\355q\357in\370"
#"\213|\352\342~\36\271\222\354 1\376\210\307n\30\321RG\21w(-`\236"
#"\373b\23r[\277X\27>\216;fU\260-\323\241\363\326\304.\236JAK"
#"\32m\234|\360\307Z?\307\262\336^:x\255\326O\226Dw\260\346\262\3640"
#"U\375_\375\276\344\275B\b!\226\340"
#"\215\30Z\305\315\210/\306iOq\276\262>6c\357F Q-\304\246\262X"
#"\0g\241 FOA\242\b|\177~!\373\236#p\ew\330\177\321)\277\375"
#"Yv\321\307\375\5\276u\321x\370\337\235b'\1\213ir\227\262*\\\364\177"
#"\316\277>\267\217'\376\303yne\261"
#"\370\205\335\316\215S\323\304\354\247.<"
#"\22s\300\201\344\347vB.j\234\4\322\3\206\231a\321S\275h\250<\353\351"
#"8\0067\212\272\271w\237\352hU\223"
#"\364\244\304G\304C\221\237i\362CL"
#"\35\356#x\254;\251\224\356X(\322\210\0!\5}\277]?\330\30\351\365\362"
#"\356\36\b!\204\330V\244dT\352~U\305OwO\305\376\224\224\304\\\243\224"
#"\343j\260\2248\212i\335\215@\242Z"
#"\210\315\304S\26\332\212\202\30\373\30\21"
#"c\212\223\277\365\353\33485M\260\202"
#"\275\347~\f\266cq\306\305\340D\357"
#"aW\277\311\23|\212\217\34\214\2657;\270Qx/\267\311s\246\16\376*\273"
#"_\272\311\2749P\200\31{\316\276J/\30P\202\205\324\233\332=\v?\26\305"
#"\336$\220S\315\236\16^\352\a\36\263\237\334S\271f\352\212\322\313\17"
#"\37\275\244\242=\267\e\314\231\354\352x\31!M\252C\237@\221\203;,"
) 500
(
#"\206\332\210\21S\1i\250\254 }\260"
#"\35u\216:m\207\272\17\271\20B\210"
#"\245\230\345\324\203;i:\206\210\375\331"
#"\23\34\236=\314\354\221\v\3749\326("
#"\376\377k\276\371\2333\34\236=\302\227"
#"\376\234\201\21\307\365dB\356\234Bl"
#"M<g\204\275\237\233E\23\322\377\277"
#"\374$\356\316\374\331\367s\343\364\316\\"
#"\f\327#\34\273\222\262\327\2255\303\240"
#"$\244\302B\367\354\315\366\254\373\2x"
#"\17\343\373\334\274\5\356}\314\3/\235"
#"zW\22\205\341-\265\325a\337\3717"
#"\211y\322\31\263\252\177\366\370\347J="
#"\247\232-\367\373\366X\342n\334:\273"
#"\207\20\214`F\21\2f\373\370\322\255"
#"\352\240G\374\315s\354\265\200\365\216\361"
#"_\311\323\274\3D'\372\213\34\267\267"
#"P\354=\313\353\266\330\353;2\317\271"
#"\275\275T`\32\322w\35\212\200\331[S\241\350\213\325N\1\336\37hq(\204"
#"\20b\20\247\207S\342\241\272o\5\374"
#"\275\217\360\330\36\303x\211\257\177\363\257"
#"k;\343_?w\216\257\375x\aa\367I\36}o\334\260\321X\211j!6"
#"\225P{\227\255\36\252JEm\16\334{\362\333\3042e6c|\216\243O\36"
#"\304\366\235\341M\0z\230\a\2e\232\24&\213r#gR\253\taj\261\274"
#"\203@\311\373\316\335LE\212Y\210G/\271~\362\336\364>\313\263/r\e\254"
#"\330\244cr\367\250&\337I\303\203\21"
#"(y\363\361\177\302\364\351w\363|\243\b\261\274\374.NN\31\307.\347Y("
#"K\247\300\260\370\32\257\315\3\244\321\1"
#"\17%a\341U^\311c\16\211\230'"
#"\367I\223\306\357\373\374B\262\371x\211"
#"\367\373\270\227\3042r\361\376\234\3256"
#"\300\302\206eR\204\20b\34HQ\266"
#"\240\262\315\221\243\356{\37}\214\367\21\371\313g\277\301w="
#"\200}\217?|\366M\334~\221\223\237~/\3469y\265\1"
) 500
(
#"HT\v\261\351\304\354e\316VhRK=\203$\340\314p\34\367\3<\361\372"
#"y\366]\377:\337\232\217\370\376C\34"
#"\345I\276\376b\221\265\260\3\375\201\211"
#"`\26.\177\225\353\376n\3361e\224D\312\0;b\254\v$\241]\217\30r"
#"\206t\307\204h\272<RP{\311\377"
#"\202\347\236\3716\307\256\\\344 \215Z"
#"\227\3\27\270\3740|\345?>\316\2\200\5n[\344\350\321]<s\371u\""
#"\21s\az\334\272\374U\336\375\360\247"
#"\222\210\366<\341\216\a\3728\245Q\317"
#"\0\357\364q\313\266\221\332RR\325\232"
#"\03261\276v!\204\270\23\322\375\252"
#"\262-\366\263\244u~\216\217=\3646"
#"\234\2279\373\304\237\361\275/}\201\e"
#"\364\330\363\271O\363\vn\365\375vc\366H\b\261i\244j\344\\,W\371r"
#"o\235g\237\355\346\334\255\305\202\2704"
#"\266\225|\320\267\215\334\233\372\20\277\372"
#"p\344\367\177\373qnY?e\254\3711_\330k\330\361\0271\256\362\371\2237"
#"\260\243\277\302\375f\311o\35S\307\217"
#"\264\335\212FV\324\"\26\275Q\3701\376\270-V\205\273;E4^y\365\26"
#"\265\377\31(\274d\377\5'^;\305"
#"=\6\304\220&\216\177\340\243\334\367\314"
#"\v\374\330\223\227\32\237\347[\317\354\340"
#"\35\357\252\16i R\202\305\224\331."
#"\343\342\0042\244LK\254\225\373\355\364"
#"\231\336(\250\21B\b1\202*\371\320"
#"O3\r\347z\227\237\376\320g\370\304"
#"\317D\374\306\278{#\20v\237\344"
#"\323\377 \255\237b\357\306\240\250-\304"
#"&\342\271s\204\305\305B6\246>\313"
#"\277=\372?8=\265\217s\267\362\20"
#"\227\203\371\2\347>y\232\357\34\375M"
#"\36\231\2\34\376\331\305y\276X\234`"
#":<\312e\n\314\247x\354\372M\36\377\301\1,\34\342\242"
#"=\314\345\v\373\27\333\265\205@\360\333\3654\344\213m\334\252"
) 500
(
#"\202\217\200\a_\334\227q\307\253Y%"
#"\0017\314v\362\331\337\372\rn|\356"
#"\355\230\25\354=\367F*\342\264\202\230"
#"\333\345\25\304TE\350`L\361\36^\345fe\341y\343\233<\313\203|h\227"
#"\247\352s#\25\202\306d/\361\260\230\225vz\324#\3\16\36v\244\337)\263"
#"ug\2\216\277\20B\334)\215\236\246n=<4\307`\177\212C\237}\220\237"
#"!\22\355m|\364#\277\2302\324\271\245\254\n\25\205\30g\2\3]7\16]"
#"(\231?\v\247v\31\301\336\212\25\206"
#"\205i\236y\350\26\376\304\375\24\311\20"
#"B\301\24'\2579\267\257D>\30\212\\\\\367v>\373r\366F\373\223\34\264"
#"\343\3741\244>\3111\373\17r\6\266n\343fE-.\255\366yO@x\250"
#"\206\1\275\352Y\35a\377\5b\354\263pv\0177NO\23rAg\357\330e"
#"\362\252\20K\34\303\354\36\16~\374U"
#"\236\273\234C\371\374\353\360\320\1vF\eH\205xH6\20w\270~r\n\313"
#"E\220fF\317\214\275\347\337H+\3064[\346`\307\20!\204\20m\222\365\243"
#"\250{P\ey\300\320\35\b\374\357\357"
#"\276\314_\305\36\330_\360\362w\177\202"
#"\321O\335\2366\260\n\\Q[\210M\244\272\264=?_\327\223\260\0;O^"
#"\307K'\306\22\217%1\366\271~\342^RQF\3103C\245\241\254\342\376\257"
#"\20c\237\322\2352.\26!\366\275d"
#"\341\314+\374\341\225\210\261\213\0237\372"
#"\\;\275\263\321\377z\262i\316q\343\36\362CM\262\303\354<y=w\3\271"
#"\215\373\363\34\275\370Al\337yn\345"
#"\"\227H\n\316S\323\357\341\311?\372\23J\"/|\343+\274{j\n/\f"
#"\363\242zV\252=\177f\306?:?\2778\23c.\30\275v\342"
#"\236\264\23\325w\232G0\204\20Bt\223\332\345\3458Y\217\354E\214"
) 500
(
#"\22~\362-\376\3233\177\205\375\314\373"
#"\330\367w\215\277\374\203/\363\334OzuA\276oP\252Z\242Z\210\315$g"
#"\247k\v\0021ypI?\273AYe\260\255X\354\16RM*\322\270\204="
#"\ve\263\334\36\316K\n\17\334{\352\333<q \211@k\16{\311\263[{"
#"\246\311\226u\317Ssy-j\253\241\302\375|y\341\f\37\270\376u\236{#"
#"R\t\336\302\3\34x\200\207_\375>o\370\25^\270\370)~\345\220c\261\304"
#"\255\314\263U\306t\254\255\300\315)b\236\n\0360\257>?\177xU0I$"
#"\352\373\21B\210\341T\266\275\201{a"
#"\300\255\307\237>\367\fo\372\337\260\373"
#"\301\317\360\310\307vC\361\277\370\352s"
#"\177Z\217\306\332\6\271\252\25\265\205\330"
#"LZ\342\315\tus\240Jl\27\241\232\316<\326\275\243S\333\274\2202\334\3"
#"\366\260\230:\206\0\226[\342y\236m1`\365z%\340\326\277+\177\342V\246"
#"z\20\361\\\250\30\3368\307?\16{y|!-K\226\275\344\251\16\236r "
#"\275\230fO\354\1\375\0\316?\345C"
#"\357\372#\256\236\177\201\337;\372\21\16"
#"b\351{\364\305\357\21\203\350U\6:"
#"\344\300\36q\v\213=\301\315\360*\331"
#"\342\201 O\265\20B\f\247\266\355\205"
#"\301\327\276\373e\316\336()\366\374K"
#"\36\371y\340\27\216\363\271\3679\341\332"
#"9\276\364\275<\225\271)S-\304\370"
#"Qu\235\200\272\230\255\262\37\2307\226"
#"{\225\205\256\262\325\213\23\263x\303*"
#"\220\212\337hL\263\35\363\364\254\325\307"
#"%\257o\261\370\306\211\246\369\264\354"
#"y\276\367\4\377\346\330\313\234\234\336\303"
#"\343\v\271\v\212\25D\277\305\331O>"
#"\306\365c\377\212\23S=\314\323\254"
#"\213).\27\274\363\35\306\351S\27\330\367\316\2514\253W"
#"H\223\230{\236\230\a \230c\3754\\\231|\334\215\251"
) 500
(
#"\310\255\0/\223\350\316\353O\314\254\226"
#"B\bq'X?\307\330\364k\372\347"
#"\317\370\2753/\321\363\267\361\361\a\376"
#"a*Nt\343\347?\366\20\177\317\2/\237y\202\357y\314)\223\365GQ["
#"\210\315\304\"\26{\271\215\32\324\31k"
#"\213U\317\265l\333 \255\20\363\317Vd\301\\e:\253!\260\274Y+\222\250"
#"\363\354\321\365*\17ny:\327\305L\366$\343!y\251\311!\326\3149\360D"
#"\311\315\363\306c\323=z\3010+(\212)\236y\360U\342\23\a\362Q\316\17"
#",9\363|\317\241\217\361~\333\315\203"
#"\37\334\t\204\364\200d\251/uUH\203C40\357\325\331\361\36\21w\313\335"
#">\n\242\225i2\203<\v\230\20B\210a\364\362(_\376\325\235\237<\377U"
#"\276c\360\267\37:\305\a\177:-0s\312\237\3720'\36\374;8\327\370\303"
#"o\375\237\r\263?\232WMS\305Ds\370\360a\346\346\3466{7&\16w"
#"\3173\36\202\207>\3254\345\213\2y"
#"\260\247\264\345^\312\206\325\326\1\317\226"
#"\217\252\t\276g\253\210\345m\245\317\250"
#"T{e9\250|\276w\367\357\335j\244\a\226\22\313\205\207\201b\340x\271Q"
#"\217\36\370b\233\220\272\360\320-6\342"
#"\271\345\211z\252\t_H\251\360\326v\252\317My\352jd\241\372N\253\375J"
#"kN\370\327#&\0\335{\304Z\360\334\222\326C\272\347U\235@\252\316N\325"
#"\317U\305x\237\222\36\305`\225\372:"
#"\242L\265\20\233\210\231%\317n\210\230"
#"\367R\337\344<!LU\260V\315\264g1y\307\222\5$`\331\342a1d"
#"\37C^\327\3\346\275\\\254\230D\240gaG\325\243\23\tj\250&uO\375"
#"\242C2>\23-{\241\255\361`S\317\277\343\203\305\215y\212\363"
#"t<m\361\370\23\211,Z8\352\236\340\225w\333\215\305Iwb:"
) 500
(
#"\17,\25.\232CA__\217\20B,Ceo4\317\t\244\252\320\2749\201"
#"YCd\367<\217\320nP\315JoC\266*\204X1\2515\236U\377-\276"
#"\16\f\210\337`\203\313*\373F\266\215,v\20i\256c\215_\252\37\365,\335"
#"M\200\220\375\346u\271\350\342\242\346\17"
#"\365\262%\307{q\275\372\353\252\277\202"
#"F\377\357\366\277\365\373\253\17Rh\26"
#"B\210\345Y\274\367U\35=\6b\361\210\30\2751{#\204\20B\b!\204X"
#"\23\22\325B\b!\204\20B\254\21\211j!\204\20B\b!\326\210D\265\20B"
#"\b!\204\20kD\242Z\b!\204\20B\2105\"Q-\204\20B\b!\304\32"
#"\221\250\26B\b!\204\20b\215HT\v!\204\20B\b\261F$\252\205\20B"
#"\b!\204X#\22\325B\b!\204\20B\254\21\211j!\204\20B\b!\326\210"
#"D\265\20B\b!\204\20kD\242Z\b!\204\20B\2105\"Q-\204\20B"
#"\b!\304\32\221\250\26B\b!\204\20b\215HT\v\0\314l\340ww_\366"
#"=+YG\b!\304\344\322\274Ot\3353\332\367\36!\2663\22\325\2X\32"
#"\354\232\201\256+\20\272\273\202\241\20B"
#"\210\221T\367\211a\367\214a\367\27!"
#"\266#\275\315\336\1\261\271T\201\256\31"
#"\304\16\37><\360\332\334\334\334\300\272"
#"\240\354\202\20B\210\225\363\311O~\222"
#"\30c}\37\251\356+\25\272\277\210q"
#"\300\\\217\204\23\217\273s\344\310\21b\214@\nhm\241]af\304\30\25\364"
#"\204\20B\214\244+;\335\276\267\\\272tI\231i16HT\213N\16\37>"
#"\\\377\334\314(\310\366!\204\20b\265"
#"T\367\0243\343\251\247\236\352\254\343\321\275Elw$\252\305\0+\tl\n~"
#"B\b!\356\204\256\373G\323\206\270\234\a[\210"
#"\255\214D\265\350D\1M\b!\304ZY\251P"
) 500
(
#"\326=G\214\3\22\325b\t\355\340\246`'\204\20B\b1\32\265\324\23K\350"
#"*,\21b|\211\220S\v\356\216\3N\177p9\200CY\275\356\365[\26\227"
#"W\244\r\20)\353_\333\333\351Z\337"
#"\a\266\333\332\246\20B\210-\217D\265\20bbq b\370\233\347\330kF\350"
#"\25\0043\202\355\340\221+\325:\1\26"
#"\316\262\2570z\366\326\324\35'\30{"
#"\317\277\16\321\301\3N\304+!l\v"
#"\234\333\27\370\300\2717q\372\230\3W"
#"\216c\241\340\330\25pK\237\373\342q"
#"\303\216\275\b\6n\351\275\245\201y\211"
#"B\263\20Bl?\24\271\205\20\23\213\21\t\v\217\263o\3473<\364z\211\227"
#"\21\217\216/\234\347\317\17\32\307\256D"
#"\214\313\34\237~\214w<\37q\277\215\273s\353\314\36^>y\206+\301pK"
#"\333!\246p\352Lq\350\241}\274\364"
#"\314U\346\351\201\301\325o\\d\367\356"
#"}\374\317\371\5\214\210\361\6?\372\1"
#"\34\373\325\373\301\301\242a@A\4\263,\322\205\20Bl'$\252\205\20\23L"
#"\240\264@\264\367\260k:\205\303\322\""
#"q\347\243\274\24\235\v\373\3\314O\361"
#"\230G\276r \311a\210\334s\350!"
#"\336\307\367\271\271\0\311\34\325K\321\324"
#"#\346%S\207\36`\317\215\37\260\200"
#"\23\375\0267\177\370~\36z\350>^"
#"\372\203\27\270\345\1\26\236\343k\3379"
#"\306\207\367\2236\20<\213\350\0\4\34"
#"Y\256\204\20b\273!Q-\204\230\\"
#"\34\212\235\217\362\333\277q\221\203!M"
#"z\324;\372\307\4\n\260\230\254\31\323"
#"\273\330\25\201\27\37\246g\1\353\25\24"
#"\273N\361\35\0343pO\336\351$\267\3XA9\365\21>\276\373I\276y\305"
#"\t\v\337\342k\376q\16\235\3700G_\236\347\2469o<\377,7\336\377"
#"N\336\321\360][tJ\222\257;D\203\274]!\204\20\333\3\211j!\304\344"
) 500
(
#"b\21<\360\313Of\333\207_\341\370\223\a1+0;\316UJ\234\313<R"
#"\364\260\203\257qf\301)\373\221\370\372"
#"\343\354!\340\36\271\365\370/af\4"
#"3\336\32\214\367\237\177\3\343m\354|"
#"\217\361\3447\376\4\277\365#\256\375\354"
#"4\323\266\213w\356\371\22\337\270r\213"
#"\313\317\336`\337\203\207\270\307s\bv"
#"\203\340\24\3211\214\30\34\254\330\334c"
#"#\204\20bU\250\245\236\20bbI\2157J\202\247\314\264{\300,\22\271\312"
#"\243\341\20\376\202s\201OQ\374\316\317"
#"\262p\3553\334c\271p\361\352Qz\a~\304\231\371k\234\230\312m'\261\234"
#"\256v<8v\345Q\354w\357\343\374"
#"\273\36\343\225\a\376/\27\366\367Xx"
#"\374\3L\377\350>\36\276\360#\336="
#"\377\355\372\275\321\214\302a\321\365\21Q"
#"\316C\b!\266\27\212\332B\210\211\305\200p\371\323X8\312U,e\256\t\204"
#"\205\327x\305\367r\3374@ \276\364"
#"_x\356\215\344w\266\205/\262\357\300"
#"\177&\232\343\225\b6\303\263\225\203`\30\1\16<\300\261\e'9yq7\367"
#"\355\352\0010\265\353\235\330\205\213<\271"
#"\357\343\34\234\212@\304\314(\0\254\217"
#"\0032}\b!\304\366D\242Z\b1\2618\21\16<\201_\201\17Z \204\324"
#"R\317\246\237\345\301\234\205f\377E\236"
#"?\3722\247\246\222\347\332v}\215\177q\363y\216q\203W\26H\335;\0\263"
#"\"\367\232.\2630\336\317\3\2372\330"
#"\373Q\16\335\v\30\364\367\177\204\337\0"
#"\366}\364 S\271(q\221^\356\0\2\n\315B\b\261\375\220\375C\b!2"
#"\21'`\251p\260\236\200%\324\263\212"
#"\326\377\346\265\315\3N\211Y\1^\342V`\325VR\365a\262\213@\372\235j"
#"\235\364~\211g!\204\30\37\24\321\205\20\23\313\342,"
#"\206\251/t\3103\263X\265,\vj\252YE-\365\370"
) 416
(
#"\260\306:IP\203\347\302\302$\250o\347I^\2\26\275\26\350IPW\2635"
#"*\374\n!\3048\241\250.\204\230X"
#"\214\230|\321n\371\347\330X\26\322t"
#"\343f\265(Nu\210\1\254\17\204\244"
#"\261\275\314\23\300\244\331\20\r\300v\244"
#"\337\241\26\344\236\273OG\357-\235\252"
#"\\\b!\304\266G\366\17!\304D\323\264z\324V\r\200\1\eG\372\35\17\215"
#"\16\35\203\332\330\274\314m\360*\23I"
#"*D\204^\372\f\a\334!\370\222\355\b!\204\330\376(S-\204\230`\262\360"
#"\365\305Ph\265Rn\372\242\223\340\216yYIL6\21/\27\275\327\rA\235"
#"\346G\214\340\251\353\a\356\351\265\340@"
#"\310\31\361\305\254\270\20B\210\355\2172"
#"\325B\210\211\245\331\32\272\312&;\216\231\3439\233l\0\336\a/ Xwf"
#"\333o\203\355\310\342\273Q\354\350\20\255"
#"$P\340\271\2601\275\1T\250(\204\20\343\205D\265\20br\0\302\n\350\0"
#"\0\0\207IDATq\262\37:e\253+ot\364,w\255i\345X\24\300"
#"\21OE\215\326\334FZ\222\226\366\362"
#"\346\263\300\3662u\n\t\326\230\337\305"
#"!\310\3\"\204\20\343\202D\265\20B\b!\204\20kDc\217B\b!\204\20"
#"B\254\21\211j!\204\20B\b!\326\210D\265\20B\b!\204\20kD\242Z"
#"\b!\204\20B\2105\"Q-\204\20B\b!\304\32\221\250\26B\b!\204\20"
#"b\215HT\v!\204\20B\b\261F\376?p \276"
#"\243\"\303q\e\0\0\0\0IEND\256B`\202"
) 0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 39 #";CONVERSIONS (PERCENTAGE > MILLIMETERS)"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 46 #";seat-area-\316\224width-taper (max = 100% = sa-w/2)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"sa-\316\224wt-mm"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 7 #"sa-\316\224wt"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 55 #";seat-area-radius-front (max = 100% = sa-w/2 or sa-d/2)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 3 #" (("
0 0 14 3 2 #"<="
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 5 #"sa-rf"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 3 #")) "
0 0 17 3 31 #";currently, always sa-d <= sa-w"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" (("
0 0 14 3 1 #"<"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 5 #"sa-rf"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 67
(
#";seat-area-radius-rear (max = 100% = (sa-w/2 - sa-\316\224wt-mm) or "
#"sa-d)"
) 0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 3 #" (("
0 0 14 3 2 #"<="
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #") "
0 0 14 3 10 #"sa-\316\224wt-mm"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 5 #"sa-rr"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #") "
0 0 14 3 10 #"sa-\316\224wt-mm"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" (("
0 0 14 3 1 #"<"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #") "
0 0 14 3 10 #"sa-\316\224wt-mm"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 5 #"sa-rr"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 7 #";POINTS"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 22 #";new ucs (on point P1)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 11 #"origin-seat"
0 0 24 3 2 #" ("
0 0 14 3 16 #"loc-from-o-vx-vy"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 2 #" ("
0 0 14 3 2 #"vx"
0 0 24 3 1 #" "
0 0 21 3 1 #"1"
0 0 24 3 3 #") ("
0 0 14 3 3 #"p-p"
0 0 24 3 1 #" "
0 0 14 3 2 #"P2"
0 0 24 3 1 #" "
0 0 14 3 2 #"P1"
0 0 24 3 5 #"))) "
0 0 17 3 57 #";(xyz-on origin x-axis y-axis) ;norm-c: vector length = 1"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 11 #";mid-points"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"SMF"
0 0 24 3 1 #" "
0 0 14 3 11 #"origin-seat"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"SMB"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+y"
0 0 24 3 1 #" "
0 0 14 3 11 #"origin-seat"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 16 #";quadrant-points"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"SQF"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 3 #"SMF"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"SQB"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 3 #"SMB"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 14 3 10 #"sa-\316\224wt-mm"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 4 #"))) "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 14 #";center-points"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+y"
0 0 24 3 1 #" "
0 0 14 3 3 #"SQF"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+y"
0 0 24 3 1 #" "
0 0 14 3 3 #"SQB"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 15 #";tangent-points"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"STF"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 3 #") ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"STB"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 3 #") ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 28 #";reference-angles (half arc)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 6 #"sa-\316\262f"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"3pi"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 2 #")("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 4 #"))) "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 6 #"sa-\316\262r"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 2 #") "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 17 #";reference-points"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"SF"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 3 #") ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 2 #") "
0 0 14 3 6 #"sa-\316\262f"
0 0 24 3 5 #"))) "
0 0 17 3 19 #";associated with LF"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"SB"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 2 #") "
0 0 14 3 6 #"sa-\316\262r"
0 0 24 3 5 #"))) "
0 0 17 3 19 #";associated with LB"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 9 #";GEOMETRY"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 9 #"seat-area"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 1 #" "
0 0 14 3 2 #"sa"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 15 #"join-curves-new"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 6 #"append"
0 0 24 3 1 #" "
0 0 17 3 12 #";joins lists"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 4 #"list"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 3 #"SMF"
0 0 24 3 1 #" "
0 0 14 3 3 #"SQF"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 7 #"arc-new"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rf-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 21 3 1 #"3"
0 0 24 3 1 #" "
0 0 14 3 2 #"pi"
0 0 24 3 2 #") "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 6 #"sa-\316\262f"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 3 #"STF"
0 0 24 3 1 #" "
0 0 14 3 3 #"STB"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 7 #"arc-new"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 1 #" "
0 0 14 3 8 #"sa-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 4 #"pi/2"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCB"
0 0 24 3 1 #" "
0 0 14 3 3 #"SCF"
0 0 24 3 2 #") "
0 0 14 3 4 #"pi/2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 6 #"sa-\316\262r"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 3 #"SQB"
0 0 24 3 1 #" "
0 0 14 3 3 #"SMB"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 2 #"if"
0 0 24 3 1 #" "
0 0 14 3 2 #"sp"
0 0 24 3 2 #" ("
0 0 14 3 4 #"list"
0 0 24 3 2 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 3 #"SMB"
0 0 24 3 1 #" "
0 0 14 3 3 #"SMF"
0 0 24 3 3 #")) "
0 0 21 3 1 #"'"
0 0 24 3 5 #"())) "
0 0 17 3 43 #";if panel is #t, the curve has to be closed"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" )))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 29 #";---------BACK-AREA----------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 41 #";---------TEMPLATE-CHAIR-RANDOM----------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 28 #";CONDITIONS (TO BE A CHAIR):"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 26 #";(or (and lf lb) lf lb lc)"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 22 #";(when (or lf lb) lbs)"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 23 #";(when lc (or lbr lbp))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 3 #";sp"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 28 #";(or bp (and bu (or bc bt)))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 35 #";---------------LEGS---------------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 35 #";----------------------------------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 2 #"#;"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 2 177 4 1 #"\0"
2 -1.0 -1.0 0.0 0.0 0 83 500
(
#"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\3/\0\0\1\331\b"
#"\6\0\0\0\217y\4\35\0\0 \0IDATx\234\354\335\373\237lWy"
#"\337\371\317\263v\35\346\17H\234p\261"
#"1\350\34\204\271x^\363\262\261\356$"
#"?\314\274\214n\b\333\30\1\352n\305\261\243\v7]l\343\f\330I^3\216"
#"\311\4\203\220\4\6\t\234\274\6u\265"
#"\214\0046H\326\271\340\37\23]\260\301"
#"\3668\6\34\351\234\203\203\301\200\223\371"
#"\3&9\275\3273?\254\265\253w\357\263wUuwuu\355\252\357\e\216\272"
#"\273\256\273v\355\313z\366Z\317\263\314"
#"\335\35\21\21\21\21\21\221\5\27\216z\1DDDDDD\246\241\340EDD"
#"DDDzA\301\213\210\210\210\210\210"
#"\364\202\202\27\21\21\21\21\21\351\5\5/\"\"\"\"\"\322\v\n^DDD"
#"DD\244\27\24\274\210\210\210\210\210H/(x\21\21\21\21\21\221^P\360\""
#"\"\"\"\"\"\275\240\340ED\344\210"
#"\271{\353\357\"\"\"\262\233\271\316\224"
#"\"\"\"\"\"\322\3\352y\21\21Y\20\353\353\353G\275\b\"\"\"\vM\301"
#"\213\210\310\2\250\2\227\215\215\215#^"
#"\22\21\21\221\305\245\340ED\344\210\255"
#"\255\255\261\271\271\t\300#\217<\242\36"
#"\30\21\21\221\16\n^DD\216\320\332"
#"\332\32[[[\230\31\356\216\2311\34"
#"\16\25\300\210\210\210\264P\360\"\"2G\365\32)\e\e\elmm\215\3766"
#"\263\321\357\233\233\233\n`DDD\32\24\274\210\210\34\262*`\251zV \345"
#"\270TC\305\332\36\257\36\30\21\21\221"
#"\213)x\21\219D\365\236\226z\3402\34\16;\37[\357\201Q\0#\"\""
#"\262C\301\213\210\310!2\263Q>\vt\a.\0!\204\326I*\25"
#"\300\210\210\210$\n^DD\16Q\2757eR\217K}XY3\210Q"
) 500
(
#"\0#\"\"\242\340ED\344\3204s"
#"\\\252\300\245\31\230\324+\215\265\r\35"
#"\253(\200\21\21\221U\247\340ED\344"
#"\220t\5.\365 \245\36\254\324\203\235.\n`DDd\225)x\21\219D"
#"\315\241b\315^\226z\260\322\226\357\322"
#"F\1\214\210\210\254*\5/\"\"\207dcc\2435\307\245\253\227eR\257K"
#"\335p8dcc\243\363\376i\3!\21\231\215\256}\256\331\313*\"\ac\256"
#"\275IDd\256\272\206\207\215\253D6"
#"\213\327\27\221\331j\333\327\246\275MD\366G=/\"\"s2.\31\277\17\257"
#"/\"\273\265\r\373\34w\233\256\27\213"
#"\34\234\202\27\21\2219\251'\352\367\361"
#"\365E\244[\333E\203\346>\251 F"
#"\344\340\24\274\210\210\34\262\303n\274\250"
#"q$r\264b\214\273\376\256\347\243i\b\231\310l)x\21\219d]\245\221"
#"\373\362\372\"\322\315\335\t!\214\366\275"
#"\215\215\rb\214\27U\4l\226E\27"
#"\221\375Q\360\"\"r\210\232\301\304\254"
#"\203\212\303~}\21\31\257\276\357\255\257"
#"\257\263\271\271\211\231\261\271\271\271+\200"
#"\2314\t\255\210LG\301\213\210\310!\331\357<.\213\362\372\"2\35wo\235"
#"\323\251\36\300h\270\230\310l\f\216z"
#"\1DD\226\325A\346q\231\352\365\371s>\265q\37\317m\e\261p \342\f"
#"H\357\262\r@\311+\271\345\303\277\305"
#"\233_\2n`\324\307\346\353\372\225\310"
#"4\272&\226\255\214\233\323\251\232Tvsss_\257-\"\273\351\314%\"\322"
#"Sn%\245;\361X\36wo\226\2\227X\342\0260\37PP\342l\223\357\200"
#"\30\300\3:\374\213Lo\\p1\315\374L\343&\225U\340\"\2627\352y\21"
#"\21\351)\213?\301{\206[\274\27"
#"\300\1\213\270\e\330\377\313\37~\340\36\36\373\16\374\350"
#"\333\356\346\315/\35\340D\214\210\207\24\264\230\223\3\32\21"
) 500
(
#"\31\247\n,\352\225\374\252\337\273z\\"
#"\332^c8\34\262\266\266\306\326\326\326T\257-\"\355t\351MD\244\257B1"
#"\212?\334\266\201\200a|\355S\367\360"
#"\330w\n\212+\357\346Co\371\207\30`\321p\6\244\264\230\b\26;_VD"
#"\272'\235\254\377]\225H\236\224oV=gkk\213\365\365\365\316\312c*u"
#".2\231\202\27\21\221\236\362\b\214r"
#"XR`\342\177\376\t\356\177\266\304~"
#"\344\255\374\233\367\374$x \342\220\207"
#"\224\5\2139\340\321\341_d\234\266\222"
#"\306\365\300e}}\235\255\255\255=\365\226T=0\232\aFd\377t\366\22\21"
#"\351)\v\221Q\323\312\301\376\353\37\362"
#"\e\367=\213\305K\270\371\356\267\3602"
#"\300-\22\334(\r\210N:\354\353\320/2I=\210h\0061\365<\227\275\4"
#"\32\325c\253$\376\346\373U\217Q\317\213H7\235\301DDz+`\4\3220"
#"\260?\345\223\367\376\36\337\16\5o\274"
#"\367C\334\364bR\36\f\1l;\37\354k\303_\216bqEz\244+\17\245"
#"^9\254-\310\2306\360\320<0\"\373\243\340ED\244\267\252!c\377\215'"
#">p\37\317\204\1/\177\353\207\271\343"
#"\r98\261\234\230\317 \3350\352\251"
#"\211\312\325\27\231R=\250\250OBY"
#"\3357\356\361\223^W\363\300\210\354\235"
#"\202\27\21\221\236\252\232G\177\372\311_"
#"\345\367\377\246\200\253S\202>UR>"
#"\354$\346\e\244\236\232\364SD\366\246\252,6M\2001m\20R\315\3\323U"
#"FYD.\2463\230\210HO\231\a\374k\277\303G\237\215\304\342r\356\275\363"
#"'S\237\212\325\a\210U\3\306\242\206"
#"\212\211\354C\325#\3225\311\344,T"
#"\2759\312u\21\231L\301\213\210H"
#"_\375\340\t~\375\301\257\20\374\25\274\343\337\276\2337"
#"\270\217\372V\234\260\23\254\344D}\363\22\210Jx\21\331"
) 500
(
#"\203y\16\345\322\2601\221\3114I\245"
#"\210HO}\365K_\340o\242\341\341\333|\341W\327x\314r\362~4<\24"
#"\24V\22\335\340\352_a\363\316\377\5"
#"\243HsY\252}$2\225\252\327\245\371\263o\357!\262L\324\363\"\"\322S"
#"\26\301\314\261x\201\310\200\322RC\310\v#\270&\241\249\250zb\376a\5"
#"\25\315\327V\340\"2\236z^DDz\352\r\357\371,\237}W\300B\256*"
#"Vo\3638x\225\373\22\323$\225x\211a\340\1\225\e\23\331\233\303\f*\24"
#"\260\210LO=/\"\"=\26B$\22qc\224\313R\302\356\244\375`@\304"
#"\255 \315\373r\4\v*\"\"2\3\n^DDz+\340\4\n\17\0301\5"
#"%^\35\330\253ac\351\347N*\277"
#"\210\354\325<\252\200\251\322\230\310t4"
#"lLD\244\307l\364\2370\272a\367\\.a\347q\"\262/\2075\254\313\1"
#"\3341\f\267?\347Sk\37\343?\26\27(\342\213H\27\36\2\346\21\267H\304"
#"8\306+\370\371\17\377\26o~\351\241,\216H/\250\347EDDDd\356b"
#"\312C\e\5F\333\30\20|\200y$\365\247\226\304\0\346\3\2\5\3338ep"
#"U;\227\225\246\236\27\21\21\21\221\271"
#"\333\31\312\351\6\2017\360\256\255M\356"
#"\360\224\246\26)\t^\200}\217'?"
#"\360\277\363\371\357:/\377\371\367\3613"
#"\377\320R\227\215\272SeE\251\347EDDDd\336r\0\222zQ\322\0201"
#"\342N\316Z\240\300-\362\377\374\316?"
#"\347\361\357l\343W\274\217\17\335\364\222"
#"\224\305\246\300EV\230\202\27\21\21\21"
#"\2219\363T\307\34#\246X\304\201\20"
#"\301\235\324<\213\330\327\36\342\303\317\2"
#"?\372v\376\355{.\333y\236\246q\222\25\246\340EDDDd\316"
#"Rq\300\0\371_*w\236\177\2|\377\24\277~\377\323\24\341\207\271"
) 500
(
#"\371\335o\341eD\260H\1xP\364"
#"\"\253K\301\213\210\210\210\310\274y\356"
#"q!\3420\32\16\226\22\370\277\306'"
#"\336\377\30\337\241\340\212{~\213\233^"
#"F\232\\\326\3N\304\324|\223\25\246\255_DDDd\316\334\322\320\260*q"
#"\277p\200m\360\357\361\344\257?\300\37"
#"\273\363\303o\3730\357\376Ir~L"
#"\244\2644\314L\345\306d\225\251\332\230"
#"\210\210\210\310\234U\3631\225@A$"
#"\25@\36\360\347\237\372\347<\376m\247\274\372\36>t\323Kj\17\16\3711A"
#"\t\373\262\322\324\363\"\"\"\"2gU\225\261\0\304\0300+\260?\375$\37"
#"}\316\201kx\377\273\337\260;H\211\316\300-Ol\251\234\27Y]\352y\21"
#"\21\21\21\2313\313%\303\214\b!\300"
#"\367\237\340\203\37{\226\300+\270\371\267"
#"\357\340'\0\34\334\"\216\341\301(\210\20\203.=\313JS\360\"\"\"\"2"
#"gN\0\a\263\24\304\374\331\27\277\300"
#"\337\0\360_\370\334\257\255\361\30\307\300"
#"/@4\302\240\240,\35\263\22\277\352W\31\276\373'4rLV\226bw\21"
#"\21\21\22193\300r.K\4\202o\23(\322}>H\201\v\1/\214\355x"
#"\0013OC\313|\373\350\26Zd\1\250\347EDDDd\356r\336J\f\24"
#"\1~\374=\277\307#\357\6,\342\271\2\231\223\207\225yJ\322w\300|t\207"
#"\310JR\317\213\210\210\210\310\334\245y[RK,R8i\202\312h\230W\325"
#"\221\35\242\345@%\315\v\343\6\321T+YV\227\202\27\21\21\21\221\243`U"
#"\325\260Z\371\343\220\202\225\224\310oy"
#"lY\304\363\374.\346\325\3140\"\253I\303\306DDDD\216\304\356k\310\326"
#"v_\316\2131\315\357\"\2\250\347EDDDDDzB\301\213\210"
#"\210\210\210\210\364\202\202\27\21\21\21\21\21\351\5\5/\"\"\"\"\""
) 500
(
#"\322\v\n^DDDDD\244\27\24\274\210\210\210\210\210H/(x\21\21\21"
#"\21\21\221^P\360\"\"\"\"\"\"\275\240\340EDDDDDzA\301\213"
#"\210\210\210\210\210\364\202\202\27\21\21\21"
#"\21\21\351\5\5/\"\"\"\"\"\322\v\n^DDDDD\244\27\24\274\210"
#"\210\210\210\210H/(x\21\21\21\21\21\221^P\360\"\"\"\"\"\"\275\240"
#"\340EDDDDDzA\301\213\210"
#"\210\210\210\210\364\202\202\27\21\21\21\21"
#"\21\351\5\5/\"\"\"\"\"\322\v\n^DDDDD\244\27\24\274\210\210"
#"\210\210\210H/(x\21\21\21\21\21\221^P\360\"\"\"\"\"\"\275\240\340"
#"EDDd\216\334\375\250\27A\16\231\231\35\365\"\310\34i\237\236/\5/\""
#"\"\"\207\244\336\250\251~W\303v\371"
#"4\e\257j\314\256\226j\237\326\367>\37\n^z\240mg\320\16\"\"\262\370"
#"\352\201J\375w\35\303\227\213\2R\1"
#"m\a\363\242\340e\301\271{\353\316\240"
#"\35DD\244\37\332\256\312\353\30\276\34"
#"\252\357V\301\250\310\374(xYpm]\221:H\212\210\364G3P13\35"
#"\307\227H3\30\325w\273z\334]\337\373\34\r\216z\1d:f\306\372\372:"
#"\356\316\326\326\326Q/\216\210\210L\311"
#"\335)\212B\215\233%S\5\241\365`"
#"\264\376\273\316\325\313\257\276\r\304\30\217"
#"zqV\206\202\227\5\267\276\276>\372}8\34\22B\320\1QD\244'\352\215"
#"[\5/\253c}}\235\341px\324\213!s\322\354y\323\260\320\303\245\340e"
#"\00147\364f\300R\177\\\214QC\16DDzB\215\30\221\325\242}\376\360"
#")x\231\203qQxu\337\372\372\372((\31\16\207\255ch\265C\210\210\210"
#"\210\310*S\3602\a]AG\25\260\304\30\331"
#"\332\332\3325\274\240\355g\223\2\32\21\21\21\21"
) 500
(
#"Y%\n^\16\301\270^\223\346\220\260"
#"\372}\365\237\315\333\353\177k\350\230\210"
#"\210\210\210\254\"\5/3\320\fV\352"
#"\345\215\315\214\215\215\215\321}U\16K"
#"s\246\345\256\327\230t\237\210\210\210\210"
#"\310\252P\360r@]C\274\326\326\326"
#"\b!\214rX\232\332\352\376w\351\232\244R\303\306DDDDd\225(x9"
#"\240z\20QO\272\257\347\260\2649H"
#"\340\241\252c\"\"\"\"\262\212\24\274"
#"\34\320\270\262\306{\355M\231V3GFDDDDd\25(x\231\302\264\363"
#"\260\324\315*\260h\v\202\2323\372\256"
#"4\a7\300K\260\2\3\210@\330\365\313\350q\346\0\27p;\226\36\233Wa"
#"4'\340\340\1,=\317\211X\365|\21\21\21\219rK\37\274LSvx"
#"\26\363\260\34\226q\371.\2X\n0\334\212\34sDbp\214\24\3108\21\363"
#"\200[\314\201\t\340\3070\"\21'X\1\244P\5\322\375N\0\367\24\270\250s"
#"KDDDda,}\3602\251\fq\375\276\246i\347a\231\227q\363\300\254"
#"\254\34\230\230\203\207\b\f0r\214BH=-\6\26\r\0171\335\226\3\24\3"
#"J x\231\326#`\243\336\26\313\2751\212^DDDD\26\305\322\a/m"
#"\306\365\274\354g\36\226y\350\232\367e"
#"\345\253\216\31TC\303\2546D\fw,X\356I\211X\b\230\347u\224\207\205"
#"\31P\260\215\333\0<\246\340\305r\31ks\r\31\23\21\21\21Y0+\25\274"
#"t5\362\17:\17\313ak\366\260TAKs\271V1\210\311\35+`\271W"
#"%:\230\341\3010/\201\"=\312\"\321,\207,U.L\352\251q\257\5>"
#"U\317\214G\314\266Y\261]DDDDd\241\255T\313\254\336\310o\vX\332"
#"\36\333\365\367<\215\313\325i\e\302\266JA\214"
#"\221\2\214\210\21\34\b\226s\360#P\244\300$"
) 500
(
#"\24D\312\224\e\343\0166\250\r\6\213\4K\201K\250\0055f\305N`$\""
#"\"\"\"\va\351\203\227f\343~cc\243s\342\310\266\347-\212\256\304\375i"
#"\37\273\264|\0\226\6\201y\32%\226\3\216\224\202oa\e'\20H\211\371\243"
#"$\30\310\3712;/e\371o#\244d\376\352\5EDDDd!,\375\240"
#"\376f\257\304\346\346\346TI\356}\f\0V1q\337-\345\252p\356~\256\261"
#";8\343)\307%\342\230\1\347>\31156\240\260\200Y\221\377\31\267\235\68"
#"\307\203W\a\202\31E\bX0\212|\177q\325\203\234\357\337& \"\"\"\262"
#"\324\226>x\201\335\201\31026\360\353"
#"\311\373\315\333\27I5\314m?\317\353"
#"\374\333sE\261\24\256\244\200\205\220zM\252\207\330/q2F\334K\242;~"
#"\366\243|\363\372kx\360\374q\356~"
#"&\342\356\304\27\356\343*n\347)/\323r>{7\307\367\365)EDDD"
#"\344\260\254D\360RW\225>^\266\22"
#"\303\315\317\263h\303\336\334\235\242(\366"
#"\265L]\305\n\322\r\244d}/\b\26q<\345\301XJ\346\217\0261/r"
#"\22~\36\5v\342F\336zM\3345dLDDDD\26\337J\5/U\3"
#"xkkk4\207\313\262h\6b\213\366\331\352AcS[\20\331\26\210\325\203"
#"\230\352g\314\377\265\20(\t)\367\205A*0\346\244$~\234m\217\251D\262"
#"\3\347\316\360\305\362\355\274\371\370b\255"
#"#\21\21\21\21\31o\245\202\227e\256"
#"\306\25c\244(\212\243^\214\261\352\325"
#"\321\352&\25#h\6.\365\373\v\377"
#"\37)X\211\316\300\313\334\273\222\3\225"
#"\364H\"\377\216\e\3031\202\25\34\v\206]z7\317\232\261MDDDDD"
#"\372c\245\202\227\312\262\r\31\203\305\377L\343J"
#"9W\301I\363_\375\261\335\237\355Ei\346\226"
) 500
(
#"\20)C\201\233\343\204\\I,\2%\201_\342L,\2111r\301K<>\317"
#"G\375n\356;\263\222\233\277\210\210\210"
#"Ho\255d\353\255*\225\274\276\276~\324\213r(\26-\210i\v@b\214\204"
#"\20F\267\267\37533B\b\304\30w\275\326.9\6\n\16E,\251\22Y\334"
#"b.y<\300q\242\345\241k\36\200Ky\315\217C\271X\253IDDDD"
#"&X\271\340e\362\225\374~\2527\370"
#"\27mH\\\265<\315\304\373I\303\367"
#"\252\307\204\20v\335\266[\304\363\360\257"
#"\322\300\254\0321\26\300\323\304\223\206\245"
#"\212d\16f\221\310I\276\370\351\313y\375\211\31~H\21\21\21\219t+\27"
#"\274L\323h\356\223z0\320\a\315@"
#"\246+\211\277J\360\237,`\236\206\211\5~\227k\255 \f\2!\30\241\b\330"
#"/|\1\370\f\327\25\226n\263c\24\341&8\371\25\356~\325l?\233\210\210"
#"\210\210\34\256\301Q/\300Q\250\32\313"
#"\325\320\261\341p\b\3643\221\277ky"
#"\373\364Y\232\275a\315\300ebo\231"
#"\1\257\272\213\247\343]\373_\210\23\367"
#"\360\314ru\306\211\210\210\210,\235\225\f^\352\332*X\365M[2|\337\206"
#"\3055?\203\210\210\210\210H\323\312\r"
#"\ek\352k\300RW\377\f\213\334\360\37\267lUnKW\340\325\307\200LD"
#"DDDfk\345\203\227j\350\330\2624\214\0275\30\233\324\263\22B`{{"
#"\373\242\4\375i\237/\"\"\"\"\313"
#"o\345\203\227J\263\321\337\227\6r\327"
#"\354\364\213\326S1n\202\320z\21\205"
#"*\327\2459\17L\365Y\24\304\210\210"
#"\210\210\254.\5/\r}\254\336\325\325"
#"\210_\244\317\320\\\257\365\262\316\343\2"
#"\260\256\333\372T\220@DDDDfC\301\v\355I\373}\272\252\337\207"
#"\234\227f\357\311\270\307U\306\365 )p\21\21\21\21Y=+\37\274\270"
) 500
(
#";[[[\254\257\257\357\272}\321\206]MkQ\227\273\36\2104{\\\232\23"
#"k6\37S\237\eFDDDDV\327\312\227J\2364\303{\37\325\e\375\365"
#"@f\21\206Z5\3\227q\245\252\233"
#"y.\213\30\224\211\210\210\210\310\374\254"
#"|\317K\233>6\222\247Y\346\243\n\\\232\275.\315\t(\353\277\307\30;s"
#"`B\b\275\374nDDDDd6\24\274dU\311d\350g\217K=Wg"
#"\321\32\370U\340R\24\305E\313\326Uy\254\255\267%\306HQ\24sYf\21"
#"\21\21\21Y<\n^j\246M*_T\365\\\221\252\a\243m\316\224\243`f"
#"\224e\3319t\255\255\24r\365\274f\0\323\307\357FDDDD\16n1Z"
#"\266\v\"\306\330\231/\322\a\365F\177"
#"\25\2644\207e\265\375>\17\365\300j\234\266\373\333zgDDDDd\365("
#"x\251\251\252\216-ku\253f\205\257y\277w\227\375L<\331\267\300RDD"
#"DD\16N\301K\3032\4,\343*\214\315\373\363u\5\31\323L\2549.\250"
#"Y\206\357IDDDD\366F\301K\326\347\\\227\246Ej\330w-\313\270\274"
#"\226\246E(\361,\"\"\"\"GO\301KV5\216\353U\307d~\246\235o"
#"g\31\202K\21\21\21\21\331\37\5/\r\313x\225\277\257\5\b\340\342e_\266"
#"\357FDDDD\246\247\340\205\213gy\357c#\177\32}n\370\367y\331E"
#"DDDd6\24\274pq\303x\231\207\216-k`&\"\"\"\"\313O\301"
#"K\315\2626\354\3533\326\367\261\a\243"
#"9\224oY\277'\21\21\21\21\31O\301K\266\214\271.\225\256\317\325\247 @"
#"y/\"\"\"\"\242\340%k6\210777Y[[;\242\245\231\217\276\4"
#"\1\365\236\243>\5\\\"\"\"\"2[\n^:\364u\210\3258\373\231\311~\21T"
) 500
(
#"A\3132~'\"\"\"\"2\275\225\17^\3065\342\227\271\241\274\f\237m\332"
#"\0\314\1'\356\374\321\270\17\337\371Y"
#"\377\347\304\324\353\3@\4\207H9z"
#"\242\217^c;\377l\274\207\223\37\35"
#"\363\277\335o\277\363\336q\327\337\260\215"
#"\223\337\253\366\367\305\257\21\301\313\213?"
#"p\364\321cEDDD\226\311\312\a/\343\206\"mnn.E\325\261\352\363"
#"-K^\317\336r_\2661\a\213\351"
#"\261e\365\224\374\225\333\350\253\217\270E"
#"\334\300I\1\213yH\275=\321\211\36\300\"\201\"\5\e\306(p0\6\340`"
#"\265\335)\342\270A\341\340\36H\273Z"
#"\314\357\233\202\31\3\2608\272\317H\357"
#"\215\0170\322{a\340\f\362\22\205\374\2361/~\0\n.\nj\314pB3"
#"N\23\21\21\21\351\275\225\17^\200\251\206R\365i\230US}\330U_\355\273"
#"bZ,p\3\202\343DB\16\34\252\376\0247\300R,\222\376\270\200a\230\221"
#"\3\v\360`X\0162<\307-\0\330N\340@m\221\334\300\360\24\30\31\351\265"
#"\362\343\322\303\2%!oS\1\313\301H\304\301\34\37\0054;B\212b(\255"
#"\300\242\215\336\316\r\360\200{\211\21\211"
#"8\245\245\240\314\324\373\"\"\"\"KF\301K6\251q\337\347\206?\354\0040"
#"1FB\350\337\327\276\357\365\37R\317"
#"\t\200\235\375\4o\274\343\f\247\357x7\247w\275^\204\252\227\205c9 \0"
#"'P\365\334\234{\340A\276\354%\26R\240\341^\346^\233\220zbFC\317"
#"\322P.\363\220^\a\200m\266\t\340"
#"\2517\306=\275\362\267\316\234\346\34\247"
#"x\360\376\363|\371\366\1\203P\20\354"
#"N\36\370\370?\342\266\323\351\231\347\356"
#"\177\2203\276\r\16\247\357\277\237O"
#"\334\371\317\370\243P\r\v\313\303\306,\257\37\17\204h"
#"\24\220\2/\357\337\367,\"\"\"2\316\312\267n\332"
) 500
(
#"\206 \325{Y\206\303\341\322T\35\353"
#"c\262~\323^+\216\225\304\3210\252\377|\252\344_<t=\346\237\341\0063"
#"\302\225\37\347\301;\r\v\307\260k\36"
#"\340\5\0\207/\337a\204\"P\330\325<xn\200[L=\37V\200\aN\335"
#"1\240(\216a\357:\315\231\333\215`"
#"\307\2607~\224\263\0\4\316\274k\200"
#"\5#\2047\362\300y\300\a\f\200\323"
#"\357z\21\205\31\3055\37\347\257\201\347"
#"\237\370\22\317\237~\1\336\374*\256\375"
#"t$\226\377\231\373o\177\r7\276\367\21~\374\354\31\360\230{q\6i\310Z"
#"\b\224\376\357y\223\25\3305\17p\316"
#"\3)T\331\346\364\235\307\260\302\260\301\325<pn;\rs\23\21\21\21Y2"
#"+\337\302i6\350\333z`\372\336\353\2\355\1K\37\203\230\262,\367\324sT"
#"=\322\200o\3731\216[\204\327}\214\263\356<\377\316\257\363W~\25p\5W"
#"\372c\374\322U\5v\315\ay\232\217q6F\236?\365\e\\{\2\276\365\300"
#"\ey\325=\367pm\270\235/\e\334"
#"\360\376\373\270\332\235+_\363jN\274"
#"\376*\340r\256\344\17\370\247\327\4\302"
#"\325\357\342\213\334\307\363^r\376\251\17"
#"r\303\361s<p\215Q\\\375 /\374\330\203\351}\337\376\227<q\3261+"
#"8\313\245\334\370\312\222\310_s\377\e"
#"\177\21\177\377\335\234 R~\363\34'"
#"\37\274\232K\357\271\233\353\302\355\234\301"
#"\361h\f^\3631\316F\347\205\233\277"
#"\311\251\363\347\271\357\215\3\302\325\357\345"
#"\t\277\217\263\245s\356\251\337\340\206\23"
#"\203\364\271\373\277\331\212\210\210\210\354\262"
#"\362\301K\245\nP\332z'\232\301K\237\32\375]=K}*;\334\\\337{"
#"Yn\253\236\353\360\212\260\315Y\2\366\215\273yU0~\354\261\327\361Z"
#"\377\n\360,\177\374\334\353\371\300\263%"
#"\376\314\207\370\305\327\375\1'\202\361\352"
) 500
(
#"\353\177\223\323g\341\370\335\377\221\350N"
#"\214\237\346\177\3059\375\221{y\16\370"
#"\3127\237\347\334\327\237\303\354+|\345"
#"\231\327\362/\376c$>\373;\274\3775\277\317\217Y\301\361\e~\223\223g/"
#"\341\256g\234\362\231\273x\365_\275\227"
#"\17\237>\307\251\257\277\236\e_eX"
#"\374\v\276\360B\340\225\26\370\362\235'"
#"\270\367\231\347\370\345W\335\311)sx"
#"\315\tn\270\373\31\334K\334?\315\265"
#"\24`\221\355\277\272\227K\v\343\325\237"
#"{=\327\2378\316\275Oo\23\237y\210_y\355c\374X0N\334\370\177r"
#"\372,yxZK%2\21\21\21\221\0363\357SK\374\2205{]\252\277\327"
#"\327\327\31\16\207G\270d\a\323\325\233"
#"\324\207\257~\26\313\356\236\223\346\317\335"
#"\307\225\37y-\317=tm\355\336\235j_U\5/\367t\213CN\324'\345"
#"\217\344<\222\b\4Ke\220\213\374\314"
#"\200\215^+U*\253\22\367\253\205\200"
#"\247\336};O\305\277\344\265\357\177\216"
#"\367\35/1+\362\347\363]\313\360\255"
#"\373\357\344\324M\17\361\276KBN\322"
#"\207\202H\304\bU\"\215\345w\315E\1\250\2267\377\3429i_\275/\375\322"
#"\367c\215t\353\3131WfC\373\362j\321\376=_\n^\246\324\347\3Q}"
#"v\372z\17\323\244\257~\221+\224\35"
#"\326\201\342\342\0\266\4+\32\201\300\305"
#"\201\303\254\337\367\260-\362w\273\312\372"
#"|\234\221\361\324\270Y-\332\227W\213"
#"\366\357\371\322\260\261\25\320V*\271\253"
#"\361:n\270\334Q\251/\323\244\2\v\a9x\264\256\23+\322\374+F\232\374"
#"\321!z\310s\264\354\373\255v\275'"
#"\264\257\353Y\225\356\236\264\376DDDD\372bp\324\v\320'}\275Z]_"
#"\356q\237aQ?_=\370\232\224\223\264\3379m\352%"
#"\244\353\23\223\232C\f\360\271\255!\357\274\345\237\340\0261"
) 500
(
#"\207\20Kb8\306,g\262o^\245;H\351\356f/[\3636\21\21\21\221"
#">R\3602A\325\340\e\16\207lll\260\271\271y\324\213\264'\365!c\320"
#"\335\350\235\266g\346\250L\23\224\354w"
#"\231\327\327\327w\255\243*\210\30\275\236"
#"\303\326&\270\177\266\366\3721\347\274\34"
#"\254\363\262\276\314\365\240\251~\237\273\23"
#"B\232\324r8\34\216\3555\e\27\260"
#"(\210\21\21\21\221\276S\3602A\275"
#"\321<\256\234\362\242\0327d\254-\27"
#"\246\36\344,\332\347\354\372\f\315\373\353"
#"\237eccc\342\353v\215K\336\365~\371og\ec\200\273Q\314`\335\324"
#"\337\243\36\230\214+\36af\304\30G"
#"Au\375\265\232\317k\6,\213\366\235"
#"\212\210\210\210\354\205\202\227)t5\364"
#"\373b\332\36\225i\207\227-\242\372\367S\17X\366\2320y\361\347\216DBm"
#"\276\230\1D\2600\233u\323\26l\214"
#"\233k\250\371y\326\327\327w=\276\355"
#"\363\266\365\276\210\210\210\210\364\221\202\227"
#")\231\31\233\233\233\243\n\"}k\334"
#"\303\344\200\244/\201Ks\371\252\341V"
#"U\303\377 \25^.\352\251 \20\f"
#"\210e\252\217L\310e.\266\231\305\356"
#"\323\266\236\333\346\25\352\372>\332\202\231"
#"\372s\206\303\341B\177\227\"\"\"\""
#"{\241\340e\n\343\256\204/\272IW"
#"\335\273\206\304-Z\0\323V\346\331\335"
#"w\345\211\314*\37i\327{U\345\220CAI\244\30=j\300\f+%_\364"
#"\276u{\371\36\306\0053[[[\a[@\21\21\21\221#\246\340e\nm\25"
#"\256\26\255q\337e\257\313\270\250\237\251"
#"+x\254z\304\16\355\275j\2776\223"
#"\363g\275\246\16c\335\327\203\231\265\265"
#"\265\321{lnn\316\347\273\316\23fBL%\247\363t\236\225m\234\2\333\231"
#"\\\2234y\347\256\271t\200\374d\234"
#"4\343\250\261\2153\320\34\234\"\"\"+"
) 500
(
#"F\363\274L\241\236\304>\34\16/\252"
#"N\265\214\372\362\371\252\357C&\333\332"
#"\332\32\0053\267\336z\353\334\336\267\4"
#"\314\3\20\240\261M\r\242\201\2278\200\201Y\221~\217\1\313e\250KK?\35"
#"\307F\321\314`t\277\210\210\210\254\16"
#"\5/Sh\253j\325\227\236\227I\252"
#"\341Wm\223>\366\341\363\265U\35\223"
#"\361\206\303\341(\177\353\320YdP\e_\227\266\251\b1\0055\4rOK\265"
#"\335\345\200$TwB\341\251L\264a"
#"i\250\236\307\324\v\343\213\277}\212\210\210\310l)x\231R_K%Or\320"
#"\34\213E\320\26|)\230\331\255\276\355"
#"\316W\30\r\371\312]*@\300\315k\371C\244^\224\\ !\22\211\344\345M"
#"\v\215Y\231_'\200\345\303V\317\266S\21\21\2198\5/{P/G\273"
#"lC\225\332\362z\372bkk\213\215\215\215]=F}\v\300\16[\263h\303"
#"\332\332\332\201\252\262M+\222\206\204m"
#"\333\5\334vb\230j\362\317\324\203\342\271G\5,:\205\207Qf\2149\20\34"
#"|\220\206\237Y\244\252\224`\0325&"
#"\"\"\262r\24\274\354Q\37\e\367\323"
#"\2101\22B\350\345\20\254\266\241o\325\355\322n^\301\235Q`D\6~,\5"
#"'\276\223\204\357\6\321\312\24l\346C"
#"Q\31\234h%8\224l\247\307\21\300\"\205Wi\377\271G&(z\21\21\21"
#"Y5\n^\366h\331\257\350\3675\207"
#"\244m\231\227\375\273\232Vs\275\314\253"
#"\327\5\300\316\177\234+\355N\316\244n"
#"\25\260\210[\204\263\367se0\0066\300\254H\1L0\376\321\3\347\b^\340"
#"8\5\177\304\355\341j>~.-\177\264\224\367\202\345\274\177\327\341KDDd"
#"\325\350\354?\245f\3p\31\207\216\365y&\366\341p\310\306\306\306Q"
#"/\306Bj\6v!\314o\267\217\236\212#\247d\373\\q\214\0\f("
) 500
(
#"\374v\236r'\306\222\350%\356%O\337}\351\3162\237\371\22\334\361z\36;"
#"y\36\b\4\267\\a,\22,\242|}\21\21\221\325\243\340eJ]\23<."
#"\203e\370\34\3159xd\267f\301\211y\tl\347pc'o\337\274Ly,"
#"\244\37\226\37\t)\307\305\r\334\317\362"
#"\211\337\374:\257\375\325\267\360\272\317\237"
#"\342[\214\36H\25\0\35E\354\242mK\26\215\216}G\257m\275\367\355\2\240"
#"\34\234\366\277\371Q\360\262G\313\\q"
#"\254\357\237\251\257\275F\363bf\254\257"
#"\2573\34\16\347v\220\215\26\b6\310"
#"E\216SU1\267\2\217\333\230\5\260\355QPR\345\266\30`\347O\361\250\337"
#"\302\215'\256\347g^w\17\377\366\264\347I*C*\261<\252\\6_\332\266"
#"d\2214\207\371j\373<\32\313|qS\246S\25\n\322\367>\37\n^&\350"
#"\312\243\250OX9\315\363\26U_\226"
#"s\32\313\364Y\16\333\274\329\301\217"
#"\1\377\37\20\253,\373\24\234\330\213p"
#"\177\210\353\3021\314\n\6\26\bw\234"
#"J\1\214\303\271\247\36c\360\366\237\346"
#"\4\221\353\337r;\237~\342\313\371\25"
#"#\5\221yv\273\304\250\302\0\262\230"
#"\352s\216\351\370'2\177\315\21\r\272\2000\37\n^&\230fCl\2364\372"
#"\324\203\321\265\234}9\21\326\17\34\303"
#"\341\220\265\265\265#^\242\3052\356{\234\313wl1\317\335R\214j\e;\20"
#"\355\2fwp\272t\334\377;e\214"
#"\304\207\257\317\303\306\316\361\324\27\236\343"
#"\351{^\303\300\n\354\206\207\341\323O"
#"r\312\300\b\304\252\37gN\t\373!"
#"\204Q\0\323\227\375BVG\327\244\311"
#"\332V\347\243>\257\230\326\371\352\351K"
#"[o\331(x\231\201\346\34)}\2353\245^r\270/;d\363\312\343"
#"<\223\321\373\240~E\2669dl\36\337q\244\4\2\1'\35n\"\346\20"
) 500
(
#"b\300\335\211\346\300\0\247L\201\v\216"
#"\235?\315\27\342G8\353\27\270\340)"
#"\231\377\314m\17\361\304\311\364\232\1\307"
#")\347\332\373\22B\350\325E\tY\34"
#"\363\330\337\226a\262\341\276\252\17\27\322"
#":_M}k\353-\3\265\364\246\320"
#"\326\263R\251\206\216-\303\201\253\257\313"
#"_\37\312\247\203\310\305\352\337\353\274\207"
#"\230\204\b\3O5\302\34\210Uo\211A4\bn@\304\314R)d3\316?"
#"\3658\257\375\227\277\302%\244\371_\314"
#"\3o\372\271;\371\314\223'\323r{ x\301\274s^\232\353M\333\232L\243"
#"\257\27\263do\372z\376\224\203\353\323"
#"\5\337e\241\340e\n\315\215r\232\253\\}\rf\372z\202\255\226{\31KX"
#"\317B\325\3532\367+\204\241\340\2\17"
#"sC\b\204`\24\203\364\323\376\351\347"
#"\252\202cDr@\202\343~\236\223\217\277\216\307\313\225\276\0\0 \0IDA"
#"T\237\271\326sye\300\240|\323\215"
#"\334\366\231\337\342\343\347\r\257*\217\315"
#"i\330X}\237X\226\342\26\262<\372z\314\26Y&\332\17\347kp\324\v\260"
#"l\352\303\256\372\330\300\351k\2h\337"
#"\326\363Q8\222!\201\227\274\217\247\375"
#"}\24\220\252\205Y\304rR\376h\330\227\27x\316g\301\216s\3273\237L\303"
#"\307\334\322\204\226\36(\354\6\36\2167"
#"\244\207c\273_\353\2205\253\330\231\31"
#"eY\36\372\373\312\3629\314}\257\236"
#"\357\327\267\343w\227\255\255\255\243^\204"
#"\261&\255\347E_~\231\275>\266\373\372H\301\313\fTW\373\253+\333\25m"
#"\300G\257y \231\377\201%R\357\340t\"\26\3\36\252yO\322\375V5\346"
#"}\el\220\347C\331y\225\322HU"
#"\266H\345\202\2352\r\235\262\235\367I\323AnC,\300l\247\4qm\314"
#"}=0\335\317z\330s\243\310H\201"
#"K\376\335\b\27\277\306\316\242\216\346|"
) 500
(
#"\261\332\343\233\271-\273\356\333\243\372\347"
#"\356Jr\356\312\233\252\257\307\346kt"
#"\375\24\251;\354\200\242^\\\242z\277"
#"\276n\237\325p\354\276\252\332\4r\264"
#"\232\27\224\17\213\246j\230/\r\e;$}>\350\266Y\324\317\323\266\\[["
#"[\243\241c\315\3\326\374\17,!'\255\3\2449L8\377\t\336\30n\347\24"
#"\216y\300\35\260Hy\366\343\\\35\216afihU0\2540\3568\23s\317"
#"EJxwN\362\36\373\307<x\336\363\354)\251w\242j\370{\310C\253H"
#"\353gccct\22=\350\1v\277\215\236f\0\325v_\363\367\346c\232\217"
#"\333\3176Y_\366\20B^\327atr+\212b\364\332\365\177\365jc\365u"
#"\320\366\263\217=\227\262\34\306\225\366\257"
#"~j\373\224U\322v\316\323\266\337\177"
#"\n^\16I\37\243\357f\343\260\17\275HmW\316\273N\340GR\316\322\31%"
#"\227\273\247\231\341=8\21'M\335\350\4\3\367@(\266q\356\340L\351x\351"
#"\304\270\215\237}\220o\334\360\217\270\357"
#"\374v~\301\1v\372K\304\333\177\234\307N\236O=-U\357\204\347^\234\364"
#"\241S/\317\230`a\277\353!\306\270"
#"\247\22\333\223\256|\265\365b\264=\246"
#"9\31\337\264\333d\365\330\346\277z`R\375l^\265\256/W\365Z\223\326["
#"_\256l\313\362\231f\273\323\366)\313\246\353\274Si\366H*x\357?\5/"
#"3\322\347\35a\334U\361\276\351\352Yh\273Z>\237yN\300\rp\307,\365"
#"\233T=$\21\307\254Z\367`e\32HV\206\352\266\202\362\370u\334|\2713"
#"\260A.+\374->\361\233\317\363\232\367\277\231\327?~\206s\4R(\24\301"
#"\2e5\31\244\227XNh\357*8\261\337\306K[\343\247\352\275"
#"(\212b\24\34T\303\257\232\301\302^^\267\3551\223\226\255-H"
) 500
(
#"\251\2\224\372\277J\333\366?n{i"
#"\333\266\366\272\234\"\207\245m\250l\223"
#"\266OY\26\365\213^\315Q\26\3250"
#"\340\266\213R\332\a\372M\301\313\214\324"
#"\207*\365MW\17K\365{\333\216\277"
#"\210\352\3136\34\16\331\330\330\30\375\335"
#"v2\237\307\301\313\275\254\26\2004l"
#"\314\3602\345\263\304\234\247\222l\23-"
#"\317>\217\345@\5\212\27N\361x\361"
#"N\256{\345\5\34#\236\177\222\307\212"
#"\237\343\306\23\327\363\226\377\371}|\344"
#"t*%l\356\224D\212h\244\t\350S\22|sn\227\346:\230\3563\264_"
#"\325\252\367\250T\275\26\325\277*`h\3531\351z\375f>\3128\223zS\232"
#"A\3124\1Q[\300\322\374\254\365\333"
#"\216$\30\26\31cR\317\246\310\262\251"
#"_\364j\273\320\3246\242D\373B\377)x9\4\313\262cT\215\317j\202\276"
#"E\34j0.G\242\36t\325o\237\353g\260*]=\344\274\224\210\205\222@"
#"\4\212<1#\20\a\244\31\350?\303\365f\24E\316\307x\365\335<\353\208"
#"FA\344[\177\370\5\312\237\277\201\23"
#"\16\327\277\3456\36\376\322\251T\221\313"
#"\2124gJ\260\364V9\317f\326I\204\343z\351&\275W[\317K\327\220\254"
#"\372m\315\274\224\256 \345 \373\3354"
#"C\326\252\307\325o\37\227O\265,\307"
#"\1Y\\\343\206\310j\373\224U1\256"
#"\327\274\355\230\275h\355\30\331;\5/"
#"3\264\314\335\221]\r\270\243\326v\325"
#"\274y_\327\343\347\302\313\235\212\300\226"
#"*\205\341\201\30\214\"\222\253f\305\321"
#"\2368\260;8\35\235\270\35\211\356l\3739>\312\373\370\355/;f\5'?"
#"\377\f_\271\367\322\224\314\177\335g\340"
#"3Op\232Z\320\340\2512\231Sp"
#"\353\372;\330\334\334\274h\221\306\345\237\264\351\352\231\233\24"
#"\324\326\203\214z\340\321\365\332!\204\213\222\350\353\271(\373\t"
) 500
(
#"R\366\362\31\247\351\371i[\376i\37+2k\223\2\22m\237\262*\232\1\313"
#"\270\213Q\260X\355\30\331;\5/3\324\347\241c\225iv\350E<\351\265-"
#"\323\326\326\326\256\241c\315\307\317\343\340"
#"e\226g\202O\335+\371F\207hlW\2634\22\322\3602\17\\\3602\315y"
#"b\2069\230\37\347\265\257\3w\303_\3708\367<\a\337\332vbn\304\237\271"
#"\355\323<y\306\362\353'\5\221`\200"
#"\277\250ey\306\17\341\232\244\353Jn"
#"3\200\231\324hj\373W\226\345(8"
#"\251\a+\a\331\336\366\362\334\256 \255"
#"K\333\260\270:\235\34e\236\232\301w"
#"\375\242\201\266OYF]\333\3654\307"
#"\357El\307\310\364\24\274\34\320\262\235"
#"\0\332\256\344\365u\214\350\270\253\364\363"
#"\353:\216\224\271\32\230U\177{\36\2\225\346\226O\201\207\25Xp\n|g("
#"\231\1\234\344K\277{\5\257;\16\317\237~\224;N:\227\24F\312\240q~"
#"\372g\337\305\303_:\231\206\216\21\261"
#"`\214vk\333\336\265$mI\215\a\3215\4\2549\6\271Z\317\365\336\224\266"
#"\177\343z\312\352\357\267\210\333\342\244e"
#"\279lm\301w3\27\240\353\361\"}\324\265]\367\265\315\"\323\323$\225\a"
#"\324\326\270ZF}\35+z\220+3{y\217\356\327\v)\224\360\364\273\1\26"
#"J\314\37\346F\373L\256\22F\232\303"
#"\345\312+\270\332\236\345\272\360\273X\256"
#"\"\6\201_:]\362\276K\317\361\211_x=?\3634<\344N0#\272\303"
#"\2657`\327\335D\361i\3wJ\337&\204\300-\267\254\263\265\365{l\16\37"
#"\5.\36\302\265_\365@\244\312)j"
#"\346\272\254\257\257\263\266\266\266k\306\357"
#"\372z\332K\357d[\242\374\242\317Z\335\307\375DV\203\266MYV"
#"\332\266W\213\202\227\03123\206\303!\353\353\353lnn.\335\2164n"
) 500
(
#"\230\320\242z\364\321G1\263]\337\307"
#"\270<\231\375\30\367\32\3166\306 u"
#"\256\30\20\235p\374\36\376\203\337\225f\210wr\17K\n\4\242\a\314rP@"
#"\250\335}\202\367>\373i\252\32eq"
#"\264\354\3\334/\344\\\232\224?S\306"
#"\377\316\306\255\277H\364r\264l\365@"
#"\243\336\233\266\327u\321\314Q\251^\273"
#"z\275\20\2[[[\255\305\22\232%+\247\321\\\256*\360Y\224\355\257m}"
#".\302r\211T\352\373\247\266MYV\365\363\373^\3173\322?\03266#\315"
#"!-\313r\222\30\227\267\320\207\236\246"
#"\266\352X\263\376\216\332\206OUR\340"
#"\22I\225\217\267\361\220\17\260\265]/\r\35K\23X\6c4?\v\371y\251"
#"\323&\375n\4\2\305\316kTC\303<w\340\0200\216A,w\275G[\220"
#"2.\307\243+/\245\236\223\322|\275\242(F\311\365m\257W\345\261\354EW"
#"B\362\242\354_eYR\24\371\373X\220e\22\251S\340\"\253B\333\372\352P"
#"\3602#mW\365\227\301\270\203A_"
#"\16\20\315\357f\326\313\335\326P\37\211"
#"\200\ee\0\30`y\336\227\321\326a9\260\31=e;\345\307\344`\206\234\313"
#"\202\207\\\255\214\24\f\3311J\277\200"
#"\307\22\263c\243\336\32\200\365\365[\31"
#"n>z\321P\261\256\362\251\343\202\224"
#"\346?\350\256\354\326\fZ\332\366\205\203"
#"\6\275Uo\317\242\350K\20/\253k\334\305\25\221e\240m|\365,VK`"
#"Ilnnr\353\255\267\36\365b\314\\_\17\b\325P\276#\21r\3\2272"
#"'\341W\275&\251\2\231\347d~\37U$\e\2444~w\3109/x\325\255"
#"R\356\364\276\3306\216\343\4\312X\22"
#"B\201\343\243\30\310\202\341q\367\367U\24\5f\266\253$\361\270 \245"
#"K[2p\333s\252`\246\352\221i>\177?\26y\e\254/\333\"/"
) 500
(
#"\247\254\226j\377\2141.\\\360/2"
#"+\325\260d\365\274\254\6\35\311\16\301\254\253:-\212>\26'hk\220\317c"
#"\331\253\367\310\365\304\30\340X\254\275\267"
#"\347\nd\236{R\b\224\265\334\27\202\223\2\227\22\343\342aI\321!\344I."
#"\203A\214N(\2\267\336\262\306\326\326&f\5V\354\256\366U/?\274\237!"
#"\\m\352\201L\375\365b\214\243\341T\313~2i\346\16A\177z%e\371\325"
#"/2\224e\251\0F\226N\b\201\262,Uil\205(a\177F\332\222\240\227"
#"\245\1\323\34z\4\375\371l\207\225\244"
#"\337T\275\356\332\332\332h\362F\310\301\211\247\t&\335HAIL\275*n!"
#"\317\345R-kAi%\346\351\366\30\"\346\21\363\1\333!2\240H\337\205m"
#"s\313\332\306\2507)`\\0c\355\2265\312\364&\224\345\5\314r\0\304\370"
#"\357k\277\353d\232\355\241~\177[."
#"\3144\372\22\374\364a\31e\365\214\313"
#"m\23Y\26\332\316W\213\202\227\31i\6.\343\252\216\365\2451V\31\3270]"
#"\364\317\321\\\306\303Z\336z\220\324\234"
#"\325\276-\260\335\317k7\325\203\201\252\313\274+\267e?\257_i+W\\\5"
#"hm\357\325Vu\253\376\270\275\256\207E\337\306D\372`\\\356\233H_i["
#"^M\352?\236\201\346\325\347f\202rS\337\ec}\352}\251\a\223\267\334r"
#"\313\350\366q\a\273Y\34\b\333\266\201\256b\16m\t\364UNJW^J\375"
#"\365\232\201K\365\257\336\3t\20\315\223"
#"\303\256\236\245\216\355\273\31\244\324\377\356"
#"\303v3\255qE\fD\26\211\266O\351\243q\347\260qC\364\25\320,7\365"
#"\274\314@\333\25\346\352\367\346m}\325"
#"u\225\275O\252\34\214f\342jW\357L\333\3676\356\273\34\327\303"
#"\322\34N8i\230\325$\365^\227f Q\375\254\312\370\316\"\377"
) 500
(
#"\252\376\332m\275,m\217o\v\340\372"
#"\276\r5\365}\277\226\325\323<\226/"
#"\303\371I\226\327\270m\263\331\223\250\241c\253C=/3\322v%zkk\213"
#"\265\265\265\316D\367>5\340\372~ \2507\340\233=\22]=\"{\375\314]"
#"\a\320fOJWo\312^\266\207\346\262U9%\225\266\3\372A\266\267Q\1"
#"\202\306\344_mA\332\244\373\372\264\335"
#"O\253k\370\234\310Q\353:\256U\27@\372~l\227\325TO\322\357\272`("
#"\313K\301\313\f\214k \26652\273\356\353\203\276^57\263]%\223\307\r"
#"\347\233\246\233\272\355\366\346\277z^H"
#"\365\257\253\312\327\264\303\330\352Ar\363"
#"\252i}\30Y\275\24r\275\n\313\244"
#"\367\32\367\271\353?'=\256\36\250T"
#"\275\\}\334\336'\251\177\37\365\236\256"
#"\3526\221\2436\351\334\324\274\250\320\307"
#"\343\273\254\226\352b\335\270!\331:\376.7\5/30i\230\321\270\277\373f"
#"\331Jmv\5\6\343\36\327\354E\251\a\22\315r\304M]\a\324IC\321\352"
#"\217\353\272\302_=\266,\313]\357?\256k}Z{\315\21\352\352m\\6\315"
#"\357FCpd\321L:\256-\363\305\5\351\277\275\214J\3206\274:\226\247\25"
#"zD&E\372[[[\243\253\375}m\330\34t8\325Q\232t\320kk|"
#"\326O\366\325\277j\202\307\256!_\225"
#"\266\300\356 C\211\332z\356\332\276\217"
#"\266\374\252\266@z\277\201\347\270!`"
#"\343z\343\306\5\364\313\34\324\300\362\177"
#">\351\207i.\250\265\35\aE\26\301"
#"4\347\300\266s\212\266\341\345\246\204\375"
#"\3\332KC\276O\215\376J\337Ol\315u\276\265\265\5\244\352c]\217i\6"
#"1{\t:\307\365B4\207\27\356\3455\333z\\\366\343\240\t\363\365"
#"e\201\366^\235\346\317z%\264\346s\226\315A{\270D\16\303^\266K"
) 500
(
#"m\273\262H\352\333n}Xn]\333\3601m\303\313M=/\16%\21v\315"
#"~\336\270/\317\202\236&?\217;\17"
#"\251n\337\265/m\223\36\345\371\376<"
#"\t\241\307\374\334\374^\325\357\v\256\355"
#"\252]\363\3000\353`f\232\327\233\376=#e\376\315\314 \30[\217nR\330"
#"\356R\304m\263\317\317:w\2413h\270\350\246j\231w\206}A{\367\371~"
#"\2\221\203|_\343r\205\272~N\373:\"r8&\355\223\343zl\217\322\256"
#"s\262\227\273\16\225\356\236'\374\255\36\22G\267W\347gY|]9W\315\363"
#"os\204\3018\213\264\r\313\341X\371"
#"\340\305\201@\204\0\206\341Db\236\362"
#"\334\r\212\274\212\"\1Bz|\3041\"\30\230\a\266\215|k\4\6\340\20\334"
#"\322\375\300#\303\317\262q\353?\305\t"
#"\20\3\36\300\b\364q\365\267\0053\223"
#"\22\301\253\334\213i\363\177\2469\360Lz\317*a~`\307\30\230\21,\227\f"
#".\267\301\nJ\217\304\332\260\257q\215"
#"\362\203j\eZ\270\353\265-\5\3001o]x @\332^\366\261L\213\3243"
#"\266H\313r\330V\351\263\312\362Z\244"
#"\3558\235\223I'R+\250\216~\356\16\371b\324hic:A\233\345\263\264"
#"-\376\305\301U\327\326#\330\25D\327GD(8\221\376\265\236g\314,\2\1"
#"\aN\277\253\340\316\323\201\220\17\230\346"
#"\271W\305 TW\1\250\356\317\253\316\266)\0<\20\317=\3005\341NN\32"
#"\251AJ~\272\25x\271\235\16\274!"
#"\246\236\230\213zl\26\333\270 \241y"
#"\205\244~u\244\312\263h;\340\314\342\0T\317Ei&\320\227e\311\266\227D"
#"wb\274\220{3\2\26\35\263\24\200\216;\20\316\352$>\361sz\0\213X"
#">5W\275u{Y;\207\321S4\v\253r"
#"\302i\6\361\313T\324B\226[sx\354B\355\247"
) 500
(
#"V\215\\H\177V#\35\314\34\247dt\210\366\22\v\220n\b)\326\211\332\a"
#"\27\3354C\31Wa\270\261\354\235\366n\2FH\a\3102\216\372Y\0\260\200"
#"\347&\257\231\215\206\202\1\230\227yX"
#"\330`\324\310,\30\340\356\fHW\315#\345(P)\a\371\4A\300-_e"
#"\357\321>\330\26\230\214\273BR\375l"
#"\e\213\3324M\220\320\26\240\230\355T"
#"\326jK\240\257\336\263\244\304-\367f"
#"xI\214\351\4\aa\354\360\267\303:"
#"H\326\227\177`\206\25\226\2\230\321\375"
#"UOU\331\365\22\300\316|5\365\371"
#"\32\26\351\252i\245\255\333\177\331LJ\212\26YT\315c\340\"6\16S/J"
#"\3349Nz P`V]\f,\322\3612T\313\36zu~]em\333["
#"\333\271\270^\32Yd\345\203\27\257\202"
#"\20\213x\200\370\245waV\20\254\340"
#"\3163\200\25\20\241<\373\0\377\330\2"
#"\26R#\361\2663E\272Z\356;\215\314\230#\233/\336\36\bf\fl\300m"
#"gR\3002(Sm\4\363\210\21\t^\34\325G>\220\256\204\270i\ek\223"
#"\206g\325\257\3765{R\332\376M\36\a\eSx\351\236:\303\254HW\347\362"
#"P\277\372\363\346}`4\263\24\32;\243m)\235\234S\200kV\354Z\276\256"
#"\337\353W\371\27\371\340~\330\271R\"rp\213x\f1\17D,]\330\261\210"
#"[\356d\311\307J,\246c\373\350,\214\202\227\36j\e\3051\30\fZ\247\35"
#"\220\325\266\362\301Kj \226\230\a\202"
#"\303\247\277q)\347\242\343\347\356\343\e"
#"\327\335\301\231\b\204S\274\373\325\217\361"
#"\326\263\271\321|\356~\276y\375m\234"
#"\256\256\356X\221\206\226\0211\3734\337"
#"x\335\177\306\243\263}\352N\376\375\277~\220\363\300\346\326#ll\254"
#"\221\206\250\245\325>\376\272\372bk\6\rm=3\323\274F\365\257\232;"
) 500
(
#"\245\252&RO\232\237\224+\323\326\3"
#"\264\263\34)\317\b\300\3151\300\203\345"
#"\241\a\335\t\252\207\325\260\276(\370\260"
#"4t\273\272R\350V\215T\254r\250"
#"\226\247\202J\214q\327\304\235}\376,\25\5`\262,\252my\221\256p;\271"
#"\327\305\252\301`\351\374i\371\202\17T=/;=2\226\237X\35?eq\215"
#"\e\355P\235#\26i{\224\305\261\362\301\213;\270\245^\24\17\201\333?x/"
#"\2570\340\222\273\371\300m\277\313\23\177"
#"\344\20\257\347\341\3704w\237\310\271\5"
#"\307_\303\353r\236\314\316\3013\22\t"
#"\270\337\316o\334u\0347\b\227\276\226"
#"\313\237\373\6\347\330\206\b9;&\277"
#"g\354\375\312o\216\221n&\337\325\257"
#"\242L\352M\251\202\225\352\347\270!F"
#"\223\256\336\357\32\322\346\20C\231\362I"
#"\314\361\374}\371h\350X\367\347:\214"
#"\206isL\271Q\200\303\227\3574,"
#"\30\301\256\341\232\253\215p\315\203\234\367"
#"p\321s\353\277w\365\310,\252\372\266"
#"\261,'\243\256\317Q\5j\"}\261"
#"\210\303\307\314S\257\vD\370\376\27\371"
#"\365\17\376!\337\253.\352\370\17x\362"
#"\203\377\212/}?\347\301\220.\376\244"
#"\221\24\325\363d\221\215\3137]\344\241"
#"\320r\364V~\3576\252\253\334\1\367"
#"\253y\375\245%E\256$\346\346\304\321"
#"0\333\300\251\333\215P\4\n{\23\377"
#"\16\370\322\35\206Y\201\205c\330\355\177"
#"D\360\b\30\333UU\224\230r^\"\0030\30\3706\321\234`\325A\371\b?"
#"\370!\250zO\232?\233\275(\325\337"
#"]\366\223\230\327V\321\v\322w\27\250\206\370\245\374&F\5\25\302E=Em"
#"\325Of\255\31t\270\301\v\361~\316\226\316\v\247?\310;^\177\aO=}"
#"\17'\366\360\232\213\320\320\330\213e?!\351\244+}\261\310"
#"\333i\32\22\226G)\274\370j.\363\347\370\263\357[\272\330"
) 500
(
#"\370w\177\306W\3542.\177\211\341\226\246(\260*pa[\303\306z`\334\305"
#"G\35Ce\234\225\17^\3628\"\f(\342\323|\343\\5\254\353\5\316}="
#"7`\3754w\6\343\311\237-\361\350\304\263\37\3432\203\267>\354)\1\334/"
#"\20\37~S\356\332v\n|\247l2P]\26\332\34>\312\306\332-\351\276|"
#"P\236\247\375\36\b\272\236\267\276\276\316"
#"\332\332\332(Pi\6']\303\203\246ihO\333\30\0377\364+/|\376e"
#"'\201\323\275\352u\211\24aghV"
#"\t\30\236+\304\331\236\252\301\325\203\237"
#"\365\365\365]\377\306KW\r\337\364\343"
#"\217\363\252`\274\372\272\337\342\367\276\356"
#"\4\312Q\305\272\372\353W\313\332\3071"
#"\300\365\355\241o\301V\227\375\26\240\320"
#"IY\26\305\244\253\337\213\240\0\260\177"
#"\300\25W\6\236\371\323\277\3\2?\370"
#"\352\263p\305\345\274\4\303\30P\225GN\27\5\a\0326\326\3m\243(\24\264"
#"\3104\6\223\37\262\354\"n;9\21"
#"\17\377\301\227\371\324\265\327\342gO\362"
#"\370\263w\360/\257\3?w\226\377\344"
#"\357\342\327\257\255\306\325Ba\177\311\v"
#"\347\234\237>\356\230A\314\t\326%\226"
#"\347xIW\207\242\31EU\253\336\35+rB6\271\347e\216\347\206\275\364("
#"\264\r\0013\263]\215\361\341p\270k\370W\375y\213\242\253@\300NC:\345"
#"<\225T'\310\235x>O\3253\365\373T\237}8\34\262\261\261\201\2733\34"
#"\16\307\a0\6\206q\351{\237!\276oW\35\1\352\233G\363\273[\244u<"
#"\215E\333.fe\362\366\325~\"^\306u!\313\247\276\r7s\e\347\261\r"
#"W=)\216\21\34~\350\262\237$<\370,\177w\3035|\3659\343\212\367\376"
#"\375Tlg4\211A\265\340U.\241\364As{"
#"\252r_E\272(x\311\345\27\335\234hp;_"
) 500
(
#"$\330\r\4\273\232\217\236\375\17\374\264"
#"\227p\342.\206\367_\311\361\220[\263"
#"W\335\301\273.{\216\377t\326\260\343)\217%\340\273\346E7\"\340i~\30"
#"\317\345o\335\260\322\362}\21\267\301\241"
#"\307.m'\234q'\236\346\225\361*`\251\2367\34\16[\37\337\274j\262("
#"\215\263\256e\251/s\t\24\243\4P"
#"\30\315\273\342{+\267Y_\317\233\233"
#"\233\243\333\233\353\254\3717D\326\326\326"
#"\b\346\224\241\340\321G>\233\227a\367gX\3041\351\323\350Z\326>}\206."
#"\323l_\"\313\240\231\2636\217\375\327"
#"\363y3\344q\326\341\207\256\346r{"
#"\200\257\374y\340\217\375r\336\367\222\220"
#"\317\247\351\2\241G\bi\206_4\260\244?\352\347\316\242(z9\262@\346K"
#"\301K\236\247%b\\\377\260s\35\221\207\37\376T\352J\t@N\250~\345\335"
#"\317\20\357\316\aJ\17`\17A\316\225I\325M\234p\311=<\353\251J\224\23"
#"\260\343w\363L\225\314\357\1\17\2609"
#"\34\262\276~+\233\303G\346\322\351\322L\362n\336\326\366xwgccct"
#"[W\3002\315{\36\265\346\262\\\324{a1\367\270\304Q\258\3J\2\305"
#">>\306^\206D\355,K`kk+\367\316\225\254\255\377\2\3\377\37\304p"
#"\214G\36y\204\215\215\215\321wPo"
#"\24\367\245\361\337l\350T\325c\226\241q?q\373j\350\313w&Ri\273\350"
#"5\267\355\330-O\336\233'\216.\376>?uy\344\327\356\373\2/\177\333o"
#"\363\22\3b\30u\230[\250F\373\246~k\355i\375\262,\347\59|+\37"
#"\274\214\246\216\364\bf\230\207\321\234/"
#"!\357Cn1\37\4#\356\271\326<\1\367\324\370M=7i\376\20\2535\200"
#"\253\373\260\220\347\316\332\306s\305\261\22g\260\227"
#"qI\207\314\335\271\365\326[w\r}\252n\257?"
) 500
(
#"\246\357\371\n\27\365B\225e>`V\205\253/\340\34\333\3235\273\346I}/"
#"\317\31\375$\346qj\5[\303Gr\305\234\vl\254\247 r}}\375\242 "
#"\262/\337C\263\241\323\227\345\336\217\256"
#"^\316E\355\231\24\31\247\255\247e\236\333o4\243\210U\36b\312U|\351e"
#"W\362\362\307\214\313.\177q\272}\324"
#"\323\302\350|\252\260\245_\224\244/{"
#"\265\362\301\v^\346\274\207\"\35\377\f"
#" \315\306\276m\236o\31591i\232,\300!\202\205\234uo`\321!8\216"
#"\215\252\227Y5\331`t<\30\346\203\321\320\244A\25\370\34q\327v3\207\5"
#"\332+w\265\235\260\272\32h]\217?"
#"*\343\212\6\270\205\321w\236\276\303c"
#";\337\313\224_\317\264C\361Z\227\305"
#"J\210\3,\354\344SU\363\275\30\307"
#"v\5,\353\353\353\275<\260\217\eV\265(\333\310ALS\224\242+\207Ld"
#"\221U\333hY\226\243\242,\363\334n"
#"\v\322\24\6\226O\316\356\216\275\370&>\264u#x:\337\216r\3\255:|"
#"\306\3211]\26_uN\v!h\270\230Lm\345\203\27\313\263\362B>\350\371"
#"\200*^\31T\211\367\243Vl\3309@Z*dey\270\221\205\364$\253."
#"\5y\231zr\250\272p\254\372?\303"
#"\341\377\315\372\372\255\f\207\217\314\3453"
#"\266\235p\252\240e\334\220\260I\r\255"
#">\f\35\233\370\31 \365\234\21)\203Q@\n:\211y(\302t'\300q="
#"/\343\206\356Y, \344\336;vza\254\345}\267\266\266Z\362e\372\247\252"
#"H\267\fW\331\246\rF\372^pAV[3\360\236k\20\343\344R\310\203\\"
#"\0\a\252.\27\313\347\346h\336\350mQ\340\322\27s\37\212(Ka\345\367p"
#"\207Q\256\3>H\225MB\244\32\305S=\246"
#"\232\4+\375\352)\241\273~u\307\363\244\225\26s"
) 500
(
#"pS\244\373r\342\340\316.\231\202 3\337K%\336\3i; \2645\202\273"
#"\206\367Ls@Y\324\203N[\317\320\256\237\16\321K\n+\30T\247?\337\t"
#"j\366\363~Mc\e\350\301\323\34CV[\337\271\214s\327g\351\273ej\300"
#"O\334\276X\216\341\226\"us\333\226"
#"c\310\27\375R\240Rx\3124\35\315"
#"\375\222\317\261\1\307F\23FW\347\344"
#"\262\363ee\261,\313\271M\346g\345"
#"\203\227<\360\213\252W%\375\35\352\323"
#"\202\354Ll\230\5r`R{\215\352\271\273\3\25\240\345\30?\32\377>f\271"
#"\346\261#7\337c\277'\244\372\225\364EtQoG\355\247SV\3\1w\5"
#"\223\345\fw\215\361\353%tL\371\263"
#"\373\375\315l\241\327q\227\266\355\270\331"
#"\270\237\366y\213j\354\366\325\243\317!"
#"\313\307!\347\363\305Qc>m\2211\347\331\345 \300kO\0`\273s\337\r"
#"a\362\261qf\333}\250\235\237\363\37"
#"\351\210\31r\366(\265!b\215\352\220"
#"V \213\253\231\a(\262\27+\37\274\314K3\217dss\263u\376\217\372\16"
#"}\230\3131\313.\332\2765\250\353\314R=\371\321'\360\210[\36k\315b]"
#"\271\253\206k\364\311\270|\227q\333`"
#"\237\267)\221E\221.\214\344\213mV"
#"\324F\20\204Qq\232\0`\251\320\277"
#"\223z\243}\247\37\32\330}\376\252\362"
#"_\306\276\257\366_\351p\330m\34Y\r\n^\346d\\2\3674\217\333\257\256"
#"\327\257*\212uM\240\270\227Fr\275!\332\267\3065\244uQ\272\363\"{Q"
#".\315\271\235\253\304-\306\225\273f\265"
#"*\350O\317D\327r\366u[\331\253z\2406\315\25k\221\3030\332\327l;"
#"\375LS\243`\36F\5f\n'\17g./\352\tn\253\230'\262"
#"\37\315\241\351m\27\345\264}\311$:\233\316YW0qX;\3534\301"
) 500
(
#"P\333\201c\332 \252>\236?\306\330"
#"\277\6\232\203\263\215\1\333\\ \325\264"
#"\36\214\37\323wD\372Xn\270\255\352V\327}\315\373\227E\337\2NY\36U"
#"\36&f9ws\0\304\234\316\227&K&\a0\2432\303\2717\272y\f\254"
#"\357\257\315s\204\266m\31gRp\322\f\210\25 \313$=ki\366_}\247"
#"\254\367|\34\345\316\332l\\\355\245\261"
#"5\356\204\326\27\306\200\262\245.\262\265"
#"$\315\317[_\327i\227\346\266\325V$b\231NZ\313\222\327#=\26\303N"
#"2\273\221\203\225*\257/PV\363\221"
#"\221\223\341\1\32\5e\332\32\237\315\352y\272z.]\332J\3117\213\234L*"
#"7/R\247\340\345\bt\5\a\207\235\347\322\366w\25@\315\242\221\334Vqi"
#"\321U\25\345\212\\\341+\330b-wQ\24\224eN\264\355\311:m\232T>"
#"\272\376\230>\17?l3\256\f\250N\316r\330\214\210[\252h\270]U&\371"
#"\362\355\4{#\2378G\316\357\333It\17\236\206\312Z\334]xf\332y\214"
#"\272\376\26\31\327\263\242mE\366J\301"
#"\313\34M\e\254\314\272\3416M\243i\322\311hZ\365ad}h\200V\245\221"
#"!_M\264\220\323\364\343N\t\355#\32467H\37\326ke\332`d\331\347"
#"A1\263\251\22\235Ef)zH\307cb\232\324\315\"g\276\370un\277="
#"\362\205\223/\324\n\225\0D\2429\20"
#"w\252\374\267\250\357\313]e\300\227m"
#"\377\225\203\251\37\333\25\330\312,\350L"
#":\a\343\252k\f\207C666\26\346*\304,\2232{s\200\2628:y"
#"\233\223Kp.\356\256\321\233\365\312\356"
#"\240d\225\347AY\266\36%\351\207`"
#"\20\235\2359\253\316\177\234\337\374\372;\371\345_{\e<\366e\316"
#"{\356\214\271\263\340\216S!M\317{\376A\336x\325\357p\276c\330"
) 500
(
#"l\37/\242\310\321\252\37\333\213\242 "
#"\306\361C\262\265m\311$\213\333B["
#"\"\223\32e\315\253\22\363\326\314\275\251"
#",scr$\237\330\335R\316\213\e"
#"\4\363<\313}\274\350\261\236\203\234\316"
#"\327\n6\272\337\17\2303cfD/\363\\\f\365\327\212yYj\245\234\253\307"
#"D\37M\252\332\271\234s6n\36\224"
#"q\226\351\4\266\22\373\222,\244\264\351"
#"E\"\316\271\223\217\303\315\327q\351\361"
#"\353\371y{\214\223\347S\231\370\237\376"
#"\331\333\370\346\v\347\200\200=\377W\224\357x\23'&4\17t%]\366\252*"
#"\3543\315\343D\306Q\360\262@\272\256"
#"P/\262\256\211\314\372r\360\361<C"
#"\244\345+\223\36\235@H\23\223z\310"
#"\223\274\245\241\24nq\224\360\232\202\207"
#"|;\244\313\233F\16\36\2D\37\275"
#"\346\236\227\251\336\v\227w\321\302\3\260"
#"\215G\322\353\e\265R\316\351dP\20!X\236t\263\244O\273w\263W\242O"
#"\333\320\264\372^R\\\372(\346I\224"
#"\3\306_s\3621\347\355\327\235\300\271"
#"\224\353o\206\317\235\3746\20\341Mo"
#"\341\265\237\177\212\363\300\351'\377\222\233"
#"\257?\321=n\254\3052\356\2572;"
#":\336\311\254\365\247u\263\304\252\236\217"
#"\275^\231\236\265\375\34`\332\32\235\325"
#"\355}\2603\346;\215\237\210\224\224\266"
#"\323\253a\16\206\245\200\341{O\362\e"
#"\37|\212\357\231\203E\314\276\317\223\37"
#"\374u\376\360o\201\260\363\271c\372e"
#"T\f`\317\313\324\2263T\25\1\n\333yq\35\e\335\234w\343\230\202\2312"
#"\277F\237N\27\363*^q\224\352C"
#"\350\226\361\363\311\"\n\340%\16\330\371"
#"'x\314\336\311\r\227\246D\376W\335p3\366\370\23\274@\0{\25\257\367/"
#"\360\324\3313<\371\3655\336|\234T\205l\n\n\312e\222"
#"\266\352b\"\a\241\340eA\315k\347\256\227m\276\365\326[\367"
) 500
(
#"\365\32mC\315\372up\212x00\b\271\312N(B\236\37\241\232\377`\e"
#"{\351\325\\\346O\363'\337s \300\367\277\312s\\\311\345/c\247\227&n"
#"S\20qKO\235V\363\240>:\320\347\362\246\36\310s4\f\362\254\331ij"
#"9\253\226\337 \206\277\343\311\17\254\363"
#"\351\257-\306p\261\275\2101R\24\2131)\350a\320\4\177r\24\"\16\226z"
#"c_8\3658\341\255\327s\34p\17p\374zn\3461N\235\38\301u7"
#"G\276y\337\37\360\27o\373\3378n1\367\366NV\35\363{9\317\227\314\205"
#"\252\213\311\254\351H\263 \232\263\314\316"
#"k\347\36\227H=\255\256\31r\373s\200\252\225\5\rFy\241>\344*\5%"
#"\26\a\300\337\343\247\256\204?\371\352\177"
#"\303\201\37\374\311s\330\225\227\361C\351\1yxF\221^\317\201\334K2IW"
#"E13KW?c\325\355R\313s\261\230\227z\247*Z \317V\34\302h"
#".\207\276X\366F\275\312\310\312Q\b"
#"\243+\37\3478\375\271\202\237\377\231\343"
#"@\312\203q\216s\303\333\2\217\237J"
#"U\307N\274\371\235|\375\241\257\363\216\e^\27534uJ\312\177\221q\264M"
#"\310\254\r\216z\1$i\16%\231\347"
#"I\240Y\21j\257\357\333\266\334\375:"
#"\211\305\234\264\17\270cE\330I\344'"
#"\177\216\374Q^\372SW\302'\376\204"
#"\37\334\364\23|\365\253\3.\177\317\213"
#"S\216>\1b\236\217\5\210F\316\235"
#"\231\254\271\376\352\325X\nB\32\371\361"
#"\375'\370\215_\375<\177c\221h\201"
#"\253\356\31\362\236\237\0\370\v\36^\373"
#"\bO\a\203\227_\305\325\2031\367\0\0 \0IDAT\25EU0 \344"
#"\242\3\375\273>\321\257mGd\221E\334\2v\352#\334\373\3543\370"
#"%\5\367\22w\2\23\17\230}\2043w=\314\233\216\277\231\233\257\372\6"
) 500
(
#"?v\"b\36\210V\22\330[o\250\366]i\2324\31\245\310~\364\257e\263"
#"\244677G\25\277`\376W*\314\214\315\315M666\200\375\r\373j\233"
#"\250\254/\266\355\302h8V\325\273\341"
#"\0261\253\365zP\302\213\257\344\362\370"
#"\f\177\372\347_\343\331\3622.{\t"
#";\363\304\204\234\347\342%\205\303~w"
#"\257\213\17\360_\343\241_\373\32W|"
#"\370\21\36\31>\312\326\377\365v\276\373"
#"\300\357\3605\340k\237\372m\376\366\355"
#"\37c8\34\262\371s%\177\374\355H\21C^\344\376\354\336\365q\363\313~r"
#"\353\323~!\313`\e\256\377$\245;"
#"\356\27\210\321\361X\22\313\3743>\304"
#"\265n\330\271'\371\374\353o\342M\356"
#"\251\352\342\36\272^\352\303\"5|L*\32.&\207EG\230\5q\224\311l"
#"\323\314\200>\215^\226Y\216)\177\245"
#"\340\30\344+\222\251D\261S\204\1\365"
#"]\304\374\30\370\17\361SW\5\36\275"
#"\357q\212+\257\340%\371\276Q/\207"
#"\a\314\213\324\203\263\217\305\t!\264\224"
#"\222|\3\357\336\374?\270\361eyY^\366\22~$\32\5\177\312W\237\275\206"
#"\267\274\345\357\247\345{\303[y\333\17"
#"\277\b3\317A\324>\26`\316\372V"
#"\340\341 \232y/\253\360\231\345\210y"
#"\300<\35\307\322\326\26r\351\344\200Y"
#"\314EE\2\347\37\274\32{\325\343\274"
#"\355\327\256\3/F\317\235V\263\221Z"
#"\226\245\266o\351\244\v8rP\0326"
#"\266\200\216\242\327\3450\364\241\2\215\347"
#"\21a\325\211\35\300\335\322\230\360\\\n"
#"9z X\356\211!\360\3227\\\305\217>\26\271\342\r\377 \275\210\355\364r"
#"X\236\235z/\3\306\233\r\331\335\337G\312i1\2\177\366\2515\36x\26J"
#"/\b\\\305e?\370\16\3371\3472\317\305\5\374\245\274"
#"\370\345%\177\353\216\341\224\226\207\235-\260\303\336\326#\325\320"
) 500
(
#"\2278\212\345l\364=\327\326\273\357|"
#"\2778y\335\355\360\374j\26\3\2044"
#",\257*\246\320\324\25\230\364\265WRfc}}}TUr\361\276\377W\262"
#"\266\6_\375W\e\254O~\360T\326"
#"\326\326.\232\200\31\306\357\0371\306#"
#"\253\266)\3733\356\373\354\332\316\365\335"
#"\312A)xY\20\356\316\326\326\26kkklmm\35\331r\f\207\303C_"
#"\206E\272\352<\371\240\eF\315\177\363\224\304\32_r\35\377fx\343L:6"
#"&\257\213\200\361g|j\375~\354\336"
#"-\36\271\243\204\377z\222\17\376\312w\t/\371\21^\312\367\t\6e\fX\370"
#".\337\377n\304\2570\34\243\310m\354"
#"\276\250\17\35\2537b\16\"P\340\236\2\226\2523*\3451yNZ\266<\31"
#"i*\262\260m\316\300\214\202*6\311"
#"\367A\316\213\362\374w\4k_\271\323"
#"\344\200M\363\331\26i?\221\203\2131"
#"\262\265\2655\32\36<\34\16\217x\211"
#"\16\337^\362\35\252\373\327\327\327wM\234,\213M\307(9\n=j\332,\267"
#"\266jS\363\322\34\256\26B\230\331\373"
#"\267\r\207[\324\203]\363$\233~\356"
#"\\\177w\213@\314\rb\307f\374\25\265]\251r\a\376\366\a|\233+\370\251"
#"\237t\b\5\321\r\212o\363\235\357\377"
#"$W]\371,\237\177\342\373\24\1\354"
#"kO\360\371\377\22\b\16\26\313\336\355"
#"\335\2076\17J\256Y\35s\300\222\n"
#"\307\206\321\\9\234\272\203\20\336\310\203"
#"\347C.D\r\20\363\367\233W\242W"
#"\257QM\2\32\246\32\226W\337\257\333"
#"\346\262\251\377\353z\256\364[\363{\37"
#"\16\207\f\207\303\5\354}9\\\223\266"
#"\347\352\376U\\7\313\240\231\333\242\357"
#"P\16\223z^\26\314Q6\360\353\365\372g\365\376eY\216\252g-rc"
#"\254Y\256x\347\357\230\207\23\345\341F"
#"\2214l\250\343\252\373^\265]\225\337\365"
) 500
(
#"\267E\312\227\3754\367\336\374/\371\225\215wBY`\257\274\206+~\370{|"
#"\367{\221\267\274\373#|\367\3\277\302"
#"-\217\e\203\227_\311\225\257p\2661"
#"r\t\264\336\250\a-\263>\351\245\22\326\261\32,\206ci\336q+(\200S"
#"O~\203\333\376Y\340\261S\177\315]w\375()`I\325\347\314s\265&\213"
#"\270\207T\264\241*?[\2158\233\242\207\244-\210\251?O\3710\313k\342>"
#"\276\304\332\206\16w\365F6\217\301\253"
#"\260~\226I\365}\315\362\342\247H\27\5/\v\246\32VP]}\232\307\1\274"
#"Y\243\177\226\357\331\207+0\315\23ls\35T9\22%9\17\242\2328rF"
#"\337O\275\321~\321\360\"\2\205\a\376"
#"\341M\377\232\315\233\252\241O\21xW"
#"\236\246\362\357q\323\207\206\334\224\e\327"
#"\330\273w\345\357\364E\327P\253\3s\300\362\\=;I/\24D\210\1\276u"
#"?\277\371\227\357`\363\21\347\326\177\362"
#"$\347\356\272\233\23\244\36\2663\267\35"
#"\343\367\337\352\374\356\233\200s\237\344\232"
#"_06\237y\37\257\364\22\263\2351y\315eo\253\264\324\366\335\266}\366E"
#"\17\362e\357\332\266\347U\372\216\253}"
#"\242J\342\357\n\320Wi\235,\263E?\337\313r\350W\vg\5\34\325\t\256"
#"~29\254\361\306\315\253o\213\242k"
#"\270\322\250\301\31\f<Rx\272\340\356"
#"yf{\263\362P\226\245z\357\364\v"
#"\371\n\177\255\352Y\316\317H\211\374\3"
#"<\217_J\275C1%\237\317|\311\372k\264.l\247@CN\204\341\374\311"
#"\337'\334|-\307/\271\221\233\375\367"
#"\370\362\v\220\326\365\200\353~\356\16\236"
#"\177\376\3714\354\354\3347\361\233o\340"
#"\25\16\325D\244\316N\340\31B\300\314(\2124\2440\3068\332~\306\365"
#"\246V\367W\1\217J\314.\37%\240_\334\313\330\265.\352\347\205\213\253"
) 500
(
#".\312\"\322p19\n:S.\230\243\332\371\17\363*X\327\360\230E2\356"
#"\212\270\345\253\367\245\1DlT\207j"
#"\266\35\227\255\201\353h\261\342\250\25\36"
#"\271\260\273\312\225\345aL\224\354\344h"
#"\364\367\0042\323\355\277Z\215\16\351\273"
#"KJ+\300\317\362\324\347\267y\373\r"
#"\227b\34\347\306\267\37c\353\324Y\""
#"%%\340\327\376,\257\373\374\37q\236"
#"\300\311/\375\5\357\274\376\22\202Aa"
#"E\16Xvz\313\252`\245\372\331\226\3535\256\362N\3751:\371/\227E="
#"\346\315S}\356\227q\353\241\331\3.\213\2579$V\307/\231\a\5/\v\250"
#"^\221\346\250\34\306\1\250\257\343\230\253"
#"5QPU\34\333\236\351\353\217\313s"
#"\360\374\37\257\252e\271\217f\275\266|"
#"\237\221\213\t\230\245F\267\345\23J\317"
#"\316!\207\235\367\21S\267\31\3166\301"
#"!\376\365I\36\343\35\334x\"\315\213s\342\372\267R<~\206\363\24\24lc"
#"\34\347\307\342\243<u\366\fO~\375"
#"\355\\\367\252\364:e\334N'\351\330"
#"\336\363\326\\\376I\237g?\225\310\244"
#"?\216\242\b\313\242\251W\20\354Z\17\nZ\226\203\276?\231\a\5/2R?"
#"\251TC\307\332N4\253t\22v\266"
#"w\252\216y\232\324\315\335\246\216\v\16"
#"\272\256,\377g\364\323R\245\254\335\17\250\362rRXc\215\373\26Y[o\323"
#"A\326\331EC\23k\301\235\31\204`\4\373\237\b\205Q\234\270\27{\333u\\"
#"\342\2069\304\343o\346\255\305\243\2349"
#"\v\333\24`'\270\361f\343\233\367\375"
#"\1\377\351mo\346D\252\263\234z\272\310\25\307:\354\265's\225\366)Ym"
#"]\1\214\206\34\365\227\222\364e\336\24"
#"\274,\230\275\34\0fu\260h^\361\232\224w\263\227++\323\326\370_X"
#"\236z0\314|\324\373Q\225\313\255\312"
#"\347\216\323\314\241\221\335\272\266\257\213K"
) 500
(
#"F\217_w\315b\v\243<\224\220\177\267c\204`\304\322\211^\342\361y>v"
#"\345U\274\375\206K\363W\354\4\216\363"
#"\346\2373~\357\344y\68\304\222\23"
#"7\336\314\327\37\372\6\357\274\3518N"
#"9\232\373%\247\314\314D\263\307IdYu\345\26\326\357\323>\320/U1\206"
#"\212\276?\231\a\5/\v\244\2314\277"
#"\266\266\326\372\230\312\254\202\201\256r\225"
#"\223\306\352\357\365\265{\311\n<\377\317"
#"\f\334K\n\317Ew\367X.\271\355\304\3345Nx\25O\0m\215\230\266\241"
#"W\365\6P\365\257(\212\213\252\266\215"
#"\376\3054\304\313c\231\312\\\3\361\364"
#"G\371\345\257\3741w\277\252 T\201"
#"\316\3008\361\313\317\361\307\367~\230\223"
#"\36\360P\340'n\342mW\276\236\23\227x\316u*\211\330h\310\336\254(\251"
#"[VUs\333W\0\263\230\272\n\356L[\214Ad\226\24\274,\220ICM"
#"\332\2\213Yi\eo\274\265\265\305\332"
#"\332Zg\357\301^{\211\232'\245>"
#"\234\240\314\343(\177$X\231\206\217Y"
#"\265\354\323U\303\231\246\32K[)\325"
#">\254\237Yi\vT\352\352\225\274\252"
#"\237\365d\371zu\257\352\365\222m\260"
#"H\314=g\356\6D\302\265\17\23\343"
#"\377\300\375B\nn\334\211\333i\210\340"
#"\266\177\212\e\362P=;\373\24_\370"
#"\361\267p}U\246\314\n\2\226\2127"
#"\330l\252!\215\252\332\255\330w.\253"
#"i\232\6\256\32\300\213\247\255\230\302*"
#"\227\0\227\243\245\340\345\210\215k\314\267"
#"5\340\252\333\17\273\32X\363=\333\376"
#"\236f\31\352\a\273j\302\312>%f\272\5\334S\217\2133\30\225!\266j\242"
#"\302I\317\2575J\307\35\370\333\276\323"
#">\254\237Y\230\264\216*\365\212^umA\361\350y> z \220\362Z\314"
#"<\345\a\215\312O\247\311(!\246\22"
#"\310\16\26\323\367z\356\301+\t\227~\216"
) 500
(
#"\233\337\177]\nT<\246\252eN*\233}\b\237}U\276sY=\315\213\v"
#"\343\266u\5\361\213\251y\376\327\250\1"
#"9*\n^\216XW0\340\356\243\236\217\372m\315\307\315r\31\332N(\a="
#"0\265\35\354z\325@\363\222h1\a"
#"*\271\241\353eN\236\237\374\364\3460"
#"\247\256\365\327\253u2c\315uT\251\2\225\372\334']\363\240t\225X-\r"
#"\2%)8\211;I\366^\215\321\216in\34B\236\364\23<\244 \351\304]"
#"\317Q\306g\271\353x.\320\220'\273"
#"\364z\371\352\31|v\221U\260\227j"
#"\223\332/\26\313\270\213\254\253z\321M"
#"\216\226\202\227\5\325\274\362\334l\364\317"
#":Y\277\376^u\365\262\315\207\321\343"
#"\263\360\254\240 \344\211 c\276z_\340lO}\351\275\253a-;\306\25\206"
#"\250owU\257\313\264\325\212B\325\243"
#"B\240\372\376\322\203S\271i'\3401"
#"\335\347\4\334\234\230\372ir\241\206\374"
#"\360\352=\253\241b\0066\303y~\252"
#"\345\336\332\332\232\331k\212,\232z\317"
#"\313\270\363I\357.r-\271\346E\310"
#">\16\1\227\345\242\340eA\264\355\374m\201\305\254\e\301{y\235Y\274g3"
#"\267\241\27b\tfD/\261\220\347X\361A\355\n\374xm\371\f\223\362\et"
#"2\330\255\232#b\322\266s\321U\300"
#"]\207\270\332\0201\300\363\244\225\226oKE\250\235\"\246y_R\374\222zl"
#"\210!=0\227U\316K5\253\217\247|\27Yj]\303A\273\202\24\355\17\213"
#"\2539\334\271\272Md\236f;E\270\354[\327\1\274\232oe8\34\266Va"
#"J\342\316$\206\271A\25\t\24\243\253"
#"\314i\356\365\202H\232\251}\220/%"
#"\347\371/\274\312\1\0\330\6\6\351\25\335\322\204\207Nj\300\207*\217 "
#"\244\347\1{\211\177\373x5\315Hy/\325g\265\252\345j\323\227\312\335"
) 500
(
#"O\260\326\267\365t\230\272*\340\355=\a,\200;\344*q\243\300\306`\347P"
#"\30\240\266;\30i\376\2\v\243]\246"
#"\366\305\207]\357\277\237\355\2739\\n"
#"mm\355\300\23\324\232\355L\b\b\251r\241\34\275\275\f\233Z5m\353\245Y"
#",f\21M\n\262\372\336\223:\256\300"
#"\214\264\353c;\247\217\24\274,\270\266"
#"\336\227]\303\307\210X\264\334\216\212\243"
#"\6Y\221\206\361S\0056\301\235t\345"
#"9\265\302\314\311\201I`\333\252p%"
#"\17\205\361\224\1P5\320\37\31~\226\215[\177\221G6?\273\363\274=v\332"
#"\365y\207\2567L\247M8\355\342\356\232\320\253CUI\254,\313\211=+]"
#"y2\325}\365\306{\365\332\365\341\16"
#"{\t6\332\202\244\266\36\304qC<\333\36\3336\354bmmm\246\r\236\203"
#"\6B2;m\311\315\222\2645\222\273&I\356\213\352\242\3432h\36?\373|"
#">?,\275\eQ\322s\0326\266\340&&z{H=\"\265\373#\345(p"
#"\301\3x\211\221{Q\250z\23r\217\212mS\0x \236{\200k\302\235\234"
#"4Fc\373\235\234\343Qn\347Y\336\253\274\2018u\316G\327\201\256O'\246"
#"\346A{/\a(\225\222\234\216Y\252H\327L\312\357\32\232\320\325[Y\5."
#"]\353}\277'\231\266\327h.cu_\375_\b\341\242\23\177\275\264s\375\271"
#"{\rl\233\3037\352666\246~\359|}:\336\315S\265\17\350\242\316"
#"\342\32w<\225D\353d\276\24\274\364\300#\217<\322\331\20I\363Wl\347H"
#"$\244$c\212\334\217\22R\20\222\223\223\3633\322c\234\\}i0\32\5S"
#"0\300\335\31\220\22\231#\345(P\331"
#".\362p4\17\325\244\363S\217\233j\36\370\232\371\v}0M%"
#"\266.\315!O\322\256\253G\244\336\350\257\376n\373.&\365\252L"
) 500
(
#"\273\376\273\36\3275|\342\377g\357\335"
#"\202\344\270\316\3\315\357?Y-\305\274"
#"\354\333\304\3568\346b\21\rXW\333"
#"\261\32\333$@\356>\331\304\205\222|"
#"\323\215\335M{\306\"\0jD\2\322\306xf\254\365z\3023~p\254-\22"
#"\324\5\4\250\261-\240\233\272yV\266"
#"H\\\250\235\231\330\265\t\220\332Y{"
#"\274\")\213D\203\332\t\207\327\373\270"
#"o\36\263+\317\277\17\347\234\254\354\354"
#"\314\252\352FuUe\326\3771\300\252"
#"\256\312\312\254\312<\371\237\363\337\253\n"
#"J\371\373V\377\215\242\3541\32g\373:ONz\274|\371\362\310\317\e\373O"
#"\272\36\2668\257g\367\341\237\363I\327"
#"\257m\271\315\201\261\35\363\252N\37S"
#"^Z@]\274\177\"\324E\212\261\374"
#"\267>\307\335Nx\213\364\350I\217\323"
#"\327\225>.( \267\237\340\277\23A"
#"d\tq\302\303\317\307\362\260\261\207\t"
#"\20\25\36\370\306I\207\23\241'=\36"
#"\276\36\24\226\257\\\3722\253\253\253\270"
#"XZV\306\350q\222\250[\214\266\211"
#"\246\205\360n\275/\325\205\2551`T\250U\365\275\252\2\\n\\\231>3\352"
#"xM4yt\252\nJ\235\222\222<*\2739^\323\261\367\352\31j\333\375\325"
#"e\232B\r\355\376\337I[\225\227\262"
#"G\276\253\3275y\264\23]\375\235{"
#"\245\215\343\266\355\230\362\322\2\232*\265"
#"\f6p\250|\213\207\17=\303G7=o\352_\3437?\303\377u\354\24\377"
#"^\25\270\302\251C_\343\3477\25\325-\364\3269^=\376\bW\203\233&x"
#"f$\224\225\25\271\310\253\357\372\36\352"
#"\225\376\325\323\374\316\277~\222\357\v("
#"\212D\357N\352\225\2213\36M\213\3016\b\300&\305\245\251\337H\23u!O"
#"m\370\375\323\242nQW^\20T\317U5\214/M\254"
#"\303&\221q\24\203\252rR\247\244\224C\276\206\35c\234\327"
) 500
(
#"\313\277\271\255\2137\243\231\275\214\a\243"
#"]\224\215(]\277\256\343\32\207\26\t\233\307g\203)/-@dPu\254\366"
#"F\21p\34\343\242\336\344\314\1EX\202\3\ay\227(\271\bp\224\247\374M"
#"\36;\20{Y,\277\235\367(8\25\6\275/<\36\207\352I\376\307\307\16\240"
#"\2\356\320;\371\211\27_\345\26}\4aKSu\245P\245l\257\203'-\0"
#"w\253\0\314\202I*\31\246\260\f\247"
#")\\\254\311Z\335\244D\216\en\265"
#"\233\234\224a\361\336u\211\367\273\241)"
#"\211\177\267\330\3302\332N9\367\305\306"
#"\363\354\251\32\220Li\331IUq\265q;\35\346\177\365hl\243\32>\243\245"
#"^\23\2\\?\231!N\209\301\227\264\227>\204xx\376d\206\223\f'\367"
#"\3634\216\377\345\264 \222!n\t9\371-\234z@\350K\26\322Y|\310y"
#"\361\261(\335W\326\277\304\312C\253\270"
#"\230\354/~o7i\333\254T\373\361=m\"\330\3110%\245\356\\9\347\n"
#"%\243\311\253\262WOJ\235\247\254\374"
#"\335\352\266\235dX\320\235(A\2238\276a\314\n\357=Y\226\265J>\356\306"
#"\v\333&\312yZ\26\362<\34S\360\246\213)/-\245\310\241\0\300\243z\205"
#"GD\370\306O+\232+z\353\267\3711\224\220Z\377-N\367\342{\232\243\257"
#"?\316\335\342\371\351\v\36\325\34\257["
#"\370\v\367G\17\216\222\221\224\242TI"
#";\206\227\341\20\365\261q\37\203\276/"
#"#\276g\323k\303\204\340\274\v\310;"
#"\25R&\340\232)+\30\211\346$\376\360\267CpI9q\341\237\23\t\343\335"
#"\307q\257yPT\274\26\371]D\257\243j^\252\236\327\324|\322\223\3568A"
#"\350\263\265\343{\327=\337\v\263\376\274a\314\222y\227\377U\352\356"
#"\2676\375\206\335\344\344\231li\306\316\315\364\260>/-\240n\241\\"
) 500
(
#"\374\255\216\276(\27576y\231\223|"
#"\372x(\225\354|\17\341\02567\301"
#"\363:/\353\307\370\237\216\1Q\361\20}\225\315MA\17xD\300K(\211\234"
#"#!\234L\4\304\343E\6\315*!v(w\241\204rh\f3\224a\371."
#"\303\222\34\347M\b\334\211\262\242\252\273N(\237gv{.R\270c\362\224T"
#"\253.\325\355\257\332\254QDx\360\301"
#"\ak\342\313\35\202\307k\216\310\22\352\363X\r/'\265\26\rU\365\302_^"
#" #\205L\2\2\252\202\210C5G\310b\16\31Hl\330\252\232\a\357e\252"
#"\264\247\340\304\323\363Kf\3761\206R"
#"\35\333iL[\b\351v\312\341b\20"
#"\356\177\230L\237\242\352\276\23]\351\301"
#"2\t\312\343\261\32\306j\336\4c\36"
#"1\345\245\5$\301q\371\362e\326\326\326\270t\351\322@\230\bd*p\340\f"
#"\277\367\370\335\34\354I0\34\37>\305"
#"\251\273o\360\335M\301\35}\214\337{"
#"\374>\16\271\250\201\34>\305\311{n\360\335ME\16\2042\312\16\r\375a\b"
#"\37\27<\2408\325\330\e&\364\214\331"
#"\270\364\f\253\253\17\262\276~\t/\331"
#"`\201\330@\223\340k\333\344]\r\a\332\2150\257\233\4\3324!4\205e5"
#"\0253\250\206/\245\234\255\335\374\346Q"
#"ee\213\367b\311o\221\244\34\206\342\22N\263\360\236\eT\325C<.\226\23"
#"\17?$=\304\334/\262Xv\274\27"
#"\233\261\366\20\257\210\213\245\306\245\217h"
#"\17$\334\v\352\306\256\26n,(\345"
#"\274\255\215\215\r+\3160\6\351\34\255"
#"\255\255\355\233\202\221\224#c\200\25\227"
#"0\332\204)/-\241\354\245\250&2\213\0\n\313g_B\317\20\255\3119\310"
#"ShX\335\261|\346\177C\317\n\250\303\213\342\364)\274\344(1\277E"
#"\25w\327Yn\306\2600\305!\a\316p#%\363G\253s\246\0\275\320"
) 500
(
#"\37Fu\344\352m\330\342\266\311\325>"
#"\257\302\262\374\335R\236DS\336E\365"
#"s0\331\260\242i\322\244\254\214\363\eDvV\2\e\225\243\2\203~'\345\206"
#"\223\316\271\242\3}\241\374JPNB\255\274-\234,!*x\311\203\227F\35"
#"*\36\301\205Q\355A]\374>)4R\202>\243\2428zx\24Ab\353$"
#"E\223\3331\252\3529\16$\247G\271"
#"\177\222a\324S'\357\332t\377O\233\344]\335O\5\3039\307\352\352\252y_"
#"j(Wp,\e\31\233\fS\2061\v,\350\241%T'\300m\236\213\242\341"
#"\244\37X\223%,\276\234Jx;5\252\324\270\4\23\217##5\255T\311\242"
#"\242\23\26\202\2\321\302\f\340p\2\31"
#"\375b\377y\\\340\355\365w4\t\304y\366\310\224\277g\252rUMf\254K"
#"\330\356Js\257q\222\321\353\256_y"
#"\314\212\fo\350\230\347\371\266^)\351\263II,\37?|V\nO\212ci"
#"\340\211!+\365\"\n\315Z\235f1d2\215\363\36\320\17\37W)B\311\302"
#"\375\1^\362\370Y z \1zxz\332\215kjL\17\e/\243\31V4"
#"\343N\261>%\343\321d\\\34\365\267aL\23S^Z\306\245K\227\266\305M"
#"\207'\304\230~\a^\2032\222\24\31"
#"\361ER\263\252\4\253\263\2\352\b\2412aq&>\364q\t~\232\224\316\34"
#"\274-x\215\v\274\36\212g}\375\22"
#"\377h\345\27\242\325{4\343\344\264T"
#"\225\2316N.\311ZUg\241\252\322\226\337WW\6xTrj]3\307\262"
#"\2222N\31\342&\205\266j\tt\231C\\\206O\t\367)\277%\346c\225\323"
#"\2624*!H\26\313\203\3\261\"\237\210\f6\244\217Wb\30Y\270\37D\264"
#"\310\205I\373\262\311\333\330\r\325\261kl\247"
#"*\373'y\216\222\347\266\214y]\266\263\233\2"
) 500
(
#":6~\215Yc\312K\313\330\271`\n\231*E\331b\27\27yED\340\240"
#"\37KJpF|\241\360\220\24\25\27\254\321\22=-hNPn\6\373T4"
#"\32\241cR\264\216^\274\215\253\214\354"
#"\f\205\233\337\205\341\250*XM\v\357"
#"6\306\273\327\375\226\262\"\221\376\245\322"
#"\246UOJ\223\2022\354o\250/;Y\16e\330\376%}\314Q\31(.a"
#"|Fo\211\226\256\231\4\215\306'\355E\374`\233\370\b=\\|=\371b\n"
#"\305E\243\22\203\322\\\225\3140v\322"
#"\26\3716m\252\206\211\375\360T\217\3435^t\352\316Q\32\263u\341bv."
#"\215Yb\312K\333Q\27.b\22.\252\344\22U\232\270\20#\346\304\24\312\b"
#"\256\362\234\270 #Z\256S\230YJn\16adI\371\t\311\321\371\340\230C"
#"\250\346\351\204\257X\277\230o\313\204\276W\367y[\27.e%\3059W(*"
#"eO\312\260\256\363M\373\34\365w\371"
#"\30\351\357g\236yf{\350d\256\250\317\351\305\244z\t\325&\302x}\343I"
#"\216\364Ns\35\202\267\205\240\200\253x"
#"\334\355\317qD$\344\3108A\262\36"
#".\23\356;\267\31~\23\337\342\264\244"
#"\222\313\31\322\373\30\317\207\e#|^"
#"\243!\3000\366\200-\374\0064yV\367\353X\306pF\235\243\252\241\3210f"
#"\201\315\276sN]\330\316\372\372\372\240"
#"\204d\212vIrD\262P\n\226\254\24\6\223\336/_n\267\375\255\"j\246"
#"R?\254\364G\371\273lll\2606f\31\313\272|\235\362c[h\372\276\343"
#",\332\3673\226\273\274\377Q!\27u\343)1,\334\253\254\234T\25\225;\375"
#"=u^\227\352\"&\35oeee[NL\32\327}\315q\222\rtq\215"
#"\356\27\257!\304+n\356E\202\377\320{TN"
#"\362\254\346\241\274\262\357\343\363\234?>\263\214\360"
) 500
(
#"\357\371\270\34G\257\346h\256li\316"
#"\346g\376\234c\367=\311m\210\241\226\346u1\366N\333d\337~\323\24Fl"
#"\314'6~\215Yc\312\313\234S\265"
#"J\315\202\352\361\207-\200\367\272\3576"
#"0\314\332T\367z\335\265k\n\221\252"
#";\326\260\367\353\276\327\260\260\224\272P"
#"\257\252\262\222\347yc^J\323\357\233\4\325s2\252Lr\223u6\305\265o"
#"\373\276\342\310\361\344\321\243\3504\307\251"
#"\340\343\373\231\2>\366-J9^\267_\341e\3671~\346hL\364\a\16<"
#"\372+<r\343k\\\271\r\340C\303\30\3030\366\5\vK\232\37\312\362t\222"
#"s\277a\334\t\246\274\3149u\v\307q\22\300')X\352\342]\233\276\333^"
#"\366=l\201<k\252\347\261.\347b\334\305}\2357\241n\273\272\\\217a\337"
#"\253\311\215\277\327\234\224\3621\207]\227"
#"\375\30c\343.Z\352\302\21\1\372\375"
#">Y\226\372\262\bh\237%\34\231\246"
#"\320\307\f\25p\352A\263\340\222I\271"
#",\370\320\230r\371\3|\344'\236\346"
#"\330}\237\345\r\34J\16\356\4_\320\27x\354@\314\25s\202gkb\277\337"
#"0\214\371\237\17\26\225\252Q\314\256\2171kLyi\31Ihl\v\35c\357"
#"y\30\2739nu\277\e\e\eE\367\364;a\267\v\327i\322\244\200\324)\27"
#"\3511y4\206%\2457\345\1\325\35s\324\367\252*'U%\245.'\245\351"
#"\270u\337\261\374\367\260ss'\244}\227\313\231\326\275_g\1,\277V.\251"
#"\34\24\222\214>\220*\217\205\34\373\324"
#"\347\345<\307\234\303e\22\252\226\235~"
#"\36\245\a\274\215O\334T\364W^\345"
#"\200d\364\334\22N\356\343\334\255P\30 \24\263 \224^6\fc\"\f\363\34"
#"\e\263e?e\277a\354\5S^\346\234\352b\255"
#"n\361\266\3374\271\215\23\223R:F-\226\347\205"
) 500
(
#"j\22yU\21\310\363|\233\222SV$\22U\317\3018\223\301\2709)M\307"
#"*\177\377:\205\261I)\233F\330\342\260EK\371<U\e^V\367\261#\217"
#"'\25\256HJG\321\372%\3Nr\325+\271\17\271-\372\324\261A\352\30\36"
#"\216?\205j\350;\3437\177\226\257\37"
#"\272\217s\233\3618x\20\23\237\206q'\f\223S\306|P\347\3416\214Yc"
#"\263o\vh\n\t\32\347s\223`\230\253x7\213\357Qx\357\213\234\205yq"
#"K\17S\326\232\302\351\232\362Zvs"
#"\356\3129)\3511\345\244T\25\225\246"
#"\357Yw\254\364|\3246\243<A\223\236\310\306\311qI\312Z\3713\243\306I"
#".\16I\241a\304\334\26u\240\333\23\371\a\rY=\\;\215\234\2766\370N"
#"\n\334\365I~\365\344M\276\273\31\366#&:\r\343\216)\337\273\311kj\213"
#"\344\371\"\315=\325>9\2061Kl4\266\200\246\305Y\n\35kZ\300Nb"
#"\361?\316\"v\322\211\333\325E\352,\251z\37\322cy\242\255*-\"\203~"
#"$i\233$\370\253\36\220a\336\224\244"
#"\254\244\307a\336\211qC\315F)U\343(\243\373a\211\253\36o\324X\36k"
#"\334\211\200\226\324\f\221Re\276>\242"
#"\202\227\30D\226\216\347\5=\366\0\247"
#".|\200G\256\t\320\17\212\215\\\347"
#"\367\237>\314\273\16\2\4E\307\226X\206qg4\345\0\232\0023_\314\313|"
#"l\30\tS^Z\316~\307\t\217\332\347\372\372:kkk\215\337m\257\314\333"
#"\344\325\344U)[\377\313\212\327\216\252"
#"Wl\367\246\224\267\251\3737\354\230\243"
#"\30\345\305\30\366w\365\265\272\34\231I"
#"z\333\252\214\e\242\326\24\306\270\355\\"
#"\251\342\344\2\307%\234\363%\0212\351!\247\236#ya2 \363"
#"\0021\221_\235 <\300y\177\59\341p\362VD\226p\356_\362"
) 500
(
#"\356\327o\360\330\362@i\261\351\3340"
#"\356\214\375\364\344\e\223a\336\346b\303"
#"\0\2126\354FK\331oo\310\254\30"
#"\307\362\277\237\324\35\243\316+T\27R"
#"\267}\1\356\20\361\204\326\"y(\307K)\\\t\200>h\257H*\27<x"
#"W\364\b\25-\237\17\317\340\215\370\274\302$\317MU1\336OEy/\373\255"
#"\346\16\225\367\241\a\36\345\5\377X\343"
#"go\246k\340\342o\332\266\337\3739"
#"\257\236\363u\307\304\231\346b\30\23\244"
#"\234\27\330\366\271\253kT\3478Sf\214y\300</-\247Zu\f\246\357\342"
#"\255s\375\357e\22\252z1\232\250\363"
#"~\f\373N{a\234\320\254\272\220\257\362\357\367\336\243>'\367[EGv\305"
#"\307N\3579\271@\bA\32\330\20$|8\336\231\241t\257\26\266~O\277P"
#"\\\300n\337\1uc\302\26A\206\321.\354\236\235?\356dN7\214\375\302V"
#"?\35bV\26\221\262\2\265\327P\247"
#"\362g\352\22\263\253\317\353\274\37\345m"
#"\232rU\306Mp/\357\273\356\37\260\243\374p\312s)\377\206\\@\264\207G"
#"\221\250\270\240 \222\341\350C\262\342G"
#"E\306+!W\3@\35\320\v\307\323\360wO\t\215\24\215m\354G\276\227a"
#"\30\373K\223\0346\353\376\374`\241|"
#"\306<b\312K\207\2307\341\262\233\3573,Y\263.4\253\372\271\246\302\2U"
#"\301\333\24\366\324\244\244\f\313Ii:"
#"F\371\273\16:\201\364\202\376\241R\204"
#"\34\t=R\317\221P\315\327\5\275E\243\257%*4\375\264O\362\370,\275R"
#"\337\23e\21\361\336\17\232S\32\206\321"
#"\n\252\36k0\v\377<\222\256Q\252\bj\30\263\306Fa\a({>\346\305"
#"b\265\27\257K\371\263\343N^\343X\205\252\312\314^\224\224\246$}"
#"\21\331\326X\261\356w8'\34\346\227x\36A\220\240\230(p\353\t\216"
) 500
(
#"H\2068!s\216%\311p\"\234~>\213M\337\25\374\363<*\16\227\365p"
#"\331[\21w\232\347\311\342\367\261\3337"
#"a\261\330\206\321\r\354^\236O\232\212"
#"\244\30\306,\260\325O\a\250+\327;"
#"\355\343\247\252c\343V\213\332\355\376\233"
#"\366\331\244\270T+{\355\306\2232N"
#"9\341\352\261\312\36\240m\237\217\21_"
#"\16e\v\217\306^\"\212\22\232\34\236"
#"\342\272\317\311\275\247\2579\272\371\4/"
#"\37;\22\272\271\313\363\234\316\336\207\\"
#"\315\311\375_\243\376\277p\353\361\357p"
#"\354\336\317\363}\263L6b\223\253a"
#"\264\203\246{\325</\363\305~\344\225"
#"\32\306\235`\312K\313\251Kp\237\225"
#"\345*\345|\224\277\333^\30V\376\266"
#"\372\3368}R\232\224\224&\352\224\223"
#"\362\261UuG3\315\364w\332~\340"
#"\225Q\374kO\362\202{\232\267\372\214"
#"\220\276\"1\257%\204\177\345\270\"\27"
#"F\357:\316\a\17\347d\342`\363{"
#"\274\312\3078q\f\204%\240\307\201\263\237\346c7\277\3147oo\25Ad\306"
#"No\230a\30\363OYn\32\363G\235\341\320\344\2541\17\230\362\322r\322B"
#"\275\332\260r\232\202%\35\253<\21\355"
#"\265\332X\332_\365\363\345n\363e\205"
#"e\230'e\322\347\240\374;\313\241bea\276\261\261\261->X\24\304mq"
#"\267>\314\375\231\200x\34\241Y\242\247\a(N\1\372(9r\373[|M\37"
#"\344\247\226\201\345\343\374\334\221\v<p"
#"\344\tnG\217\215\350\t.\372\e\234"
#"\275k\211\314\346\374\231\214w\3030\214"
#"E\300B\370\214y\305\224\227\16P\227"
#"\240>-\312\307\272t\351\22\17=\364\320P\305eT\t\344\304\312\312\n++"
#"+\265JJ\331\2432\rFy\265R\336\213\252\356P 5\2264^B\271\356"
#"\25\221\267\242\364A\301\341\21\236\346\230"
#"\313\20\267D\346\336\202\34\372\4/\26\n"
) 500
(
#"\315!\316\276\240\350\247_\343`\346\20"
#"\311\20w\230s\233\304\256\357S\371\371"
#"s\215)-F\233h\312\271[\324\177\303\316\311$\317W\325C?\251}7y"
#"\376E\6\206\254\266\377\253\373\215u\347"
#"\257l`\234\365w\236\305\277\204){\323\301\224\227\16Q\26*\323>fz^"
#".\27\\e\2247fuu\265\370\267"
#"\276\276\316\372\372z\341\301H\237\257\36"
#"s\32\224\317\353\250\222\313;\24\e\0"
#"\311\330\322P6Y\365\257Y\222\267\306"
#"w\35\302\303\\\325\34\17\3363\214\0\0 \0IDAT\365\212\327\34\365\267"
#"y\222\263\374\326\363Q9S\340\370S"
#"x\357\361\252\350\346\207\371\352\241{9"
#"wk\37\177pK)\207\216\331\4b\314#M\236\342E\375\a\333K\316W\337"
#"\233\3041\274\367;B\210'\271\357\246"
#"\367VVVf~~\367\343\367\245\327"
#"\252\3470\235\343a\347\244\313\377\22\323"
#"^\237,*\275\321\233\30m\241|\3\315\212:\5Ju\20V\225\236'VW"
#"W\213\327\327\327\327w\354/m_\375\334\264)\v\251\246\337R\217G}\37q"
#"\202SP\351\361\246\306R\307\242\344\342"
#"\213\26\224\n\210\336\305\201\37v\274\234"
#"\vr\375\237\340\376\340\1\362\v\307P"
#"\215\215\340\17\234\341\327O~\222\177\273"
#"\351`\31\363\276\224(_\23\233@\f"
#"c\366\f\223\221\32302\324\35\177^\346\2246Pw~\232\214\244\213~.\27"
#"\375\367O\eS^ZNY\20\257\257"
#"\257\263\262\262\302\306\306\306L\276\3\f"
#"\3126_\276|y\207\220K\333U\25\226Q\23\\\335>\246M\235\300.+1"
#"\345\353\260\r/\210f\340A\320X(9:<5<w\261\313\213\250\3y\226"
#"?\270p7\357\376e\310\357:\316\303\307\217\363\310\ar\236:\26\266\22"
#"\276\305\327/\374\4\357\370\247\230\342R"
#"\242\252T\32\306\274\260\310\nu\323o"
) 500
(
#".\313\361\252L\237d/\221&#\332\260\357\266W\272\256\fU\177_Y\316v"
#"\375\267\217\242\352}1\366\37S^Z"
#"N\331\202\244\252So U\235\204\326"
#"\326\326\212\357U&),\336\373\35\312"
#"U\335\0043\3548\363@\365\373\244\347"
#"\325\363\257N\320\236\342\344\2'\334\5r\34Es\311{\16sDor\314}"
#"\21\324\201\353\203w\234\272\226\363\350]"
#" z\202\247\364\n\217\310\22\22?#"
#"\34\346\361\315\27y\354\0\321U3\205"
#"\37\333\2\352\306\220M&\306<P\226"
#"\217\213N\235\221\241*\327\367\243\2Y"
#"\235\2024\311}C\367;\321\217\362`u\371\267\217bQ\177\367,1\345\245\3"
#"\324\345dL\363\330\345\t\251\33403=\2\265!aM\373\eu\234Y\b\311"
#":e\245z\276\313\326\227\362\366\356m"
#"g\370\337\375\231P\35L\312\373K^"
#"\30\17\352\360\242\270\350\233\21\178\17"
#"\34\347)\315y\212>9=\\\261\v\37\373\304\30\206a\3147u^\217\262\274"
#"\254\223\353\223\222\361u\213\354I\32\371"
#"\366\343;\317\v\273\231s\273\366\333\307e\221\225\266Yb\312KGH7PR"
#"\36\306U\26&A5\207\5\330u\370"
#"\332\270\302q\332\202b\334\220\217\246\211"
#"W\350\203\364\310\360\2508D\1\351#"
#"\322\243\320d\274\4\307\v\3513\36u\245\336/\2J\26\253\223Ahy\351\314"
#"\351\322\200Y\270\rc\276\30\25\26\\\27F6)\357H]n\206\311\210\361\250"
#"\316\271\266P\337\311\274\204\266/\32\246"
#"\274t\204Y\336,{\361\260T\31'6z\330v\373\305\270!l\215\337K{"
#"QGI\341b\16p\344@\26\25\23q\321%\23].\212\v\3710\342\20\351"
#"\3=\204h\245\224,&\366c!c\25\352\212)\330\"\3050\346\237Z"
#"\303\317\4e\375~{\355w5'\264\214a\nf\231E_\264\227s_"
) 500
(
#"\215\375\307\224\227\2163\211\233\251i\37"
#")\217\245Ia\231\304\261\347A\20\214"
#"\0232\326\210\224\237\272B\221\311\342{"
#"\311\223\"\305\266\351y\372`\272E]\361\322`[\243|m\314\362e\30\363E"
#"\323\242~\26\341\315\345\307\375\332\177\231"
#"\256\31N\352\24L\313w\331\216\235\203\351a\312K\a\250\n\216r\350XS\""
#"\363(\201\323\264\355\270^\226\256\b\263"
#"\256\374\216\256Rwm\314\343b\30\363AS.\213\311\325nc\327\327\330oL"
#"y\351\0\343\n\211j\262\344\260\220\250"
#"\362\266\243z\261\f\373|\333\251\263\346"
#"\227\223M\273\362;\273@\223\302m\212"
#"\214a\314\16\263\322/\36v\235\215\375"
#"\306\224\227\5c\224r\221\204N*y\f;=,\243\372\262tQh5Y\370"
#"\215\371\240N\271\254\346\277\30\2061;Dd_\312 \e\263\305{\277\303Hd"
#"2\327\330oLyi9uIt\311CRWulX\230\330C\17=\264\255"
#"jYz\275z\254QI\354]\315=\350\232W\251+T=,\345kd\225r"
#"\fc~\260\5n\267\260\304}cV"
#"\230\362\322r\232\252\264\254\256\256\216e"
#"\341\252\313a)\177n\334\352\"u\341:]\22`\35179\347&\332\340\314\270"
#"s\232\274+\345\320>Sb\fc\266ty~XTLq1f\205)/\35"
#"\244\354yY[[\343\362\345\313\305\353"
#"\243\222\356\233<9\303\302\246\352\362d"
#"\272\204\345N\314?\273\t\353\353\332\3704\2146`!\234\335\244j$\262kl"
#"L\3S^:H\22\34\353\353\353\254"
#"\254\254\0\324&\335W\27\343\215\215\26"
#"\207\b\242\352g\272(\270\252\336%\243\235tql\32F[0\371\331M\252\353"
#"\4SR\215i`\312\313\2P\227\373\2\365\235\207w\313$\366\321\26"
#"\312\223\257\t\347\366\320\3449\263k"
#"h\30\323\243\353F\256E\245N\276\332"
) 500
(
#"\2655\366\eS^:\316\306\306\206Y\273\356\220a\215\326LH\267\3\313{1"
#"\214\331P]\334\332\275\327-\352\302\314"
#"\rc\277q\263\376\2\306\376S\227Tg\214O\271\344n\302&\340vQ\35\363"
#"v\355\fc:\224\345\247\311\315nak\tcV\230\362\262\0\330\302\355\316h"
#"\362\274\30\355\301{O\226e\263\376\32"
#"\206\261P\324\315=\266\340\355\16\303Z/\30\306~b\312K\3071W\356\235S"
#"\347u1\332\205\335\3\2061}\352\356;\273\27\273I\331\263f\306=c\2771"
#"\345\245\343t\265|\361\264H\302\270\334"
#"\333\305\316e\273\261\205\223aL\17\347"
#"\234)0\v\200\315\213\30641\345e\1\261Ic|\232\224?;\207\355\302\254"
#"\202\2061?X\356K7\261y\321\230\26\246\274,\bV\351eo4Y\b\355"
#"\34\266\203t\355\354z\31\306\374`\367"
#"c7\261*\234\306\2640\345eA\260\360\261;\243N\2011+\323\374c\341)"
#"\206\261\177\214\272\267\354\376[,\354Z"
#"\e\323\302\224\27c\241){\244\206m"
#"S\247\364\231\"8\377T\257\235\25\260"
#"0\214\311Q\275\267Fa\367]\267\261"
#"9\321\230\26\246\274\30\vM\223\233\273"
#"\274\310\2556X3\332C\271\201Zz\264\t\3260&\3178F\1\273\367\272I"
#"\323u\267\210\5c\2770\345\305Xx"
#"\352\254\207u\326\372\364\272\t\337\366Q"
#"\275~v\35\rc2\224\357\243a\367\225\335o\335\245\311HT\235GM\366\32"
#"\223\302\224\27\303(\221\204\255s\256(\217\\\26\314&|\333KU15+\260"
#"a\334\31eyXw\177\231\307s\261(\317\225U\205&)36\26\214I`"
#"\312\213aD\252\215(\253J\212\t\337vR]Ty\357\355\372\31\306\4(\313"
#"\303aF\35\273\337\26\213\362X0%\326\330\17"
#"Ly1\214\310\270I\371&|\333\203y\312\fc"
) 500
(
#"\177\251.T\r\3v\346\215\202\215\17cr\230\362b\30\25l\261\333\35\314S"
#"f\30\373K\223\227\332d\250\1\315c"
#"\301\306\207q'\230\362b\30\260-f\333\350\26u\212KS\2059\3030\366\206"
#"\31\b\214&\252\371/\345\327\fc/\230\362b,<u\225Q\214n1\216b"
#"b\327\3370v\207y5\215aT\275r6V\214Ia\312\213\261\320T\205\253"
#"s\316,\360\35\244Z1\3160\214;"
#"\247\311\242n\367\231Q\306\224\26c\322"
#"\230\362b,4\325\234\bkF\331]\312\0366\357=\252\212s&\2\r\343N"
#"\261\302&\206aL\23\233\271\215\205\247"
#"\256/\201M\274\335\243|M\223\322R"
#"-\217]\367\3340\214\321\230\3544\352"
#"\250\206\26\232l5&\201)/\206\201"
#"\305n\e\246\274\32\306^I\362\263\334"
#"\334\3270\22&[\215Ic\312\213a\260\263\221\226\321]\352\232\221&lb5"
#"\214\335a\275\224\214a\244\374'\e#"
#"\306$1\345\30500\313\320\"a\327\3270&G]\330\255a$\312y\245&"
#"{\215Ia\312\213a\30\206a\30{\242l\3641\345\305\30\205\215\21c\22\230"
#"\362b,<6\351.6\26\322`\30{\303\356\35c\\\252\225=\r\343N0"
#"\345\305X\b\352&\327q_3\26\3\233T\rco\324\205\4\231,5\312x"
#"\357\311\262\314\306\2051\21Ly1:O\331:X\327L\315\22\266\215\204M\254"
#"\2061>\303\n\235\230,5\252c\242\256\247\232a\354\5S^\214\316S\2270"
#"\230\4g\271\264\247\t\323\305\244\\\r"
#"\307\26\\\206\261;\322}c\362\323\250"
#"2L\236\232\2545\356\4S^\214\205\240j!\254k\232e\215\264\26\223\246I"
#"\324\306\200a\f\247\316\262^\367\272a\0\346u1&\206)/\306"
#"\302P-\351\331\224@hI\250\6\230e\3200FQ5\370\224e\254"
) 500
(
#"aT\361\336\233\247\316\230\b\246\274\30"
#"\235\246))\177\34w\266M\300\213\205\305c\e\306\356\261*R\206aL\eS"
#"^\214NS7\241\232\325\307(S-\342P~l=\332C\351\227\376\0064\17"
#"\217\370\301\313\361\34\370\322\353Z\376L"
#"|H\357\333\335c\30\306\235PW\354\301\302\16\215q1\345\305XH\234s&"
#" \r`\370$\332z\344M\320,\350,x\20\217\342\342\337I\374\373x\16\300"
#"I\37\274#(0Q\271\221\240\254\b\375\322\204\3411\rf1\351\314\275aL"
#"\235rq\24\330i,\252\206t\eF\23\246\274\30\235\306\4\2401\16\345R\332"
#"\335\252:\346@\4Q\20UP\207\27\1\351#I9\361\22\224\31\311Q\315P"
#"\27>'\352\n\375D\24\240\207\222\207"
#"}\342\240+\247\310\330\25\325\322\362e"
#"\31k\362\326\250R-\2243j\214X"
#"\30\2421\16\246\274\30\235\246\256\277\213"
#"aTi*\334\320~\334@I\221\f\0042\17\242=\210\36\30\342\357v\4\245"
#"M\210N\25!~\326\201\6\317\215\227\f4\352-]8=\306\304\260\2341\243"
#"\216\25222\216\2345\305\305\30\205)/F\347)[\322\275\367\0262flc"
#"X\305\271\366\223\362WJ9-\16 \217\241`\345-e\240\220h\36\0367?"
#"\307\275r\212k\16P\27>\0327S"
#"\323^\26\212\262\314L\275\261\232\32\374"
#"v\343\3361&E\235\207\256\252\314\330"
#"\234l\354\6S^\214\205\240\334\224\322"
#"\204\244\221hR\\\234\353\216h\f\277"
#"Q\311\361\270\"\371\336E\305\245\217J"
#"Pb\234\206\360\261\34\20\311Hy/\311\23#\22\303\3074<\332\2u\261("
#"{\261\235s\210H\241\304\30\306(\352\344E]\261\224\272\367\f\243Jwfh"
#"\303h\240\274@M\312\213\tF\3\26\243\362\234"
#"\\\373'\210\274\225\236dH\357\24W\311\303\375\260"
) 500
(
#"\371$Gd\t'\2028\341\364\365>\2d:p\300x\349\302\263\247\302b"
#"U2\341\324u\217Jx\327X\f\312\215|Mi5&\3050\371k\343\314\30"
#"\206)/F\347\2516R\253\276f,6]\36\v\"\177\311\251\23\312\25}\23"
#"\257\312\346\343\257\360\276\223\377\1\345*"
#"\247\17~\225\17\275\256\250W\362\327\317"
#"\361\362\361OpU\b\311\374q=\341"
#"\24\234\\\340\317\336q\v\365\212^}"
#"\230\247\377\365\347\270\35\336\235\335\0173"
#"\246\3128\367H\327\215\0\306\336h\32"
#"\27\345\342(M\375\330\f\243\211\336\254\277\200a\30sLL\214P(\26\264*"
#"\300\216p+\17\352@\372(=DA\245\37\23\303\213\335\240x\244f\321\233B"
#"\233\2\2568\266R:\216\a\t\245\260"
#"b\357\222\336\276\25\274\252\253\214\323\306"
#"<\230\34\301\361\35n\335\206c\a\340"
#"\300\231\e\344\361'\235\327\3431\361~\vY~;?\302\313\341\r\355\201**"
#"\16\301\241\3721~\355\354]\341\32."
#"\277\233{n\276\312\353\300\362l~\2221#\306m\356;W(\344\2Y,<"
#"\221\344\220\304\220\310\"|\262H\0K9b.\310;\331\276\257\"-L\363\30"
#"Z\31?\342\6\373\322\270\177\321\336v"
#"\371Y\336\215z\220\305P\376\307\31\27"
#"M\375\330\f\243\211\305\270{\f\203\372"
#"~\36\306\b\4r\372\240\n\22\372\204lS\\4$\201\307T\b\364\366y\216"
#"\310I\256J\254h%1\177\342\3269\356s\202\223%D2\234\353!N\270\357"
#"\211MTsD\376\3\247\245\207\270\f"
#"\21\301\271\223\\\225\34\21Ec\362\270:P\367f\\=\364\nej\22\2143"
#"\36\3328\231.\371\37\340\363\233\37\346"
#"+\313Y\b\17\223\303<q{\220\313r\365\224Cz\177\v\347\356\347"
#")\34\3378\345\220\236C2G\357\344\363 \241\301\245\"\210WR\216\214"
) 500
(
#"\225\32[<\312\211\325m\n\267L\213\34\325\201\322\202,\21k\202\3[qL"
#"\223\204LP4\2422\243\0\233\237\341"
#"\260;\315\363\200h\36*\367\305\206\255"
#"\376\373Op\330\245\373K\310$C$\343\372k\377_P\\\364\n\37\217\3579"
#"\0212w\222\353\266\364\2\26#l\327\330\37\354\0162:OU8\266m\362\235"
#"5\231\366@\204>\241T\225H0%"
#"\252\202\212\307I\364\210\210G\325\341\350"
#"\223\341\311\343\344\377\245\313\277\207\220\201"
#"\236\344\232\276I_s\274\177\23\365\312"
#"\37\235\275\v\344:\217\310O\302\25\217"
#"\346\212W\345\365\317|\227\23G>\307muA\371\321`\255L%|'\275v"
#"./\314\2724.\336t\16w\340,/j\37\325\34\275\372\243|\362\241\317r"
#"K\257qZ\34\317\376\264G\363>\372\3729\216\0?{\301\343\373[\250W\372"
#"\27\177\22\225\fXBP\324I\\\334\r\24Wc\361h\225\22/\236\242\20\270"
#"\244\34-\207\367\375\360\236\2,Q()\304\341\355\243\221+y`p\250h\254"
#"\321\227E\257L\330\237S\1=\3155"
#"\365\250W\274n\341U\371\251\267\377W"
#"\300\25Ne\357\303_\rr\305\253\362"
#"\332\343\337\345\330}\277\315m\273\177\212"
#"\352\237utI\16\e\223\307\224\27\243\363T\343j\233\352\315\e\365(WxD"
#"\204%\351\221\311=<\271\tW\36\21"
#"\\\317\341$#\23\207\234\272\216\250\303"
#"\351\26\310[\361\32B5\274\272\20L!o\222\v(\31B\216\306\5\260\0r"
#"\3536\337q'\371\351\343\301\252\237\243"
#"\348\363/\370\330\213_\343\331\333\375"
#"\320_\4@\34\242\275\242\362\325\244\247"
#"\266r\f\266\367\276\23U\307z\177\371m\262#Op[CcI\325<x\303"
#"\336\330\344;<\314\317\34\203`\211\26</\363\332"
#"\246\37\334\37\352\20\315\213E\237\340Q\24'q\342\20"
) 500
(
#"K\3307\346\35\207'/\204EReD$\32B\256\362\260\b=\351\221\311a"
#"\356\275\327\341\234 Y\17'\202;\365|\261\247,tB\n\336\24\331\242X>"
#"y\217\b\364\321\250\370$\331\326\207\315"
#"[\274\252\277\304\373\217i\f\203\205\345"
#"3\377\234\2237\277\301\37~\177Z\347"
#"\240\235\330\374l\f\243\3353\263a\214"
#"\201Yp\366\216\262\311g\357{\0\256"
#"(^s\362\253?\302\231\207>\313\333"
#"\237R\264\357\361z\213\317\34\276\233\307"
#"\177\371(\bxq\344\232\362ZB_\220\320\334\320\305.\357 \204\3200\37="
#"9\34<\316\207\356\276\310\261\373>\307"
#"-<=\25D\216\361t\377\5\316.\367B\336E\364\3428\262\20\372Q\262|"
#"N\212\362d\231\224\226\246\356\341m\31"
#"S\375\277\373^\256\274\353\223,g\202HFv\302q\355\2053\34\270\3531."
#"\235{\205\373]|}\365\25\336u\344%\276\267\31\256[\36\22\3\202R\243}"
#"<\301\nM\346\360\0322\227\324\246\217"
#"\205\241Z\322\266-\343\37%\32O\b}\2124z\215\5D\337\340\263\207O\300"
#"U%WO\377\352\273\270)\237\341V"
#"\256\250\276\306g\356\271\233\317\374\362\375"
#"\361>\b\36\25AC)q\226\342\376\35\270\f\321<\2516\340\4\361\340X\202"
#"\345\17\360\363\207\277\310\373\356=\307f"
#"<e\302q.\344/\360\251\267\315\344\214\30F'\260\331\307\350<V?~\357"
#"\310\355+|\371\306\303\374\314q\20\34"
#"\371\261\247\320\233\217r\0@\340\215s"
#"\377\210\257~\360K\234Y\216\236\v\227"
#"\343\360\311\370\30\366\241\241j\225\3604"
#"\307\\\26,\233\",\235\374\26\0\252\a8s\303\243\237\376.?$\31\342\4"
#"\221#<\371F2\230z\262\30\272\221K\16\32\27\327S\26_u\336\273"
#"y'\363=\216^T\274W\274\177\23\257\3479*}D\224\3\217\335 "
) 500
(
#"\317C8K\376\342y.\276\320\347\374\375\341\367eIA\274\353\f7\375\279"
#"\256aa&w=\312M=\317qR\376\200\261\bT\363]\332B\221\313\202\a"
#"\201\276(\271\200S\17o\\\343\231\227"
#"\36\341g\217\206<\30w\354i\374\v"
#"gY\26\317\346\223\277\300\327?|\231"
#"\263\a|\314\341\357\205\177\261\27\22\205\1\5PO.OsB\\\360\326\270\36"
#"\362\361oF\343\314\3338{C\361\237~\235\203=\3019aI\356\345\334\e\24"
#"\371d\213\216\315\317\306^0\345\305\350"
#"4u\371-\326\321w\27\250\320\273\347"
#"]\274\215>x\310\240\b\177`\363\t\326\276\376\363\\:s\20\b\341F\3423"
#"\34Y\254\6\26\26\17^\4D\3109\305u\335B}\216jN~\361'C\302"
#"\177\232\274\216^\fe{\265\217\336\372"
#"\b\317\34<\302\223\267(\252\230\241\203"
#"p\217L\267\27\2\232\350O\36Ra\254M\v\267@\37\360\210/\377\216^\250"
#"\372\246\340$\375^\27Bj*U\20T\342\2P<xEq\361\237g\233\206"
#"jt\236\262,m\213\354,*$\306\357\333S\t\371x\232\241\342\221\303\a9"
#"$!\227\253PJ6?\317C_\371 \277{f\271\2201\271\367\321m\234\323"
#"SP\225\201b$\16\321S<\247[\344\252x\337\307?\365~\212{\17\340\330"
#"\27\320<\344\371m\335\372\20_^>\302goY\261W\by/mU\216\215"
#"\331a\312\213\321i\252\212\312\260\216\276"
#"\306N<\220\277\364]6\221\201\264\20@oq\356\27\277\312G~\367Q\336&"
#"\301+3\210+\317\311\264\207GC\347v\4|X\362\366\323F\32\26\301\bd"
#"WN!\247\236+\216\351\20\374\362c"
#"\374\372\303\337\346\3177\323\361z!\324#\17\373\364\222\357\333o\356"
#"\326\270p\250:p\202WGJL\26\337\213\5\26\362\220\214\2571"
) 500
(
#"\361\230P\210\1uaq\27+*\251J\b\207\211\2131\361.$\360\e\vC"
#"9w\260-\367\210\26e\2123\224\330"
#"\\U\35\231\363\210\27\262\e\337\343\226"
#"\206\260\262P\ad\223'\36\372\32\37"
#"\276\374(\207\242\267\27\347\21\227\344V"
#"V\204SJ2\342\370\240\324dZ\252"
#"\200\30+\"r\355\343\310\311\353\341\265"
#"XZY\17\234\345\327N\335\344U\313\330\337A[\306\2251{Ly1:E"
#"\325\"X\235lM8\356\16\267|\224"
#"\17\335\3634\337\274\32\27\266o\234\343"
#"\369\311g\317\375c\276\372\241\313<v\260\324\221]\300KPYBhF\251"
#"*U\261\210\b9\25)_E\1\177\374g9u\361\375\234\276^:.\327\370"
#"\375\247\17\363\216C\361\5\t\335\337\265H\36\17\vnc4i\310\273\30j7"
#"\210\270\213\225\334\304\205m\242\22Z~>x-\3357\256x\260;iqh\213"
#"\247\245J\30\312\203qL,X\2419\364\227\217\361\363\207/\362\215$wn}"
#"\16'?\304\327>\364;\2349\220\225B\316R\371\344\36y,\265,)o\6"
#"@\4\215\306\225\24\n&\364Q\361\350\321\17\360K_<\26d[,\315,r"
#"\235?\274p\230wY\243$\303\3303\246\274\30\235\302:AO\26\257\2078\373"
#"\302U8\21rUz\a\276\312Gn\277\237W?\371\2/\2359\210\310\22\222"
#"\205\336\6\367>~\v\347\35\216\337\345\1\21\262LB\376J&\310/~-\204"
#"\32\221\312,G+\276WD~\222\363\372\34zL\20\227\341$C\334o\360\236"
#"[\177\304\231\3\341{(=\300\243\251"
#"\261\233\n\323\322C\255\264\266\261\350\264"
#"\315\343\262\223A\231\344\20\342\272D\317"
#"/\363\350\215+\270\343\16qBv\350,\0/}\362P(b!"
#"\241\230\305}Ol\206\240J=\317\3.\213}\252\242\234:}\215\340"
) 500
(
#"\224\366\204B\312\275X\20 \204\204\t"
#"\307x\332?\v\307\242,t\202\223\177"
#"\305;6_\340\23\313m=\227\223\243"
#"\34\21\321\336\261e\314\2\v\2724\26"
#"\202r\242\265\t\311\361\t\325\302~\222"
#"\247T9\37C\206\24\a\252\\\0\2120$%*\26\ax!\1774\231\371Q"
#"\340\27WV\371\275\365/\205^/\361Eq9\320\213\a\360\210\34\345\202*\27"
#"b\327\353A#\314>\232\32R\212\303yb\177\206l\2200;%l\334\30\213"
#"\212\252\222e\31\336\267\265HC\362z"
#"\4_\214\312\2331\f\3628\347\325s"
#"\36\242q%\366u\211\325\r\25\207\247"
#"\17\376\f/\350c\250\272\201\321D="
#"\210\3=\306\215\362i\221\20z\231\251"
#"\4\17\263>\300S\232\363\224:\274\204\360Y\363[\6L\246\32{\305</F"
#"gq\316\205\306`1!\320\254\347{\305\205\362\240>\206|\225:U+.\224"
#"2Fc\f\270\213\212\213\17I\341^\351;B\274w\f\35S\t\212\213\22\365"
#"\17\311B\2,\321#\243\203\3600\350\205c\25\237\35(7:\203y\317\306\217"
#"\261H\224\215>u\315~\333\201\257<B\341\201\321\220\243\a1<RA\331\336"
#"\240\322\321\e4h\25B1\22M\3714\203}\346\251\2\31\340\304\223K(p"
#"!E\210\254\342tPb|\320\26\323"
#"\250\363n\267g|\31\263\300\224\27\243"
#"\365\214\352\305Qn4h\226\236\335\241"
#"\342\21B\205\36\234G\225\330 \322\201"
#"\17\371\23\232\373\230;\21<39\4\veTdDSk\270\320\344\320KF"
#"\252\302\223\224 $\206\221\305,XAbNKRV\302\266\32K\366\6\363\347"
#"t\254\300\251\272\222y\355\214Ec\330"
#"xo\333\275\20\32\343V\24\30\1\227<\302\370 \303D)\252\204\t"
#"\205\234R\30$\342\253\306\366/.\24\17\21O\26\225\e\242\21'K\262"
) 500
(
#"J\35J\36dZ2\312h\221}\266"
#"\320\224\225\343<\317\311\262\254u\345\350"
#"\215\331`\312\213\321z\254\314\342\376!8\274l\305d\323hE\324hItA"
#"\361\360\231+\274&(d\232#\322\217"
#"Q\340 \32\243S\325\305B\273\361\363"
#"\252a\277\232\246\361\350\331q>&\211"
#"\373\360^lH\2518\234\353\205\222\275"
#"\203\254\363\375?\a\rc\312,\203\306"
#"\"\320\376\305d9d,\311\214\201\22"
#"\243\205\307$\310\37\5\362\270\235B\f\225s\261\310\230Gr\300\r<(B\26"
#"\266Oe\307+\25\307\203\24\\*\202"
#"\305B\341\221\355\337aQ\251\226\241\267"
#"9\334\30\27S^\214\316P'\b\23\266\320\334;N\227b\211\321\250\240$k"
#"dTh\34!\264[$\217\25w\4\264\27<6\n\352\336\f;\222\260\b@"
#"5\224\357\25)z\210\204\0202_\224\351\r\2578T\372a\362W\207x\5\237"
#"\243\251d\357\214/\251M\262F\327)"
#"{\34\333\233\357\222\210^^\200\222rR\224\316S@sDcn]\354%\345"
#"\234\213ab\375\340E\311Jy~\261"
#"\34|\246D\257\264\26\341\255\271\344E"
#"\231\346\320\243\312G/\214\17\e\333\362"
#"k(6g\e\303\260\273\307X\bl\241y\a\210G\264\37'\342\224\233Ba"
#"iL9)\203\372\37.*;\32{\211\274\5\b\241\24a1\224\5\v&\24"
#"y2\242\203\222\246aA\220\222\\z!$\rP'h\226\232\311\310\276\366z"
#"\251\243l\25\264\211\3250\332F\364\354"
#"\226\20\35\244\316\aCJ\b\177\365."
#"\311\264\250\354\bH\21.\346\242l+"
#"\31\311\304\27\211\374e\303\216h\350-#\311S\234>o\31/\265X[\3c"
#"\\\254\332\230\321j\352\334\314\226\230?i\\\350\5\22\377JJ\6\f\252"
#"\367P\232\270\213\307\370\236\340+\257"
#"\305}R\372\250T?\267m\267\203\347"
) 500
(
#">\306\221;)\305\252\357/u\23\252M\254FW('K\327=v\32\251{"
#"Z\226,\25\373\256\333y\377\0272\260"
#"\274}\n\35\223JfK\361\371\351\310.\303\350*\346y1ZM]xX\347"
#"'\\c\252\224\307X\365\3210\332L\235\242R\367\230\212V\30\306~ac\314"
#"\330\r\246\274\30\255\247\232\260o\2\320"
#"\2304\345\5\234U\0353\272\302\270\36\226\252l5\31kL\212jA\b3@"
#"\32\343`\312\213\321\t\312\213J\233X\215IS7\241\33283\272@\335B\261"
#":\266\253^\30[\\\32\223bg\b"
#"\236a\214\306\224\27\243\23\230\3203\366"
#"\213&\305\305\306\234\3215\252Vp\v\3135f\201\31!\215Q\230\362bt\6"
#"\213\3156&M\223\342Rn|j\30m\245\311\303R\367^\365}\303\2304i"
#"\314\245\206\225\206\321\204\315\300F\347\260"
#"\t\326\230\24f\0014\272\314\260\6\254&G\215i1\312\343g\30ULy1"
#"ZMY\300\231\3003\366\3[\304\31]\245N^\216\223?hr\326\230$&"
#"c\215\335b\312\213\321j\312\226\232<"
#"\317w4\21\264I\266\375\314\3435\364"
#"\336[\2\277\321z\352\26\215\343,$m\261iL\202&\345y/\2373\26\v"
#"S^\214\316P\266\24ZU\234\3560"
#"\311\22\232{\235\364\252\312\360^\27}"
#"\206\321\6Lv\32\323\240I\216\226\313"
#"\322\217\3739c\261\350\315\372\v\30\306"
#"\235RUZ\312\257\e\335AD\360\336"
#"\337\361>\252\f\233$\313!4\253\253"
#"\253\333\306\332\312\312\312\35}\27\303\230"
#"5Mc\3379g\326mc\337i\32\177\26\2n\214\302\224\27\243\365\254\254\254"
#"\260\266\266\306\345\313\227\1\263\32v\221"
#"\272\346\220\343^\347Q\333\325\275\267"
#"\272\272Z\274\227B\304\326\327\327\213\367\322s\347\334\35"
#"+T\2061+LN\32\263dX\t\372\335\32\232\214"
) 500
(
#"\305\302\224\27\243\325\250*\317<\363\f"
#"\37\375\350GY[[CU\213\205\245"
#"\321\35\252\335\275w\323\345~\234\355\222"
#"\262\222\366\277\261\261\321\270my|5\365\300\260I\3260\fcwT\345g\371"
#"1\275o\262\325\0S^\214\226\223,"
#"\337\"\302\312\312\n\e\e\e\305B\264"
#"\252\304\230\320k7\223\350\362\235>\267"
#"\266\266\266-\351>\215\225\246\375\216\243"
#"\230\224\277\227\2153\243MT\307\264\215"
#"_cZ\324\311\323&\217L\365\321X\\Ly1ZO\22b\e\e\e\333<"
#"/)G\341\362\345\313&\364:\302\260"
#"\204\371:R\210W\331\263\2p\371\362"
#"\345\221\23d\365\365\272\347u\226A\303"
#"h\eU\305\333\362\r\214i0\356\274"
#"\\\335\306\344\254a\312\213\321\31\252\2"
#"\260\254\304\224Y__7%\246\245\244"
#"\304\371\335\260\266\2666V(a\323\304"
#"\330d\221\266\361ct\t\e\317\306\264\251\363\246\f{4\214\204)/Fk\21"
#"\0214\217\311\322\32\223\253\331\302\351\22"
#"\210\a\34(\254\257_\2u\20\347\346\325\325U\234W\274\v/\364Q\336B\17"
#"\257\377\5d\211\313\353\227\20\357\300\371"
#"m\237#\376\t\341%\305#8S\204\246\314NE$^k\17\376\373\237\341\277"
#"_~\215_\321\v\34c\223sG\16\362\311\233p\373\307~\215\233\2378\0\""
#"(\212\210\222\306\al\1K\250\200( \245kKxM\305\307a\20?#\245"
#"\343\32F\207H\5P\322bq}\375\22\212C\24\274\34482(\356\211\372\361"
#"?N\370\345n\3363\272K\325hd\336\25c\34Ly1Z\307\266\320\35'"
#"A\221\20@s\234d\341u\\\\\244\n\242.,L\1|X\374\346x\4\305"
#"i\6\342\303D-\31\342ae\355AT\5G\b\241\370\322\245\3138\361"
#"\340\34h\216H\6\272\205\260\4bI\204\263\305CJ\344\27H\312\204\240"
) 500
(
#"\344\267\257\362\365\27Os\305\177\236\243"
#"\342\342\3269B\206*\210\20\25\225\24506TA\222\332B\334\217G\251\214!"
#"\361(\16pa\354\305k_\327\270\3220\332D\331\302=\b\271|\20\357\226x"
#"\346\322\227\242\274L\372{\263\342\336$\23G).&G\21526\36\214&L"
#"y1Z\307\366\270l\37\255\343\16\310P|P(\242\311\\PT\\X\230\252"
#"\200\353\3=\234\n\"n\240\321H\270"
#"\25\324\301\306\245g\n\305GUy\350"
#"\241\265\260\204\215\273\20\237\243\262\204S"
#"\37\27\314\333\277\2331E\324\221\213'"
#"\213\177:%\\o\256\363\361\3453\334"
#"\300q\274\367\2378\367\332K<\266\f"
#"\216\f\325\250\300p\225G\344\375\\$"
#"\207\223\317\361\34\17\360\257\336\371=^"
#"<q\235\303\277\370\n\357\361_\344\351"
#"\227\36\346\232\277\310O\221\306\224\217\312"
#"M\305+\207]{\243[\254\257\257\243\361\21u\254\255>\b\352\360.\334\vA"
#"\261w\210\b\227.]\32Z\306|\334r\345\26\226i\224Is\260\205\216\31U"
#"Ly1ZA\3252W<\307!\22\2x$\272`D\200\333Or\357\301W"
#"\371U\177\201\243\0H4\312\367BH\220\224\303\177\302m >j'\31\304\270"
#"\210\220\360\377\245\313a\273hq\317Qz\be\e}\3523\223\3621\314b4"
#"%J\227\253\270\240\352\361\34\345\302\353"
#"O\362\312\241\357\360\253\371E\356\a\210"
#"\213-$\204\275<\177\362\4/?\361"
#"\32\376\314!6\237\274\217Cg\16\363"
#"\304\255\37\2\271\216\273\361E\374\265\34"
#"\177\24r\240p\325xA\234\200Jm\330\214]w\243\2154V\320\3\2227\363"
#"\362\372:\340\242/2\204]\256\255\256"
#"\356\220{\251\301e*\2121N!\214\246\357d\30\223\2502it\17S"
#"^\214\271\247\256\312H\361\232\206\374"
#"\2040\275\272\230\323\20\254\202 xQ"
) 500
(
#"\322\177.\332\347\305\v*\371v+_\374l\356<\16\207x)\254\352*9^"
#"22\rq\337\231\23\360\32\302\310\""
#"\227.]\332\366\235M\300N\v\217\327"
#"\240\300\ny\210 \23\207\203x\355\2630\22\342\353\305U\221M^{\365\36>"
#"\364\317\16\202\302\362\361\17r\367\331W"
#"9\264\254\260)x\36\341\347\216\206\270"
#"\262,\346\266\204]hL\247\n\241d"
#"H}\3251\303h\23\303\252\214\25\336\354\230\357\225\344.\f*;V{\37\245"
#"\322\365i\337I\251\1\2665}\35\226\ec\30ev\253\374\32\335\306\224\27c"
#"\356\251\n\254,\313\212\256\346*\240!\361$(,\352\330&\3166?\307\221_"
#"\374\16?\314\27\271p\343a\256\351y"
#"\356wY\314{P\4\1\275\306\311\336\373xZs8}\225k\371\t~\375\335"
#"\337\343\346\361\353\34y\350\25\336#\277"
#"\303\205\233\37\343\212~\236\343\222\305\34"
#"\233\355J\224\t\321\331\240\336\241\316\307"
#"\260A\207 \250\366\203\302\342\302\2("
#"S\341\372)\341\330\27\t\241^\247\236"
#"\303?\225\361\352M\341\0351\357\205\3"
#"\207x\217\276\32\202\20E@\266\342\1\0\211\371S* \16\\\237\234\36Y,"
#"\na\t\310F\333iV\26\374\240x\t\236\276\b=/\340\2029\250)\257\245"
#"\2518\260\311O\0\0 \0IDAT\321ky\373T\312\276I\3617\5\306"
#"(\343\275\3079G\236\347\200\31\b\27"
#"\35S^\214\326\261\315\23\243\304\312Q"
#"B\260\216\347\210f1\221\337\a{\371\215/\242W\24=\16h\16\22\23\267%"
#"\344\310\\\177\344\1\276s\3565\364\23"
#"\313\334~\362>\226\317\36\346\334\255C"
#"\300s\360\342\323\220>\213/\"\223\302"
#"\321}X\314R\277P\265\305\353\376#(\31\16M\325\345p(\31 H"
#"\236#@_\224\23\27\267\320\2131"
#"\257\t\20\335\344=\207\25\237\v\320\207"
) 500
(
#"7n\361]\340g\324\201W2\315\360x\220,l/!\302\337#\364\350\221E"
#"\245f\350w\263ko\264\200\341\26m\27\n\371m~\201#\207^\346W\375/"
#"s\373\336e\36{\21\356}\3746\177|\366\256\332}\16+y\233\2161\252\211"
#"\360nK\242\e\335\306\302\306\2142V"
#"\347\323h\25\316\271\302\353\2\fJ\""
#"C\21\322\220;\217\344!\230\314\223\343"
#"\344\24\378\236\307\212b\202z\20$"
#"\204\22\351m^\177\345\307\371\350\321e"
#"\20\317\201\23?\307\21y7\a\357\202"
#"\260\20>\305\373\217\307\335\253\240Q\361"
#"\241T\331\n\352\27\252&d\367\37u\32\256{\272\26n+\204\271\0\3369 "
#"'SA\351\25i1A\327]\346\300"
#"\273_\342\353\327\276\217j\217\353\277\371"
#"\30/\310wy\355\r\342\265\315Q\25`0\326\34JOcq\263T\241\256\374"
#"]*\2133\303h\3\325\220\261\252\27D\1\247}z*\310\255\347x\346\333\37"
#"\343\212*\177t\366\256\241\343\274.WaX3W\273w\214q\2611b\230\362"
#"b\314=UA\265}\342s\204\5f\f#\0032_\256\2\325C5\17y,"
#"\"\\=\325#\3132\234\313\220G\256"
#"\201\334\346\317o\270\350\275\1\226\337\316"
#";U\361\222\3667\250d%\222\2749"
#"\301\32_^\330\32\263A\212\377\21\362"
#"\220\350!\364\310\210\225\307\310\350\213G"
#"\350\247\32\fQ\341\205\343O]\345\235g\17\340\234p\214k<w\362\5~\377"
#"\331M\240\217'#\213\275`\6\243\315"
#"\305\322\330\341y\335b\313z\24\30m"
#"\246\252\\\204\312|\0=\372\\\340\370"
#"\241\263\274\344\277\310\tw\204'o\245\355|\351\363W8%\31\"\202;u\205"
#"+\247\34G\316\275\36\214J\317\237\304\271p\33789\305u\322}3\220"
#"\337^\a\307\366\325R\216\306\302c"
#"\345\350\215\204\205\215\31s\315\310\2124"
) 500
(
#"@\321o#yC\\\271y`\277P>\248~\241O\377)\207\223\260@\25"
#"n\361\316\273K\237\335\374\36\257\340\370"
#"9\tJQ\17\245X\233\306m\6\337"
#"\311t\377\331\23\256\223\342B\22\375\333"
#">\301M\37\307\313\362Yn\346\32r\242bR\277/*\314\201\310Q.z\317"
#"\305T\362\325{N8\1>\305\r\205qm{u\226e\vo0\332H54"
#"G\212\260\3117q\234\344\372\353\357\344_\36\372.\277\352/p<\26\262H5"
#"\367\274\302\377z\372\1^y\3426\376"
#"\314]\274q\356>\16\236\275\207\307_"
#"_\6\256\362\211\243\31\327\324sT\205"
#"[O\336\313\241\323\327\361\347\217\"8"
#"\372\242\364\bw\263\342\21U2\311g"
#"v\36\214\371\306d\253a\253/\2435"
#"\324%u\26\"L\323\337\261\377\6\24\345<s2<\245\204~\351\203\317p^"
#"\201C\374\320\17\337\344\367\237\375>9"
#"\236k\277\365?\360\"\177\306\353\267\202"
#"\352\222\213\303\207\246\6;\276\207\232\347"
#"e\366(\361z\373\320\207\307I\254\0"
#"\26\207\204\323\340u\221\260\255\223\220\334"
#"\2372X\302%L!g\301\212\234\274j2\256\366\302\316~\0046\271\32m\240"
#".\374\246*g\303}\20\232\264\346\2528'\321\253\31C\312<1d\3675\376"
#"\374\345\273\371\320\361\37D\24\16\34\377"
#"0\367\360N\226\17\206\\\264\234?\343"
#"\265\333\240(\a\317\374\21z\376\30\""
#"\212J\360\227\206\312\221Af\207\\3"
#"[\236\30\201a\341\206\306bb\322\301\230kFU\241)\236I\230dC\37\17"
#"\277]\231I\333\25]\322{!\246("
#"\226\356\274\377\374U\336\361\251\3\364d"
#"\211\343\372,WO\275\304\227\257\334\302"
#"\251KqF\3548\240\310\320\16\323\306\224\20Pr\210e\\!\205\236\370B"
#"Y\325\330\333\a\6\252I\360\326\245\360\302P\235,j;q'\273\233$\233"
) 500
(
#"\n6\30\306<\223\24\355r\36a\275"
#"\327\320\243\n.\3\361\36D\371\326\251"
#"%\234\bY\317!\247\256 \374\337|\357\305^\3105\223>\272|\220w\247\260"
#"K\177\224\213\267>\312\327\227{!t"
#"\314\335\307\271\333}\6a\231\36d\20\22dw\216QfG\213\4c\341\261\260"
#"1c\356)'\224V\205\227\24\336\17G.\204\236\34\336\241\a\37\343\206\2x"
#"\216iZ\330n\205\360 2\362\330\365E5G\3341\316\373\234\213i\1,\312"
#"Q@9\310\315\270\17MM\t\243\322R\2483f\216\227,\204\6&]$"
#"\205\0z\212k$\20s^\24$\364\206q\20\256\251\366J\2272\6\301\270\20"
#"n6\316%\266JsF\333\251v\266/\302 \241\350\361\22\312\220+\352\34\271"
#"\n'.\344\350S\301x \222\241z\213w\335\23|\232\252=\344\326k\274\2"
#"\3744\36\357\4\267\374\30/\350cA\306^\3778\356\27\276\300\373n<\312]"
#"\32\275\245%\271*\245<\30\303(\223J&o+\334c,\34f:6Z\305"
#"\316$\351T\36\27\262\344yq\rz\205,\5;\237\17\305t\25\217\304n\353"
#"YRpb2\267\220,\367\304\3361i\372v\261\332\24f\36\234\3\224\250\260"
#"F%\23R\230K\237\3448+\302^\34d\32\3545\241Ox\314O\221\222 "
#"T\27C\2\335XacM\212\213s&Z\215\371\247I\311.r^\312r0"
#"\32\210\360!\3022To\364\b\31A\351?\300]?\374\307|\345\271\327\21\201"
#"\253\277}\206\233\274\314w7\25\367\374"
#"i\334\341s\334\6T\372\240!_\246\217\262-/?=W\207\216(En,"
#"\16;\vI\330\344\273\350\230t0ZC]U\247\342\357\342\321\17\22\354cB"
#"i\2522\25\326\267E\271\250\270mH\n"
#"\r\357k\221/\23^\214\223\265\370\3022\30"
) 500
(
#"\216\235\312\345\366'\374\v\215\335\"\361"
#"\32+\203\246ya1\324\203\264\360\202"
#"\20\223\3575\346\3038\220P\365H\324\r^\217\327:U\225S\31m\331k\352"
#"Jn\30m Y\260\233\307\260+\345\20zz\b*\341n\23I\371)q;"
#"q\2348\177\205\37=\373nD\204\23"
#"\362M\236;\371\22\177\360\334\177\306\337"
#"\377\24W\337\375I\226\235\340\344\255\270"
#"\23\312s7>\301!\rF\202\32008 \251*\240\332\362\304\b\230\27\333\250"
#"bac\306\3343j\201X8B$\204\374\210\224^\203A>\214\0.\206B"
#"\250\"\22\303\205\244\37\362`Db\eB\17\364@\210\241e!|h ?\303"
#"q\224r\270\2211\eb\262\276\270X\25)\207\350]\21q\251\16\31*}D"
#"z\321\3336X\24yQ\234H\3547Z\256R\347\306\276\2666\261\32med"
#"io\205\276xz\a\317rC\303\335t4ON\347\201\240\35\344\231\35\347\274"
#"\376\r\347\213\0344\317\t\t^\356\243"
#"\27<z\261\2246\210/\24\37\211\345"
#"\347\203<\216r\334\302\306\214\6\252\325"
#"\35\215\305\303L\e\306L\231\204\360\31x]\\\345\265\260\0My\20Rz\257"
#"\230\254\v+}y\37\333uz\221\322"
#"\207\343~\251\276d\314\220d\31\206\244"
#"t\246\213\343\342\205\222xM\253E\26"
#"\334`C&)\16\307\311y\261\211\327\230\26MEO\252\217;\266\21\350U\25"
#"\372\262\354K\267O\314\213)\2740\351"
#"\275B\314\272\322\363\201|f\207\314\6[\226\30\211\306qi,<&%\214\231"
#"R^\340\231P2\332\3148\343wX\350\243a\354\27U9;\254\bJ\335g"
#"\fc\0264\215K[+\30\246\274\30sCm\37\227\322\4[\306\204\2271o"
#"\214\343i\261\5\2411k\352\24\231:L\306\32"
#"\363D\265\1\260\311\323\305\306\224\27c\346T\255\321"
) 500
(
#"c5N3\353\2131\2074\215\311\352Dkc\327\230\a\206\215I[\30\32\363"
#"BY~\226\347~[\a,.\246\274\0303\245lE\251\226C,\v\246:+"
#"\213M\256\306\274\3214f\313%>-\331\324\230\5M\306\37\353^n\3143\303"
#"\326\be\31k\362t\2610\345\305\230)e\367\357\260\5\235M\254F[\30\26"
#"\206S\36\3476\246\215i1l\274\325\275n\vAc^\250\256\21\22\325|-"
#"Sb\26\vS^\214\231Su\3\eF\27\251\263\26\32\306~Sg\235\0366"
#"\376\3143h\314\e\273)(a\262u10\345\305\2309u\223\345\310\336.6"
#"\261\32-\240.\327\305\26\206\3064)"
#"\217\277\252\22S\367h\236A\243\215\230L],Ly1f\316\310FiC>"
#"c\30m\302\306\2551MF\25?\251\312\336\275\310b\303\230%u!e\351u"
#"\243\273\230\362b\314\25f\2316\26\1"
#"\e\343\3064\250\2163\363\250\30]\243"
#"nL\3338\357>\246\274\0303\307\32"
#"\367\31]\245\256\t\240\345w\31\323\304"
#",\322F\227\261\312y\213\211)/\306\314\261*!FW\261\316\345\306<\221e"
#"\31\336\373Y\177\r\303\230(\252\212s"
#"\316d\353\2a\312\2131\27T\313\310\232\"ct\tS\320\215y\300\302i\214"
#".Q\r\2114\26\aS^\214\271\240\256\1\245\t#\243+x\357\v\313\240\215"
#"kc\332\330\2303\272H\265\374\274\215"
#"\363\305\301\224\27cn0\341ct\35\233d\215Y`^m\243\313Xy\357\305"
#"\303\224\27c.1Adt\215\272n\320\2061m,\204\321\350\"\266fX,"
#"Ly1\346\22\23BF\327\260\311\325\230\5MJ\212\215E\243\vX\265\322\305"
#"\304\224\27c\346\244J!)\244\301,\202F\227\250v/7\214"
#"iR\16\31K\230\2145\272B]\251d\e\337\335\307\224\27c\346"
) 500
(
#"\224c\261\353&Z\303h3\26\217m\314\3f\2416\272J\335\32\302\3506\246"
#"\274\0303\247\256\261\224\t\37\243K\244\3115U\0353\214ic2\325\350*u"
#"\306!3\200v\e\233E\215\231\223e\231\t\32\243\363X\242\2641m\206U\267"
#"\263qht\201&\305\305\224\365nc\312\2131slb5\272\216\215qc\26"
#"4-\340lqgt\201&\305\305\274\333\335\307\256\2601S\232\222\355lb5"
#"\272@]H\244\305e\e\263\300r^\214\256a\371\261\213\213)/\306\334`="
#"0\214\256a\223\2531\17\230A\310\350*6\256\27\223\271V^l\322_\34,"
#"\254\306\350:\343\214\347\252\207\3060v"
#"Cu\314X\245;c\21\261\4\376\311"
#"0\317\347l\256\225\27\23\270\335\241\256"
#"\376z\265\274a\25\273\376F\27\250["
#"@6\215y\357\375\266\317\31\306n\30"
#"g\314\314\363\202\3040\366\302n\rC\306x\314\3639\233;\345\305\4k7i"
#"\n\t\ef\25\264\261`t\201\362\30"
#"\0376\246\315Bn\354\27\345\346\2776"
#"\306\214\256Q\226\257\266n\330\37\346\355"
#"\274\316\205\362b\211\332\335\246:\350S5\220:kt\31\e\vF\333)\227\252"
#"\35\245\250\227\223\370\347m\2420\332G"
#"\222\261\336{k\376kt\236\262\f\365"
#"\336[\325\261\tSW\\i\226\314\305"
#"\225\265D\355nS\2354\253\177\233E\320\350*\345\220\261\252bRVf\322c"
#"\n\e\263\205\2461.u\262\264\374\274\274\2003\31kt\225\362\330Nc~\324"
#"\275a\354\216yZ\253\317\205\362R\35H\253\253\2533\372&\306~1l1V"
#"w#\230p1\272\3028\271.\351\275\362\244;\17\23\2041\377\224\225b\e3"
#"\206QOy\rb\367\311\356\250\256\311\347a}6s\345\245\332\1"
#"xuu\225\365\365\365\27189\306d)k\355\343\304\376\333\0300\272"
) 500
(
#"\304\250\305\245-B\215;\241<f\232"
#"\274\333\206\321u\252\343\276z_\30\273CUY__/\24\230yY\237\315\\"
#"y)/h\223\342R~\335\350\36uy.\325P\32[\300\31]`Tc\300"
#"\3528O\371\t\263\236\30\214na\262\324X\24l\254O\226t>\223\0023/"
#"\241c3W^ L\340\346qi'))\264\314\260k\230\222\351\252\257Uo"
#"\210Y\337\30\2061\t\232\254~\243\344"
#"\3348\36\32\3030\fc\367\330:s\367\224=0\363p\376f\256\274\250*k"
#"kk\333<.\363pb\214\361\310\363\234,\313FZ\230\233\250S~\300\204\213"
#"\321\35\206%\350W\267\e%\377\312\225"
#"\313\f\243\251\360\211\215\217\355\330\3710"
#"\312\330=\262;\312s\327\372\372:kkkC\327m\3238\2673W^\312\212"
#"\v\214\337\23\301\230\17D\204<\317\367T\222\260IqI\3735\214.0*a"
#"\277Z\215\254i\354W\23N\233&\n"
#"\223\233\213C]\22\262\311\316\355\214*"
#"\311ot\227\272\22\365\226\264?>M"
#"\6\221\244\300T\231\246\f\232\211\362RM\316/cI\253\355\243.G%-\306"
#"\312\377\234s\333J\301V\303\307\312\330"
#"\4ct\225r\237\2432\"\302\306\306\3066E\246\374^S\37\244\272m\215\305"
#"\241N\0316\6\330\375\261\270\324]k\273\376\3433\254B\333\372\372:+++"
#"\333^\353\274\347%%\347_\276|\271x\255nb6!\334.\312\26\344d\361"
#"HM\322\322\363,\313\306\272\266&`\214.S\366V\226\r6\17>\370`q"
#"\277\324U\3473\231h\fc^*\1\31\306<a\321<{\243)R \321d"
#"\30\230\206\f\232\252\362\222~\314\312\312"
#"\n\353\353\353\215^\26s\353\265\207q\6h\3313\223\224\230Qa"
#"f&d\214.\223d[\362F\246\373\3039\267\355>\251N\272\325"
) 500
(
#"f\226v\237\30e\234s\344ynsg\304\356\17\3\202\274,\313Vc<\352"
#"\224\276\3629\254\226PNL#rj\252\312K\362\270lll\354x\35Li"
#"i#u\275\5\352\254\177)L\246\316\202\334T.\3310\272Hy\354\247\202\27"
#"\345\367\352<\230ee\277\374w\223U,Up4\26\17\223\235\3\206Y\215\355"
#"\376X<\3143\2717\206\255\321S\376"
#"\313\260>S\373\301T\225\227j\250X\31\eT\335\"Y:\22\345\34\227\252U"
#"\331\312$\e\213DY1I\367E\365\265a\262p\2342\312&K\27\e\273\366"
#"\365X\342\376\3422\252\332\2431\234a"
#"k\364\313\227/o3\6t\312\363\222\222\363\253\32\234UJ\351&i\220;\21"
#"\304E\305ErP\20\4\24\20\200\230\264_\334\17>>\367\245\227+\333(\364"
#"\321b\273\301\2554\370lx\265\271 \300~`\36\243z\352\4\336^\26\16]"
#">\277^sP\341\313\317|%\236\257<\274Q:M\265gLA5Gk\356"
#"\203\313\e\227P\211\333Pz$\235\377"
#"\351\336\37\213\312\264\26\311\303\222k\333"
#"\310\244\316[\323~\252\21 \223\3347"
#"t\343\32t\211.\317\37\323\240\272F"
#"\257\226\354/\207\220M\343<\213NA"
#"\262\256\254\254\324V\244J\354\366uc\276H\327vcccG\365\211g66"
#"x\360\301\217 ,\341\5\4\217\250#"
#"\227-\276\262\3615\36\\\371(h\217"
#"\236\344\364QT@\24\24\a\342\301+"
#"\316\365\200>\370\fu\202\370\34\357<"
#"\316;T\34\2529\2229\360\202\210\342=H\6xaZ\v\264\246\nRF\240"
#"\354a\330\vm>\277U\357\212\367\236"
#"g\236y\246\220\213\336\367q,\261\376\345\313\254~t\205\\\322\0024<:}"
#"+\312\26\340\342y\360\203\363\340\5z\36\3113"
#"\202-\312\243.\3\335B$Cq\254_\376]P"
) 500
(
#"E%C0\271:\vR\261\222\375\34\277+++\23Y\220O\223\252a\243\374"
#"wu.\231\3041\312c\177\222\347\312"
#"<\235\355`?\257\223\210\360\340\203\17"
#"n\363P\264]\316\356em.\"\215\21V\223d*\312\v\324\227E\256\322\245"
#"\213\276H\324\305\350\27\v5U\4\302BJ\267@\35^\24ApNP\37\207"
#"\237\202\212Gp\333\2752\352Pr\204,(6\321\302,\205\323\320\2438\304+"
#"8-\275\227\224\226\3518\27\273d\361"
#"\234G\332|~\253\211\367\325\2600\205"
#"p/\344\32\306\275\202\270%4\177\23"
#"\234\2.\336?y\364\240\344\220\24\21<\212\340\220b_\222\236\20\356)tP"
#"z9l\35-h\323\371\371F\3\223\236\347\332<o\356\347w\237\326yi\363"
#"\371_\4\366\373\372\264y\216\32\305\260"
#"\265y\371\265\265\265\265\251(.0\305"
#"\260\261\262K\251\16\213Gl/\3258\373m\361\373\204u\224\352\26=YB\5"
#"\234\nN\302b\255X\220\1\340\202\316"
#"!%o\211\370\20\372\"\341e\305\r\24\27\5\324!xpq\314hT~p"
#"\301{3\5\232\252\345\31\223\241\355\347"
#"\267\251\252\"D\305E\202\22\357e\213"
#"\34\17\2\336\277\31\23\371\35^\303h\16\367S?*.\36U\242\332\"\340C"
#"\30\230$c\200\204\375\b\16J\307t"
#"\344\301\373\211\267\250\261)R\02769"
#"\251y\256\v\213\246\375\274\277\247!;"
#"Lq\231\177\366\333;\226\326=]\244"
#")\227\262<\356\207\345\264\357\aSM\330o*\253\6\226H\327\5R\345\244r"
#"r>\232,\301\312\226n\341D\302\v\2\207\263S|K\262\20&&}D\1"
#"\347\361\267\237\344^q\210,!.\243\347\226\20\21N=\37</\274\3768\367"
#"\272\220K\23\376\205c>r\315!\2*\301\"="
#"-1R\247\274\31\333\271\223{\272+\347\267*\343"
) 500
(
#"D\204\254\224\337\342X\"+<\217\302"
#"\226\3468\311\3102!\327~\374\375=\4\217/\374' ^Q'\250:p\321"
#"\373Yx\37=\24\347\336\3=\300\321"
#"\307\241\316\264\227iQ\35\263\223\\H"
#"\225\367=\254\361o[\330o\17\314$\327\27u\212\243\255_\346\217j\221 c"
#"wTC;\313\317Se\313\365\365\365"
#"\251\226\360\237z\237\227\324\225\263\351f"
#"\267\1\326>\312\2\274\232\304\205@\237- \v!`^C\b\314\353O&\227"
#"L\264\20\367\360\22\302\276\34\212\227\207"
#"\271\256y\260H\367=\371\346\343\274r"
#"\374\bOl:\310z\210\236\3449\237"
#"\243\252\364\275\242\233O\362g'\356\345"
#"\311[\36\321\250\344\314\0\e\273;\251"
#"[4\354U\270\265\371\374V\213\224@\360$\252&\257at\32\212\17\241a\233"
#"\237\215a_\204{'z2Q\a\267\317q\304\5K\237d\16\347\4\227\t\367"
#">\371}\344\366\343\34\26\241'\31="
#"\311p\256\207d\216\323\327c\316\220\6"
#"\25\246\275g\262]4\215\373I\217\345\224\27V=N\e\331/\5c\322\353\213"
#"\272\2Dm\226Q]\245\354\25\331\217"
#"\2615\211\271m\236\0316\177\257\255\255"
#"\261\276\276\276M\376L#\al*\312"
#"K\325:\261\261\261\261-\204\254\252\311"
#"\225?c\314?u\226\361\242w\205B/\346\253d\321K\242\272\205;x\26u"
#"\301~\254\204\4d\247\301\232\254\336\341"
#"\20\224<\30\213\35\310]'\370\320\21"
#"\37\6\254B\216\"\22\254\324\231W8p\214\17\37Na2\200\366\320\31(0"
#"6n\267\323\24\16z'\211\373m\245|\36\6}\217\266Xr\16\311$*\361"
#"\340\325\221e=z\a?\311=\372\b"
#"\327\275\306\367\245\250\36\206:\34\37"
#"\3439\237\323W\305\347\36\357s\376\370\261\267\21\356\270\217"
#"\363M\365\274\351ch\346kO\360\362\261{\371\354\355\360"
) 500
(
#"]|4\23\30\373\317\264\346\267a\341"
#"\211mc?\24\214\375\244\256\22\2231"
#"\237L\332\353Y\275\337\332~\357U\251\363.\226C\305R.{\235wy?\231"
#"\312\354U\367#R]\350\265\265\265\306\317\230\0h\17\325\212.EG['\210"
#"d8\311\360^\311\365M\300\3417\237"
#"\340%\377;\274)\375\30\267\237\203\200"
#"\252C\304\205\305\225fq\204zd\363[|\215\17q\377rH@F\204,e"
#"';\205\315\347\370\272~\220\373\17\372\240\fI\250j6\213\363`\fh\252T"
#"2\311\375\265\215rX\245\342\350{%"
#"\317\373\205u\260\2279\372\271\342_\377"
#"m\204\255p_\370\234\2368\320\34\25\215ya!\\\322i\216\204\22\30E\332"
#"~\316\337\0\340\244\37\16\272|\224\217"
#"\334\23n\227\\\b[\232x\235\31\3739\216\333~\217\354w^\302~\321T5"
#"\315\230\37\366#?\254\355\367\3330\206"
#"\31B\222\307eV\314\314\364&\"\254"
#"\257\257\27JL\335\215\336\345A\321\25"
#"\206\305\21{\357\361\252!\364\313\367\343"
#"\242)xd\24\307a\3761\357\223\245"
#"\260\261\364\302\203\204\36-\231~\221c1\247\305\271\36r\3501n*8\34H"
#"\37\321\177\23\336\27\t\2711\a\377)"
#"7\t\236\31\321\230\324/\355\217\377\356"
#"\"\213z_\227\357\225Axe\30\243B|\335+\271\367!\307^ \244\330+"
#"\250#\367\36\227\365\20\25\234\272Xg/.\224\n]$(\367*I\270G\21"
#"\177\353[|\305\375\34'\226\245\360^"
#"\332\375a\314#m\225\17\323\266<\e"
#"\273\307\256\311\356\250\253,V~\34\217"
#"\376\240\372%\304\262\377~\273\355,\275"
#"\257\32\"f\306\330\375\\\304\r\254\257"
#"\257\363\320C\17u>n\260\2134\365\336H\257y<\210G$\17U_"
#"S\363I\315\201\214+\332G\\\262\27\203'\204\324\344\3621\256{E}\216"
) 500
(
#"\367\36\325\327y\202O\361\333\327\1Q"
#"\224_\342Y\365E\350\215\372\327x\\"
#">\305o^K\325\306\322\322\3160\346\203,\313\342X\36T\344\223PG\254("
#"\21\356%\bv\361l\27\340\261\352\236zE\226\202\246\"r\221c.\24\265p"
#"\"\270\223W\31\210\364\177\303qy\vN\202wF\336\376\30/j\360~\16\260"
#"\373\3030\f\303\30\217\244\314<\364\320"
#"C\\\272ti\314O\365\360\222G{\231\"\272\24\253\304\16\fnA\251\211\275"
#"\320\212\210\231\341\306\265\271\231\275._"
#"\276\274-\204\314\334\256\355\240\351\32\245"
#"A\236y!\224@\356!)\204\205\20\351\345Eq\232\205\376\26q7\16\5\337"
#"\2179/\341\225\300\3338\370n\310\25\310\203W%d\310\370PeI~\220\345"
#"w\202\270P\0@q\210\r\37c\216H\241b;-\264\241[\v\22*\216\211"
#":\324\21\377.\225\0\207\240\340\3449\340Q9\305s~+\226\34\337B/\36"
#"\17\233d\312\222\236\342\212\376\r^5"
#"x?\267n\3618g\370\237\377\235\24"
#"\325\307\3748\346-\3030\f\303\210\254"
#"\254\254p\371\362\345\361\274X\321\220\354"
#"4\213\201\4\22\327gZT\204\325\230"
#"\353,\352\342\214\224\217\365=\346Fy"
#"I\225\310\232\22\371\215vQ\270\27\235"
#"\3405\255\275z\203E\30\203\370{%"
#"\217\312\b\204\354\374\fQ%\217\325\307"
#"\302\376\236\347\17\237\276\207w\35\0042"
#"O\246Y\b@\3631\313Y\257\361\334\323w\363\256\273$VkJ5\232\rc"
#"\266\214\23\v/1\a%(1\276h4\231G5>4v-7^u!\257"
#"\2144\31\364\302\3475L\2\325f\224"
#"\352\336\306\301\3678\244\37\224\245\220\256"
#"o7\210a\30\2061\36\253\253\253lll\0cFGI?T\324\224"
#"h*\323\201j\"\204\347\"RD\26\0042\274\214.(37\312Kb"
) 500
(
#"}}\275\360\300\230\347\245\275\24\325W"
#"\0'\241|\261\246\27\224\340z\221\213"
#"\274_\34\316\275\5\221,\374;y="
#"\224\211\345\"\357\223\36\231\b\322\353\341"
#"\334q\334\225\233\234]\6\257\31\312\5"
#"\216\306\22\260N2\304\275\37\256\275\310"
#"\231\345\224\364/@\277\351\353\31\306T"
#"\250Kx\334i\224\211b\270\344iQU\27482\362\330\244R\302$@\324\311"
#"%(.)\24S\322\347c\231e\225\350t\17\376xD\377\35\177p\341\307y"
#"\347\241p<\225\34\273?\f\3030\214q(W\26\203\361\234\vJ\257\350\363W"
#"\314Q\200H\216\342\310|\310oQ\225"
#"A\244\214\f\214y\303\20\235\3\r\241\256\203\266y]\332Mq\r5\26\a\243"
#"\37\6\262\22*\201\305\206y\252y\260F\3070//9\216,f\254D\227M"
#"i\34KZ\275\25\333\246|\31\27\203\310\362b\241Wlk\0303d\244<K"
#"\367\204:\320\320pR\24\330|\222{"
#"\17\235\341\206\20\343\200C\250\244?\371"
#"M\374/\177\237#\313/\363/\364\2\17\350\240a\245\227\34w\353<\367\34z"
#"\224\227\322\213\352\300)\17_\361\\\270"
#"_A\342\366^\203\e\3370\f\3030\32\250*.\343\222\326w\250#\27B\264"
#"\314\377\363,\237\376g_\343/\362\277"
#"\317\a\177\3537x\340\357\3049I=\310\237\360\205\a\317q3\373\a|\3707"
#"\177\203\367\375@\363\276\347By1\332M\271\212R]\335\363\340.\214JJL"
#"\324*ek\19*\31\205\59u\31'\205\224\205$\256\220##\250\364A"
#"\263xS\204F0\32\243\307\212\317Ix\335\226f\306<\261\363\336\30(\3629"
#"\36\207Cr\320\314\343cm\276p\377"
#"\2040\260\340Z\217\212N\252\26\246\256rO0\270\277\342\366\305S\215"
#"\5\2D0\335\3360\f\303\30\306\235:\23\222!:\3147!z\340"
) 500
(
#"O\277\260\306g^T\364\357\177\220\337"
#"\372\215\17\360\0031\a\372?}\341!"
#">\363\242\362\203\37\374-~\343}\377\315\320\tjn\302\306L\207j/\325\6"
#"];\6\272\346 YX\200\25%`\303\243\n!\307\205A_\26\205\260\30\3"
#"\204\f\361.\272\eS\16\214+\26i"
#"\271\304\216\256x\302m\242\321\355h\t"
#"\373\306\374\261#\204\f\a1_\305%e;\vJ|R\\$Va\311\243\202"
#".\352b\263\312\220\373\202xD{\305\276\363\244\324D\305%Tv))\371\""
#"\226\22f\30\206a\214\344\216\242\240b"
#"\0172b\373\n%D\317\274\367\343g"
#"8\242\212\373\317_\347\e\177\22\346+"
#"\367'\237\347\361\233\202\323\303\374\354\373"
#"\377\366\310\t*D\3460(Y\366W\317\376\n+k\253\254}\341?\16\266\362"
#"\203\367\365O?\307\352\352\203\254}\376"
#"O'Z\253\306\302\304\272\213H\2544"
#"!\331\316\367\212g\256\350k\21\364\233"
#"^\\\251QR\261\35\"i\301\27\336"
#"\313\212\2358\n\245f\347\316\rc\276"
#"\221\312\275@R\312)\236g\325m\245"
#"\264}i\254g\333lR\351\275\36\345"
#"\217\230\2705\f\3030\366\225b\355\347c\356%q\22\372\21>~\366>\0n"
#"\376\333g\371+\376#_x\374E\300s\370\354\307yoQm\266\31\227\254s"
#"!\312\300\361_\377\303{\370A\4\177"
#"\343\377\344O\212\372\265>&\177:\376"
#"\364\305\233\0\34\271\373\277\265\265\241a"
#"\30\206a\30\206a\30\333\321T\231?F\v\244\374e]B\337{\212O\36Q"
#"\370\213\257\363\317W\317q\223\f=\362"
#"I\36yo\370\350(\375\302\225\343\236"
#"\5p\177\347\307\371\361\277\247\b\177\301"
#"_\376\277\351H1\205Z\377\224\27\277\355@\356\345\307\336;^-f\3030"
#"\f\3030\f\3030\26\210\24=\3435\24dBK\336\177\341\275\37\370\20\377"
) 500
(
#"@A%C\365\36>\365\310\217\2062"
#"\311\261\334\3770\234D\345d\320\225\374"
#"o\363cw\377=\234\374%\377\307\267\377*&>\3^\220?\3736/\372\377"
#"\277\275\373\313\215\363*\3438\376}\316"
#"\353\354\0Qb\22\247\335Aj'\266"
#"'\204\256\200\26\225\224\302\22\20E\202"
#"^P\t\211\rP\0017@\204\270\257\4iAua\5(4\270N\32v\200"
#"q\2408]\2\365{\36.\316yg\354@b.\232\222Q\276\37_\214gl"
#"\217\355\313\237\236\177\205\230m\261\236\377"
#"\331\2$I\222$\351\3516\315lfD\3372;-\224i\321\244\256^fk"
#"\r\306\370\204r\341<\317\320\332\301\306"
#"\200\222\217\256\275\24\242\357\242\311~\24"
#"&\203\325\315\31k\365_\354\177\260\307"
#"\375\251\177\272\4wvo\22\0341\333"
#"\3368\261\276V\222$I\222\240/\275"
#"\314h\263\312#@=\321\17v\370\336"
#"\317x\347\340L\253\312\34\334\340\372\316"
#"\307P\241P\27\205\223\207(u\272\220"
#"Qz\24\211\200/\254s\351\3313\304"
#"\337v\331\373\347\330C\312\36\273\177J"
#"\202\27\270\274\336\6o\26\27\237%I"
#"\222$\251\231\226(\345\320\27\321LQ"
#"#o\263\363\366=\222g\370\306\353\337"
#"\344\2\225\203\e\277\343\303\222\213\245L"
#"\217PJF;Vv\342\233\317\2615\373\"5\367\271\265wH\0\343\207{\274"
#"\17\304l\223\313\265\357\331\314'f\323"
#"\262$I\222\244'E]\264\217\265\35"
#"\375\355\224\370\335_\374\224\233\300\332\327"
#"\277\313\213\e/\361\235W\317C\354\362"
#"\223\353w\333m\231S\2L\251\321\256"
#",\237\270`\16\234\335\330\346B\4\a"
#"\267ns\b\334\377\373=2\n\263\255"
#"\213\363\357?\255\254#I\222$\351\351"
#"\2229\316\267\365\347\261S\26\303\355_\362\346n!\270\302\265"
#"\257\236%sd\365\305kl\307\21\361\376\217\271\376\27N\235K"
) 500
(
#")\205\350\253\314\368l\266\272\305\326"
#"\32\304\275=\366>\272\317\237?\330'"
#"\230qy\243\337\37\230\6\375%I\222"
#"$\251\213\30\250\t\311\321\342\305<d"
#"\347\335\233\224\32\314\276\367m\326\231Z"
#"\313.\361\332\353W\210,\354\276\371+"
#"\356\234re\274\255J\16\210\332\247h"
#"r\272\372\36296gk\220\373\354\276"
#"\373\16w\366\203\262\365%.\5$\265\35\235\221$I\222\244c\2625v\21\224"
#"V\360H\370\350\17?\347\306_\223X"
#"{\205\2277\246\325\311\275(\262\3765"
#"\256=\v\365\314\37\371\355\316\341#\337"
#";2\307\254Y(\363\3431c\273\212\231\300\341\16?x\343m\366\201aLf"
#"\337\177\213\327\236\257\375\27M\341\305\352"
#"\213$I\222\244.+\31-\270L\233"
#"\217\343\301\354\220P#\333\32e\26\313"
#"\310\222\372\310\271\227\2\205\322\253(A%\30z\e\331\bg7\331>\17+Y"
#"\211\362e\266/\2628\36\343\260\276$"
#"I\222\244\a\305\3421\200\3106\254\17"
#"0\235\271o\345\220\26i\242&\275\317\2148%c\224\23\17}\262&\2\210\1"
#"\362\363\314\266\317\223\24\352\225M6\200dl\t)\332\0\216$I\222$M\372"
#"!\26\240\222\231\20\205\241\317\313\0175"
#"\201J\351s\366\3G-|\224`\214\332\213(\0177O\37\343\374\245\332.b"
#"\2c\f\3631\233\253\233\27[\331'\342X\230:6\204#I\222$\351\251\27"
#"\311\274S+\"\372\274|\373Z\226E"
#":\251\4\344\n\265\17\351\17\24\342\224"
#"\332H\311\34!\333EK*\220\265\267"
#"\206U\206\372\17n\337:\0\256\262u\251\0205O\226rr\345\323\375O%I"
#"\222$-\265vA\262\r\324\267[/e\376z\373\274=/\4\31Ph\325\230"
#"\244\262\230\253\377\357\n1\r\311\24\306\2\31-\220\f"
#"5\340\356\357\371\365=x\356\325\257\260\16}m\300\342\r"
) 432
(
#"\247\1\34I\222$I\202\326\0056\335"
#"z\231\207\221\251\3402/\274\364\240\222IR\310\f8\26l\36f\345x\22j"
#"Mb\37\363\336\17\337\3407\am\270O\3522Y\0\0\1cIDAT\246"
#"\304U^~\351\\ONID\351\261\251\266*\214\1F\222$I\3221\21C"
#"{\234\302H\37\336_d\207\276&y"
#">\217\362\277\205\212E\264\311\261\265\201"
#"\345*g\317e\337\311\374\34\257\374\350[<O%\243\366Uf\265W\\\252\225"
#"\27I\222$I\237\231\250\371IN\275g\255\17\255\35\226! \352\b\f0\25"
#"[\246\237\232?\231n\276H\222$I\322\343U\"W\200Bf\322>j\337\307"
#"\f\224\1\3124\3432\r\321\320\327$"
#"\303\251\273\314$I\222$\351S\322\26\1T\210\b\n\321\347XZH\31\251\375"
#"\30e\273t\31\375\363\305\240\315\360\177\372\263%I\222$=m\n\tQ\246i"
#"\177ZU%\247\365e@\34\315\217Qf_|F\324\a\6n$I\222$\351"
#"\361\212\232S\357W\233_\211i\236\245"
#"&\224hy&\353\311\315\0005\311\22f\27I\222$I\237\231V\\\241\22\265"
#"\264a\375\3362\226%\27\355aA\333\277Lo\e+I2\36k\37\223$I"
#"\222\244\307+2\235\272\227$I\222\364"
#"\344s\317\261$I\222\244\245`x\221$I\222\264\24\f/\222$I\222\226\202"
#"\341E\222$I\322R0\274H\222$IZ\n\206\27I\222$IK\301\360\""
#"I\222$i)\30^$I\222$-\205\177\3|\220"
#"\244P\3660\305C\0\0\0\0IEND\256B`\202"
) 0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 29 #";---------LEG-FRONT----------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 31 #";CONVERSIONS (DEGREE > RADIANS)"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 10 #";leg-front"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"lf-\316\261s-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-\316\261s"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"lf-\316\261r-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-\316\261r"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 9 #";arm-area"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"aa-\316\261s-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 6 #"aa-\316\261s"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 18 #";arm-support-front"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 11 #"asf-\316\261r-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 7 #"asf-\316\261r"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 39 #";CONVERSIONS (PERCENTAGE > MILLIMETERS)"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 51 #";leg-front-\316\224width(max = 100% = distance SF & axis)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 9 #"lf-\316\224w-mm"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-\316\224w"
0 0 24 3 2 #" ("
0 0 14 3 8 #"distance"
0 0 24 3 1 #" "
0 0 14 3 2 #"SF"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cy"
0 0 24 3 1 #" "
0 0 14 3 2 #"SF"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 2 #"SF"
0 0 24 3 5 #")))) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 51 #";leg-front-\316\224depth(max = 100% = distance SF & axis)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 9 #"lf-\316\224d-mm"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 6 #"lf-\316\224d"
0 0 24 3 2 #" ("
0 0 14 3 8 #"distance"
0 0 24 3 1 #" "
0 0 14 3 2 #"SF"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cx"
0 0 24 3 1 #" "
0 0 14 3 2 #"SF"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 2 #"SF"
0 0 24 3 5 #")))) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 7 #";POINTS"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 14 #";point in seat"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 12 #"loc-in-world"
0 0 24 3 1 #" "
0 0 17 3 48 #";the point is no longer affected by origin-seat "
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 3 #"+xy"
0 0 24 3 1 #" "
0 0 14 3 2 #"SF"
0 0 24 3 1 #" "
0 0 14 3 9 #"lf-\316\224w-mm"
0 0 24 3 1 #" "
0 0 14 3 9 #"lf-\316\224d-mm"
0 0 24 3 5 #")))) "
0 0 17 3 37 #";construction affected by origin-seat"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 14 #";point in base"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFB"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 4 #"+xyz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 2 #" ("
0 0 14 3 3 #"tan"
0 0 24 3 1 #" "
0 0 14 3 10 #"lf-\316\261s-rad"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 2 #" ("
0 0 14 3 3 #"tan"
0 0 24 3 1 #" "
0 0 14 3 10 #"lf-\316\261r-rad"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 33 #";point in arm (arm-support-front)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFA"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 3 1 #" "
0 0 14 3 3 #"asf"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 3 #"let"
0 0 24 3 3 #" (("
0 0 14 3 2 #"ad"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"aa-h"
0 0 24 3 2 #" ("
0 0 14 3 3 #"cos"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 10 #"ba-\316\261r-rad"
0 0 24 3 1 #" "
0 0 14 3 10 #"sa-\316\261r-rad"
0 0 24 3 2 #") "
0 0 14 3 4 #"pi/2"
0 0 24 3 2 #") "
0 0 14 3 11 #"asf-\316\261r-rad"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 4 #"+xyz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 15 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"ad"
0 0 24 3 2 #" ("
0 0 14 3 3 #"cos"
0 0 24 3 1 #" "
0 0 14 3 11 #"asf-\316\261r-rad"
0 0 24 3 3 #") ("
0 0 14 3 3 #"tan"
0 0 24 3 1 #" "
0 0 14 3 10 #"aa-\316\261s-rad"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"ad"
0 0 24 3 2 #" ("
0 0 14 3 3 #"sin"
0 0 24 3 1 #" "
0 0 14 3 11 #"asf-\316\261r-rad"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"ad"
0 0 24 3 2 #" ("
0 0 14 3 3 #"cos"
0 0 24 3 1 #" "
0 0 14 3 11 #"asf-\316\261r-rad"
0 0 24 3 6 #"))))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 9 #";GEOMETRY"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 9 #"leg-front"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 8 #" (("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 3 2 #" ("
0 0 14 3 3 #"not"
0 0 24 3 1 #" "
0 0 14 3 3 #"asf"
0 0 24 3 4 #")) ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" (("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 3 1 #" "
0 0 14 3 3 #"asf"
0 0 24 3 3 #") ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFA"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 28 #";---------LEG-REAR----------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 31 #";CONVERSIONS (DEGREE > RADIANS)"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 9 #";leg-back"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"lb-\316\261s-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-\316\261s"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"lb-\316\261r-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-\316\261r"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 17 #";arm-support-back"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 11 #"asb-\316\261r-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 7 #"asb-\316\261r"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 13 #";back-upright"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"bu-\316\261s-rad"
0 0 24 3 2 #" ("
0 0 14 3 7 #"deg>rad"
0 0 24 3 1 #" "
0 0 14 3 6 #"bu-\316\261s"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 39 #";CONVERSIONS (PERCENTAGE > MILLIMETERS)"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 50 #";leg-back-\316\224width(max = 100% = distance SB & axis)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 9 #"lb-\316\224w-mm"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-\316\224w"
0 0 24 3 2 #" ("
0 0 14 3 8 #"distance"
0 0 24 3 1 #" "
0 0 14 3 2 #"SB"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cy"
0 0 24 3 1 #" "
0 0 14 3 2 #"SB"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 2 #"SB"
0 0 24 3 5 #")))) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 51 #";leg-front-\316\224depth(max = 100% = distance SB & axis)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 9 #"lb-\316\224d-mm"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 6 #"lb-\316\224d"
0 0 24 3 2 #" ("
0 0 14 3 8 #"distance"
0 0 24 3 1 #" "
0 0 14 3 2 #"SB"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cx"
0 0 24 3 1 #" "
0 0 14 3 2 #"SB"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 2 #"SB"
0 0 24 3 5 #")))) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 40 #";back-upright-height (max = 100% = ba-h)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 7 #"bu-h-mm"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 4 #"bu-h"
0 0 24 3 1 #" "
0 0 14 3 4 #"ba-h"
0 0 24 3 2 #") "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 7 #";PONITS"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 14 #";point in seat"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 2 #" ("
0 0 15 3 4 #"when"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 12 #"loc-in-world"
0 0 24 3 2 #" ("
0 0 14 3 3 #"+xy"
0 0 24 3 1 #" "
0 0 14 3 2 #"SB"
0 0 24 3 1 #" "
0 0 14 3 9 #"lb-\316\224w-mm"
0 0 24 3 1 #" "
0 0 14 3 9 #"lb-\316\224d-mm"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 14 #";point in base"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBB"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 4 #"+xyz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 2 #" ("
0 0 14 3 3 #"tan"
0 0 24 3 1 #" "
0 0 14 3 10 #"lb-\316\261s-rad"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 1 #"*"
0 0 24 3 2 #" ("
0 0 14 3 3 #"tan"
0 0 24 3 1 #" "
0 0 14 3 10 #"lb-\316\261r-rad"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 32 #";point in arm (arm-support-back)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBA"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 1 #" "
0 0 14 3 3 #"asb"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 3 #"let"
0 0 24 3 3 #" (("
0 0 14 3 2 #"ad"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"aa-h"
0 0 24 3 2 #" ("
0 0 14 3 3 #"cos"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 10 #"ba-\316\261r-rad"
0 0 24 3 1 #" "
0 0 14 3 10 #"sa-\316\261r-rad"
0 0 24 3 2 #") "
0 0 14 3 4 #"pi/2"
0 0 24 3 2 #") "
0 0 14 3 11 #"asb-\316\261r-rad"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 4 #"+xyz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 15 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"ad"
0 0 24 3 2 #" ("
0 0 14 3 3 #"cos"
0 0 24 3 1 #" "
0 0 14 3 11 #"asb-\316\261r-rad"
0 0 24 3 3 #") ("
0 0 14 3 3 #"tan"
0 0 24 3 1 #" "
0 0 14 3 10 #"aa-\316\261s-rad"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"ad"
0 0 24 3 2 #" ("
0 0 14 3 3 #"sin"
0 0 24 3 1 #" "
0 0 14 3 11 #"asb-\316\261r-rad"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"ad"
0 0 24 3 2 #" ("
0 0 14 3 3 #"cos"
0 0 24 3 1 #" "
0 0 14 3 11 #"asb-\316\261r-rad"
0 0 24 3 6 #"))))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 33 #";point in top back (back-upright)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBT"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 2 #"or"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 1 #" "
0 0 14 3 2 #"bu"
0 0 24 3 3 #") ("
0 0 14 3 3 #"and"
0 0 24 3 2 #" ("
0 0 14 3 3 #"not"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 2 #") "
0 0 14 3 2 #"bu"
0 0 24 3 1 #" "
0 0 14 3 2 #"ss"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 4 #"+xyz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 7 #"bu-h-mm"
0 0 24 3 2 #" ("
0 0 14 3 3 #"cos"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 10 #"ba-\316\261r-rad"
0 0 24 3 1 #" "
0 0 14 3 10 #"sa-\316\261r-rad"
0 0 24 3 2 #") "
0 0 14 3 4 #"pi/2"
0 0 24 3 4 #")) ("
0 0 14 3 3 #"tan"
0 0 24 3 1 #" "
0 0 14 3 10 #"bu-\316\261s-rad"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 7 #"bu-h-mm"
0 0 24 3 2 #" ("
0 0 14 3 3 #"sin"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 10 #"ba-\316\261r-rad"
0 0 24 3 1 #" "
0 0 14 3 10 #"sa-\316\261r-rad"
0 0 24 3 2 #") "
0 0 14 3 4 #"pi/2"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 7 #"bu-h-mm"
0 0 24 3 2 #" ("
0 0 14 3 3 #"cos"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 10 #"ba-\316\261r-rad"
0 0 24 3 1 #" "
0 0 14 3 10 #"sa-\316\261r-rad"
0 0 24 3 2 #") "
0 0 14 3 4 #"pi/2"
0 0 24 3 6 #"))))))"
0 0 24 29 1 #"\n"
0 0 24 3 17 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 9 #";GEOMETRY"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 8 #"leg-back"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 8 #" (("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 2 #" ("
0 0 14 3 3 #"not"
0 0 24 3 1 #" "
0 0 14 3 3 #"asb"
0 0 24 3 3 #") ("
0 0 14 3 3 #"not"
0 0 24 3 1 #" "
0 0 14 3 2 #"bu"
0 0 24 3 4 #")) ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" (("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 1 #" "
0 0 14 3 3 #"asb"
0 0 24 3 2 #" ("
0 0 14 3 3 #"not"
0 0 24 3 1 #" "
0 0 14 3 2 #"bu"
0 0 24 3 4 #")) ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBA"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" (("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 2 #" ("
0 0 14 3 3 #"not"
0 0 24 3 1 #" "
0 0 14 3 3 #"asb"
0 0 24 3 2 #") "
0 0 14 3 2 #"bu"
0 0 24 3 3 #") ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBT"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 30 #";---------LEG-CENTRE----------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 7 #";POINTS"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 14 #";point in seat"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"LCS"
0 0 24 3 2 #" ("
0 0 15 3 4 #"when"
0 0 24 3 1 #" "
0 0 14 3 2 #"lc"
0 0 24 3 2 #" ("
0 0 14 3 12 #"loc-in-world"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+y"
0 0 24 3 1 #" "
0 0 14 3 11 #"origin-seat"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 14 #";point in base"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"LCB"
0 0 24 3 2 #" ("
0 0 15 3 4 #"when"
0 0 24 3 1 #" "
0 0 14 3 2 #"lc"
0 0 24 3 2 #" ("
0 0 14 3 12 #"loc-in-world"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+xyz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LCS"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"LCS"
0 0 24 3 6 #"))))))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 9 #";GEOMETRY"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"leg-centre"
0 0 24 3 2 #" ("
0 0 15 3 4 #"when"
0 0 24 3 1 #" "
0 0 14 3 2 #"lc"
0 0 24 3 2 #" ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LCS"
0 0 24 3 1 #" "
0 0 14 3 3 #"LCB"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 66
#";---------------LEG-CONNECTIONS (GENERAL FUNCTIONS)---------------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 66
#";-----------------------------------------------------------------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 13 #";CIRCUMCENTER"
0 0 24 29 1 #"\n"
0 0 17 3 2 #"#;"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 2 321 4 1 #"\0"
2 -1.0 -1.0 0.0 0.0 0 155 500
(
#"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\3\352\0\0\1\322\b"
#"\6\0\0\0{(1;\0\0 \0IDATx\234\354\335w|\24u\376"
#"\307\361\327wv\223\20\22\b\275)\b"
#"H\25\301\312\211\241\212\25\21\21\20A"
#"D\252H\261\0\226C\17O\304\16\352Y\0\1\5\344\260\0g9\e\226\263\361"
#"C\4\273\210\0366\232\212\24\t\235\220"
#"\266;\337\337\37\263\273\331M6!x\2!\274\237>pwg\276S\263;\337"
#"\371\314\267\31k\255EDDDDDDDJ\5\347p\357\200\210\210\210\210\210"
#"\210\210\344S\240.\"\"\"\"\"\"R\212(P\27\21\21\21\21\21\21)E"
#"\24\250\213\210\210\210\210\210\210\224\"\n\324EDDDDDDJ\21\5\352\""
#"\"\"\"\"\"\"\245\210\2u\21\21\21\21\21\21\221RD\201\272H\261\\l"
#"\324{p\tO\210\236\36\235\312Z\v6z\376\376Ykc^ED\244\214\263"
#"\0.\301\360g\327F\246Ef\333\350"
#"\264\341yn\334\374E\371\207\210H\331\242@]\244\30\26\a\3x7F\16\340"
#"`\r\241\373\250@\350\276\312\301\20\231"
#"\2101\6\f\230\320\347\2220\306`\255"
#"\365\226\25\21\2212\317\206.\367>\300"
#"\313?\f\326\200\265\6\254\227\207X\202"
#"\200\2135\241\220\336:^\236S\302\230\\\17\201ED\216\\\306\352\352-R4"
#"\v\221\30\334q\t?\333\262\326\202\261"
#"\230\250\317&\24\322[\343bp\260\26"
#"\24w\213\210H\\\341\273/\3\1\300\17X\2^\276b\35\210\344\37^\336\23"
#"In\275 ?^\366\242\a\276\"\"e\207J\324E\212c\274\332\2108\201P"
#"I\206W\345\320\30\213q\35\257\212\273\r\202\tb\275\"\20\bU}/\356^"
#"\311Z\313\256]\273\2301cF\314\264x\357E"
#"D\244\354qM\20\274\302s\374\26,.\6?"
) 500
(
#"1\267f.\4q\0\27\23)e/\234?\204\363\214p\220\376\323O?\361\257"
#"\177\375+\356v\225\277\210\210\34\31\24\250\213\354\207c\bU{\ap09{"
#"\330\274\341W6df\343\32\2131>"
#"\357\346\312\30\202{\267\261\366\327\255\354"
#"\313\vb\vT}\267\326\306\334Lm"
#"\330\260\201\265k\327\262{\367\356\310\264"
#"0\225\210\210\210\224m\16\276\2306\351"
#"\306u\b\356\333\311\257\277m`kV"
#"\300\253\352\356\270\230P`\236\265k3"
#"\253\177\335\6\326DJ\323\v\6\350\341"
#"i\353\327\257g\315\2325\354\333\267\257\320v\303M\255DD\244tS\240.R"
#"\f\e\352<.\\\305\335\340\302\356\325"
#"\374\363\276\e\30s\367\333\344`\274\376"
#"\345B%\35\237=}\3W\335\273\220u\231>\214\e\el\ecbn\220\356"
#"\274\363N\276\370\342\v\336x\343\ro[\272q\22\219jD\325|\367\332\253"
#";`\267,\347\376\261\327q\357\234/q\361\201up1\220\273\235W\36\34\316"
#"\r\263>`W\0\242\373D\211\227w"
#"<\370\340\203\274\365\326[\254Z\265*"
#"\177{Q\355\325\3650XD\244\364S"
#"\240.R\f\23\375\23\t\225\254\333\352\247pa\372)T\330\370\16\237m\3B"
#"M\tm\306\227\274\272,\233\213\316?"
#"\207\246\225\255W\24\37o\235\306\360\352"
#"\253\257\322\247O\37N?\375t\22\22\22X\275z\265n\234DD\2162\256\261"
#"\200\203\t\215\36\342op.=N\256\312\356u\37\362S\266\27X\373m\220m"
#"\353\227\361\376\2524\372]\334\236\212\t"
#"\0N\334\322t\200\27_|\221\376\375"
#"\373s\356\271\347\262v\355Z\266o\337\36\23\234+\257\21\2192(P\27\331"
#"\37\23.\371p\275\352\206\326\322\342"
#"\274\216\324*\267\233\17\336^\31I\263\341\3637Y\227"
#"\322\2046g6\305oM\21\3\350x>\376\370cN>"
) 500
(
#"\371d\216;\3568\2141l\334\270\261"
#"P\32\225\260\213\210\224]\6\327\353\204"
#"\324\353\b\305\ec\304\3729\263\327\331"
#"\330M?\262\374\223_\274\222vcX"
#"\373\177o\263\357\370\216\234\326\274\206w"
#"\343f\363\"\1w\301\274\342\343\217?"
#"\246u\353\3264m\332\224-[\266\260g\317\36\5\347\"\"G \5\352\"\305"
#"r\275^xm\270\235\272\2131\6\247zk:\37\237\302\372\225\313X\355Z,"
#"\333\371\360\303\337\250Q\367\fN\254\351"
#"\r\266\343\304\355\223\27\346\315\233\307\5"
#"\27\\@\325\252U\311\310\310\240G\217"
#"\36\274\363\316;\354\331\263'\222FU\23ED\312\266`\250$\35c\"\17\203"
#"1\220\334\2503m\253\356\344\213\257W"
#"\262\v\v\331\353x\377\223]4;\3714\352\227\17U\2237\t\221\365D\347\25"
#"\223&Mb\364\350\321\344\346\346\262u\353VF\215\32\305\224)S\nm[\17"
#"\202EDJ?\5\352\"\305r0\370#\243\264\201\3435\r\264\345\350\320\253\3"
#"\2015\337\362\315\177\263\t\254\177\217\367~\2634=\373\f*\32K\364=Pt"
#"'r\31\31\31\4\203Aj\327\256\35s\243t\312)\247\360\325W_E>+"
#"H\27\21)\333|\26\300\361\2o\e$\\\235\335\361U\347\374^\255\371m\371"
#"W\254\336l\330\363\351\213|\302\261\234"
#"\232\336\230\4l\250fW\376z\302y\311\372\365\353\251R\245\n\25*T\300u"
#"]\254\265\370|>Z\265j\3057\337"
#"|\23\223\347(\217\21\21)\375\24\250"
#"\213\24\303\206\376g\214\327q\217K\20"
#"\353\0\6\374\215:\323\245\366\36\226}"
#"\265\230w\227\254&!\365\4\272\267\256"
#"\168\30\207H\257\357\341N\344\0~"
#"\374\361G\262\263\263i\334\2701\271"
#"\271\271\221\371={\366d\356\334\2711\235\375\210\210H"
#"Y\26\214\352P\316\27\32\372\323\200k\250\336\352\34\322Y"
) 500
(
#"\311\333\377\375\224E\37l\244\356\361\255"
#"\351\320 \5\360{\275\301G\tw(\267d\311\22\0324h@ZZ\232W\363"
#"\313\361\2\377\376\375\3733}\372t\5\347\"\"G\30\5\352\"\305p\tw\366"
#"\343\5\355\2165^\27\357\270\370\250I"
#"z\217\323\330\372\326\263,x\373\2774"
#"\276\260\a\307\370\274\222w\227 \306\306"
#"\376\274v\355\332\305\362\345\313\271\354\262"
#"\313\"U\333\243\3\363\en\270\201'\236x\2Pi\207\210H\231g|^\250"
#"\36\252\262e\274\34\207\240cH\252\322"
#"\214v\0276e\325S\217\363\326\332,"
#"Z\237\337\205\324\320b\16>\n\266\254"
#"Z\275z5\231\231\231\234q\306\31\221"
#"\274%:\237\351\335\273w\314\270\352z"
#"\30,\"R\372)P\27)\206\317\315\303\301b#-\316\0350\241qt\200c"
#"O\271\2003k\357fc\326\361\264O\257\215\265^\t\211w#\225?\216\272\265"
#"\226\315\2337\223\230\230H\325\252Uc"
#"z\337\r\337L\35{\354\261\354\334\271"
#"\223]\273v\35\352\303\24\21\221C\316"
#"\305\217\361\262\24\302\371\205\23\252\22\237"
#"\310\311\351\347p|\371\337\331\343?\211"
#"v\247&\207\27\301\342Fjl\1\4\203A\266l\331B\305\212\25\251P\241B"
#"dz8\237\361\371|\324\251S\207\214\214\214\310\270\352z\30,\"R\372)P"
#"\27)\206u\22 \252d<\334\226\320\202W\375\275B\25j\246U\242F\2333"
#"8!\325\17\306\347\r\325\6\330\320r"
#"\341@\374\201\a\36\340\272\353\256+\264"
#"\215\360\rS\245J\225h\337\276=\v"
#"\26,8\350\307%\"\"\207\233\223\37"
#"\237[\207`\350\226\314\206\36\16\227\257"
#"Q\205\312\345+S\257s\a\352\23\352"
#"\353\304\1\343\232B5\266\26.\\\310\25W\\\0213-\272\324\274i\323\246"
#"\244\244\244\260l\331\262B\363DD\244tR\240.R\f\3`\334P\360\355"
) 500
(
#"\365\376\36)\211\260\260s\305\333,X"
#"\1\335\317=\215T\277\305X\300\272\4"
#"\261\204\223\31cx\363\3157\351\323\247\317~o\216\0324h@RR\22k\327"
#"\256=\210G%\"\"\207\233\27x\273\336\303_\343u.gm\20\203\301\340\362"
#"\335\373o\363\341\306Z\364>\257\251\2276\234\2518^(\37\366\322K/1`"
#"\300\200\375n+==\235_~\371\205\355\333\267\253D]D\344\b\340?\334;"
#" r$\b\2>\353\17E\356\16\337\275>\203\371K\276g\333\306-T=\363"
#"r:\234X\23\0k\\\f\16~\\\\kpB\367B\37}\364\21\343\306\215"
#"\333\357\315Q\2707\370\r\e6\320\260a\303\203zL\"\"r\370\30c\260\336"
#"H\352\336\303`\343b\t\362\321S\367"
#"\363\352\252\f\266\376\262\211\26=o\344"
#"\224j\t\221\30\335k\317\356\20\235\225"
#",]\272\224\336\275{\357w[\215\e"
#"7f\341\302\205\354\335\273\227*U\252"
#"\34\244\243\22\21\221?\213J\324E\366\313k3\30\f\327i\a*\244BN\326"
#"^\3127k\313\310\341]\251\345\367f\2718\340\346\21\31r\a\230?\177>\35"
#":t 555f\255E\5\355\3\6\f(4\256\272\210\210\22416\277\326"
#"\26\200\301\1\22\250\224\222\307\336\235\273"
#"8\266\323e\\\323\2435\211\306\353d"
#"\16\274\346W\341^\337\255\265L\236<"
#"\231\353\257\277\276\360\252\243\206\5\215v"
#"\313-\267\360\330c\217\35\244\3\22\21"
#"\221?\223J\324E\212\21\31:\307\204"
#"\236j\205\202\365c;]\315\344\216#\300\204\207p\v`p\360Y\a\353$`"
#",\370\fl\333\266\rc\f\255Z\265"
#"*\24\230\247\246\246\342\363\371\nm\323"
#"\347\363\321\251S'\276\376\372k\332\265kwp\17PDD\16\217H"
#"+*'\322\211\273\203\245E\357\2773\3552_~\307\356\326\361\362\232P"
) 500
(
#"\355w\23\312x~\376\371gj\327\256"
#"M\375\372\365\v\255:55\225\244\244"
#"\244B\323\375~?\355\332\265c\345\312"
#"\225\264j\325\352`\34\225\210\210\374I"
#"\24\250\213\224\200\5\214\r\0\376\3200:N$H7\0260\376P\247q\341\364"
#"A\214\365\261v\355Z\336|\363Mv\354\330A \20\210YgNN\16\e6"
#"l`\312\224)\371\333\tu<\227\222\222\302;\357\274\243@]D\244\214\362F"
#"es\361:\225\vG\341.\30?\3215\335\275<\a\214qC\303\203\372\260\306"
#"\253\362\376\325W_\261{\367\356B%\350;w\356$##\203)S\246`\214"
#"\301u\335\230\321F\336~\373m\246O\237~H\217WDD\16\214\261\352\372S"
#"\244\4\\,N\244H\303X7\24\250{\255G\214k\301\261\4\255\213\17\177\244"
#"\255zNN\16\353\326\255#\30\fF"
#"\326\24\16\306w\356\334\311k\257\275\306"
#"\225W^\31\231\26\276\241r\34\207\324\324T\352\325\253w\270\16XDD\16*"
#"\27\\\3N\220 ~|\241\230\335\e\203\315k>e\242\322Zk\242jf\271"
#"\354\331\223\311\206\r\e\b\6\203\205\206"
#"\374\\\263f\r\253V\255\242[\267nq\267\\\245J\25j\327\256}P\217N"
#"DD\3767*Q\27)!\257-\241\5,\3268\200\e*\rq\301\361\203\265"
#"8&\24\270\207\2\370\304\304D\2325"
#"k\26\t\304\243\355\330\261\203\367\336{"
#"\217\26-Z\34\312\303\20\21\221\322\302"
#"1\200\203\301z\357]K\300q\360\e06\17\214/T\365\335\253\305\345\206+"
#"\312[\207\n\25*\320\274ys \377\1p\370\325u]6n\334\0307\177\211"
#"\227\37\211\210H\351\243\316\344DJ\300+9w#U\vM\250\23 \327:\200"
#"\337\e7\35\207\330\237TlU\303\202\nV\205"
#"\27\21\221\243\211\23\352\a\305\301\261nd\252\37"
) 500
(
#"/o\260&\301\313WL(\270\306\305\301bm0\272\250\35\240P\211z0\30"
#"\304u]\342Q\220.\"rdP\240.R,\257\304\334\340\22\304\301\30_\376"
#"\215\23\16\216\t\217{\ejC\210\v"
#"\326knX\322\237\227Z\237\210\210\34"
#"\215\334H\217\245A\23\352X\3241X"
#"\374\200\213q\255W\211\213pp\355D\375\213\257\244\245\345\312wDDJ?\5"
#"\352\"\305\312\2771\362\21\36B\a\274"
#"\340=\304\230H\207?\241\212\361\a\364"
#"\303R\351\206\210\310\321\311\204\206[\363"
#"E\5\355^\216\340`\35S\240\344\334\305%Xl\236Q\322\374D\371\216\210H"
#"\351\2476\352\"%\346\304}o\n\276"
#"\327\375\217\210\210\354\227\23\372\177\2504"
#"\275`u\3668\351U\272\"\"r\364\3205_DDDDDD\244\24Q\240"
#".\"\"\"\"\"\"R\212(P\27\21\21\21\21\21\21)E\24\250\213\210\210"
#"\210\210\210\210\224\"\n\324EDDDDDDJ\21\5\352\"\"\"\"\"\""
#"\"\245\210\2u\21\21\21\21\21\21\221"
#"RD\201\272\210\210\210\210\210\210H)\242@]DDDDDD\244\24Q\240"
#".\"\"\"\"\"\"R\212(P\27\21\21\21\21\21\21)E\24\250\213\210\210"
#"\210\210\210\210\224\"\n\324EDDDDDDJ\21\5\352\"\"\"\"\"\""
#"\"\245\210\2u\21\21\21\21\21\21\221"
#"RD\201\272\210\210\210\210\210\210H)\242@]DDDDDD\244\24Q\240"
#".\"\"\"\"\"\"R\212(P\27\21\21\21\21\21\21)E\24\250\213\210\210"
#"\210\210\210\210\224\"\n\324EDDDDDDJ\21\5\352\"\"\"\"\"\""
#"\"\245\210\2u\21\21\21\21\21\21\221"
#"RD\201\272\210\210\210\210\210\210H)\242@]DDDDDD"
#"\244\24Q\240.\"\"\"\"\"\"R\212(P\27\21\21\21\21\21\21"
) 500
(
#")E\24\250\213\210\210\210\210\210\210\224\"\n\324EDDDDDDJ\21\5"
#"\352\"\"\"\"\"\"\"\245\210\2u"
#"\21\21\21\21\21\21\221RD\201\272\210\210\210\210\210\210H)\242@]DDD"
#"DDD\244\24Q\240.\"\"\"\"\"\"R\212(P\27\21\21\21\21\21\21"
#")E\24\250\213\210\210\210\210\210\210\224\"\n\324EDDDDDDJ\21\5"
#"\352\"\"\"\"\"\"\"\245\210\2u"
#"\21\21\21\21\21\21\221RD\201\272\210\210\210\210\210\210H)\242@]DDD"
#"DDD\244\24Q\240.\"\"\"\"\"\"R\212(P\27\21\21\21\21\21\21"
#")E\24\250\213\210\210\210\210\210\210\224\"\n\324EDDDDDDJ\21\5"
#"\352\"\"\"\"\"\"\"\245\210\2u"
#"\21\21\21\21\21\21\221RD\201\272\210\210\210\210\210\210H)\242@]DDD"
#"DDD\244\24Q\240.\"\"\"\"\"\"R\212(P\27\21\21\21\21\21\21"
#")E\24\250\213\210\210\210\210\210\210\224\"\n\324EDDDDDDJ\21\5"
#"\352\"\"\"\"\"\"\"\245\210\2u"
#"\21\21\21\21\21\21\221RD\201\272\210\210\210\210\210\210H)\242@]DDD"
#"DDD\244\24Q\240.\"\"\"\"\"\"R\212(P\27\21\21\21\21\21\21"
#")E\24\250\213\210\210\210\210\210\210\224\"\n\324EDDDDDDJ\21\5"
#"\352\"\"\"\"\"\"\"\245\210\2u\21\21\21\21\21\21\221RD\201\272\34\225"
#"\254\265\305~.jZI\346\25\225\266"
#"\250\327\3\331\317\3\21\275\354\237\261\236"
#"\377e\35\"\"G\243\330\253\246\e\372"
#"\27;\315Z\353%\214\274\4\"\v\333\310r\"\"r\264Q\240.G\264xA"
#"d\364\264\242\346\ecb\326S\360sQ\323J2\257`@k"
#"\214\211\331f\370s\205\n\25p\34'f\271\202\373\e^\346\217\4"
) 500
(
#"\311\321\373X\334\376\26\267\357\5\367_"
#"\301\272\210HI\271\30\334P\264\355\22"
#"\271\345\n\5\345\0\326:`\f\226 \326\200\1\f~/\275q1\200\305\211\4"
#"\374\326\6\211\37\360\213\210HY\343?\334; \362\277(.\300.*P-i"
#"\320ZP\274\0\277\340\364\242\322\204\247"
#"M\237>\235\204\204\4\254\265dee"
#"\261y\363f\236x\342\211\310\374\254\254"
#",\316>\373lZ\264h\21w\371\350"
#"m\24\265\255\222\356S\274\364\373\333\316\37=w\"\"G\ek\r\30/\3726"
#"8X\e\3045>\34\3^\20\357\315\6\a\214/\277\364\335\365\246Y'\200\261"
#"\216\227\306\272X\343`\214\357p\34\212"
#"\210\210\34\6\n\324\245L\210\27\270\226"
#"$\240\215NW\324\264\202Al\274\364"
#"\363\347\317g\345\312\225\224+W\256\310"
#"R\347\204\204\4\3169\347\34|>\37\326Zv\357\336\315\206\r\e8\345\224S"
#"\"\353\f\4\2\254X\261\202\271s\347"
#"\222\222\222R\344>\5\2\1\306\217\37Orrr\3344\305=\230(\352\330\\"
#"\327\305q\234\230i%\t\362ED\2440\203!R\362\355zA\266\17\274\322t"
#"S\240\204\335\340\225\276\3\326q\0\227"
#" >|\241Rv\214\23\232\357\225\256\233\3202\"\"Rv)P\2272\243\250"
#"\352\354\305\5\361\341\371\273v\355\"3"
#"33\3629\34\270n\334\270\221\271s\347\222\232\232\32\231Vp;{\367\356e"
#"\320\240A\234\177\376\371\221i\321\1o"
#"\270J\273\337\357\247b\305\212\2214;w\356d\331\262e\264n\335:f\277N"
#"?\375t.\270\340\202\230j\361\321\307"
#"\21\366\300\3\17\220\231\231\31s|\216"
#"\343\20\b\0040\306P\276|y\206\r\eV\350\230\34\307\301u]\352\324\251S"
#"h\331x\347\261\240\360:DD\244h\326@\346{"
#"\23h3\364i\332\334\275\204YW\324\363f\30\330\363"
) 500
(
#"\343\"\6w\35\305\267\276\352$\370s"
#"\261\306%\241\3119\314x\374A\316\250"
#"Y\216\275?-bP\327\253\371\332\251"
#"F\202?\200\317\372\260\201lN\0356"
#"\223\307o\350D\252\243\222u\21\221\262"
#"N\201\272\34\321\212\v\300\213\252\262\375"
#"\373\357\277\263r\345J\22\22\22\0\257"
#"t\372\307\37\177d\363\346\315$%%E\2\353`0H\243F\215\230:uj"
#"\211\366\241$U\343\243\345\345\345\305m"
#";\237\220\220@\325\252U\213=>k-\267\337~{\261\333\n\4\2\334s\317"
#"=\221\252\366\326\332H\220\36\f\6i\327\256\35~\277?r~\22\22\228\363"
#"\3143c\326\27\2574>\374\20\"\336"
#"|\21\21\361\30\273\233\247\347~L\373"
#"\263[\363\346}\223\370\351\212\2514\262\336u3oo\6\271\215Ng\346\323/"
#"\321\261\232\17\330\307\274\221's\345M"
#"\263\371l\3365\330\275\e\311;\2565"
#"\263\27\274J\207\252.\26\a\263\373C"
#"z\265\272\236)g\274\311_\333\327B"
#"\241\272\210H\331\246@]\216hE\225"
#"\242G\a\254?\375\364\23\357\276\373."
#"\345\312\225#;;\233\344\344d\262\262"
#"\262(W\256\34\340\265\v\357\333\267/\225+W\336o\351{q\373PT\260^"
#"T\240\35\376\34\235\256\340\362\361\252\250"
#"\27\267?\321\323\375~?\23&L(r\277\27.\\HfffL\340\375\337"
#"\377\376\27\237\317\207\353\272\f\35:\264"
#"\330c\25\21\221\242\5\326\275\300\314\345"
#"\t\214\236\327\223_>\32\317\363_e\361\267S\313a\261\30\v&\30 '\313"
#"\301\342\2\3459\357\234s\2313\177="
#"\273\2\220f\34\214\343\222\275\17lU"
#"\307\253\345^\261=}N\337\315\242\345"
#"\233p\332U\a\265W\27\21)\323\24\250K\231c\255e\341\302\205|\373\355"
#"\267\4\2\1\2327oN\213\26-\360\371|\4\203A\0327nL\355\332\265\213"
) 500
(
#"\\\266\244\35\250\25\27\224\27U\312^"
#"p\235E\265\203/h\177\235\341\225\264"
#"-yt\272>}\372\24\232\277t\351"
#"\322\310y\272\377\376\373\311\311\311a\337"
#"\276}\\s\3155\324\253W\257\330c"
#"\23\21\221|+_\177\213\234\332\215\351"
#"\334\252\a\273Z\336\313K\v?\346\226"
#"\223:\343\370 \340s\301\361\223\230\344"
#"\365\363n\331\312K_\344\320\252\353@"
#"j\372-\373\254\301\32\37\276\344\0X"
#"\37\326\30\334\37\236\345\211\367\3638\347"
#"\206c\325\251\234\210\310Q@\201z\31"
#"q(\203\247\375u\276VT\232?\262"
#"\336\222\244\335\262e\v\216\3430c\306\f\366\354\331Cff&\3\6\f\240s"
#"\347\316\0T\250P\241P\247kE\211"
#"\27\234\227\344xK\262\236\222l\267\240"
#"\222\236\223\222v\242\267\277\355\264k\327"
#".2\355\204\23N \30\f\342\272."
#"\377\376\367\277\371\341\207\37\310\313\313\343"
#"\234s\316!==\35\277\337O\225*UJrx\305\36\217\2~\219\22\205"
#";u\v\17\253fq\301\32\f\26\327\375\231W\336\313\244\303\360k8.\245\34"
#"\335{\2453o\312\2\276\rt\242\225"
#"\317!9\241\"\271\337|\300\300\216-"
#"\250\340\363\341\330l6n\b\322o\332"
#"\365$\30\360'y\363\207\244\237Lj\242\203!@0'\225K\36{\215\e\317"
#"\254\36\351\200\356O;\26=\200\25\221"
#"\3\244\353\305\301\247@\375\bRTF"
#"z\250\207\317\372\243A\372\376\322\25\327"
#"\253z\264\255[\267\262j\325*|>"
#"\37\273v\355\342\303\17?\304\357\367\307"
#"\355\5\375\177U\2226\357\a\323\37\255"
#"\212\177\240\27\317x\353\17\a\341\326Z"
#"F\214\30\21\231\377\321G\37\361\340\203"
#"\17R\245J\25\332\267o\37\351\244.:\310/\311v\n\36\313\237\361\260GD"
#"\344P1\270`\342u\372\t\366\267\357Y"
#"\274\376\v\216\377y9\363\237\373\234\314_]"
) 500
(
#"~]\3671\237|\263\217\23NO!7o\27\211-;3\347\351\3479\273Z"
#"\2\30X\263\340\6\332\f\36\307\5\347"
#"\277\316\231y{(\327\262#s\236y"
#"\215\263\253\271\270\326\361\206u\263\340\232"
#" \26\337\237\26\247\377\221\274M\327g"
#"\21\371_jx\376\31\16\264o\250#\221\2\365#HQ\31\351\341.\241,I"
#"\365\355\3)\335\215w<K\226,\341\207\37~ \30\fF\332\232\373\375~\352"
#"\325\253\307\375\367\337_h;\177\3269"
#"\210^\327\341\372\321\227\364\274\35h\232"
#"\202\212j\a_0xn\333\266-m\333\266\5\340\311'\237$!!\201\274\274"
#"<V\257^\rxm\376/\277\374r*U\252\24w\375\5\367\263$\333\25\21"
#")}\274a\324\214u\260\6,\341k"
#"\227\345\323W\27\260m\337\31\264\332\372"
#"1K6\200\317\357\243u\225\275,~"
#"\367\v\206\234\336\21c\375\340\346\221\227"
#"\235\340\r\325f\35\32\366\35@\372\337"
#"\377\316\17\3333i\347@\300\205`V"
#"\376\226\302\245\350\16>\354\237T\242\376"
#"G\363L]\237E\4\212/p9\330\242\257]e\265V\220\2\365#HI\177"
#"\f\207\343\v\32o\310\256xA\327\201"
#"\374\200\2\201\0w\335u\27\331\331\331"
#"\244\247\247\323\274ys\254\2654i\322"
#"\204Z\265j\25\332\316\37mW^\234\375\245/\352or\250zE\3773\236&"
#"\306{\20Q\322\357\326\260a\303\"\313"
#"\177\361\305\27\344\344\344\220\227\227\307\263"
#"\317>\313\257\277\376J\313\226-\271\342"
#"\212+\"\313\356/X\27\219rx\343\232\a\f\370qC\325\337\rd\255\345"
#"\351g\337\245\325m\0373e`]\\\v\216\201\37\237\274\214N\v^f\343\215"
#"\35\250h,\330\4\22\313yc\247"
#"\273\306\262\345\355\347\331\335\250"
#"\1\347\37\223\212\273\306\305\330 \206\0\326"
#"\372C\343\254{\261\272\305\342\30Kd\34\366"
) 500
(
#"?\350\177\315\243E\344\350VT\315\330"
#"C\251\3405\254\254]\277\24\250\37\1"
#"\212*\321\335\270q#u\352\324\331\357"
#"r\a\233\265\226\235;w\222\222\222BRRRd\372\201d\374\3414\277\377\376"
#";\237}\366\31o\274\361\6\325\252U\343\332k\257\305u]j\324\250Ql\360"
#"\370\277\264\345.i\372\350e6o\336L\255Z\265\212,q?\230\347=\372!"
#"\2001\206\335\273w\343\363\371HII"
#"\371C\245\377\177\264)C\301\345O;"
#"\355\264\310\264\323N;\215\314\314L6l\330\3005\327\\Crr2\327_\177"
#"=\345\312\225\243R\245J$&&\306]\177Y\273\300\212H\331\347\335H9\341"
#"\270\235\314\365\37\2606\267)\303/\250"
#"\v\241 \35\\\32\235}9'O\275"
#"\207\347\277\332\311\310\0325)\277\341\v"
#"\206w8\221d\237\217 \6\247~:\217\314x\230J{\267\220\224R\215\264*"
#"\225q\374>\214\201\240u\361\31\257\367wc\r\374I5\306\302\212\312;22"
#"2HKK\213\fg*\"\2\336P\3075j\3248\334\273\201\265\226\234\234\34"
#"rrrHKK;\334\273\363\24736z|(9\242\364\351\323\207\21#F"
#"p\326Yg\1\205K\226\377\214@\275"
#"$\235\177\255]\273\226\321\243G\363\310"
#"#\217p\374\361\307G\322\204\355\257\304"
#"7\334\346\34\340\365\327_\347\242\213."
#"\242c\307\216\305\356\317\341h\317\34\275"
#"\215\353\257\277\236\23O<\221a\303\206"
#"\375\341\355n\335\272\225\351\323\247\307\35"
#"\17\275\250\355\26|\277{\367n\206\17"
#"\37\316\220!C8\357\274\363\n\245\371"
#"_\374\221\366\343\361\376>\341\367\17<"
#"\360\0\31\31\31\234t\322I\324\251S"
#"\207\212\25+r\352\251\247\26\271\234"
#"\210H\251g\1\343\22\304\211\31\327\334\r\3654\347X\343"
#"Um\307\211T]\17\327Z\17\2>B\327\277p=v"
) 500
(
#"\343\345\355#G^C\247N\35\302k\3\210l#4\252z\261\273\265b\305\n"
#"\226-[\306\250Q\243\376\360\241\255Y"
#"\263\2061c\306\360\360\303\17\323\250Q"
#"\243\374C\326uZ\344\2507a\302\4\22\23\23\31?~\374a\335\17k-\327"
#"\\s\r\247\235vZ\334a\205\217t"
#"\n\324\217\0\305\5\313\375\373\367\247{"
#"\367\356\\z\351\245\207\274\255\272\265\226"
#"\315\23373b\304\b\356\276\373nZ"
#"\266l\271\337\355F\317{\376\371\347\331"
#"\272u+\311\311\311\354\333\267\217*U"
#"\252p\371\345\227\377\341\375>\320`\357"
#"\217l'z\231q\343\306q\3141\307"
#"p\375\365\327\377\241@\263\244\201zq"
#"\373\334\247O\37\6\f\30@\327\256]"
#"\343\316?\320u\36H\355\207?\272\3347\337|\303\322\245KIJJ\"\30\f"
#"\22\b\4\350\337\277?\25*T8\240"
#"\375\26\219\234\274*\355.\270\216\27"
#"\214\e\27\360cm\20\203\317\353\r>"
#"\24\310\307\257\246^8\200'\24\264\367"
#"\277\262\37\227\\\334\203K/\353\215\265"
#"^`\357\232p\250\36`\177\25\"K\22\250\27\367\0v\323\246M\214\349\222"
#";\357\274\223V\255Z\305\314W\240.\"\0\223&M\"++\213;\356\270\3"
#"8<\17\361\206\17\37N\2336m\30<x\360!\335\356\241\242@\375\b\227\225"
#"\225\305\325W_M\337\276}#\301\332"
#"\241\20\256j\322\263gO\356\277\377\376B\31yq\226-[\306\v/\274@\267"
#"n\335p\34\207&M\232\249\256\371\237\355\317l;n\255\345\266\333n\243R"
#"\245J\334|\363\315\a|\23\363G\2"
#"\365\360v\2151\364\352\325\2131c\306"
#"\320\276}\373\230\351G\322M\324\322\245"
#"K\t\6\203\254X\261\202\334\334\\n\276\371\346\303\275K\"\"%c\275\266"
#"\345N(\312\16\17\323\26\232\345\365\n\37\n\304\255\tw:\347bp\310\17"
) 500
(
#"\266\303A\274\367\352\305\365A\366\345\4"
#"\30>b\30}\372\364\341\242\v\273\344"
#"\227\241\207\356\330\202\6\212\eI\375\177"
#")Q\317\316\316\246G\217\36L\2324"
#")\222\267\213\210\304\363\360\303\17\363\373"
#"\357\277s\337}\367\35\362m\17\0312"
#"\204\213/\276\230K.\271\4(\233\265"
#"}\376\267\236H\344\0\270^fm\203"
#"\304>\31\t\204\352\310\305\246\r\206\336"
#"yO\330\335\320{7\264\204%\\\25.99\231\2313g\362\364\323O\263x"
#"\361b/]\201g/E}>\320g4\321\351\267o\337\316%\227\\\302SO"
#"=U\242\214|\357\336\275l\330\260\201"
#"k\257\275\226\315\2337s\363\3157s\326Yg\321\261c\307C\26\244C~\273"
#"\356?k]w\335u\27[\266la\372\364\351\177\250\235\365\37yN\266w\357"
#"^z\366\354\311-\267\334\22\t\322\243"
#"\267{$]\244\332\266mK\307\216\35\31<x0\275z\365b\330\260a,Z"
#"\264\210-[\266\24J\e\357\\\3519\243\210\0346\206\374*\350QAz\350#"
#"\221[,\203\27\234\207_\201\374\22q'\346\325\08>\312''1\343\361\351"
#"<3\357i\26/^\222\277n\343\375\v\a\351\177\36650##\203\36=z"
#"0w\356\\\5\351\"\262_c\307\216\245J\225*L\2300\241\320\274\242\256O"
#"\321\323\213z\37\303\265X\334H\f\225"
#"\223\223\303\320\241C\271\350\242\213\350~"
#"\311%\204c\242\374\276;\\/~r\363c\247H\360\25\365\352\2553jr\324"
#"\346\303\313\331\230\4\321\363Ci\\\e"
#";1\362\352\346\357G\324\372-\341y%\243@\375 \263\241?\226\305\301b1"
#"\241\354\325\342\206\376\266\376PO3\201"
#"\310t\254\203\0177\22\240c\r\340b\\\357\v\350\307\200u\"_\210"
#"\344\344d\26,X\300\314\2313\371"
#"\340\203\17\342\366\252]\360s\274\36\312"
) 500
(
#"c\367\273\360\17'\234~\355\332\265\f\348\220'\237|\222\2325k\26\273-"
#"k-\357\274\363\16\317<\363\f\263g"
#"\317f\352\324\251\364\354\331\363\220\6\347"
#"\a\223\3438<\370\340\203\374\360\303\17"
#"\314\2349\23\330\377\215Sx~\225*UHLL\334\357\203\225\350i\273v\355"
#"b\330\260a\\\177\375\365\264n\335\372"
#"\3178\204\303*\374]\254X\261\"\r\e6\344\311'\237$%%\205\a\37|"
#"\220\17>\370\200\237~\372\t\210\255-Ppy\21\221\262(%%%&o\217"
#"'\336u\321ZK\225*UHMM=\240@~\315\2325\f\36<\230\2313"
#"g\26\312\333ED\212r\323M7\341\363\371\270\347\236{b\246\27u}*\330"
#"\371rt\234\341\272\341 \326\305\305\v"
#"\3201\6\203\343\305P6\310\230\2617"
#"\322\241S{z\366\350\211\261\340b\362k1Y\274\30\t\327{8j\275\232J"
#"\326\204\373\16\t\355\207\1c-\306x\3333\241\255E\366+T\e\312`BA"
#"{ &X7\241&I\326\361\nO\303\333\0\257\246\225\27\3679^\363'\300"
#"\272n\250FUx\377JFU\337\17\205\360\31\16w\"\23\3659:\211\rU"
#"n\213\231\355Zp\202X\353\v}Q\1\\\2545`\202\230\2\355\324\372\367\357"
#"\317%\227\\B\257^\275\212l?\374"
#"\351\247\237\362\324SOE\3469\216\23"
#"\31^\255q\343\306\214\35;\266\360!"
#"\204\326\261i\323\246H\233\364\23O<"
#"\261\310@i\351\322\245|\363\3157\224+W\216\35;vp\345\225WR\275z"
#"\365\222\237\263#\320\270q\343\250S\247"
#"\16\243G\217.\262\372\315\346\315\233\271"
#"\363\316;q]\27c\f\373\366\355\243|\371\362\0T\252Ti\277U\207\372\366"
#"\355K\377\376\375\271\350\242\213\16\3121\34n\321"
#"\347m\336\274y\4\203A\266o\337\316\360\341\303I"
) 500
(
#"MM=\314{'\"rx\24\327\37M\330g\237}\306\2349s0\306\220\221"
#"\221\301\346\315\2339\341\204\23\n\345\355"
#"\361\362\247\350\274=\334\337\214\210\310\376D_O\302m\326'L\230Pl_U"
#"\3055\311\231>}z\354\204 \330P\25\"\3\214\270z8m\316\374\v\203\6"
#"\r\r\365\377\21\346\20\304\305\207\203\305"
#"kj\204q#A\261\327L)\b\370\363c\261p\\\26\356\3313\274\217\221\371"
#".\326:\30Cll\26\236\27U\23\312\332 \306\344w\367Ih\35^\223\250"
#"\374\246M\221u\224\220\2\365\203,{"
#"\323'\334}\355-|\230\21\360\236\325\4\301G\22]n\235\311-]\e\262w"
#"\365[L\236\275\234\213o\270\223\323\253"
#"\e\"\3\256\332=\274q\347\325\374c\361\257d\3479\30c\b&&s\343\254"
#"\267\350u\\d\274\227B\262\262\25?\321\r\0\0 \0IDAT\262\30>"
#"|8}\373\366\245K\227.1?\224\313.\273\214M\2336q\322I'\221\236"
#"\236^h\331\360\260c/\275\364\22\0"
#"\257\274\362\nU\252T\211\374\b\367\355"
#"\333\307\245\227^\312\375\367\337O\313\226"
#"-\213\fD\357\276\373n\316=\367\\"
#"\322\322\322\250Y\263&\315\2337/\224\256,\266#\1\30?~<iii\374"
#"\365\257\177\5\362\217\363\326[o\345\303"
#"\17?\244^\275z\\t\321E\221\363"
#"\271b\305\n\322\323\323q]\227\334\334"
#"\\\346\314\231\3\300\324\251S9\351\244"
#"\223b\326q\351\245\2272z\364\350\230\352\356eQ\364w#''\207%K\226"
#"\260j\325\252\375\266a/X\352^\26"
#"\277_\"r\364\261\326\222\235\235\315\210"
#"\21#\350\323\247\17\27^xa\314\374"
#"\313.\273\214\315\2337\323\262eK\332\266m\v\300\317?\377\314O?"
#"\375\304\271\347\236\213\353\272\374\376\373"
#"\357E\346\355YYY\364\352\325\213I"
) 500
(
#"\223&)H\27\221\22)\252\243\353G\36y$\246\315z8\335\243\217>\312\v"
#"/\274@ZZ\32\375\372\365\213\334\257E\27\30\32cx\342\211'\b\6\203\214"
#"\e7\216\213\272^\4\6\2\270\370\254"
#"e\310\340\21t\273\344\2.\271\344\22\f\276P\tzT\351\264!\277z\271\1"
#"c\203`|^hE~\211\267\211T=w\242\342\256\3201\24\352\0044\264\r"
#"\343\365+b-\241Rx'2\202\207"
#"7\215H\307\240\336\212\302\357\275\302U"
#"\327\30\234Pg\241A\343=P(\351"
#"\211\226\203h\347\312\271\366\3023N\263"
#"\263\26\257\267\353\326\255\263\353\326\255\263"
#"k?\234j\3335<\337>\365S\246\335\371\325\23\366\374\16g\331E?\273\326"
#"\r/\24t\255k\367\330\207\272\326\264"
#"\335\377\261\324\256_\273\316\256_\373\263"
#"\375\372\251A\266z\253\316\366\215\337\""
#"\311\254\265\326\272\256\e\263\315\314\314L"
#"{\331e\227\331\377\373\277\377\263\256\353"
#"\332\207\36z\310\266h\321\302~\374\361"
#"\307v\335\272uv\367\356\335E\356\257"
#"\353\272v\335\272uv\375\372\365\366\302"
#"\v/\264\353\326\255\263\373\366\355\263;"
#"v\354\260\347\237\177\276\335\274ysL"
#"Zk\255\315\311\311\261\2337o\266w"
#"\334q\207}\350\241\207\354\246M\233l"
#"0\30\334\357\271)\270\337G:\327um0\30\2647\336x\243}\374\361\307#"
#"\347\362\346\233o\266\323\247O\267\353\327"
#"\257\267[\266l\211\244\337\273w\257\275"
#"\373\356\273c\326\21\376\216\364\353\327\317"
#"\236t\322Iv\333\266m633\323"
#"\366\350\321\303~\372\351\247\221\355\224%"
#"\361\216\247\340\264]\273v\3315k\326"
#"\330\253\256\272\312.Z\264\310n\332\264"
#"\251\310e\213[\257\210\310\221*33"
#"\323\366\351\323'n\336\276v\355\332H\336\356\272\256\375\376\373"
#"\357\355\254Y\263\"\237\255\315\317_\322\323\323m\267n\335\354"
) 500
(
#"\236={\342\346\355\"\"%\25\276\276D\337sM\236<\331\336~\373\355\326Z"
#"k\227/_nO<\361D;u\352T\273~\375z\373\333o\277\25\273\276\365"
#"\353\327\207\356\235o\264\315O8\321\376"
#"\366\363/6//\317\16\0312\304\276"
#"\374\302\213Q\e\266\326\rm\327\265\326"
#"Z7`\255\315\263y6`\255\r\206\246Y\es+\350\26|\353\245sm0"
#"f\235\221\345C\357\255km^\364\347P\332H*7j]n\376\264\374m\a"
#"c\316\323\201\334\235\252D\375 \333\371"
#"\3553\\5\346\237\fz\352\35.\252"
#"\233\337\23\354s\335\233\360\3769\213x"
#"\250\303r\372\377\365y\256\235\263\210\363"
#"\352\204\306R5.\326f2\355\262\223Xq\351\22\236\354s\254\367P&\370="
#"\267t\356B\342\335k\230\330\316!\372"
#"A\226\215\323\343\367\2301c\250^\275:iii\\s\3155q\237|A~"
#"\311c\364\262\326Z\\\327\345\274\363\316"
#"\243C\207\16\374\376\373\357\334v\333m"
#"\324\252U+f;K\226,\341\267\337~\343\223O>\341\236{\356!%%\345"
#"`\237\322#\302\304\211\23\251\\\2712"
#"\357\274\363\16=z\364`\310\220!1\363\255\265ddd0c\306\fn\273\355"
#"\266B\177\3\e\32#\375\326[o%99\231\336\275{\323\246M\233\303q("
#"\a]\274\357n\364\364\202\357\27/^\314\eo\274A\227.]8\366\330ci"
#"\334\270q\221\353\24\21)k\302y{"
#"\305\212\25\271\356\272\353\342\246)\330\353"
#"{\301k\3427\337|\303\2349s\310"
#"\311\311\341\266\333n\243N\235:\272n"
#"\212H\211\355\357z\361\310#\217\260o"
#"\337>\266n\335\312\303\17?\\\242e"
#"\342\319\362\32\252W\257J\253\226"
#"-\350\325\273\17\20\325\204\330\202u\274\322\355p\3519"
#"\340u>\347\230p\1;^u\364 \206\204\374\345MT"
) 500
(
#"I8\304\226\250\27\254\252\0365\252\207"
#"%\17c\23\"\325\356m\250\324\335\205"
#"\330j\367\344/\23S\322\36\332\237\222"
#"v\23W\374@\234\362?\363\273.6\261<\225*{\265+\\c\361\347|\301"
#"\e\313wSwt\32\306\30\34\353\365\363n\214/\324\354\301`\34ozbZ"
#"\265\310\272\354\246\357XU\363Bni\20\252va\235\310\37>^\aq\307\37"
#"\177<+V\254\240O\237>q\3\301\202\323\n~\366\371|\274\363\316;\214\32"
#"5\212\244\244$j\324\250\21I\263t"
#"\351R\276\373\356;\202\301 \351\351\351"
#"\221\361\317\243\25\25\200\35\r\2327o"
#"\316\233o\276\311\225W^\311e\227]Vh~\370|\207\253\372DO\17\277V"
#"\254X\221\344\344d233\251[\267n\231=\217\373\v\322\303i\302:u\352"
#"D\307\216\35y\372\351\247Y\277~="
#"\377\371\317\177HNNf\360\340\3011"
#"\347\257\254\236/\219\272\24\274\226\205"
#"\363\366xyKI\226\a8\346\230c\310\316\316&))\211\2325k\352z)"
#"\"\ad\177\367YM\2336\345\371\347"
#"\237\347\364\323O\377\203[\360\2\341\32"
#"\265\252\263y\303F\232^\336\225\r\213"
#"\3471\355\365O\330\225\351bC\243n"
#"T\254{\16\267\214\353I\232c\370\372\245)\254>\356rz\235V\5\223\37Y"
#"\263\347\347Oyv\316+|\233\261\3"
#"\353\32\254\343\343\204n\327q\335\5M"
#"\243\32\237{\301s\220 ~\353\3\23\325\316\335D\306\367\360\202}ox\16,"
#"\260\356\235i\314\375oUF\214\354K"
#"\355$B\313\300\257\313\26\360\317W>a\303\236l|X\\'\231s\257\233L"
#"\317&\t`J\336\231\234z}?\310lJ*\271\377]\314\360\263:\320\261C"
#"[:\267o\307\231'\17 o\3104\306t\252I"
#"\320\315\301\305\301\301\353\200\300\340b\35\357\313\357\270\1"
) 500
(
#"^\36\335\221\366\35\332\322\241}[\316"
#"\3508\214\25\273O\343\264c\35\300)\320\211Bl03n\3348\374~?S"
#"\246L\341\231g\236a\321\242E\2214"
#"\305\5A\321\363\262\262\262\350\326\255\e"
#"7\334p\3C\206\f\241o\337\276\374"
#"\376\373\357\\{\355\265l\333\266\215\226-[2r\344\310H[\352\242z\233?"
#"\3322\377\351\323\247\363\371\347\237\363\304"
#"\23O\260r\345J\36x\340\201\270\351l\250]NQ.\275\364R\372\366\355\313"
#"\270q\343\270\372\352\253\331\271s\347\301"
#"\332\345\303\256\270\221\n\342U\3721\306"
#"0`\300\0\372\365\353G\313\226-i\332\264)w\336y'\v\26,\210,s"
#"\264}\357D\244l*\230\267'$$0e\312\24\236}\366\331H\336\36V\260"
#"\246\\\370}\364u4++\213\376\375\3733v\354X\6\16\34\310e\227]\26"
#"\267wf\21\221\342\24u\237\365\322K"
#"/\361\342\213/\362\370\343\217\23\b\4"
#"\270\365\326[\343\246/\376\232\3430x\320pZ\237v:w\337\177/\17\376c"
#"\26\17\217\34\310[[\353\323\276}{:\264kO\273\364\266d\277\177/\3'"
#"\276\a\326\362\3053\3670\373\303\r\221"
#"\3410\275\336\332\203l\373\372Ef>"
#"\277\204:\247\266\243}\373\366\264\373K"
#"M^\274\375B\256]\370#\1c\243"
#"\332\243\303\256/\236\242G\207\216\264\353"
#"\320\221\16\355;\322\266}\a\332\267;"
#"\213\333\376\371\31Y\0205\364\32\30\273"
#"\225w\36\271\236\311w=\315#\257\374"
#"\20\325<\335\345\247\327\36a\356gY\244\267kG\273v\355hw|&\343\372"
#"\235\305S+\202\205\206z+\216J\324"
#"\0172\223\235\215\277~+\306\336\3734"
#"\347\34\23\4\34\\\223H\335\343\352"
#"\340\a2\254\17\237\261\336w\304:\241^\t]\254\261X"
#"\343\247\335\265\2171\271\2337L\212\315Z\306\210\277L\340"
) 500
(
#"\352'Oc\356U'a\242\236\310D\a&\367\334s\17\25+Vd\344\310\221"
#"Xk\2311c\6C\206\f!55\225\16\35:\24\e\300\204\347m\337\276\235"
#"\313/\277\234\177\375\353_\244\245\245\261"
#"}\373v\252T\251\302\324\251S\271\355"
#"\266\333\250Q\243F\261A\346\321*''\207\225+W\322\271sg\22\22\22\270"
#"\353\256\273\270\351\246\233\230>}:#G\216\4\nW\351.h\317\236=\f\34"
#"8\220\277\375\355o\234~\372\351Xk"
#"\371\347?\377\311\331g\237\315\227_~"
#"yH\217\2474(\356\373\232\224\224D"
#"\207\16\35\0\357\351\355\352\325\253\0310"
#"`\0c\307\216\245^\275zT\255Z5&\275\2x\219R\24\274^ef"
#"f\362\345\227_r\365\325WS\276|"
#"\371H\336\236\222\222B\307\216\35\v\325"
#"\214\213\26\236\276m\3336\372\365\353\307"
#"\274y\363\"\265\344~\375\365Wv\354"
#"\330A\345\312\225u\215\249H\216\226\337V \20`\325\252U4k\326\214r"
#"\345\312q\375\365\327\363\300\3\0170a"
#"\302\4&N\234\30\223\266\250R\371\354\354lF];\222\213\272]D\327\213."
#"\302X(\237R\231\337v\303\251\347\367"
#"\245\337\345u\301@\20\350r\322o\364\353>\225\317&\236M\325*UHK\366"
#"E\252\232\e\0\343\303o|\324l\331"
#"\206>\3\373\321(\301\301\332 \307\255}\215\233\376o9y}\232\34076\322"
#"4\271\322\211\227\362\330\274\316\270\241\2"
#"\321\240\223\200/\30\244\\\325\232\224\263^*o@6\310Y<\225\231\333Fr"
#"\357\330\237x\361\245\267\311\270\264)U"
#"\35\257T\335I*G\2433/\340\312"
#"~\227\204\216\252\17{\226\324\343\365\317"
#"\3261\370\344F%>\237\212\264\16\262\200\r\340OL\246V\275z\324\257"
#"\337\220\372\365\353\323\360\270:\370B"
#"\17p\374\30\254k\b\22\256\306a\361"
) 500
(
#"*s8\344:\206\264\232\307R\377\270"
#"\372\336\277\346\375\270}\334\231|\376\356"
#"\327\344\204z\22\f\v\177\311\267n\335"
#"JFFF\244\224\e\240|\371\362\221"
#"\261X\27/^\34\311\300\2433\362\350"
#"\367k\326\254a\330\260a<\377\374\363"
#"|\363\3157\314\237?\237\273\357\276\233"
#"[o\275\225E\213\26Q\253V-\5\351Ex\365\325W\311\316\316\246w\357\336"
#"\221s\372\320C\17\361\375\367\3373w\356\\ ~iq\370u\327\256]\\u"
#"\325U\214\36=:R]\310\30C\325\252Ui\336\2749\237\177\376\371!<\232"
#"#K\265j\325h\323\246\r\363\346\315"
#"\343\353\257\277\216\214=\274m\333\266H"
#"\232\342\36\220\204\251TIDJ\203\2027\257\23&L\240w\357\3364l\330\20"
#"\360\362\366\371\363\347\307\214\263^\334\365"
#"k\315\2325\f\348\220Y\263fQ\263f\315\310\372\337{\357=:v\354\30"
#"\263M]\aE\376<GK\220\16\360\345\227_\262t\351Rn\272\351\246\310u"
#"$<b\317\275\367\336[(}\274R\366\en\270\201\216\355;yCM\207z"
#"`\237\376\217I\374\267fS\366\4\22\"\275\267\373,l[\373\3;\23\252P"
#"\21\b\270yX\34\202\221UzQU\0\213q,)\t\341\341\324|d\370\352"
#"\322\250Qu\22\\/\35\0\256\301\227T\211c\e4\344\270\6\3659\256~}"
#"\32\326\255\313q\r\352S\263bR\376\276Z\203\317\6y\367\2719\270gv\241"
#"\337\5\347\260\351\277\357\360\355\346<\257"
#"\266\275\1\307\265\230\204\304H\eu\303"
#"n\266\2476\243\305\261\311\270\246\344\327"
#"W\225\250\37l\306\365\206es\303\337"
#"\32\257m\271\327\265\277\5\e\304&&Q\265F\350K\22j\333\340\342\222`\r"
#"\345R\253\347\17'`\367\261\342\233oi\321\366\306"
#"\320(\200\241\316\n\242.\0+V\254\340\307\37\177"
) 500
(
#"\214t\334\20\375\3x\366\331g\0310`\0\31\31\31\364\356\335;nG]["
#"\266la\362\344\311\364\350\321\203\227_"
#"~\231\314\314L\322\323\323\351\333\267/"
#"\333\266mc\337\276}\221\365\35M\27"
#"\236\222\252X\261\"{\366\354\1b\317"
#"\375\243\217>\312\2157\336\310\264i\323"
#"\270\346\232kb\372\5\210>\217\303\207"
#"\17g\300\200\1t\354\330\261P\e\377"
#"\307\36{\214\326\255[\263v\355Z\235"
#"\373(\361\372[\0304h\20\340\235\367"
#"\357\277\377\236\336\275{S\255Z~\177\17%\251U\"\"r8\25\314\3\222\222"
#"\222\330\263gO\241j\355\317=\367\34W^y%\333\266m\243w\357\336q\327"
#"\263y\363fn\274\361F\356\275\367^"
#"\352\326\255\e3?;;\233\274\274\274\230m\352:(\362\347)\256\17\236#]"
#"\301\343\251\\\2712{\366\354)t\375\2328q\"\223&M\212[\262\36\235v"
#"\304\210\21\264i\323\206\201\3\257$\b\370\302C\2419\1rs\35V<{'"
#"\243\226[\\\202\370\254\217\25\257|\302"
#"9\323\377M\23\202|\216\17\\\360E\365\325fl\20_\2714\366|\371,c"
#"\207\216\244r\242\213\315\372\205\27\336/"
#"\307\223\237u\301\347\3\bx\203\265\e"
#"\303\356\357\27q\357c\257\263\313\202\317"
#"\272\4I\4\23\340\324\356c\31xA"
#"#\22\b\3651\225\265\214\331\257\35C"
#"\277w\317\243F\223Zt\312\233\305\277"
#"\227\377L\247^\215\0\27\223T\2015"
#"/=\302\210\337_\303\261.v\353\227\314\370\372\0346=]'j`\267\375S"
#"\261\350\301\26p\310\313\311\301\r\25~"
#"\333p\324\215\2035>\234\244\362\354\371"
#"\354m\6\267oG\373v\351\264\357\324"
#"\201\263\257\276\227\357\263\223H\310\333\301"
#"sc\332\322\276]\272\327N\242]{>>\371\357<2"
#"\342$|q\376\300;w\356d\366\354\331L\2324)2"
) 500
(
#"-\372\251\2701\206\2313g\362\372\353"
#"\257\263h\321\242Bm\331\2\201\0]\273v%##\203\272u\353\322\250Q\243"
#"\2306\350iii\214\0325\212\373\357\277?f\271\243Y\364\371\335\276};s"
#"\347\316\345\316;\357\214\233\366\241\207\36"
#"\342\347\237\177\346\321G\37\215i\17\30"
#"~\337\253W/\256\271\346\32\272v\355"
#"\32s\341\v\277\226/_\236\341\303\207"
#"\27Z\376h\27\257\277\205\360\271\31=z4]\273ve\336\274yL\236<9"
#"f\271\375\325,\321\371\25\221\303):"
#"\17\370\364\323O\331\262e\v}\372\364"
#"\211I\23\316+f\315\232\305k\257\275"
#"\26\311\333\243\257\205\331\331\331\f\0312"
#"\204;\357\274\223V\255Z\25\332Nxd\230I\223&)o\21\371\23\25\325\307"
#"NY\22}\315\b\4\2\374\375\357\177"
#"g\352\324\251q\347\217\e7\216\312\225+G\332\254\27Ls\325UWq\301\5"
#"\0270x\360`,\16>\v\330PXk]\0066\311c\367G\263h\333>\235"
#"N\355:\323\266}\an\377\327\233\334uq#\34,6\20\272\3669xe\241"
#"\326z\261\226\r`\253\34\303\251m\275"
#"6\352\35\316\273\202A\r\326r\333U"
#"\17\361\253k\301\372\275}\0\374U\352"
#"rF\333t\332\266\353D\333\216\35h\327\361L\332\265=\213\346u+D\3665"
#"\200e\333{\377\344\263\277t\347\372\23}8\t\2471\340\342J,zm1\1"
#"\300\340`l\36\25k\237@z\273v\244w\354L\273K\a\320s\347\363\\u"
#"\327\273\344\35@\370\255\22\365\203,\355"
#"\204\313x\346\325\356\224O\r\340Z?\216\261X\f^\307q\16i\315z\363\322"
#"\267g\221\271/\207\2405^u\211\204\212\324LL\242\3213?\322e\347n\202"
#"\256\37k\2038$P\371\270:T\bwz\340Z"
#"p\362Ke\363\362\362\370\356\273\3578\361\304\23#"
) 500
(
#"\333/xA(_\276<\217?\3768C\207\16%%%\205N\235:\1\260{"
#"\367n\332\265k\307\205\27^\310\255\267\336Jjj*>\237/f=\t\t\t"
#"4o\336\234\2313g\36\2023wd(x3\364\343\217?r\302\t'D\346"
#"\27\274a\272\377\376\373\31;v,\263g\317\246\177\377\376$&&\262o\337>"
#"\372\367\357\317\370\361\3439\355\264\323\342"
#">m\265\326\222\234\234\314\361\307\37\317"
#"\eo\274\21\263m),\372\334\324\253W\217\253\256\272\212\215\e72u\352T"
#"z\365\352E\355\332\265\v=\b)\256"
#"\223E\21\221\303i\333\266m\354\332\265"
#"\213c\217=\266\320\203\\k-\345\312"
#"\225\213\264Y\257T\251\0225j\324\240"
#"\\\271r\354\330\261\203~\375\3721w\356\\j\325\252\25Y_\364:\22\23\23"
#"i\326\254\0313f\314\210\254SD\376"
#"7e\255\344\274(\321\245\341~\277\237"
#"\217?\376\230SN9\245\320\374\2601"
#"c\306\24j\263\236\223\223\303\310\221#"
#"\351\332\265+=z\364\0\274\362f\257"
#"\337.\e\352I\335\241A\252\245Z\255Z\364\277\374Jl\250WvkB\303\254"
#"a\261\306`M\320\e\"\315x\1\263\265A\310\316%\265^s.\275\262\37\r"
#"\374\6c\240oz\200E\247/\342\353"
#"\275\271\324\255\230\200\261\336\260\327\3115"
#"\232\323\243_+0\1\257p\325\370\362"
#"\207k\vU\303\367\273\231\374g\301\367d}\371>\255[\314\307\32\227@v\6"
#"\3537\276\305\362'\6\323>\301G \230E\325\223;1\240\337%\221\321\330z"
#"\244n\240\341\230\17\330x\333\271\34W"
#"\302\257\206\2\365\203\314$\224\243B\245"
#"\304\310X~\326\232P\265\367P\265u'\221\3125\352P)\234\336\272X\343x"
#"m2R\252rljU\2573\3\34|\270X\353"
#"\215\324\347\375\321mh\f@\23\371\227\230\230Xh\37"
) 500
(
#"\n\376HRRRX\260`\1\375\372"
#"\365\303\347\363\321\276}{\272w\357\316"
#"\245\227^\312\355\267\337^\354\362\341\352"
#"w\22\313\30CJJ\n\311\311\311\205"
#"\246\27|\377\350\243\2172~\374x\346"
#"\316\235Kff&c\307\216e\364\350\321\234v\332i\205\226)\270lnn\256"
#"\316\377~\304\e\352\255B\205\n4k"
#"\326\214\244\244$\356\276\373n\272t\351"
#"\302E\27]\24\263\\Q\1\273\210\310"
#"\341b\255%\30\f\262z\365\352\"\363"
#"\210\350ZW\363\347\317g\320\240A\234"
#"r\312)\344\345\345q\333m\267\261p"
#"\341B\322\322\322\342\326\324\no\303\357"
#"\367S\241B\205CtT\"e\337\321r\37\21}M\371\344\223O\n\r\e\31"
#"\357<\334|\363\315L\237>\235'\237|\222A\203\0061v\354X:u\362\332"
#"\244G\204\342\e\27p\fX,A\27\202\341\22\366P\317\356\330 \6\37.~"
#"\34\240|\205j\330P\207o\16\200\361\221g\38>?\t\tD\306`wv"
#"n\206\232U\251\352s\242\326\5\331["
#"\276\347?\357\177M&~\\\307\222\20\264\4\r\324;\351,\316lQ\e\307\32"
#"\334\237^\345\341\305\360\310\273\377e@"
#"3\357\276\337\360\3\303[\265\341\2317"
#"\262hwI*\326\365\341\367%\3.\326\30\f\226=\277\377J\271\372mH\212"
#"\212\3\367G\201\372!\340u$\340=\251\t\375\17\b\r\e`\334P\331\2727"
#"<\e\306\1k\t\32\213C\270\235\230"
#"\213\317u\300\t\217\233\356\245\263\24="
#"\214U\301\266!\361\202\217\347\236{\216"
#"\277\375\355o\274\360\302\v\244\244\244p"
#"\374\361\3073g\316\234\2707\1\341u"
#"\377\362\313/\0<\365\324S\252\"G"
#"\376\271\261\326\262k\327.6o\336\3143\317<\23i\357WT\372\277\374\345"
#"/\374\355o\177\243|\371\362L\2312\2056m\332D\322\24\25(*\200,"
) 500
(
#"\231\242\332\202Yki\320\240\1\323\246"
#"M\343\3157\337d\301\202\5\364\355\333"
#"\367p\355\246\210\310~\31c\330\266m\e\323\247Og\325\252U@\361y\2011"
#"\206\271s\347r\335u\3271o\336<n\271\345\26^}\365U\2\201@d~"
#"t\263+\327u\361\371||\375\365\327"
#"|\367\335w<\373\354\263\344\346\346\36"
#"\232\203\23)\303\302C\360\26\274\17\257"
#"P\241\2\357\276\373\356\341\336\275?E"
#"\301\207\1773f\314\340\306\eo\214\214"
#"r\24N\23\356\200\332u\335\3109\251"
#"T\251\22S\246L\341\333o\277\345\234"
#"s\316\241g\317\236\261MB\r\230 "
#"\30\307D\372\352\312\334\275\5k\253\200"
#"q\261\341\376\276\214W\373\327!@\346"
#"\336\35,z\370\32\256Yr\f\216\t\0224\2266C'\322%\331\360\353{/"
#"p\375\220}\324N\n`\361\263i\323o\214|d\22\351)\t\241BO\27\f"
#"\344\354^\317G\37}\304\236P'sA\3~\327\341\244*\247\320\246E-0"
#"\1\376\357_\263\370\245\376)\264\257\227"
#"\34)`\3056\345\262.\r8\377\336\tL\350\376\20\376`\36_,\270\207\253"
#"3^\300G\2\4\3l\334\236\310#\323\206RKU\337K\17\v^\220\0363"
#"\325{\222bp\362\3\370P\277\2\26"
#"\300X|6\34\224\203\265~\214\343\346\247\215,\37+^\351mQA:\300\354"
#"\331\263\311\314\314\344\261\307\36c\366\354"
#"\3314n\3348\222\231\27%++\213"
#"\325\253W\323\264i\323\222\236\2022-\372\334fddP\256\\9\0327nL"
#"0\30\214\\\234\\\327-\364\267\tWy\337\270q#\e7n,\262\244#\232"
#"\36\214\24V\324\3\251x\35\"E\277"
#"\357\322\245\v\37}\364\21c\307\216\245O\237>\234q\306\31\373=\377\""
#"\"\207\203\34381\265\345\366w\215"
#"\n\6\203\374\374\363\317\244\244\244P\276"
) 500
(
#"|y\0327n\214\353\306\216\22\23~\300\34\276NfddP\251R%\0325"
#"j\204\353\272\312kD\376$\5\357\357\6\r\32\304\35w\334Q&\177c/\277"
#"\3742\255Z\265\212i:\e\257\251\216"
#"1\6\277\337O\215\0325x\354\261\307h\324\250Qd~>7T@\351\22\304"
#"\342\267\t\\x\307\e<\336\377\352\320"
#"\260k\321\235s;\270\370\3511\361e"
#"\216\375\361gvd\a\275\302N\353\320"
#"\240Z\n\325\32\215`\326S\351\374\222"
#"\271\er}\4\34Hm\334\216\356\255"
#"\353x\333\205P\315e\250\324\244\e\223\247v\313/\30\5,N$\35.4\357"
#"y/\213.\255G\375d\274\2\326\320\376t\270q\1\357\235\267\213r\6N\276"
#"\372q\2369\343G\266\356\316\365\252\347\e8\266Mo:4H\340\0\372\222S"
#"\240~\260\231\310\377\2429\5\22\204_"
#"\303\301\267\23\263\2141\5\247\371#\351"
#"\vm\257\230\f<\374\343\330\271s'"
#"s\346\314a\306\214\31\334z\353\255\334"
#"t\323M\254Z\265\212\346\315\233\223\236"
#"\236^\354\361\354\335\273\227e\313\226\355"
#"7\335\321(##\203\264\2644\3168\343\f\200\230'\203\321rrr\30<x"
#"0\217=\366\30\217O\235\316w?\254b\373\354\355\\5tp\250zLT\177"
#"\220\26 \30ybhm\20\277?\21"
#"p\261\204\232H\304\375\223\227\274Z\315"
#"\221\254`p} \301v\333\266m9"
#"\376\370\343\371\317\177\376C0\30\244Y"
#"\263f\205\306]\217\246\32\r\"r8T\255Z\225\361\343\3073j\324(\36\177"
#"\374\361b\323n\337\276\235\201\3\ar"
#"\335u\327\261i\323&>\373\3543\316"
#"8\343\214\22\345\355+W\256\344\2143"
#"\316\320\265N\344 JLL\344\362\313/?\334\273\361\247\211\276^\234w"
#"\336y\\y\345\225\274\371\346\233E\246\t\2338q\"[\267ne\323\246M"
) 500
(
#"<\373\354\263\334q\307\35\334q\307\35"
#"\221\371\221\352\3508\370\274F\350\324;"
#"\265=\370\23\310\357\322\235\310{\aC"
#"\215\23\317\244\353\211g\306\331\313\24\316"
#"\354z\34\361\346\204\327\343+\360\31\362"
#"\327\35\263\347N\2\265[\234I\355B"
#"\311\35\22j4\241\343\331\241\211\365Z"
#"qN\275\302\235w\26^a\361\312\376"
#"\235\374Q\304u]\366\356\335\e\371\\\260Wqc\f\37~\370!7\334p\3"
#"3g\316d\321\242EL\2336\215\a\36x\200\a\36x\200\307\36{,2\26"
#"k\301u\204%%%\261{\367\356\203\1770G\240\234\234\034233#\237\303"
#"%\25\321\347p\347\316\235\f\0300\200"
#"\221#G\322\246M\e\366\354\313d\374"
#"\255\177c\305\212\225\314\236\367,\306\365"
#"\332\325\230=\353\371\317\177\376\303\272}"
#"\200\361\341\206VQ\265z\25~\370\376[^X\260\220\371\317=\307\374\5\vy"
#"\377\233\315\0\270\4\201Pl\357:^\323\n)V\255Z\265\0300`\0\253W"
#"\257f\306\214\31,^\274\230\214\214\214\270i\v\366(/\"r(\204K\324\267"
#"o\337^l\272\265k\3272`\300\0\236x\342\t\352\324\251Cff&S\247"
#"N\215\233\267\27\224\220\220\300\316\235;"
#"\1\325*\22\221\222\213\2767\252\\\271"
#"r\244\211NxZ\274~\203F\215\32"
#"\305I'\235\304\351\247\237N\371\362\345"
#"\271\361\306\e1\306p\317=\367\304\254"
#"\273\340\362\341f\246G\23\5\352eD"
#"\270\303\254n\335\272\361\322K/\25\372"
#"a,[\266\214\331\263g\263i\323&\22\22\22x\345\225W\250[\267nL\373"
#"\231\371\363\3473{\366l\236\177\376\371"
#"\310r\321\353\330\267o\37\213\26-b"
#"\320\240A\nV\n\260\326\222\226\226\306"
#"\331g\237\315+\257\274\0223/\372\34\216\0301\202\1\3"
#"\6\320\256];\366\356\335\e\351Ir\352\224\207Y\365\355"
) 500
(
#"\n\246M\233\16\300\177g\17\241\177\317"
#"~\f\230\370!y^\347\376\354\336\227"
#"\311\177\346\317b\303/[y\352\315\17Y\262d\t\357/^\310MC\2733\361"
#"\355\325\230\320\363\300B\0250d\277\6"
#"\16\34\310\370\361\343\371\372\353\257y\376"
#"\371\347\331\272uk\314\374\202\303\34\212"
#"\210\34J\315\2337\247J\225*|\376"
#"\371\347q\347o\332\264\211\261c\307r\337}\367Q\273v\355H36k-\363"
#"\347\317g\316\23491y{\264p\336"
#">p\340\300\203\266\377\"R\266\205\v\247\6\f\30\300s\317=\0273-\34p"
#"\203w\37\334\272uk.\271\344\22~"
#"\375\365\327H\263\234\t\23&\340\367\373#\245\352\5\2330Zk\2319s&c"
#"\306\2149\364\aw\30)P/#\2141$''s\376\371\347G:z\v["
#"\262d\t\353\326\255\243Y\263f\274\370"
#"\342\213\\u\325U4k\326\214={\366\24zR5s\346L^~\371e\336"
#"~\373\355\310\264\260\314\314L^{\355"
#"5z\364\350\241`\245\0c\f\251\251\251\234w\336y<\375\364\323\205\36dX"
#"k\351\323\247\17W]u\25]\273v"
#"\215\272\370\204\332\2\32\37\223\37\370\a"
#"k\177\335\302\302{\256`\326\e\265\270"
#"\346\216\313\330\361\322#|\276\17p!37\2279\377|\231\263:wa\322\234"
#"\307\231>\343q\236\234\361\22\223\317\205"
#"\177?\3676;B\375\327\205F\263D?\357\3c\255e\364\350\321t\351\322\205"
#"y\363\346\361\217\177\374#2O\337w"
#"\219\324\242\363\221&M\232\220\226\226"
#"\306\222%K\n\245\313\315\315e\330\260aL\2300!fxV\310\277v\315\230"
#"1#\222\267\27\314\237\366\356\335\313\242"
#"E\213\350\331\263\347A8\n\21)\213\302\327\221\350W\307q\350\337\277?"
#"\323\246M\213I\27\276\347\275\372\352"
#"\253\351\334\2713\203\a\17\346\376\373\357"
) 500
(
#"g\364\350\321\244\246\246F\322\216\e7"
#"\216\362\345\313s\373\355\267\307\355\330:"
#"<\304\361\321Dw\362e@t\246{\346\231g\322\264iS\236{\3569\366\356"
#"\335\313\265\327^\313\346\315\233\271\340\202"
#"\vx\350\241\207x\350\241\207h\335\2725\0\345\312\225#;;;\262lx\210"
#"\261\351\323\2473{\366l>\372\350\243"
#"\230\252\333\231\231\231\324\256]\e)Znn.iii1\275\276\357\333\267\217"
#"\313/\277\2341c\306p\3169\347D\246[kC}\30x\347\330\aL\272o"
#"\"?l\203G\226m\347\222~W\320\244\302W\274\270d+8\320\373\222\236|"
#"\361\332D~\335\264\221\254LB\343J"
#"B\355\343\232R3%\350\215\357\210\213"
#"\327~\335\37\216\330\245\30\361J\312\353"
#"\327\257\317\220!C\350\326\255\e\303\206"
#"\rc\321\242Eq\37\274\210\210\34L"
#"\5\233\333$''\343\367\373\t\6\203"
#"\2214;w\356\244{\367\356\314\2349\223SO=\265Ps\253\360\373p\336>"
#"k\326,\226-[\26\263\235\254\254\254"
#"\2301\326ED\366\247\250\21\242\262\262"
#"\262\250V\255\32\331\331\331\221 =/"
#"/\217a\303\206\321\271sg\372\364\351"
#"\3\300G\37}\304\251\247\236\212\337\37"
#"\333]\332_\377\372W\222\222\222\270\353"
#"\256\273b\246\357\335\273\227c\2169\346"
#"\250k~\253@\275\f\210\256V\222\234"
#"\234L\365\352\325\371\346\233ox\343\215"
#"7\230:u*\351\351\351\f\36<\230\a\37|\220c\217=6\222\366\363\317?"
#"\347\3143\363\273V\bO\257X\261\""
#"\377\372\327\277x\370\341\207Y\272ti"
#"\344\307\330\266m[\336\177\377}\225."
#"\26\243[\267n8\216\303\302\205\v\1"
#"\357\341\306\360\341\303\0314hP\241s"
#"\3558\16\26?\306\265\30c\1\27\277/\213\2266\207c"
#"\352n\341\327\317\326pe\307\306|\376\356\247\274\363\321\227\34"
) 500
(
#"W\267&5\352\324&k\343Z\336}\341\5^\372\367K\2748\377!\256}&"
#"\223\213\257\36D\325D\27\e\356Z\22"
#"T\367\275\4\342\365\244\37ng\325\270qc\236|\362I\202\301`\2449I\364"
#"r\"\"\207B\370z\363\367\277\377\235"
#"\247\237~\232\237\177\376\31k-?\377"
#"\3743\3\6\f\340\361\307\37\347\230c"
#"\216)\224\276`\23\270p\336\376\350\243"
#"\217\262t\351\322\3105-==\235\367"
#"\337\177?\222N\17\"E\244\244\n\216"
#"\256s\362\311'\223\236\236\316}\367\335"
#"\27\271\307\272\341\206\eh\323\246\r}"
#"\373\366\215\\_\22\23\23\v\5\335\341"
#"y\343\307\217'77\227\311\223'G"
#"\246\365\357\337\237\211\23'R\261b\305"
#"\243\352\32\245@\275\214\bW+\331\271s'\307\34s\f\307\34s\f\e6l"
#"`\313\226-\\{\355\265\334y\347\235"
#"4l\3300\246\n\312\225W^\311\314"
#"\2313c:\235\213\376\301\275\360\302\v"
#"L\2336\215\367\336{\217\27_|\221+\256\270\242PU\27\311\27>'\27_"
#"|1\37|\360\1;v\354`\344\310\221t\357\336\235\v.\270 &m~\200"
#"\350b\215\301\373):\0043>a\376"
#"7\373xh\361W\254\331\234\301\332\214"
#"\337)\277\370\37L\235\3754\317>\275"
#"\200\\\327\20\330\266\221e\357\276\316\233"
#"\257\275\316\233\357\254\"y\313J^\236"
#"\3612[\362\274\277\237\367\237\224T\274"
#"\247\302\321.\276\370b\312\225+\307\254"
#"Y\263\370\350\243\217\16\345\256\211\210\0"
#"\371A\367\210\21#\2309s&\277\377\376;\243G\217f\342\304\2114h\320 "
#"&]X\274\a\212\306\30\26.\\\342\277v;\0\0 \0IDAT\310\264"
#"i\323\370\340\203\17x\361\305\27\351\327\257_\2414\"\"%\21/\36h\333"
#"\266-k\326\254a\353\326\255\214\0313"
#"\206\226-[2t\350\320\310u\354\323O"
) 500
(
#"?\245F\215\0324i\322$&\256\210~\310x\327]w\221\233\233\313#\217<"
#"\302\217?\376Hjjj\344Zw4]\2434<[\31\22\b\4\2305k\26"
#"={\366\244a\303\206\274\364\322K\f"
#"\e6\214\373\356\273\217\26-Z\0\261"
#"_\356\312\225+\27\352\211\261\340\227\177"
#"\376\374\371\214\349\222J\225*1y\362\344\"\323\35\315\nvx\321\255[7"
#"\252W\257N\377\376\375\31?~|\361"
#"\303\342\230\0&\264\16\214a\307\367+"
#"\370\372\313\17\370\241\373Y\324\257V\221"
#"\327\26\255$\225T\246L\233\3\270\4"
#"\367\355$\365\304\266\334\367\364\\Z\370"
#"\274B\363\300\252\3514?c>\213'\\J\237\332\345\363\v\324m\376\260nr"
#"`\n\216\307\336\265kW\226.]\312"
#"\372\365\353\311\315\315\345\254\263\316:\334"
#"\273(\"G\221p\3762t\350P^~\371e\206\r\e\306\275\367\336[d\233"
#"\364x\242\363\252\271s\3472v\354X"
#"\322\322\322x\340\201\a\212L+\"R\224\202\367Jam\333\266%--\215!"
#"C\2060b\304\b\272v\355\n\344_"
#"\237\336y\347\35\352\324\251C\303\206\r"
#"\343.\37~\177\333m\2671c\306\f\376\376\367\277Gj\5\37mT\242^\6"
#"\344\346\3462{\366ln\275\365V\206"
#"\16\35J\303\206\r\331\265k\27\317?"
#"\377<}\373\366\345\251\247\236b\323\246"
#"M\aT\n\276k\327.V\257^\315\311'\237L\223&M\310\312\312b\371\362"
#"\345%Z\366h+m/x3\223\225\225\305\314\2313\0315j\24c\307\216\345"
#"\256\273\356b\343\306\215q\227\265\241ge\306\30Lp\a\vg\276@\203\1\v"
#"yj\352$\372\365\277\234\36]Nf\354\325'1u\3762\260\16\306\30\2A"
#"\353\265Q\a\300\305_\353Xj\325(\37\352\345\327"
#"\5\e\364\202\177\5\351\177X\274\361\330\333\266mK\237"
) 500
(
#">}X\267n\35\313\227/\217\f\21r\264}\337E\344\360\331\265k\27\v\27"
#".\244o\337\276\314\235;\267\310\274%"
#"\236\360\365l\313\226-\274\365\326[T"
#"\253V\255\310\274=^\263 \21\221h"
#"\361\356\225\300+8|\362\311'\271\342"
#"\212+x\356\271\347\370\355\267\337\"#Q\200\327gFVVV\241\345\vv`"
#"\375\313/\277\260|\371r:w\356\314"
#"\374\371\363\343><,\353\327)\225\250"
#"\37\201\242\237<}\374\361\307\254Z\265"
#"\212V\255Z1t\350P\0~\371\345\27F\215\32\305\224)Sh\320\240\1\211"
#"\211\211\364\354\331\223\253\257\276\232\264\264"
#"4Z\266lI\343\377g\357\336\343d"
#"\252\377\a\216\277\316\231\331\373Z\353\262"
#"\204r\27j\311=\227P\"\337H\222\257u\211\\\n\213\310\352\"\25_\227_"
#"7\225B\224\212\250\250H$J}\213\344\362M!%\"Q\244\220\313b\355}"
#"\346|~\177\314\23613;\263\273X;\263\263\357\347\243\36;s.3\2379"
#"\316\347\234\317\373\363\371\234\317\247N\35"
#",\26K\256\3320\273\335\316\252U\253"
#"X\261b\5\373\367\357g\347\316\235\316"
#"\357\355\325\253\27c\307\216\245M\2336"
#"\271\272\250x\253\t\vV\276Z\32\314"
#"A4\22\23\23\351\323\247\17]\272t"
#"\241k\327\256\274\373\356\273\364\354\331\223"
#"\304\304D\352\325\253\307\2157\336\b8"
#"\346\3065l\346\334\347\6\244\355d\366"
#"'\337q\303D\215\371s\347\260\357\360"
#"Q\376\373\3456\376\376\350!f\366\354"
#"\307[\355B\31p}\31\316\375\266\213"
#"5\37~\300\221\322!\30\232\316\301o"
#"\336\246\326\320~t\253\22\r\312\234\227"
#"\315@\223z\270Bc\376\233[\255V"
#"\206\f\31\302\202\5\v\370\374\363\317\31"
#"0`\0\265j\325r\333\306\363\265\20B\24D~\327\215C"
#"\207\16\361\300\3\0170k\326,j\324\250AHH\b={"
) 500
(
#"\366\314uo7\31\206\341\374L\3030X\271r%\0\263f\315\242V\255Z\314"
#"\237?\37p\277\267\273\362\326\322%\204"
#"\20\371\0317n\34\215\e7\246O\237>\264k\327\216\236={\322\251S'n"
#"\270\341\6\254V+\231\231\231\264l\331"
#"\322\271\275ko\237\225+Wb\30\6\377\375\357\177\331\271s'\2336m\302b"
#"\261\360\344\223O2}\372t\36}\364"
#"Q\267\357\n\366\353\224\246\202\275*\242"
#"\230\313\253\360\377\361\307\37s\350\320!"
#"\332\266mK\343\306\215QJq\342\304"
#"\t\206\r\e\306\177\376\363\37\0327n"
#"\354\366Y\23&L\340\370\361\343\204\205"
#"\205Q\251R%\236\177\376y\347\24m"
#"\357\275\367\36\337}\367\35\206a\220\222"
#"\222\302\223O>\351\f@\\\277\273o\337\276$$$\320\243G\217|\323\eL"
#"\362\n\316\341B\345\304\200\1\3\270\363"
#"\316;\351\325\253W\256mG\216\34Ivv6QQQ\200cd\313\21#F"
#"0u\352T\346\277\265\0-y\a\326\n\315\311J9\303\370I\323\270\272r\25"
#"\307\310\355\247\177\346\325\371\353\331\372\313"
#".Z\326\215\242\264\212\342\353\337\377\302"
#"\226\35\202\322\262\210n\330\213g\306v"
#"!\n\r\3\205\216c\3327\3510s\371|u\353\2G!x\326\254Yt\356"
#"\334\231\372\365\353\373)\205B\210\342,"
#"\257k\214\253c\307\216\221\230\230\310\344"
#"\311\223i\324\250\221\333\272\307\36{\214"
#"\23'N\20\22\22BDD\4\221\221"
#"\221\214\349\222m\333\266\241\224b\303\206\r\330l6RSSQJ\361\326["
#"o\345\372\376~\375\372\221\220\220\300]"
#"w\335\225k\235\257\367B\210\213\327\240"
#"A\3v\355\332\345\357d\\1\243F"
#"\215\242a\303\206\f\37>\334m\371\362"
#"\345\313\371\364\323OINNf\327\256]$$$0q"
#"\342D\302\303\3039x\360 3g\316D\3234\347\0s"
) 500
(
#"\243F\215\242i\323\246n\237\361\177\377"
#"\367\177h\232\306\23O<\341\\\26\354"
#"\327)\t\324\213\1\327\223\3160\ft]g\351\322\245DGG\323\245K\27\347"
#"vYYY\334}\367\335L\235:\225&M\232x\335\37\34-\356\255[\267f"
#"\354\330\261\254^\275\32M\323h\337\276=\325\252U\243R\245J\271\6>se"
#"\216b>`\300\0:w\356\354\365;\nZ\360(\216|U\234(\245\350\327\257"
#"\37C\206\f\241c\307\216>\177wjj*\313\226-C)\305\242E\213\330\273"
#"\367W\6\17\34D\335\372\365\b\215*"
#"E\277\177\367p\e\255\3351\334\34X\224c0\367G\37~\234F-\232\3217"
#"\241\e\272\nql\253\300\256\31\3509!\272#=v4\351\372^(\274\235\317"
#"\346\353\224\224\24\26,X@\267n\335"
#"\250Y\263\246\333:!\204(\210\374\256"
#"\31\231\231\231\364\352\325\213I\223&\321"
#"\264iS\237\327\243\303\207\17\363\345\227"
#"_\242\224b\336\274ydff\322\247"
#"O\37*V\254H\345\312\225\335\356\355"
#"\236\337\231\232\232\312\260a\303\308p"
#" \267\335v\333E\245O\bQp\301"
#"\34\250\233\363\244\367\351\323\307m\271\353"
#"5\344\310\221#t\351\322\205\244\244$"
#"\326\254Y\303\311\223'\251Y\263&7"
#"\335t\23\232\2461x\360\340\\\373\270\276\237>}:)))L\235:\265D"
#"\364b\224@\275\30\372\360\303\17\211\210"
#"\210p\16\316\0\216\347\326\372\364\351\303"
#"\374\371\363\251T\251\222\327\23\326\f\362"
#"\225Rt\351\322\205\2313g:\247d"
#"\363\325\25\336\233\224\224\24\206\f\31BRRR\336\3\245\5\31o\307D)E"
#"ff&\203\6\rb\304\210\21\264o"
#"\337\336\347\266\236\276\371\346\e\222\222"
#"\36d\375\372\365D\227\212E\327\fP:Js\304\337v"
#"\34\1:\232\243\235\34\f\214l\0303\366An\274\361F"
) 500
(
#"\6\334\333\337\255\r]);\32\216\21"
#"\346\354\200\356\30\237N\\a\251\251\251"
#"\314\2337\217\336\275{\273M\221$\204"
#"\20\5\345\353\236q\366\354Y\372\366\355"
#"\313\353\257\277\356u %\363\276\356\371"
#"\31+W\256d\307\216\35L\2348\21"
#"\253\325\352v_\367U\261\236\232\232\312"
#"\240A\203HJJ\312\325\r^\36\355\21\242p\4S\240n^\vl6\e#"
#"F\214\240c\307\216\316y\322}m\273a\303\6\346\315\233\307\222%K8|\370"
#"0\31\31\31\224)S\206\270\270\270|"
#"\257-\346\372g\236y\6\233\315\306\304\211\23}n\23,\244ol\200s\255G"
#"\331\265k\27+W\256D\327u\267 "
#"\375\360\341\303\364\357\337\237\271s\347:"
#"\203to\365/\346\315\34\34\3\236\235"
#"?\177\236k\257\275\226z\365\3529\3"
#"x\327\201\35|\325\341\224*U\212e"
#"\313\226\361\322K/\261e\313\226\\\351"
#"\f6\236\335\333]\245\245\2451t\350P\356\275\367^g\220\356k[O\325\253"
#"W'<\2724Q1\321\350\346\346\232"
#"\331\240n\303\202\1\232\243\v\273\246\0"
#"tt\253\306\2349\263\371v\313f\226,^\214\35\35M\31`\340hA\327\34"
#"\255\360\26\f\t\322\257 \327\363=*"
#"*\212\244\244$\226-[\306\306\215\eINN\16\352\374 \204(|\336\356\31"
#"\177\374\361\207\363\336\356\32\244\273^_"
#"\314{\267\353g(\245\250Y\263&\225*U\"$$$Wp\3569\246\214\271"
#".::\232\17?\374\220\227_~\331m*J\t\322\205\20\336\230\327\202\261c"
#"\307\322\252U\253\\A\272\347\324kYYY\214\0301\202%K\226\0P\265j"
#"U\352\324\251\3435H\367,G\271\256"
#"\2370a\202s\236u\317\355\203\355\372$\201z\2003O\270\215\e7\262"
#"a\303\6\254V+w\337}7\3408)\377\371\347\37\306\214\31\303\324\251S"
) 500
(
#"\251Q\243\206\317\21\30\315\355\0016l\330@||<\225+Wv\0162c\16"
#"\342\340\2321\274\5\353\256\357\227.]"
#"\312\254Y\263X\271reP\217\20\233W\246OLL\244[\267nt\351\322\305"
#"\347\357\367\265\3340\f,v;\226\2341\35\315Vsr\202r\224cnuG"
#"\24\236\23\300\347\244e\356\253\257\262u"
#"\353V\346\2771\0374\35t#\347\313"
#"\314\261\3444\307\0u\242Py\273\21"
#"\2307\217\261c\307\362\335w\337\361\301"
#"\a\37\220\234\234\354\257$\n!\202\300"
#"\361\343\307\31;v,S\247N\245Z\265jn\353<\357I\336\336\233\3\311\231"
#"\377{\eU\331|\357\271\377\262e\313"
#"x\345\225W\234\203\317\271\336\337\203\371"
#"^/\204\270x\3463\351C\206\f\311"
#"\265\316[\17\335\220\220\20\257\261FA"
#"\256k\256\373M\2336\215\354\354l\236"
#"~\372\351\240\256@\224@\275\30\370\346"
#"\233o\330\277\177?\17<\360\200[K\272\315fc\310\220!L\23481\327\300"
#"q\256<o\260\313\227/\247I\223&\\u\325U\200{K\273\347\315\334[\360"
#"\356\372z\376\374\371,[\266\214\317?"
#"\377<h3\211/}\373\366\345\336{\357%!!\1\360\35\320\347\331\215Gs"
#"tYG\201f(\24:*\247\v\274\331:\256T\316\v\f43\220\327\34\3"
#"\231\355\333\273\2079s\3468\272\314;"
#"[\340\1M\223Q\337\257\0o\377\226"
#"\256\313\36z\350!\376\365\257\177\261`"
#"\301\002233\2132iB\210 \221"
#"\225\225\305}\367\335\347\274\267\27\344\336"
#"\352+x6+\341]\337{\256\367\346\3157\337t\336\333=\267+i\367z!"
#"\204w\303\206\r\243]\273v\f\e6\f\360~\35r\215#BCCIMM"
#"-\360u\310\344+&y\342\211'\260Z\255L\2324"
#"\311\353\366\301@J\362\1\356\373\357\277g\357\336\275\f"
) 500
(
#"\0300\0p?\231\357\276\373n\346\315"
#"\233\3476p\2347\2367\330\250\250\250"
#"|\203\210\202\336\224###y\355\265"
#"\327x\363\3157\371\365\327_\363\374\314"
#"`2x\360`\22\23\23\351\324\251\323e\177\226\331e\35]C\3G\200\235s"
#"\3105r\216\277\6\216\354\252\273\274\206"
#"\347\236{\216={\366\260z\315\352\234"
#"\300\\\277\260\243\360\213\352\325\253s\337"
#"}\3671s\346L\322\322\322\234\313]o\34f+\227\20\242\344\362\325c\255g"
#"\317\236\314\2337/\327\210\307y)\354\3409**\312yo\337\267o_\2564"
#"\n!J\266q\343\306q\353\255\267\272"
#"uw\317\257\301\352_\377\372\227\263\362"
#"\357bx\213I\314k\321\243\217>JDD\4s\346\314\t\312\356\3572\230\\"
#"\0\360\34\340\305\374\273m\3336~\370"
#"\341\a\206\16\35\352\266]^\373\26\304"
#"\204\t\23\250V\255\32\211\211\211\205\232"
#"~_\357\205w\177\374\361\a\3\6\f"
#"`\343\306\215\205\366\231r\354\375\317\374"
#"7HNNf\376\374\371\f\0324\210r\345\312\3113\236B\210\"\263s\347N"
#"\266l\331\302\310\221#\375\235\24!\204"
#"\213`\34L\256\240\353j\327\256\315\366"
#"\355\333)]\272t\241\246\1\202+8w%-\352\1\300s\0007M\323\370\346"
#"\233o\370\361\307\37\235A\272\353v\220"
#"\273\eHA\273\215\200\243\253{jj"
#"ja\376\0047\362\f\233\377\4\353\205"
#"\252\270p\2558+S\246\f\275z\365"
#"\342\355\267\337\346\334\271sA\1773\21"
#"B\24\216@\277\177\6z\372\204\20E"
#"#\257\362\214\347\272\225+W\322\275{"
#"w\302\302\302\n=\r\301\34wH\240\36`\314 \375\300\201\3\334w\337}^"
#"\267\361\f\314}\r\22c.s\335~\333\266m\34?~\234\177\377\373\337\205"
#"\232f\327\357\363\\V\334\5k\346\27"
#"\205\307W\305Y\265j\325\350\321\243\ao"
) 500
(
#"\274\361\206[ww9\247\204\20\276\4"
#"R\241\323\327\340s\201\222>!D\340"
#"\360|\304\317\365\357\253\257\276J\357\336"
#"\275\t\17\17\277\"\337\27Lq\207+\t\324\3\210R\312\371Lz\377\376\375}"
#"n\347\353&\351-`w\35HF)\305_\177\375Ezz:\325\252U+\324"
#"\em0\6\350\340\375\242S\34\24\247"
#"\264\26g\336\68\361\314\0035j\324"
#"\340\276\373\356c\374\370\361\274\365\326["
#"deeIAW\b\341\344Y\240\r\224\307c\274\215\26\237\327\3142B\210\222"
#"\307\333u\313\333t\220\321\321\321\2349"
#"s\246P\277\327\327tn\301T\276\222@=\200l\337\276\235\235;w2t\350"
#"PBBB\362\334\366b\236\tq\335\307\365s\v\363F\353\32x\4S\6q"
#"\255\350\b\364\202I~S\353\211\302\347"
#"\331\263\305W\257\2262e\312\360\374\363\317\323\240A\3\26.\\Hvvv\300"
#"\237OB\210\242\341\355\361\267@\340Y"
#"\350\226{\212\20\302\225\267q\262\274]"
#"\303\376\376\373obbb(W\256\\\241]G\362\329>P\256\241\205A\2"
#"\365\0\261i\323&\3473\351\336N\260\274\3463w\225W7xp\324h\235;"
#"w\3562S\233\233\267\332\263`Q\\\272,_\354t\27\242\360\3457}[\363"
#"\346\315\211\217\217g\376\374\371E\231,!D1\21H\327miE\27B\344\305"
#"\333\265\301\333ub\301\202\5\324\254Y"
#"\223&M\232\\\321\353H \227\321/"
#"\225\4\352\1\300\234'\335\3273\351\220"
#"\3739\360\374Nto\1\373\271s\347"
#"\2307o\36\323\246M\273\314\24\347\237\276`\342:P\205\264*\b_\nz^"
#"\264n\335\2326m\3320w\356\334+\234\"!Dq\24(\367\30\271\337\t!"
#".\227R\212\250\250(l6\333\25\257\354\v\306\312"
#"D\t\324\213\230g\313l^\317\244\347\327j^\20"
) 500
(
#"\256\333fee\261{\367n\0325jt1I\276h\301\230Q@Z\25D\336"
#".\346\274h\320\240\1\355\332\265c\316\2349dgg_\301T\t!\212\233@"
#"\272\307\4RZ\204\20\305\207\31\303\30"
#"\206\201\315f+\324A\344J\22\t\324"
#"\213\220g\367\360m\333\266\261s\347N"
#"\206\r\e\206\325j\365\271ma\312\357"
#"\331w!\304\225\341Y\361\26\37\37O"
#"\313\226-Y\260`\0016\233\315O\251\22B\b!\204(\\f\217\234\35;v"
#"\260n\335:&L\230\340\357$\25K\22\250\27!\363\244UJ\261u\353Vv"
#"\355\332\305\320\241C\275\216\\XX]"
#"\316\244\333\232\20\376\223\337(\316M\233"
#"6\245a\303\206\274\367\336{dggK~\25B\b!DP0\37\35\325u"
#"]\3127\227H\2\365\"f\236\264\253V\255\342\216;\356p.\203+3p\213"
#"\353gGDD\220\236\236.\231E\210\"R\220\274\334\252U+v\354\330!#"
#"\301\v!\204\20\"\250\204\205\205\221\221"
#"\221\21\264\263C]i\22\250\27!\363"
#"\304\\\271r%\355\333\267\247l\331\262n\353\257\324\200lfk^\267n\335X"
#"\277~\275\4\3B\370\201a\30\316\327"
#"\236\371{\352\324\251\314\2313\207\364\364"
#"\364\242N\226\20B\b!D\241\263\333"
#"\355\214\0325\212\245K\227\0022\326\323"
#"\245\220@\275\bi\232\306\352\325\253\261"
#"\331l\334v\333m\350\372\205\303\357Yp/\3549\316\1\216\35;F\\\\\234"
#"\324d\tQ\304\224R\316\374\356\255\e|\251R\245\30<x0s\346\314\341\344"
#"\311\223\376H\242\20B\b!D\2411"
#"\f\203\344\344\344B\235?\275\244\221@"
#"\275\b\230'\347\307\37\177\214\335n\347"
#"\337\377\376w\256\302zQLof\261X\256\330 uB\b\337\362\233c"
#"\24\240|\371\362$$$\360\366\333os\366\354\331\242J\232\20B\b!"
) 500
(
#"D\241\263Z\255\234>}\32\220V\364K%\201z\21\3204\215\245K\227b\265"
#"Z\351\336\275\273sY^\333_\t\22\244\v\341\177yU\304U\255Z\225\36="
#"z\360\306\eo\310H\360B\b!\204(\266\306\214\31\303\233o\276\351|/\255"
#"\352\27O\2\365\313\344\355\244\363\\\366"
#"\311'\237\20\22\22B\327\256]\213*"
#"Y\271\244\245\245\21\21\21\221\3476\371"
#"e \311`B\\\276\374*\313j\324"
#"\250\301\300\201\3y\371\345\227\311\314\314"
#",\242T\t!\204\20B\24LAb\202/\276\370\202N\235:\345\32,[\24"
#"\234\4\352\227\311s\0325\317V\353\317"
#">\373\214\324\324Tz\364\350\221k\273"
#"\242t\347\235w\362\326[oy]\347\231\26_i\223\f&D\321\210\213\213\243"
#"\177\377\376\314\2337\217S\247N\1RQ&\204\20B\210\300\3409c\225\257m"
#"\316\237?\237k[)\317\24\234\4\352\205\3005Xw\rf\327\254YCZZ"
#"\32}\372\364\361\272]Q\236\250\272\256"
#"\23\36\36\236k\271\353\234\355\256\2431"
#"\346\225\231$\203\tQ\370<\363\334UW]E\275z\365X\275z5 \25e"
#"B\b!\204\b,\276\2\3665k\326"
#"\320\271sg\267\336\2742\352\373\305\263"
#"\372;\1\301\3005\3105O\324\25+V\240\353:={\366t\333\326u\273\242"
#":Q\267m\333\206\325j\345\375\367\337"
#"\247T\251R\316\357\16\r\re\304\210"
#"\21\271\322\345\372\3363\210\227\347\334\205"
#"(\\f\236\362\226\327\0325j\304\376"
#"\375\3739r\344\bU\252T\221\274'\204\20B\b\277\3636(\266k\343\337\254"
#"Y\263\230:u*aaa~Le\361'\201z!\360<Q?\371\344\23\0"
#"\356\272\353\256\2\355s\245\325\250Q\203\210\210\b6m\332D\271r\345"
#"\310\312\312\"==\235\250\250(l6\e\3\a\16\4 &&&W@"
) 500
(
#"\356\371W\2v!\n\227\257\21\3415M\243B\205\n\f\0300\200\327_\177\235"
#"\201\3\a\22\27\27\347\\/yP\b!\204\20\376\220W\214`\263\331(S\246"
#"\f\351\351\351RV\271L\22\250\27\"\3030\330\270q#iii\364\356\335\333"
#"m\235?O\324\351\323\247\323\251S'"
#"\22\23\23\1\330\272u+\357\276\373.\317=\367\34g\316\234a\312\224)X,"
#"\26\356\272\353.BBB\250^\275\2723 \360l\3453I\246\23\242p\371\272"
#"F\304\304\304\360\360\303\0173c\306\f"
#"\372\364\351C\345\312\225\345\306'\204\20"
#"B\b\277\362U\16\231={6\365\352\325\343\346\233o.\332\4\5!\t\324/"
#"\223km\222\256\353,Y\262\204y\363"
#"\346y\335\306\327\373\242J\237\371\276E"
#"\213\26\334x\343\215\0DFF\362\302\v/\0\260d\311\22\216\35;\306\256]"
#"\273\320u\235\320\320P*U\252\304-\267\334R$i\25\242$\363U)f\352"
#"\337\277?3f\314\340\331g\237\225 ]\b!\204\20~\347k\254+\327u\236"
#"\333\212\202\223@\3752\271\236\224o\274"
#"\361\6\17<\360\200\327m\274\r\326V"
#"\24'\253g\246\361\366\235\346\262{\356"
#"\271\a\200\23'N\360\375\367\337c\265Z9w\356\34\223&M\302j\2652~"
#"\374xy\326D\210+\240 \217\226DGGs\303\r7\260y\363f\332\264i"
#"\343\217d\n!\204\20B\370\34_\a"
#"\300j\265\222\236\236\356\2657\256\4\353"
#"\27G\2\365\213\340\255\326\b\34\317b"
#",Z\264\210\306\215\e\23\37\37\357u\337+\331u<\277\223^\3234\354v{"
#"\201?/..\216.]\2728\3377j\324\b\200\347\236{\216\322\245K3x"
#"\360`J\225*\225\357\363\3522\b\235\20\5S\220\353Cdd$"
#"={\366d\301\202\5\224*U\212\6\r\32\310MO\b!\204\20E"
) 500
(
#"\316W\271\343\247\237~\342\353\257\277f"
#"\376\374\371\316e\336Z\333E\301\310\364"
#"l\27\301\327I\266j\325*\312\225+"
#"G\263f\315\362\235\332\354J\246\313\333"
#"\367\2359s\206\314\314L*U\252t"
#"\311\237_\255Z5\252U\253\306\304\211"
#"\23\271\373\356\273y\344\221GX\263f"
#"\r?\376\370\243\333\367\347\225.\311\230"
#"B\\\36\245\24\241\241\241$&&\262p\341Bg\345\233\267\374/S(\n!"
#"\204\20\342J\363,\343gff\222\236"
#"\236Nll\254\327\365\342\342H\240~"
#"\221<\v\300\251\251\251\34?~\234\272"
#"u\353\242\224\362k\255\221\267\357\333\260"
#"a\3\307\216\35\313s\4\372\2020\177"
#"\3275\327\\\303\274y\363\210\214\214\344"
#"\353\257\277f\321\242E\374\362\313/y\6\6yU$\b!\n\3065\177w\352"
#"\324\211\317>\373\314\255R\320\327\350\361"
#"B\b!\204\20\205\315\333\364\324e\312\224!99\331\347zqq$P/ "
#"\317\371\305\1\262\262\262X\270p!\267"
#"\336z+\365\353\327\317\365\214\251?\323"
#"i\262Z\255\350\272\216\256_\336?\265\347`\20\35:t\340\301\a\37$.."
#"\216\35;v0~\374x\262\262\262\n\24\260\v!.\216g/\235\333o\277\35"
#"]\327Y\271r% yK\b!\204\20E\313\265\27\261\246i\330l6\236z"
#"\352)^|\361E\237\r\b\22\260_\34\t\324\v\310\365d4\245\244\244p\354"
#"\3301\256\275\366Z\0\237\255[E\301[E\202\331U6+++\317}\n\372"
#"\331&\327\357\350\322\245\v={\366$"
#"11\221\351\323\2473f\314\30>\372"
#"\350#\316\236=\233k\177\311\234B\\"
#"\32o\275t\2325k\306\256]\273\260\331l\200\344/!\204\20B\24-\327\370"
#"\3100\f6o\336L\253V\255|\6\346\322\260pq"
#"$P/ \317\340\373\350\321\243,\\\270\220\251S\247:"
) 500
(
#"\227\371s\240\4\317\0\35\34\203\334\375"
#"\361\307\37\\w\335un\313\275\355s9\302\303\303\251Y\263&O>\371$\263"
#"f\315\242R\245JL\2300\201\315\233"
#"7s\340\300\1\31@B\210\313\340\255"
#"\242K)E\305\212\25\351\322\245\v\v\27.$;;[\362\227\20B\b!\212"
#"\214k#\241\3318\230\231\231)\217\342"
#"\25\"\t\324\v\310\263fh\356\334\271$$$\4DW\16o\1\270R\212\344"
#"\344df\314\230\301\344\311\223\275\316e"
#"XP\2762\231\267\317\3204\215V\255Z1w\356\\\16\348\300\247\237~\312"
#"\366\355\333\v\374]B\bw\336*\272"
#"\314<\336\254Y3\352\326\255\313\362\345"
#"\313}\366\234\21B\b!\204(L\336"
#"\272\266\277\363\316;\f\35:\324\353\266"
#"\336^\213\374I\240~\21\314\223\362\333"
#"o\277\245~\375\372\224-[\326\271\316"
#"\2375F\236\337m\246S\327u\242\243"
#"\243\275v\305\277\234\364z\326\240\371r"
#"\357\275\3672t\350Pv\355\332\305\370"
#"\361\343\311\314\314\274\344\357\24B\2703"
#"\363p\333\266m\371\366\333o1\f\303\317)\22B\b!DI\340-\216\2308"
#"q\"O>\371d\236\333J\v\373\305\221@\375\"h\232\306\201\3\a\330\262e"
#"\v={\366$**\312\337I\362\331"
#"\252\355\371\336s\273\313\251\321\272\230\f"
#"\27\26\26F\337\276}\31>|8\263f\315\342\334\271s\316gj}\221\3326"
#"!\nN)\305\344\311\223\231={\266\2632L\362\220\20B\b!\2564\327\362"
#"F\251R\245\334\306\250\22\227O\2\365"
#"\213\364\353\257\277R\245J\25\302\302\302"
#"\374\235\24\300w\253\266R\212\322\245K"
#";3\214g\267\367\242\252\321\3224\215"
#"\320\320Pj\326\254\311\203\17>\310\344\311\223y\347\235wHOO\317s\37"
#"3\235B\210\274i\232F\351\322\245\271"
#"\367\336{\2317o\36\247N\235\362\232"
) 500
(
#"\277ePG!\204\20B\24&\263\274\361\353\257\277R\253V-,\26\213\2243"
#"\n\221\4\352\5`\236p\353\326\255#--\215\336\275{\3739E\356\274\5\266"
#"\232\2461\177\376|F\214\30\341\363\31"
#"\366\242\26\32\32\312\214\0313h\330\260"
#"!o\275\365\226\317\355\274\215`/\204"
#"\310\3155\257T\254X\221z\365\352\261"
#"f\315\32\257\333\230$_\t!\204\20\2420\215\0313\206\t\23&\20\35\35-"
#"\345\214B$\201z\1\230\201\355\322\245"
#"K\351\331\263\247\277\223\223\213g`k"
#"\276\177\352\251\247HJJ\362:\210\\"
#"Qf\"\363\370\231\337\335\264iS\332"
#"\266m\313\323O?\315{\357\275\347\266"
#"\255\331\332/\265qB\344\3173\0377"
#"j\324\210\363\347\317s\344\310\221\\\333"
#"x\e\313B\b!\204\20\342r\305\304"
#"\304\220\232\232\352V\336\27\227O\2\365"
#"\2\260\331l,X\260\200Q\243F\371;)^\371\32(.66\326m\371\345"
#"\214\374^\30\\\3\360\370\370x\6\r\32\304UW]\305\342\305\213s\rP'"
#"\265qB\\\34\245\24\25*T`\300\200\1\274\377\376\373$''\347Z\357J"
#"\362\230\20B\b!.Wvv6\272\256\243i\232\363\177Q8$P/\200U"
#"\253VQ\276|y\0324h\340\357\244"
#"\24\210\257\201\343<[\266\375\321\252\356"
#"\372\267r\345\312\334|\363\315\224+W"
#"\216\345\313\227\363\323O?\25y\272\204"
#"\b\26f\276)U\252\24\17?\3740\377\371\317\177\274\256\27B\b!\204(\f"
#"J)f\317\236M\335\272u\271\345\226[\374\235\234\240#\201z>RSS\371"
#"\347\237\177\250S\247\216\333\362@\356\326"
#"a\26\310\317\2349\343\326:m\276\366"
#"W\201\335\263\265\334|\335\271sgJ\227.\315\272u\353X\277~\275\f"
#"z%\304%\360\314/\255Z\265b\333\266m>\267\221\374%\204\20B\210K"
) 500
(
#"\341\332\350\27\26\26\306\371\363\347\375\234"
#"\242\340$\201z>\346\315\233G\207\16"
#"\35\270\356\272\353\334\226\az\353\324\324"
#"\251S\231<yr\256\240\330\337\274M\355\246i\32\235:u\342\301\a\37$9"
#"9\231\207\37~\230?\377\3743 \322+Dq\341\231_:v\354\310G\37}"
#"\344s\e\311_B\b!\204\270\24f"
#"\31\342\340\301\203|\377\375\367\334\177\377"
#"\375~NQp\222@\335\205g\v\323SO=E\277~\375r\265\246\a\32o"
#"-c_|\361\5\355\332\265s\276/\16\205rM\323\270\373\356\273\319r$"
#"+V\254\340\320\241C^\267sk\25\4\f\24\216\377\f\307\2\5`8\2671"
#"\260\347,3W\273n'D\360QJQ\246L\31\332\267o\317\252U\2530\f"
#"CZ\320\205\20B\bQ\250N\2348"
#"\301\261c\307\250_\277\276\277\223\22\224"
#"$Pw\341\32\314\376\371\347\237\204\206"
#"\206R\261b\305\200\37\205\334s\264w"
#"\245\24\221\221\221\244\245\245\5t\272}"
#"\251U\253\26c\306\214\341\243\217>\342"
#"\367\337\177w.\367|\326\36@\303@G\201\6\32\200f\2404@\351(\345\b"
#"\320u,9+\r4\34/\225\371B\210 \244i\32\26\213\205\316\235;\263\177"
#"\377~~\371\345\227bQY'\204\20B\210\342#66\226\324\324T\177'#"
#"hI\240\236\3035\240\335\277\177?\253"
#"V\255b\344\310\221^\237\253\16\4\336"
#"\6\214s\355J\236\236\236\216\335n\317"
#"\263p\36(\277\305\227\244\244$V\255"
#"Z\305\256]\273\0\274w\343W\272\343"
#"\177\3p\204\354\0\30\232B\303\342lW\267+\e\30\236\307\302@\210`e^"
#"\273Z\265j\305\336\275{\311\312\312r"
#"\256\v\364\274/\204\20B\210\300f"
#"\30\6\313\227/g\340\300\201\30\206\224\251\257\4\t\324"
#"s\270\6\264\333\266m\243V\255ZDEE\345Z\347\217"
) 500
(
#"V\251\274\202r\223\353\373w\337}\227"
#"\233o\276\231Z\265j]\324g\370\203\257\200\301\\>t\350P6l\330\300/"
#"\277\374\342\\\347\326\303\3015^\a0tNo_\302\360\333;s[\347;\231"
#"\362\337#(\5\26\315\n\272\35\267\257"
#"Sr\372\213\340\246i\32\255Z\265b"
#"\343\306\215\316\233\250a\30\1\337KH"
#"\b!\204\20\201\3150\f\346\315\233\307"
#"\375\367\337\217\256K\231\372J\220\243\212"
#"{\260\370\333o\277q\362\344I\332\267"
#"o\357s\233\242\36\225\334\265P\235\235"
#"\235\315\351\323\2479y\362\244\3174\355"
#"\330\261\203\252U\253R\272ti\267\317"
#"\360\374\314@\340+`0\323\27\31\31"
#"\311\340\301\203Y\273v\255\3333\353\346"
#"z;\200f\3\245\320\24\30\177~\311"
#"\203c\247\21\333g\22/N\351\304\306\221\375Y\370\213yl,9q\275\216\222"
#"\a\324E\t\241i\32\223'O\346\225W^!++\313y3\r\224k\200\20"
#"B\b!\212\37\253\325JDD\204\277\223\21\324$P\347B\201\3250\f\216\36"
#"=J\\\\\\\256\23\317\327h\345E\235\306}\373\366\321\251S'n\273\3556"
#">\372\350#\276\372\352+\276\372\352+"
#"\326\257_\357\334.&&\206\220\220\20\267\375\3\271\365\314\333qtMoTT"
#"\24c\307\216e\371\362\345\34>|\330m.x\v\0V44\320\f~\336\270"
#"\236\354\362\303xd@\e\256o5\234"
#"\244\373\257\345\223\25\377s|\246f`\327\0ewn/DI\20\e\eK\317"
#"\236=\231>}\272\277\223\"\204\20B"
#"\210 \360\363\317?\23\37\37\357|\37"
#"\310\261Fqe\365w\2\2\201\353\374\342\357\275\367\36s\347\316-\360>EI"
#")E||<;v\354@)\305\203\17>\310\261c\307\234\353\276\374\362"
#"KBBB\370\362\313/)S\246\fG\216\34\341\311'\237\f\210\264\347"
) 500
(
#"\305L\217\347_\317\365III\314\2349\223\316\235;_\30]R\201\241\331Q"
#"\232\5]\245\362\307/G8\325\242'\25t\rE(u+W\"t\365>N"
#"\323\2322X\320\r\5\272\346lY\27"
#"\242\244\210\215\215\245R\245J\348p"
#"\300\355\261\30!\204\20B\210\213\241\224"
#"\342\316;\357\344\340\301\203\316e\201\24"
#"[\4\v\t\324\271pb\275\367\336{\f\e6\314\271\334[@\353\32\324\0275"
#"\317\301\324f\315\232\345\266~\341\302\205"
#"\234?\177\236\310\310u\274\366\245\0\0 \0IDATHt]'66\226"
#"\256]\273:\367\r\v\vc\371\362\345\1\227\221<{(\370\352\246\257i\32C"
#"\207\16e\376\374\371X\255V\307\264y"
#"Z\316\250\356\30\240BI\313\332\307\236"
#"%c\271cc)\224\6g\17\375\204\326x\2Y\30h\350\240k\216!\3375"
#"\e\n\253\f\374.J\4s\272\266j\325\252\261i\323&\t\324\205\20B\bq"
#"\3114M#66\226\263g\317\272=j+\nW\211\16\324]\3q\233\315\306"
#"\17?\374@\277~\375\362\f\306\3!"
#"\310\365\225\206A\203\6\261s\347N~\376\371gf\316\234IXX\30-[\266"
#"t\376\236\214\214\f\0326l\b\300\214\0313\350\330\261cQ&\273PDEE"
#"1h\320 \336|\363M\22\22\22\250"
#"r\365\325\27\202m-\223\320\250j\324"
#"\274\365v\246\334\323\20\245\331\370y\331"
#"\213,>\230M\356\326s+\232B\246h\23%\202y\315h\335\2725\v\27."
#"d\337\276}\324\255[\327\317\251\22B\b!Dq\224\235\235\235\3531[Q\370"
#"Jl\240\356\331Z\376\302\v/\220\230"
#"\230\30p\335\302/\206R\212\277\376\372"
#"\213\224\224\24\302\302\302PJ\321\254Y3\267\365\333\267o\a\300b\261"
#"\370+\231\227-&&\206\244\244$f\314\230A\257^\275\250zMU"
) 500
(
#"\224\246\203\n#\332\b#,\263<M\2337\302\206F\346\226\253){\366jJ"
#"c\a,\\\210\315m\240\351H\367wQR(\245\210\214\214\244|\371\362\34="
#"z\224Z\265ja\265\226\330[\200\20B\b!\362\341+.\272\347\236{x\372"
#"\351\247s\265\246\27\3478*\20\225\330"
#"(\305\365$:x\360 \345\313\227\247"
#"t\351\322\0017_\372\305\360\325\205\334"
#"\374-\232\246\21\22\22BHHH\261\233F\301\363\337C\3234\306\215\e\307G"
#"+\226\262g\337n\307\250\357z\30\215;\265&z\333\273|\233\241c\345/V"
#"\274\267\232\210\16\255\211P.\25\23\32"
#"8\352\250\212\3271\20\342r\230\327\203"
#"\204\204\4\226.]Z\354\256\1B\b"
#"!\204(\32\346\300\315\0273\235\253\4"
#"\351\205OJj\300\326\255[\251\\\271"
#"2\345\313\227\367wR.\232\267\0\326"
#"sy0\314\231\354\3531\204\241\367\217"
#"\340\277\237\177\311o\277\375\212Rv\312"
#"\335\330\223\356\35O2\252\345\255t\271\365\16\376{\315H\376sGEGpn"
#"\\\230\302N\2213\265\233\20%\204\3535 11\221\305\213\27\37315B\b"
#"!\204\bd\276\32\376\0\354v;v"
#"\273\335\353\366\242\360\224\370~\217\373\367"
#"\357\347\314\2313t\353\326\315\271\314\327"
#"\350\343\376\226\236\236N\213\26-\234i"
#"\373\360\303\17\271\352\252\253\334\236\2517"
#"\f\203\250\250\250\\\3\317\371\232\2-\220~_Ax\246922\212!\367\337"
#"\307\233\257\275N\257\336\tT\251r5C\246,\343\246\204\3378cDP\271~"
#"<WG\342\350\362\256+@\241i:(;\26,\362\214\272(\21<\363M\303"
#"\206\rY\264h\21}\373\366\305b\261"
#"\24\273\353\200\20B\b!\256\34\317"
#"8\310\365\365\302\205\v\271\366\332k\271\351\246\233\212e"
#",Q\234\224\370@\3350\fRSS\211\216\216v.\363"
) 500
(
#"\307<\351y13Axx8;v\354pf\236\36=z\360\367\337\177\243\224"
#"B\327u\f\303 33\223W^y\205\257\276\372\312\271\177\235:u\250Z\265"
#"\252\333g\31\206Ql\272\276\346Uq\242i\6\245\242\242\31;.\211Y/\317"
#"$\241Oo*U\212\243v\243\346\350"
#"\232\201\2\224\262\243i\26@\317\211\313"
#"\r\354\232\5K\361\356d D\276<+\352\\\363\320\370\361\343\231;w.\367"
#"\336{/\261\261\261>\367\25B\b!D\311\343Z\366v-\17\234:u\212\360"
#"\360p\"\"\"\334z\355J\231\241\360\225\330@])\205\335ng\337\276}4"
#"m\332\324\353\372@9\341\\+\16BBB\234i[\275zu\256m\313\225+"
#"\307\253\257\276\352\226\366\262e\313R\241"
#"B\5t]\247r\345\312\f\e6\254"
#"\330\4\351\340\275\353\315\205\337\247\203\2"
#"MS\f\35>\214\211\217=\311\v\263^@w4\241\243a\340\34D\3169\222"
#"\234\216\346\330\251\310\177\213\20E\311\263"
#"\202\313\365\272P\241B\5\352\325\253\307"
#"'\237|\302\200\1\3\274\356+\204\20"
#"B\210\222\313\265,\340\332p\370\367\337"
#"\177\ad\357\343`S\342\2u\327\232!]\327\371\342\213/x\345\225W\274n"
#"\23H<\v\333\236\317\240\3\2348q"
#"\202\272u\353\262l\3312\267}\367\357"
#"\337\317\352\325\253QJ\21\23\23St"
#"\211\276B\334\377m\f\347\350\355\226\20"
#"+\255\333\267a\335\372\257\271\365\346\16"
#"\0(\245\241i\216\370\334\256\331\260\30"
#"\26\3204tM\241\320\244\347\273\bzy]\313\0326l\310\352\325\2539t\350"
#"\20\325\252U+\302T\t!\204\20\242"
#"\2700\343\220\203\a\17\262c\307\16\306"
#"\216\35\vH\245\376\225V\342\2u\327\332\237\351\323\2473i\322\244\\]"
#"\253\275\267\334\372W\356.\337\271\323"
#"\225\235\235\355u\337:u\352\220\224\224"
) 500
(
#"tE\322\345of \16\20\26\22\312]w\335\305\333o\277\315\377\276\375\37-"
#"[\266t\373w\265`u\31>Q\227 ]\224xW]u\0256\233\215\23'"
#"NP\265jU\2575\347B\b!\204(\271\\\343\244\344\344d~\377\375w\32"
#"4h\340\357d\225\b\305\247\377s!\3224\215c\307\216\241\353:qqqy"
#"<\377\\\274\n\251\267\335v\e[\266l)\366#\274_\f\317\221(-\26\v"
#"\203\6\rb\365\352\325\2349sF\202"
#"\r!\362\221\230\230\310\a\37|\200\335"
#"n\367\332SG\b!\204\20%\223\347\24m\207\17\37&>>\336\317\251*9"
#"Jd\240\0160w\356\\\372\364\351\343"
#"uT\303\342\306s\20\207\342\374[.\205g0\256i\0327\335t\23\353\327\257"
#"\367:5]I9.B\24T\273v\355\330\274ys\211\273v\b!\204\20\302"
#"7\327\330\302f\263\361\320C\0171k"
#"\326,?\247\252\344(\21\201\272g\241"
#"s\353\326\255\324\257_\237\262e\313z"
#"\r\362\212\e_\205\353\342\370[.\205"
#"\267\337\371\257\177\375\213R\245J\261|"
#"\371r\237=%$\30\21\302\221\17\272"
#"u\353\346\234W\335\263\366\\\b!\204\20%\223kY@)\3456K\226\270\362"
#"JD\240nRJ\241\224\342\340\301\203"
#"T\250P!\327|\343\305\2319\212\275"
#"\371\272\244\3234\2156m\332\260m\333"
#"6\267\343\"]{\205pg\346\203\321\243G3o\336<\31\305U\b!\204\20"
#"\200\373\0\3266\233\215\320\320P?\247"
#"\250d)\21\201\272k\267\215\375\373\367"
#"s\344\310\21:t\350P\354[\322]\35<x\220\332\265k\227\350\2\266y!"
#"1\377FFF\322\277\177\177\26.\\\310\371\363\347K\354q\21\"?J)b"
#"cc9~\3748P\374\257\207B\b!\204\270<"
#"\256\217\326*\245\270\351\246\233\370\352\253\257\374\234\252"
) 500
(
#"\222\245D\4\352&\233\315\306\336\275{"
#"i\326\254Y\276];\213K\253\264\231"
#"\316{\356\271\207Y\263f\225\330.\253"
#"\206ax\235+\372\372\353\257G)\305"
#"\17?\374P\354\307\"\20\342J\3214"
#"\215\350\350h\252T\251\302o\277\375\346"
#"\357\344\b!\204\20\302\217<\37\203\223\n|\377(1\201\272R\3129o\372-"
#"\267\334\222\357s\230\305%\34053NLL\f)))n\313J\22]w?"
#"\225]\377\355:v\354\310/\277\374\302"
#"\271s\347\344\202#\204\17\261\261\261\324"
#"\251S\207M\2336\371;)B\b!\204\360#\327\307\340\314\262szzz\261"
#"\210\215\202I\211\t\3245M\343\371\347"
#"\237g\342\304\211\316\367\256\177}\355S"
#"\\x>\177]\322\271\376\333U\257^\235\23'Np\366\354Y?\246H\210\300"
#"f\216\350\32\26\26V\240k\211\\o\204\20B\210\340\345\32+\215\35;\226)"
#"S\246\20\23\23#\367\377\"T\"\2u\245\24\307\216\35C\3234*V\254\350"
#"\357\344\24\272\277\377\376\2332e\312\20"
#"\31\31\tH\1\332\223R\212'\236x\202\27_|\261XU\276\bQ\324:t"
#"\350\300\261c\307\370\345\227_\362\334\256"
#"$\217\205!\204\20B\224$J)\376"
#"\374\363O\342\342\342\320u]\356\377E"
#"\250D\4\352\340\2307\275_\277~A"
#"\31\304>\363\3143t\356\334\231\332\265"
#"k\3\305\253'@Q0\217G\353\326"
#"\255\331\266m\233\364>\20\302\205\353 "
#"\214J)\2324i\302\336\275{\311\316"
#"\316\366\271\217\\c\204\20B\210\222\301\274\347gdd\3709%%O\211\b\324"
#"\267m\333F\275z\365\210\215\215u+`\6K\260\26\25\25EVV\226\24\236"
#"\363\321\243G\17\336}\367]4M\223c%\4\356-\343f\276h\327\256"
#"\35[\267n%==\335\317\251\23B\b!\204?)\245\370\362\313/\271\346"
) 500
(
#"\232kh\322\244I\320\304N\305E\320"
#"\6\352\256\255D\373\367\357\247b\305\212"
#"DEE\271\255\v\246`\255\270\f~"
#"\347OV\253\225\273\357\276\233\17>\370"
#"\0\3030\374\235\34!\374\316s\26\0043p\217\212\212r\313#rm\21B\b"
#"!J\36M\323\330\263g\17e\312\224"
#"\241b\305\212\22o\24\261\240\r\324\315\2\350\236={8y\362$\267\336zk"
#"\201\6\220+\216t]'===({\v\24&]\327i\327\256\35)))"
#"|\377\375\367\376N\216\20~\3479G\252y\r\2318q\"\317=\367\234s\e"
#"\2711\v!\204\20%Sdd$\251\251\251\316G\344\202-\216\ndA\27\250"
#"{\26&\303\303\303\203\372\231\212\303\207"
#"\17s\356\3349\2325k\6\344.x\v\a\327\26\303\206\r\e\362\311'\237\220"
#"\231\231\351\347T\t\341_\2567[\317\327\251\251\251\316\327rc\26B\b!J"
#"\26\245\24\247N\235\342\327_\177\245]"
#"\273v\316G\344$\276(:A\27\250\273\26&\263\262\262X\267n\35w\335u"
#"\227\37Stem\337\276\235S\247N\321\266m[\300w\301\273\244s\355M\321"
#"\242E\v\2327o\316\374\371\363\375\234"
#"*!\2W\367\356\335\371\370\343\217\1"
#"\271\226\b!\204\20%\211YA\177\350\320!\266n\335\312\35w\334\341\\'e"
#"\202\242\23T\201\272\267\32\236\275{\367"
#"r\355\265\327\372!5\205\317\265U\330"
#"\24\26\26\206\305b\311\265\334\333\373\222"
#"\314s\244\367\356\335\273\363\307\37\177`\263\331\374\230*!\2W||<;v"
#"\354\360w2\204\20B\bQ\304\314`<\"\"\2]w\204\213\22W\24\275\240"
#"\n\324=\375\365\327_\324\254Y\323\353"
#"\272\342r\262\271\2463\277g\354\315\356(\3018X\336\345\3626\322\373"
#"c\217=\306\344\311\223\201\342s>\bQ\330\362:\367\313\225+Gr"
) 500
(
#"r\262\327JB!\204\20B\4'\363~\377\353\257\277R\277~}@\342\n\177"
#"\b\252@\335\363\271\211g\237}\226Q"
#"\243F\371\334\2668\360\34\225\331ST"
#"T\24\347\316\235s\333F\236\37q\347"
#"+\310\b\v\v\243F\215\32\374\372\353"
#"\257^\217\263\34CQ\22\370\272\26V\250P\201\272u\353\262z\365jyN]"
#"\b!\204(A\314\373\375\330\261c\231;w\256T\330\373IP\5\352p\341\304"
#"Z\273v-=z\364\360yB\25\247\23\315s\324e\363\357\371\363\347Y\262d"
#"\t\17?\3740\200\333 \17R\240\276"
#"\300\263'\202y\374\242\242\242h\336\274"
#"9k\327\256\315\265\255\347k!J\22"
#"\363\32\322\240A\3\262\263\2639|\370\260T\0\n!\204\20%\2149U\253k"
#"|!e\201\242\23\24\201\272\267g\263"
#"\277\377\376{\342\343\343\275\236P\305-"
#"\220\365\f4\315\277\351\351\351l\331\262"
#"\205v\355\332\345\332^2\221\203g\345"
#"\206\353\277\275R\212\254\254,\"\"\""
#"\334\266\21\242\244\362\274!W\256\\\231"
#"\363\347\317s\352\324)\347r!\204\20"
#"B\4\277\336\275{\263|\371r\300\275"
#"\374,e\201\242\23\24\201\272\347\t\223"
#"\222\222B\351\322\245\335\326{{\326\273"
#"\270\4f\276\6\211\3234\215\360\360p"
#"\257\373H&r\360\354a\340\331b\336\264iS\"\"\"\370\346\233o\274\366Z"
#"\20\242$0\317w\327\1c\314\274\22"
#"\27\27\307\371\363\347\261\333\355\271\266\27"
#"B\b!Dp\332\267o\37\265k\327\6$\256\360\227\240\b\324=}\372\351\247"
#"\324\255[\227\253\257\276\332\271\314<\301"
#"\314\26#\327e\201\3163\235f@Y\266lYgK\27\370~\26\273\244\313\253"
#"\207\201g\245\215\324\26\212\222\310\3335"
#"\306\324\267o_\326\254Y\343\234W\335\\/\327\31!\204"
#"\20\"xeff\222\225\225\345\357d\224hA\31\250\207"
) 500
(
#"\205\205\221\231\231\351u\235\331bT\334"
#"i\232\306c\217=\306\314\2313%\310,\0\317c\342\32ddeea\265Z"
#"\213:IB\24\vJ)\354v;\221\221\221n\313\344:#\204\20B\4\247\327"
#"_\177\235\376\375\373\23\23\23\343\357\244"
#"\224h\301\21\265r!\360\372\355\267\337"
#"8~\3748\35:t\360s\212\256\34\363\267.[\266\214n\335\272I\201\371\22"
#"\270\36\263\273\357\276\233\357\276\373\216\23"
#"'N\0\322#A\bW\232\246\361\310#\2170s\346L\267eB\b!\204\b"
#"N\237}\366\31\255Z\265\"<<\\\312\305~\24\24\201\272k\353\216\331M#"
#"::\332\317\251\272r\314\337\32\314\277"
#"\261(\305\306\306r\352\324),\26\v \335z\2050\231\371 ..\216\303\207"
#"\17\37395B\b!\204(l\336\312\274\341\341\341\234?\177\336\353H\357RF"
#".:A\21\250\273>g\34\21\21Azz\272\363}\260\222\256\247\205C)\205"
#"R\212\226-[\362\303\17?8\227\313"
#"\261\25\302\375q\232&M\232\260k\327"
#"\256\240\276\256\n!\204\20%\215g \276w\357^bbb\250^\275\272[9"
#"\300,3K\31\271\350\4E\240n\236"
#"\\\331\331\331\254_\277\236;\357\274\23\b\336`\313\314$)))\376NJ\261"
#"g\316=\337\265kW>\376\370c\tB\204\360`\346\211\256]\273\262x\361\342"
#"\240\275\256\n!\204\20%\225\353\275}"
#"\315\2325\224/_\236\206\r\e:\227\231\261\207\224\1\212VP\4\352f-\217"
#"\315fc\337\276}\324\257_\337\337I*4\276\346\200\37:t(s\346\314\361"
#"S\252\202\213yLK\225*%\201\272"
#"\20\36\314\233r\351\322\245i\323\246\r"
#"\237}\366\231\344\23!\204\20\"\210\270\336\327\243\243\243\335F{\227"
#"Vt\377\t\212@\335<\201\302\303\303\335\246_\v\6\276\246M:p"
) 500
(
#"\340\0\325\253W\367C\212\202\217Y\3213n\3348\236z\352)\177'G\210\200"
#"\24\22\22Bhh(g\316\234\221q\34\204\20B\210 b\306\27\31\31\31\234"
#"={\226\312\225+\273\255\223g\324\375"
#"#(\346\2442O\256\357\276\373\216V\255Z\37195W\216k\215VHH\b"
#"\331\331\331~NQ\361\347\332\225G\323"
#"4\322\322\322\374\235$!\2\222R\212"
#"k\256\271\206c\307\216q\372\364i\312"
#"\226-\353\357$\t!\204\20\242\20\355"
#"\331\263\207O?\375\224\257\277\376\332m"
#"\271\353x`\322\272^t\202\246E\35`\361\342\305\364\354\3313hkz\\3"
#"\206d\224\302\341z\f\243\243\243i\336"
#"\2749\e6l\360c\212\204\bL\232"
#"\246q\335u\327\221\222\222\302\301\203\a"
#"\375\235\34!\204\20B\0242\253\325Jhhh\256\345fl%\261G\321\n\212"
#"@\335<i\"\"\"0\f# O\242\313\251<0\3675\377\232\2771\20\177"
#"gq\26\32\32J\315\2325\331\265k"
#"\227\277\223\"D\300q\275\206y\273\211"
#"\v!\204\20\242\370q\275\277\e\206\341"
#"\234\256\330\225\304\34\376\21\24]\337\1"
#"N\236<I\371\362\345\235\357\3\251\305"
#"\331u\16\302\213M\223\353>\346\337\211\23'r\347\235w\22\37\37_\350i-"
#"\351222\234AH \235CB\370\203\347\365G)E\371\362\3459s\346\f"
#"\206a\240\353AQ\327+\204\20B\224H\236e\335\201\3\a\262c\307\16?\246"
#"H\270\n\232R\326\334\271s\351\337\277"
#"\277\263\340\30H\203\35y\6\332\227\262"
#"\257+\273\335\216\305b\271\244\240\337\333"
#"kq\341x\\u\325UX\255V\216\37?.A\272(\361\274\345\201>}\372"
#"\360\351\247\237r\376\374y?\244H\b!\204\20\205\305\363>\357\253E]"
#"\370G\320\4\352\221\221\221ddd8\337\ajk\350\305\6\310\276\266/"
) 500
(
#"\350\347\270n\347z<\2\361\330\4\202"
#"j\325\252\21\26\26\306\217?\376\350\357"
#"\244\b\21P<\a\263\224k\210\20B\b\21<\224R\244\244\244\370;\31\302E"
#"P\4\352\305i\200\3\327Q\23\v\272"
#"\275\353\266v\273\35\240\300]N\3\251"
#"gA \363\354\336\e\26\26\346\347\24"
#"\t\21X\314\274\21\250\225\240B\b!"
#"\204\270t}\372\364\341\303\17?\364w"
#"2\204\213\240\b\324W\254X\301u\327]G\215\0325\2\"h/H`|)"
#"\1\264R\212/\276\370\202\277\376\372\213"
#"\241C\207\26x\277\213\255\34(\251\314"
#"\343\223\225\225\205\325j\225\343%J<\317\307e\314A,322\b\17\17\367"
#"c\312\204\20B\bQX\224R\374\364\323O\324\254Y\323\337I\21.\212}\240"
#"n\266\360\270>\233n.\367\227\202\244"
#"\241\240\255R\336\6s\272\324A\234\314"
#"\3171\f\343\242\367-\t\314\343S\257^=\376\372\353/\267G)\204(\211<"
#"\347M5\257i\255Z\265b\353\326\255\376L\232\20B\b!\n\201R\212M\233"
#"6\321\266m[\231\325%\300\24\373@]\3234t]'+++\327r\177R"
#"J\221\221\221\301\370\361\343\275\256/h"
#"\372\274mw1\277\315\265\262`\334\270q\316J\ri-\366N)E\353\326\255"
#"\331\275{7\247O\237\366wr\204\b"
#"\b\236\263V\364\350\321\203\17>\370\300"
#"\317\251\22B\b!\304\345\3224\215\351"
#"\323\247\323\277\177\177\242\243\243\375\235\34"
#"\341\242\330\a\352\373\367\357\347\330\261c"
#"t\350\320\301\337I\311%$$\204\2325k2v\354\330K\376\f\317\200\332j"
#"\265\222\235\235]\340\375\315\2\366\320\241"
#"C\271\361\306\e\375^\201Q\324\24\6\30\n\347QTv\300\310yo\363\334\30"
#"r\216WHX(\26KH\316\212\234\355\325\205\377\355"
#"\30\27\336\347|\217r\335\326\\/D1\347\353q\242"
) 500
(
#"\250\250\250|\367\21B\b!D\340\213"
#"\211\211\341\334\271sr\377\0160\305>"
#"P\317\314\314$;;\333\255\320\30\b'\231\246iX,\26\206\17\37N\265j"
#"\325\2300a\202s\235\267\364\371\232:"
#"\315\265pl\30\6G\216\34\241F\215\32\5NGvv6\17<\360\0m\333"
#"\266\245w\357\336%n0(\r\35t\rM\345\304\315\232\5\303\0\rPX\35"
#"\201<91\267\6(\205\2469\216\277Rv\367`[\313\331Q3\320\321/\274"
#"\a\24\n\307n\272\363/%\343\20\213 W\320\307\211|]\267\204\20B\b\21"
#"x\314\373\366\351\323\247\t\t\t\241t"
#"\351\322r\377\0160\305>P\217\210\210 ===\327\324c\201\22\254\3$%"
#"%Q\266lY\36\177\374q\267\345f"
#"\320\354\272\314\363\265\253\23'N\360\312"
#"+\257\360\3143\317\270-\367\26\344\233"
#"\177\307\215\eG\203\6\r\270\367\336{"
#"\335\6\203\312K \34\273\302\223\23\210k8\2hEN\327\177\273#\346V."
#"\217\1(;\32\32(\35\335\0\345\f\266]\202o\345X\256)\3638\331P\216"
#"-@\313Y\246]\b\376\205(\356|"
#"\265\250\247\245\245\371\f\316\203\353\32\""
#"\204\20B\4\37\363\276\375\366\333oS"
#"\271re\332\266m\353\347\24\tO\305"
#"6PWJ\221\231\231\311\206\r\e\350"
#"\336\275\273\277\223\223\257G\36y\204k"
#"\256\271\206G\36y\304\255\340\353-h"
#"\366,\344\232\357###\371\375\367\337"
#"\351\321\243\a?\377\374\263s\275\267 "
#"_\3234\22\23\23i\335\2725\211\211"
#"\211\271Z\321\363*H\a\302\200|\205"
#"\305\216\356\350\321\16(\354\240\319="
#"\334-8\272\251\347T^\344,\263k\2404\203\364\314,\"\303\2558\273\260k"
#"\240\260\2414#\247u^\241a\1e\5\345\b\325Q"
#"f%\221\6\30h\310\240}\242x\363\34D\316\\\6p"
) 500
(
#"\307\35w\260v\355Z\267\345\2010\353\206\20B\b!\n.,,,(\312\374"
#"\301\250\330\6\352\232\246a\267\333\331\267"
#"o\37\365\352\325\363\272>\20\270\236\370"
#"#F\214\240v\355\332$%%\345j\371v\335>##\203\264\2644\322\322\322"
#"\330\266m\eM\2324\241Q\243F\348p\200\n\25*0j\324(\246N\235"
#"J\323\246Mi\324\250\21\215\0325\342"
#"\263\317>#--\215\214\214\f\262\262\262HLL\344\366\333o\247o\337\276@"
#"\356\340\333\363\275\267\277\201r\f/\207"
#"\5\3\315\310\371\3156\203\214\264l\262"
#"\262\34\255\340J\351\216\337\250\314\200\332"
#"pl\17<\2204\2127\336\\\210\263\v\273\262\223\235\241\260)G\227wMs"
#"\264\240\333\354644\224\221Ijz"
#"\6\351\351\251\30\232\346h\215/\276\331"
#"K\b\300\275\342\17\334\257\v\215\0325"
#"\342\333o\277u\333VZ\325\205\20B\210\342Cf\202\nl\305:\222\3204\215"
#"\220\220\20\237\353\3\241\240\350\31\20\17"
#"\e6\214j\325\2521e\312\24\267\365"
#"\0\333\267og\361\342\305\264j\325\212\326\255[\323\272uk^z\351%6o"
#"\336\314\226-[HHH ,,\214'\236x\202={\3660a\302\4v\356"
#"\334\311\226-[\370\374\363\317i\323\246"
#"\r\315\2325#..\216\370\370x\342"
#"\342\342\330\264i\223\363\177\327B\266k"
#"\300\3569\5\234\353\362`\240t\r["
#"\312OL\270\343z\232\266j\316\365M"
#"\357d\301\306\177\320r\272\250\243\3518"
#"Z\316ug\200]\241L\34\377\234<"
#"\216\263\353|\332\377\30\377\357\261l8"
#"\231\323z\216\301\361\255/3p\342W\30\311\a\231\332\361fZ\264jA\313&"
#"-\350\376\300\e\234\312D\372\276\213"
#"\240\340\331\275\335|\237\231\231IDDD\256m\314\367\301"
#"P\321'\204\20B\4+\245\24\273w\357f\345\312\225<"
) 500
(
#"\365\324S\376N\216\360\302\352\357\4\\"
#"\252\202\24\4\3\251\240\350\32\0'%"
#"%\361\364\323O\363\237\377\374\307\31\260"
#"\257Z\265\212\327^{\215\206\r\e\262"
#"s\347N\267}\315\337\32\36\36\316O?\375\344|?|\370p233\271\347"
#"\236{x\351\245\227\3204\215I\223&"
#"\321\254Y3N\236<\311\364\351\323\335>\347\313/\277$<<\3349\17\373c"
#"\217=\346\2266_i.\316\34\255\346"
#"\331l\2304\212\215u\237a\367\347=\371k\331\3\3346e6mV\374\207\272"
#"\245\34uU\329\317\261\e\3121\370"
#"\34\32\341\241!`v\235\217\274\211\227"
#"V\265\1\3351\374\234\206\316o[?\246^\227\356\274?\362_Lc\30\231?"
#"<\204\305\276\217\221\35\2723\355\243\266"
#"\274\330\267\16V,~\374\365B\\>\327\312<_\327]\317e\301p\355\20B"
#"\b!\202\231k\345\2739u\263\334\277"
#"\3K\261\b\324\275\2358f\340\232\236"
#"\236\356\247T]\34\317\337\360\370\343\217"
#"3{\366l\236~\372iZ\264h\301"
#"\362\345\313\371\364\323O\275\356\353\253\333"
#"\372\274y\363x\374\361\307\351\336\275;"
#"/\277\3742\263f\315\242E\213\26t"
#"\353\326\rM\323\0302d\210\333\347\314"
#"\2337\217\323\247O;3f\357\336\275"
#"\311\310\310pf\316\245K\227\22\32\32z%~\276\377h\300\371\355,XS\216"
#"\373Vw\5\f\252\364\32D\213\331o"
#"\362\343\351\363\324\213\216\275\260\35\6\277"
#"\177\363\21[v\234d\367??\262{\177*\223\226\374\302\324~uPi{\230"
#"3m=7N\30M\363\322\n\324Q~\3708\216\26}\343(;\3609\326\325"
#"n\217E\aC\277\232\366\365\e\362\361"
#"/\177\220M\335\342\221\301\204\310\207\267 \3350\fl6[\36{\t!\204"
#"\20\"\220EGGs\356\3349@*\331\3Q\261\210#<O\34\263\3008"
) 500
(
#"s\346L\222\222\222r-\277R\314A"
#"\311\234\335\241\321\235\3\2069^\233\e"
#"9\272Q\233\301\37\350.\351\262\1:"
#"\30:\243G\217\346\345\227_\346\255\267"
#"\336\342\265\327^+x:\\~\347\323O?\315W_}\305\370\361\343\351\336\275"
#"\273\363\231to\206\17\37\356\366\376\333"
#"o\277%55\25\245\24\272\256\323\245"
#"K\27\222\223\223\351\327\257\37\17=\364"
#"P\201\323\23\3104\5\244\36\347\367\32"
#"\25\251\30\226E\226\315\202F(e\317"
#"\37\344\320\241t\250\32\vJ\2414\35"
#"\205\342\314\301\225\334\367\320\347\364\233\375"
#":\25O\257\340\333Y\203y\266\3527\214oq\204\217\337\\I\354\230\ai\36"
#"\3\374\266\202\205U\273\2631.\212\210"
#"\333\357r\366r\327\217|\307\a\273w"
#"\323\250\307\365D\310\374l\"\210x^"
#"[+U\252D\303\206\r\371\374\363\317"
#"\351\334\271\263\237R%\204\377(\347t\2369O\21*\260k6t\254\36W\377"
#"\234G\2534\307@\244\272\243\373\326\205"
#"r\203s_r\372`\271\226!\204\20"
#"\342\312y\360\301\ay\347\235w\234\357"
#"\245U=\260\24\213g\324]G\23\206\v\255;\177\375\365\27W_}\265\333\362"
#"\302\377r\363\205\2213E\227c\324p"
#"\214\234)\273\224\343\231f\3078\337\366\234\321\301\0357d3HW\0*g?"
#"euN\373\265\371\177\233\330\267o\37"
#"\355\333\267g\366\354\331\371&%55"
#"\25\310=\267\372\332\265k\351\325\253\27"
#"k\327\256\345\360\341\303\336\177\206\227g"
#"H[\266l\311\255\267\336J\307\216\35"
#"\271\345\226[X\265j\25\23'N\344\233o\276)\340\301\t|J\3R\262\261"
#"\36\373\230\anoC\213&\315h\332\344\337,\332{\200,K\270\243\340\244+"
#"4p\24\236\262l\\\333&\201'\37\350A\223\e\352\361"
#"P\327:lx\371u\316\330\312S&6\202p\35\320\f\216"
) 500
(
#"n\373\231\272\255\257%\302\345At\225"
#"\266\217\311C\357\343\310\r\217\361\300\355"
#"\327\3103\352\"\350\270^GBCC\211\216\216\346\324\251S>\267\21\"\2309"
#"\356\305\346\30'\216\373\215\305\265\322\336"
#"9\363\207\243\"XS8\246\0\325l\27\246\371t~\30X\24\330q<\262%"
#"A\272\20\242(\354\337\277\237\332\265k"
#";\337K\220\36X\2\276E\335\333\364@\3408\221,\26\vv\273\35\213%\367"
#"s\300\205V#\224\23p+t4\315|eq\4\344\232K\v\273\241\241\353\26"
#"\02464\254\27\366Q\240i\240\264\234"
#"\326\367\234\277\353\277^\317\3747\26\360"
#"\356\222\305\0L\235:\225i\323\2461q\342D\257\277c\335\272ut\352\324)"
#"\327\357z\350\241\207\250]\2736\275z"
#"\365\242k\327\256\\{\355\265\349r"
#"$\367\317\360\30\265\331\333\243\4\26\213"
#"\205}\373\366\321\271s\347+R\243\346\217Z:\3\3=&\4U6\201\5\237"
#"\314\342\346h\38\301\2646#\2111R\331\267~\25k\177<\213\335\236I\315"
#"\233\373q\265\275\"\327\\U\217H q\324\343$4\250K\351\312\25\370\373l"
#"+\254zN\20\242ll\374:\214;GV\307,\244\251\277\277a\312\220\201|"
#"\\e Kg\16\240l\221\376J!\212\206g\376\365v\375\225\233\274()\224"
#"R\240)\264\234\300\332\21\240;\332?"
#"\224\346>\222\262\246i9A\271\1\312\232S.0r\366Q\200\0054\3\213R"
#"\240Y\260\203\214p\"\204\270\342RR"
#"R\374\235\4\221\207\200oQ\317k\24\362\274\n\204\205:j\271\322sn\2448"
#"\202t\34]\3244l\216Zt\0]\3C\241\231-\350\350hv\\\272\277;"
#"\376:\332\325u\36\34\363\b\323\246Ms~\305\244I\223\210\212\212"
#"b\322\244I\271z\17\0<\372\350\243<\376\370\343n\1\367\350\321\243"
) 500
(
#"i\324\250\21\243F\215rv_\37:t(o\275\365\226\367\237\341\243\322\303|"
#"\177\366\354Y\26.\\\310\310\221#\v"
#"}\324\367\377\373\277\377\343\374\371\363E"
#"\336\332f1t\2642\265\270\341\370\37"
#"\354\333\237\2\350|\363\365\327,\336g"
#"\343\272\332\321\330\322RIN>A\332"
#"\271T\322\262\354X-g9\227\366\217\363_,\235*DV\212\347\232\230Ll"
#"\206B\263h\220\266\235\217C\353\320\340"
#"\252h\307F\347\2663\356\356Q\374\320"
#"\364)\326\315\237B\235\234\211\b<\vjB\4\v3\37\333l6iA\27%"
#"\226\363~\214\312\3511\ah`hv4t\264\354\375\314x8\201\336\t\377\346"
#"\337}\372\362\314;\333\1\35\24d\375"
#"\263\223W\306$\322\257o_z\367\351GB\257\336\364\352;\214E[\217\1\216"
#"\326u!\204\270\222\236{\3569\267X"
#"\304$\367\365\300\21\360\201:\344\36D"
#"\315s\271\257\23\252\260Zv\f-'"
#"\300\305@);\340\270\211\252\303\37\321"
#"\275\351\215\f\177z#veC\351\216np{\226<\316\215MF\262\345lV"
#"N \357hY\267elc\356}3I\234\275\204A\367$P\261J%\267\357"
#"\0317n\34\261\261\261<\361\304\23\271"
#"~c\331\262e9w\356\234\363\375\210\21#h\331\262%\3\a\16t\376\326\360"
#"\360p\332\266m\313\307\37\177\354\366\271"
#"\276\246bs=Nf\240\37\35\35\355\334\2470[\306\272v\355JBBB\256"
#"4]q:`\255\317\220\1\231,ze\t+\266\177\317\360n\367\21\336\272\r"
#"\327\225\217%\276\353H\246L\231\302\304"
#")\223\351\327\362\32\254\321\360\3357\213"
#"x\177\343\237<;\373%\214*\245h"
#"\335\241\0221QY\244\333\f\254\221\212\263[V\23R)\224\ne#@"
#"\235\343\203)\377\307\336\370\307\230\377T?bm\6v\233\r\2732\320\212"
) 500
(
#"G\366\22\342\242\231\327\2066m\332p"
#"\366\354Y\366\355\333\a\310\315]\224<"
#"Z\316\0304\312\345Y'\35\v\251\277"
#"\257\244_\333{\371\275F/\206\17\37"
#"\305\250~\267\261\363\345.t\235\266\226"
#"t\35R\376\376\226\225_\376\217\372w"
#"\214`\350\360!\f\0371\214\21\377*"
#"\303\334\201I|\360\307y\351\372.\204"
#"\270\342\26,X\300=\367\334\343|\357+\336\22\376S,\"\t_'Lvv"
#"\266\317\365\205Y`\324\35\17\236\203RhX\0\3\245\201=#\205=?~\307"
#"\377vn\347O\363)\2\343\34\207~"
#"\336\300\367\273\17\221\234aw\266\252\246"
#"\36;\310\274\373\273\363\334\377~\340\360"
#"\341?\250]\263\32\21\341\21\271\276k"
#"\334\270q\224*U\312Y\303\3459u\202a\30\214\0313\206\eo\274\321-s"
#"\231,\26\v\261\261\261\234={\326y\34\\?\303s\4y\327m\\\227\27v"
#"&m\334\2701o\276\371&w\334q\a\307\216\35+\262\213\200\2\224f\241\311"
#"ckh\363\313#<1`0F\223\276\314\230\225D\245\234\226o#\247[\204"
#"\246\331\311H\257\310]\215[\260n\326"
#"`\376\367\345\327\350\326l\302\303R\301^\212j5k\20\e\2528u\"\226\e"
#"k\325&:\4\214\363'\330\177\3420\177~\255\375\213\312\0\0 \0IDA"
#"T\373\"\2677lB\243&Mi\334\2701\211s7\223.\17\251\213 \27\23"
#"\23\203\335n\367:~\206\20%\201\262\e\27\236G7O\377\314\277yv\344H"
#"\262\372\275\306\254\221\275\350\320\341fn"
#"\3516\230\367\26\277@\330\336u\354<"
#"\225\205\305\b%\352\232\32\264\272\255="
#"\35o\351\314\255\267\336\312-\3\2470"
#"\254\346\17\254]\365\207\214q\"\204\270\342BCC\235#\276\203\367\30A"
#"\370W\261\b\324=)\245\330\273w/\365\352\325\363\31\244\27Zk:\n"
) 500
(
#"\363\6lh9\17\241)\307s\346Y\366LjV,G\255k\313\361\363\367)"
#"h\30\330\217\37 \345\\\26e\332\335"
#"\210%\333\206\6h\251{\2310\364~\226\34\254\306\251_>\243Z\312\1\356L"
#"\350\355\230\263\333\213\t\23&\0\216\356"
#"\342\340\3108\351\351\351\204\207\207\363\330"
#"c\217Q\247N\35\6\17\36\354\366{"
#"M\355\333\267\247r\345\312\316\356\357\276"
#"\36\35\360v|\312\226-Krr\362\345\34.\257\314\357\255R\245\n/\276\370"
#"\"\211\211\211\34=z\264\320\277\307\e"
#"\307\340=\260\372\323\377\362O\375>\354"
#"\331\3753\2737\274N\207\352!\216G"
#"\0270\234\2173(\f\214\314\263\234\255"
#"\320\226\25K\277$\256|,\345\312W"
#"\240z\265\312`\271\201W\326\275F\373"
#"P\235\32\375\36\"\261\367-\204\1z\251Z<\376\3666v\377\274\203m;\177"
#"\340\247\237v\362\323\256\37x}\344Mn\3\315\t\21\254\224R^\307\t\21\""
#"\330)lh\272\216\302\216\216y\2175"
#"H\373\347\277\374\274\347z\206\16\276\1"
#"]sT\2\243\31\350\365\6\260b\361tn,\27\202\241e\243\205Z)\35\255"
#"\2414GIC\263\37b\373\276\263\304T*\2253 \255\20B\\\31\2337o"
#"\246y\363\346DD8\32\r\363\213\21"
#"\204\177\24\273@\335\f\302\337\177\377}"
#"\356\270\343\16t=\367O(\314\23LG9\a\207\261\230\207+'X\267\30\32"
#"Yq\225\250\252J\223q\344g@g\377\336\37\371=\271\1\361U3\311\312V"
#"9#\274\207p\363\304\327X\267\370Q*\352a\330\364\234\32+\335w:'N"
#"\234HDD\4\317=\367\34\337~\373"
#"-\335\272u\343\377\376\357\377\210\217\217"
#"g\364\350\321yf(\3030\b\v\vs[\226W\345\205\271|\342\304\211"
#"<\367\334sn\373\24\6\327\357\255W\257\36\217>\372(#F\214 -"
) 500
(
#"-\255P>?\357/\207\17?\\\312\322eKX4\377u\320\300\2129\250O"
#"\316\b\374\330\34\317\244+\vFf:g\317&sJ\203\276\t}\251[\347Z"
#"\332\264l\205\302\352,\204i9\0255"
#"\346\310\276\272\2628F\372\327\35\217G"
#"hv+\32\32\366\342\227\275\204\270h"
#"\272\256K\355\273(\241\254\216\362\200f"
#"\311\251\300\327P\350\330\216\245\220\32\327"
#"\212\32\245ts\20\e\f\345\30\r^"
#")\307\364l\226\360Rd\377\262\225\244"
#"\204\336\364\351\325\207\336\t\tt\277\251"
#"\27\373\333\214\347\201\256U\235S\277\n"
#"!\304\225\360\354\263\3172x\360`\242"
#"\242\242\0\t\316\3U\300\217\372\356\311"
#"<\221\242\242\242\212$\320\2730\317\251"
#"\r\224\25\263\27<\232\243\226\303\226Q"
#"\232F\361\6G\323\216r2Sq\376\314Q\":\334N\265\315\e\261\243\0347"
#"\333\310\32\334\335B\207\33779\236e"
#"7[\3455\307\364m\276<\364\320C"
#"\274\373\356\273t\357\336\235\330\330X^"
#"x\341\5\272u\353\6\270?o\256\224\302f\263]Hs\316{\363\321\200|\177"
#"c\316\347\274\363\316;<\365\324Sdee]\221\fk~O\353\326\255\231<"
#"y2w\335u\27\237}\366\31\340\250"
#"\\0\351\272\216\305b\301f\263\261m"
#"\3336\206\16\35\352u|\202\230\230\30"
#"\276\376\372k,\26\v\206a\344\n\26\254V+_|\361\5\37|\260\214\327_"
#"\177\35\273\335\236k\252?4\e\312\36"
#"\216\262\32\3506;\365\372Ob\321\35"
#"\221D\331\322\271\251u\e\276\331\362?"
#"l\331\331h\232\206a\309\351\260\347"
#"\354l\307;\273s\374@\363WY\255\326+zL=\377\nQT<\37\235\221"
#"\363O\224\24Z\316\24\254f\245\2552\353\362\255\32*#\231Ts\212V\245"
#"\34\243\274c\240i:\30`\317\266\241"
#"\227\257J\267{\206\321,N\307\300\216\305"
) 500
(
#"R\206\3706M\211\v\311\371@\17\222\277\204(Y<\363\374\305^\3\362\272?"
#"\227.]\232\363\347\317\347\373\235\302\277"
#"\212]\240\356\17\206fGWV\224\346"
#"\30\267\335b\266\302Z\f\262\263\263\271"
#"\266\301\265\274\361\356ZZ\337t\224\237"
#"\276\372\232\206\303\273\262\365\277\23314"
#"\0\3351Q\233f\220m\327\321\224\25"
#"\213\241c\327\214\v-\364^\230\31\245"
#"\177\377\376l\331\262\205W_}\225)"
#"S\246\320\275{\367\\\1i\325\252U"
#"\251Z\265\2523P\373\343\217?\260\333"
#"\355\274\376\372\353@\356\251\331<\231\373"
#"\235<y\222\206\r\e:\2675[\312"
#"\314\365\256\313\314\327f\360\352\331\265>"
#"\257\213\213R\212\320\320P\316\2349C"
#"\265j\325\310\316\316\346\352\253\257&;"
#";\e\253\325\312\251S\2478|\370\260"
#"\363\321\206\264\2644\227 \371B\232SRRh\322\244\t\177\376\371'qqq"
#"DEE\241\224\3020\fJ\225*\305\367\337\177O\255Z\265\3204\215[n\271"
#"\305\231n\367g\366-(\225\2159\315"
#"\232E\263\242[C\310\262\245\23b\t"
#"\247Z\265kh\326\254\31\206a\270\375"
#"^_\\\217\225\353v\257\274\362\n\355"
#"\332\265\273\244\v\240\267}\\\247\331\223"
#" ]\370\323\360\341\303\2316m\0325"
#"k\326\244T\251R\316\345r>\212\240\247t\3074\255\n\320\rP\32\32\32\21"
#"5jP%}>;~\327h\\\203\vc\333p\206\27o\31\4\223\337\340\276"
#"2YXb+\320\342\226\16\334\\\301\0M\273\20\360\233\237M\356BvQ\346"
#"+\251\204\23\"0\370\232Z\271 \373"
#"x\333\367\2157\336\240J\225*t\356\334\331\353\0\323\5\371\\Q4$P\317"
#"\207\246\310\351\326\34681-9\1\35\312\nv\35\354v\222k\327g@\251"
#"\317\370s\367\22\376{d\30o78\317L\233BW\216no\272\246\1\32\232"
) 500
(
#"\346\b\16\355\232\356X\347\345<\367\314"
#"P3f\314`\363\346\3154n\334\230"
#"\341\303\207\363\323O?q\372\364i\347\366G\217\36%==\235!C\206`\30"
#"\6\26\213\205\367\337\177\237\244\244$:"
#"w\356\354\366\231\371\251Q\243\6?\375"
#"\364S\256\264xK\237\257\327\27\233\201"
#"w\357\336\315\363\317?\317\2349s\210"
#"\212\212\3020\f\36y\344\21\216\36="
#"\312;\357\274\343\363\331W\327\357y\377"
#"\375\367\371\341\207\37x\366\331g\235\313"
#"6n\334\310\342\305\213y\355\265\327|"
#"\356\347.\247\345\203\234V\222\234\2\330"
#"s\317>\313\212\25+\362\331\327\367\347"
#"\27d0\277\374x;\336\236\225\26r"
#"\341\24\376\342\253\353\273\234\217\242DP"
#"vG\31\1\335\321j\256\24\226\230\333\30\230\364\36cFO\343\346\217&Q3"
#"\3241\v\310\317\363G0\353\257\322\274"
#"\31_\32\313_\32\30Y\330\26344"
#"\315\202\241@\323\fg\340o\327\300\202"
#"\367\353|Q]\357}\25\362\205\20E\303[~/h\376\367,/\272\356g\263"
#"\331\3204\315\255A\316\333\347_n\213"
#"\276\270|\22\250\347G\313\t\334t\35;\344\f;\346\250\351F\327\320T6Y"
#"i\26nk\222\314\255\223\26`y\340"
#";B\322\16\222\245\331\234\35\327\24\240"
#"\251\234n\327\330\35\3177k\206K\267z\227\257s\311\0IIIDGGs"
#"\347\235w2z\364h>\370\340\3\352\327\257\317\310\221#\235\333\330l6^~"
#"\371e\376\370\343\17\307w)EHH\bO=\365\24\363\347\317G)EDD"
#"\4\321\321\321\314\236=\333g\340;{\366lF\217\36\3555-y\5\210\236\257"
#"\363+Dx\256\273\376\372\353\0316l"
#"\30\375\373\367g\366\354\331\214\0313\206"
#"\221#G\322\261cG\237\373z\6\277}\372\364\1\240{"
#"\367\356t\352\324\211\272u\353\262x\361b\26-Z\224\353"
) 500
(
#"3r\377&\227\177\a\347\223\b\216\236"
#"\16o\277\263\220_\177\375\225\355\333\267"
#"\323\264i\323<+%|]\314\274\35"
#"\267K\275\320\345\327\222\357J.\246\242"
#"\250\230\217\205\bQ\342h\216\326r\245"
#"\354\216V\363\234\e\211\246[i\177\377"
#"S\214\3337\222\1\267\337A\325rQ"
#"\30\31'\331\177D\343\321\305\213\350X"
#".\234\323\a\322I9\227N\272r\334\203.\364\257\263\201f\315i$\360~\377"
#"-\314`=\277\317\221B\272\20\376u"
#"\261-\336\5\371\234\320\320P\257\263\265"
#"x\346\361\302\372nq\351\212m\240^t\203\27\345Do\n,\32\240\354(\315"
#"\222s\2434\320\321\260g\30\204\265o"
#"M\370\221/\350\335\272*d\357\3179\2315\363?\320,(\3151\330\214\256\f"
#"\347'\373\32+911\221N\235:Q\266lY\336x\343\r*T\250\300\350"
#"\321\243y\351\245\227\2300a\2\317<"
#"\363\f\340x\366\371\341\207\37v\313\\"
#"\317<\363\fG\217\36\245{\367\356h"
#"\232\306\342\305\213y\365\325W\331\260a"
#"\3\241\241\241\350\272Nvv6\21\21"
#"\21l\332\264\t\200\267\337~\233\17?"
#"\374\320\371\375\371\265\246{\223_\315\273"
#"\257\375[\267n\315\324\251S\318p 3f\314\340\206\en\360\272\177^\27"
#"\214>}\372P\275zu6m\332\344\374\275\5J\243\322Q\232\312\2510Qh"
#"\316W\212\215\e6q\364\350Q\366\354"
#"\331C\323\246M\335\276w\330\260a\214\37?\236Z\265j9\227\345\27\300_j"
#"!'\277\317\2306m\32\315\2325\343\366\333owK\243\24\252DQ\221\363L"
#"\224d\216 \335@)\227\307\221\302\253"
#"2x\366;4\333\362\3\307\322\r\224\26B\345:7\22\177M(\6\212\330\370"
#">,x\367v\312Vr\251\260W:\32:\275z\367"
#"\340\203\367W\270u}\317\365\235\205\224\347\362\273\247\217\30"
) 500
(
#"1\202\207\36z\210:u\352H>\27\242\210\335s\317=\314\2325\213r\345\312"
#"\25\332g\356\337\277\237\317?\377\234\227"
#"_~9\317\356\361\236\36~\370a\22"
#"\22\22h\336\274\271\\\v\212P\261\35"
#"\226\272\350N\222\v\207H)G\233\272"
#"\246\f\354\30\204\327\37\316\372_\267rwe\35\25y\ak\17\375\217\373j\3"
#"17\363\361\342\27\351^+\22\205\3159&Lh\315\201\354M\377\235\330\2308"
#"\26,|\313k\220n\267\333\31=z4-[\266\244g\317\236\244\247\247\347j"
#"e\217\211\211q\316\263n2\267Y\273v-?\377\3743\263f\315\242C\207\16"
#"t\350\320\201\371\363\347\223\236\236\316\267"
#"\337~\313\372\365\353Y\267n\35\315\233"
#"7\347\370\361\3434i\322\204\246M\233"
#"r\356\3349v\357\336\315\366\355\333\371"
#"\376\373\357\331\261c\a;v\354p\373l\317Z7W\236\301\2447\276\376\315N"
#"\236<\311\324\251S\2318q\"S\246L\341\330\261c\271>\333\365o^\3518"
#"t\350\20-[\266d\321\242Edee\345\332.W\0324s( \35t\367"
#"`\330\365\177\317\357z\351\245\227\30="
#"z4\277\375\366\233\333g{\353\352\236"
#"\327\372\202\310\253vs\306\214\31dd"
#"d\320\251\323\377\263w\337\341QTm"
#"\37\200\177\263\233d7\275\20\2\204\0\tEz\t\202\22\4D\20\351E@x"
#"\5,`\350!J\v\1$\241\4iR\336\217\320\273\" E_5\b\242\322"
#"\261\0*U\221*\204\320\23RH\337\235\363\375\261\231qvv6\0056[\222"
#"\347\276.H2\365l2s\316<sZ\247B\367#\244\264\310\357OB\312\17"
#"\276\340\271\0\0T0\264}WI\372\233\373\242q\353\16\350\324\261\3:ux"
#"\31\215\202\\`(q8\250]\375Q\243V-"
#"x9\e\6\231C\301\273}\306\1K\26/C\217"
) 500
(
#"\36]L\2461\265\364=V\330\361\364z=\"##\361\342\213/\"$$\204"
#"\356oBl`\365\352\325\0302d\210\330j\26x\366| ;;\e)))"
#"\b\f\fTl\36\257t\2169s\346\240r\345\312\b\r\r-\3613,y6"
#"\16[\243n]<\300\251\fM\334\nj\330\325\f\0\3\234\265\206p\233\3\17"
#"'\27g0\0zpP;i\n\nj!\320\327\1*'\270j\235\360\302\v"
#"-p\372\367\337\220\3618\5\236\276~"
#"\0\376\r\16'N\234\210z\365\352\341\335w\3375Z.\375~\352\324\251\2305"
#"k\26\346\316\235\213\351\323\247\e\245\324"
#"\315\315\r\351\351\351\2064I\366\323j"
#"\265\320h4\342\262\365\353\327\233\0347"
#"<<\334\350\301@\255V\243C\207\16\342\0j...\30;v\254\342o\350"
#"i\373\262%&&\"66\26\23&L@XX\30\374\374\3740z\364h\254"
#"X\261\2\201\201\201F\237Chb+\235\222O8\357\336\275{\261}\373vl"
#"\335\272\25\34\307\241a\303\206\350\335\273"
#"\267\3211\212\333$_\370\372\342\213/"
#"\342\330\261c\250U\253\226\311\276\356\356"
#"\356\370\352\253\257\320\257_?L\2336\r\255Z\2652Ika\277\eK\4\321"
#"K\226,AJJ\n\346\316\235k\366\263\20R\332,yM\23\342X\f\375\322"
#"%\375\246\0\306\0\216+\30\357\244\240\353\eT\5M\331U\5\233\352\3008'"
#"\261U\35\307T\0\307\27\4\371@\265j5\260d\311\377\211eaPPP\251"
#"\344\353\205u\347\232<y2\352\326\255"
#"\213w\337}\227\272V\21b#\236\236\236\370\364\323O1t\350P|\364\321G"
#"h\334\270q\211\357=\371\375\352\345\345"
#"%\306\t\322\365\346\272\271\306\305"
#"\305\2011\206I\223&\211\313\350\376\267\36\273\257Q"
#"Wzk\303\30\203^\257\207^onz,K'"
) 500
(
#"\3020\310\30\23\346\320.(\201y\225^x\t^\300\320\244]-\314\227Z0"
#"0\2148g7c\0T\350\327\357u|\373m\2\356>\374wP8\216\3430"
#"n\3348\204\206\206\32\5\303\36\36\36"
#"\310\310\3100\251\211\215\215\215\205V\253ELL\214!\211\214!33S\34H"
#"NLz1\372SK\203\367\275{\367\212\377\276\376\372k<~\374\30iii"
#"HMM\305\275{\3670`\300\0\f\0300\0\3\a\16\304\eo\274\201\2313"
#"g\232\34\247$N\237>\215\364\364t\204\205\205\1\0\2324i\202\311\223'c"
#"\314\2301\212\323\357)\r\\\265g\317"
#"\36\354\332\265\v\237}\366\231\370Y\347"
#"\315\233\207\305\213\27\em\247\224>\303"
#"\270\1\0\307\tC\355\2\302\337\361\235"
#"w\336\301s\317=\207\260\2600\305}\235\235\235\261~\375z\314\237?_l}"
#"`\216\322\203\316\263\210\213\213Cff&\342\342\342\24\317Eo;\2115ee"
#"e\211s\261\22R~\360\20\346I\a\370\202\361l\n\36t\301\203q\2748w"
#":8\36\f\274!\26gN\340\300\e^\370\e66\34C\f\372y\324\253\373"
#"\34>\374\360C\214\35;\26\351\351\351\245\372`,\1778\0377n\34\2326m"
#"\212\210\210\b\305\26e\364\220N\210\365"
#"\370\373\373c\331\262e\230>}:\256"
#"_\277^\354\375\314\265$\375\357\177\377"
#"k\24;\230\253\310b\214!&&\6"
#"\256\256\256\342\366\322\343\22+a\16\202"
#"\347y\361\373\37~\370\201}\361\305\27,''\307\206)z6W\256\\a="
#"z\364`:\235\2161\306\330\310\221#"
#"\331\326\255[\215\266y\374\3701\353\325"
#"\253\27\273~\375\272\331\343,Y\262\204"
#"EGG3\236\347\331\335\273wY\303\206\rK5\335?\374\360\203\321"
#"\277\215\e7\262\320\320P\243\177\v\27.dyyy\342?%<\317"
) 500
(
#"\263\207\17\37\262\336\275{\263\2337o"
#"\32-g\214\261\v\27.\260\256]\2732\275^o\262\237\324w\337}\307\6\r"
#"\32\304222L\326\a\5\5\31\375,\337\2670<\317\263\324\324T6c\306"
#"\214\"\367\277}\3736\353\336\275;\273"
#"z\365\252\331c)\355\237\230\230\310\332"
#"\266m[\350>J\313g\317\236\315\342"
#"\342\342\212\374\f\204X\313\235;w\330"
#"\262e\313\304\237Kr\257\21B\314\373\363\317?Y\227.]\304g\5\245{K"
#"i\331\371\363\347\331\352\325\253\315\2567"
#"G\351Y\204\20b9\215\0325z\252\375\256]\273\306\272t\351\302\36=z\364"
#"L\347\17\16\0166\273N\232WDGG\263%K\226\230,'\326\3450M\337"
#"\245ozRRR\340\351\351\t\215Fc\303\24=\233\332\265kc\315\2325\30"
#"9r$j\326\254\211\266m\333b\360"
#"\340\301F\333\344\347\347\343\326\255[\b"
#"\t\t1{\234\361\343\307c\325\252U"
#"X\276|9~\373\3557\374\376\373\357"
#"\305j\226V\234m\224\366\351\330\261\243"
#"I\355|\337\276}\305m8\216\303\316\235;\321\274ysq\233N\235:\341\315"
#"7\3374:V\263f\315\340\352\352\212"
#"\373\367\357\243z\365\352&ij\330\260!V\254X\201\236={b\343\306\215\b"
#"\b\b0iV\177\344\310\21l\330\260\1[\267n\205\263\263\263x~\3418\r"
#"\e6\304\355\333\267\21\24\24T\354&\371L\362\006299\31\25+V,\362"
#"\367U\265jU\354\331\263\a}\372\364A||<j\326\254i\266I\241^\257"
#"\307\37\177\374\1\0\270s\347\016222p\352\324)\250T*\250\325jq "
#"=s\347Z\272t)rrr\24k\322\t\261\225*U\252\340\366\355\333\342\317"
#"T\343F\210e\324\253W\17\353\327\257G\257^"
#"\275\260v\355ZT\255Z\325\354\0Piii\270"
) 500
(
#"z\365*x\236\307\345\313\227q\375\372"
#"u\261|\361\360\360@\335\272u\315\316"
#"P\242\327\3531~\374x\274\360\302\v&\317\"\204\20\333\v\t\t\301\236={"
#"\320\267o_\254Z\265J\34;B\251"
#"\274\315\315\315\305\371\363\347\1\30\217\273"
#"\344\352\352j\266u-\360o\331=g\316\34xyya\374\370\361\2123.Q"
#"\31o=\16\21\250\313/\n\241\217\262"
#"\243\\,\346\322\31\30\30\210\220\220\20"
#"\\\271r\5\357\275\367\236\311z\225J\5''\343?\221\374F\21\6L;w"
#"\356\34Z\266l\t\27\27\27\305s\n"
#"}\273\345\5{I\230\353\177\355\345\345"
#"et\343\207\207\207#<<\\\334\346\273\357\276Cll\254\270^\245R\241Y"
#"\263f\360\364\364\304\235;w\260t\351"
#"R\0000j\262\17\0\301\301\301\2307o\36F\216\34\211U\253V\241J\225*"
#"b -\364I\377\374\363\317M\232\341\bi\331\271s'Z\267n\215\v\27."
#"\224\3703\2\206)\353\204\264\25\325}"
#"@\243\321\340\353\257\277F\337\276}1"
#"}\372t\274\370\342\213\342\357\2311\206"
#"\3\a\16\340\257\277\376\302\243G\217p"
#"\346\314\31\360<\217\354\354l\334\272u\v3g\316\4c\f...h\337\276"
#"\275\370;\364\364\3644J\333\342\305\213"
#"\221\222\222\202\270\2708\312,\211]a"
#"\214\211S?\322uI\210\345p\34\207"
#"\252U\253b\361\342\305\0303f\f\342\343\343Q\255Z5q\35\0l\331\262\5"
#"\311\311\311HLL\304\345\313\227\1\0"
#"\351\351\351x\374\3701.^\274\b\306"
#"\30\274\274\274\360\302\v/\0\370\267\254"
#"\225\336\253\23'ND\335\272u1l\3300\223u\204\20\333\3438\16nnn"
#"\330\272u\253Q\237u\251\335\273w#11\21\367\357\337\27\3u\251\3"
#"\a\16\240\177\377\376\342\210\357c\307\216"
#"\25\343\6\2010\356\321\324\251S\305\363"
) 500
(
#"\n_)_\260>\207\b\324\315\365-v\224\213E\332gX\232\346q\343\306\241"
#"m\333\266\350\323\247\17\"##\1\0\237\177\376\271\270^>7\261\3643s\34"
#"\207Q\243F!33\0235k\326\304\242E\213\260m\3336\314\2301\3s\346"
#"\3141\371\335\b/7,}\243)\5\257\362e\235;wF\347\316\235\215\366\371"
#"\342\213/p\376\374y\244\244\244 55\25\0000h\320 \344\347\347\213/\24"
#"v\356\334\211&M\232`\341\302\205\370"
#"\360\303\17\21\37\37\17WWW\354\336"
#"\275\e\337|\363\r>\373\3543\223\317"
#"$\375\372\344\311\23\243`\267\260\317\255"
#"\264\316\303\303Cqp\rso\25\205>\353\243F\215\302\207\37~(N\351\266"
#"k\327.|\377\375\367\b\f\fD\343\306\215\305\277Off&z\365\352\205\275"
#"{\367\212\307\20^h\214\e7\16\214"
#"1q.\370\271s\347\202\347y\243\201"
#"\343\34\345\372'e\237\322\230\27\204\20"
#"\313\251W\257\36>\374\360CDDD"
#"`\313\226-\360\361\361\301\321\243G\21"
#"\37\37\217\332\265k\303\331\331\31}\373"
#"\366E\2336m\300q\34\22\23\23q\364\350Q\f\0324\b\34\307!++\v"
#"\v\26,\0\0\364\357\337\37\r\e6\304\254Y\263\0\0\21\21\21x\341\205\27"
#"\360\366\333o\233\237!\205\20buJ"
#"\317\246B\237\365\361\343\307c\331\262e"
#"\250Y\263&.]\272\204\230\230\30\4"
#"\a\a\303\325\325\25\255Z\265\302\274y"
#"\363L\236[\333\264i\203\225+Wb"
#"\331\262e\0\200a\303\206a\353\326\255"
#"\342\261ccc\341\351\351i2\355\263\240\260\332xR:\34\"P\278r\263"
#"\vyS\263\321\243G\243]\273v\0300`\0\0\303\340`\227.]Bhh"
#"(T*\25\346\317\237\217\227^z\t\371\371\371b"
#"\255\271\20\300n\337\276\35\313\226-\303\224)S\360\334"
) 500
(
#"s\317!44T|3\266t\351RDGGc\376\374\371F\347Sj&g"
#"\311\317\245\24\320\312\277\227.\353\327\257"
#"\37\22\22\22p\366\354Y\324\254Y\23\0\360\323O?!''G\34e\276}"
#"\373\366HOO\207\273\273;N\236<"
#"\211\353\327\257c\306\214\31\330\263g\17"
#"V\256\\)\276\310\220~&\2454\310\323'\247\264\356\323O?\305\331\263g1"
#"|\370p\254[\267N\3613)\35/ \0\313\227/Gdd$bbb"
#"0|\370p\204\205\205a\361\342\305\360"
#"\362\362\22\317\a\0\17\37>4\232B"
#"\16\200\370\340t\376\374y\234?\177\36"
#"\223'OF\355\332\265\301q\34f\314\230\241\230~BlM\336\252\205\20by"
#"-[\266\304\274y\363\360\336{\357!"
#"22\22[\266l\301\310\221#\215\272\244\t\367brr2\322\322\322\304r\312"
#"\315\315M,_~\372\351'\234<y\22K\226,Ajj*Z\267n\215A"
#"\203\6\1\240\0\235\20{b\356Y\266V\255ZX\266l\31&L\230\200\350\350"
#"h,[\266\314$/\220\357\3\30\246f\343y\36\263f\315\2c\fg\317\236"
#"E\223&M0x\360`\270\270\270\300\327\327\27\37|\360\201xns\317\316\224"
#"OX\217C\5\352\302E\2434\362\267\243\340y\36\223'OF\253V\255\304~"
#"\333\2141\324\251S\au\352\324A\273"
#"v\355\0\0\323\247OG\377\376\375Q"
#"\245J\25\264h\321\302\350\30\3\a\16"
#"\304\301\203\a\341\343\343#.\23~7"
#"\343\307\217\307\274y\3630g\316\0341"
#"\260\223\a\226\362)\316\236\206\374\346-"
#"\351[6\306\30~\370\341\al\332\264I\\\326\272uk\243\375_x\341\0051"
#"\30\367\366\366\306\301\203\a1d\310\20dgg\343\265\327^Cnn"
#".\236{\3569L\235:U\274\36|||P\253V-\261I\276\264"
) 500
(
#"%\201<\355\205\275\270HJJ\202\263"
#"\2633n\335\272\205\355\333\267\213\0171"
#"\346>\277\364\367\20\24\24\204\5\v\26`\324\250QX\273v-BCC\213\334"
#"O\276\256q\343\306h\334\2701n\335"
#"\272\205s\347\316\31\275x!\304\336\320[vB\254\243A\203\6\2304i\22b"
#"bb\260n\335:\4\a\a\3(Y\363\324\326\255[\243U\253V\0307n\34"
#"\252W\257\2167\336x\3\0\335\277\204\330;\351\375]\263fM,\\\270P\354"
#"\36Z\257^\275B\203\364{\367\356\241"
#"b\305\212b75\216\343\320\264iS"
#"\374\374\363\317X\260`\1\222\223\223\215"
#"fr\22\266\221\37\213\362\t\353r\250@]\2708\344M\302\35\201\220\366)S"
#"\246\240Z\265jx\347\235w\24kf"
#"\205\376\336\361\361\3618v\354\30\316\236"
#"=k\366X\362\237\205eS\247N\305"
#"\354\331\263\21\27\27\207\351\323\247\233<"
#"D?M\220^\234\340\326\\\272\344M"
#"\351\204\345}\372\364\301\201\3\a\320\251"
#"S'\305&\363B\263u\306\30\22\22\22\260{\367n\34<x\20\363\347\317\307"
#"\312\225+\341\346\346\206\2337ob\324"
#"\250QP\253\325`\214\301\333\333\e-[\266\4`\30X\347\366\355\3338}\372"
#"4Z\264ha\222vs\231\31c\f\271\271\271\320\351t\b\n\n\22k\374\315"
#"}N%}\373\366\305g\237}\206\230\230\30L\2312E\234~\2568A\272\360"
#"\375\342\305\213\241R\251\300q\34\366\355"
#"\333'\266\276\240\314\222\330#\272.\t"
#"\261\216\327_\177\35\207\16\35\302\373\357"
#"\277o\324g] -w\245\244\367\350\304\211\23\321\272uk\254]\273\26\3\6"
#"\f@pp0\275p#\304\1H\357\315N\235:\341\307\37\177\304\370\361\343\305"
#">\353\362\26\256B^0v\354XDEE\231T"
#"\362-Y\262\4\376\376\3768y\362$~\372\351'\274"
) 500
(
#"\372\352\253\205\236\227\362\6\353\262\373y"
#"\324\245\34\371\"\3418\16\357\277\377>"
#"\352\326\255\213\367\337\177\337\354g\220."
#"7\367B\302\\\237\21\340\337&\250\302"
#"\334\207\261\261\261\26\351s&}\0/\354\1@)]\362\300^\370~\321\242E"
#"F\363\264\232{H\20\346I\337\270q"
#"#\352\325\253\207\341\303\207c\320\240A"
#"\310\312\312B\365\352\325\261o\337>|"
#"\363\3157\330\273w/\326\254Y\203\324\324T<~\374\30\31\31\31pww\307"
#"\377\376\367?q\356w\341\353\325\253W\25\323*|\337\253W/xzz\342\271"
#"\347\236\303\213/\276X\350\347\224\333\265"
#"k\27\272w\357\216:u\352`\355\332\265X\270pa\211\346Y\3478\16s\347"
#"\316EVV\26\242\242\242\320\277\177\177"
#"|\371\345\227\320\351t&\277WB\354"
#"\205R\353\25B\310\263\223\226\271\377\367"
#"\177\377\207\250\250(\324\257__\354\263"
#"\236\236\236^\254\343\b\345wdd$"
#"\2325k\206\301\203\ac\342\304\211&\343\332\320=L\210}Qz\356\336\260a"
#"\3\206\f\31\202\332\265k\213\363\254_"
#"\273vM\361Y\234\343\f#\276\347\344"
#"\344\30\255\213\211\211\201\233\233\e\"#"
#"#\361\366\333oc\343\306\215\305>?"
#"\261\16\207\251Q\227\3278:\332E\23"
#"\21\21\201\26-Z\340\335w\337-\325"
#"\363Ho\320\211\23'b\351\322\245\2306m\32\346\315\233g\261c\ee\2\f"
#"\0\307\203\343T\20\376\"\34\0\6\36\34\0000\225a\1x\260\202\367B\0343"
#"l\224\226\234\202\n\25*\2\340%\2073\324 \263\202\355\16|\177\0_~\371"
#"%\326\256]+\6\2/\275\364\22|||\320\277\177\177$$$\30\275\b\360"
#"\364\364\24\373\341eee\341\217?"
#"\376\300\244I\223\360\333o\277\375{\16\306\20\e\e\213\277"
#"\376\372K\374Y\245R!!!\1\376\376\376\0\200\320\320"
) 500
(
#"Pxxx\210\375\345\345\277\203\302|"
#"\377\375\367h\337\276=\\]]\341\352"
#"\352\212\370\370x\214\0325\n+V\2540\232\212\316\2349s\346@\245R\211]"
#"\27^~\371eT\250P\1\257\277\376:\276\371\346\233\"\317O\210-8Z\236"
#"L\210\275Sj\301\266}\373vq U\241\317\372\300\201\3\221\220\220 \266,"
#"\23\366Q*\257F\217\36m4\35l\257^\275\340\346\346\206!C\206\30\r*"
#"E\b\261\274\247-'\345\367\362\256]"
#"\273p\362\344I\254X\261\2\0\304>"
#"\353c\307\216\305\326\255[Q\241B\5\243s*\345\5S\247NE@@\2008"
#"\v\304k\257\275\206\200\200\0\364\351\323"
#"\a\377\373\337\377\n=?\261\36\207\250Q\227^dyyy\340y\36\36\36\36"
#"6N\225y\322\e\221\347yL\2348\21\215\e76\n\322\205m\3447\255\360"
#"s\367\356\335\261y\363\346gN\313\370"
#"\361\343\341\345\345\2059s\346\230M\343"
#"\263`\34\17@\0050C<\3161\30\276g*0\306\201q\5\347b*\303z"
#"\303j\360\f\310\1\220\223\223\5\6\303"
#"\230\3\f\252\202\340\36\0c8|\354"
#"Gl\330\260\1\2337o\206\273\273\273"
#"\321y\e6l\210\370\370x\364\354\331"
#"\23\367\357\337W\374=\266i\323\6\373"
#"\366\355\203\217\217\17:v\354\210\216\35"
#";\242C\207\16x\365\325W\261~\375z\34:t\b\207\16\35\302\221#G\360"
#"\343\217?b\310\220!x\376\371\347\361"
#"\374\363\317\243I\223&HIIA\207\16\35p\372\364i\234>}\32g\316\234"
#"1\333\232@\370\272\177\377~ddd"
#"\210\315\324\1\303<\353;w\356\304\310"
#"\221#q\355\3325\0\3463\275%K\226 ''\a\323\246M\23\227q\34\207"
#"\306\215\ec\336\274yh\333\266\255\3219\t!\204"
#"\224\35\322\212\by91c\306\f\f\0300\0!!"
) 500
(
#"!\342\262\372\365\353c\375\372\365\350\331"
#"\263'\222\222\222\214Z\275\311\237E\"##\321\252U+\2231WZ\264h\201"
#"S\247N\225\326G\"\244\\\223\336\217\322\n\307\2479\6`\30lx\335\272u"
#"X\265j\225\321\24\3165k\326\304\236={0x\360`\374\363\317?F\347\\"
#"\263f\r\202\202\202\304\31\230\244\363\244"
#"K5k\326\f\177\374\361G\211?#)=\16Q\243.-\254.]\272\204;"
#"w\356\30\5B\366FHonn.>\374\360C\4\5\5a\344\310\221\0L"
#"\337\220\233k.\256\323\351L\346P\177"
#"Z\321\321\321\210\213\213\303\254Y\263\304"
#"\351\277,\365v\214+x\327\303\n\16\307q<\200,\234;\364\3.\336\253\202"
#"\256\377y\21>\340\0\306\300p\17Gv\374\4M\313\366hU\273\2\274\334\\"
#"\321\342\305v\370\372\263\355\310IO\305"
#"\335\334\\T\255\327\37\375;W\305\267"
#"{\277\301g\333vb\307\216\35f\373"
#"\275\326\254YSq\236u\341\367\373\340"
#"\301\3h4\32\343\364\26\34C\250\355"
#"\0260\306\360\343\217?\32m\273a\303\6\243\27\34NNNh\337\276\2758N"
#"\2\307q\b\t\tA\357\336\275\305\363\236<y\22\35:t0\371\333i\265Z"
#"|\361\305\27\0300`\0bbb\304\1\2\245\237I\230']:\5\233T\245"
#"J\225P\247N\35\234:uJ\354\207O\b!\244l(\254kURR\22\322"
#"\322\322\320\256];\223nb\201\201\201"
#"X\272t\251\321<\353\362\256s\23'N\304s\317=gRa\300q\34\324j"
#"5^z\351%\374\364\323O&\203\272\22B\236\215\274\277\370\323\334_J]\\"
#"\205\201\265\245\371\201\271y\326y\236\a"
#"\317\363P\253\325\210\213\213\3c"
#"\f\321\321\321\212\347\352\322\245\v\16\35:\204W^"
#"y\245\304\237\225X\236C\324\250K999\211#\26"
) 500
(
#":\202\372\365\353\213o\254\314\275MS"
#"\372\336\22#\263\v8\3160\265W\225*U,r<c<\0\36\34x@x"
#"k\210;\330<i\20\206\f\32\203c\316!\251.\0\0 \0IDAT\271"
#"\314\260\\\305Awg/\372\17\352\217E\373o\202\343\1___\314\210\350\200"
#"\327\337\32\214\343\307\217#-=\31\e"
#"\346\274\213\221#\27\343\340\267\337\340\263"
#"m[\315\16\374&h\322\244\t&O\236\214\321\243G#;;[\334n\376\374"
#"\371\2308q\242\342>J\2242\315\367\336{\17{\367\356\25\377}\365\325Wb"
#"\377\367\364\364t\244\246\246\342\304\211\23"
#"\370\317\177\376\203\201\3\a\242[\267n"
#"\330\273w/\206\17\37\256x|\255V\213\325\253W#..\16\177\376\371'\\"
#"]]\241\327\353\1\30\346I\317\316\3166\e\244\3@\305\212\25\321\253W/,"
#"[\266\214j\324\t!\244\2141W\333"
#"\306\30\303\311\223'\361\350\321#t\352"
#"\324\311d{\216\343P\267n]\261\317zff&\234\234\234\304\362%\"\"\2"
#"\315\2325CDD\204\321\261\205\300\301"
#"\303\303\3C\207\16\25\273\310Q\220N"
#"H\351\20\6t.\3563\234\322v\346"
#"\272c\n\367\2630\317\372\364\351\323q"
#"\375\372u\0\206\330\311\307\307\a\213\26"
#"-\202\253\253+bbb\314\3467\323"
#"\247O\307\344\311\223K\374\331H\351\260"
#"\373\32u\245\221\304\315\255\2635yz"
#"4\32\r\206\16\35*\376,\255\31.\354F\23Xjt{\341\234#F\214("
#"\205\337\231\n\0\17\306\253\300q\200\16"
#"\200\32.p\363\364G\353vUq\370"
#"\207\207\350\321#\0\34\3\356\37>\212"
#"\220vo\302]\245/h\3\237\207\177"
#"\276\331\210&\3\26\342\252G\"\226O\237\202o\\\373\342\315\355'q\355"
#"\304\226B?\213\224\320g\275o\337\276\330\273w/\226,Y\202\254\254,D"
) 500
(
#"GG\233\374\276\213\363\371\225F`\27\bsO\n\313\364z=\16\37>\f\216"
#"\343\220\221\221\201!C\206\240y\363\346"
#"F\333\274\363\316;\0303f\f\0 00\20\313\226-\303\a\37|\200i\323"
#"\246\301\317\317\17+W\256\4c\f\37"
#"~\370\241\3429\245\203\370eee\301\323\323\323\256\256{B\b!OGi\266"
#"\4\245\374\337\305\305\305\244\245\226\274\254"
#"h\331\262%\26-Z\204\267\336z\v111\250X\261\"\242\242\242\320\266m"
#"[\261\25\242R+>\306\030233\215F\203\266\267\347+B\34\231\364>\227"
#"\217}T\30\245gQ\275^\257\330\342V\272M\255Z\265\260|\371rDFF"
#"b\332\264i8}\3724*T\250\200\300\300@\361\205\235RkU\306\30\322\322"
#"\322\340\353\353\373\254\37\231X\210\335\a"
#"\352\362\213T\332\377\312\236\v\21\245\200"
#"\2748\333\3\300\343\307\217\341\341\341a"
#"\322l\373i\231{A`\31\206A\342"
#"\270\202\312\177'\306\201!\37y\371\371"
#"\250\334\343U\270~s\24\331=\372\303\r\17\361}B\6B[TFZ^\36"
#"\30\appB\330\a\333\361\263\263\e"
#"\306\f\37\212\335\337|\217\250EG\321\265\367j8i]\305A\347\344\237EJ"
#"\370\\\r\0324\300\346\315\2331z\364hT\250P\1aaa\205\216D_\230"
#"\302\6\217\223\37S\255V\243c\307\216"
#"`\214!55\25u\353\326\305\376\375"
#"\373\215\232\307o\333\266\r\315\2337\27\367qqqAdd$\336|\363M\244"
#"\246\246\242s\347\316\230>}\272\331s"
#"J\37\336\244oc\355\371\372'\204\20R\270\234\234\34$''C\257\327C\245"
#"R\231}\200\177\374\3701>\376\370c"
#"\254[\267\16\211\211\211\342r\371\363"
#"\20\317\363\360\361\361\301\344\311\223\361\326[oA\253"
#"\325b\360\340\301h\323\246\rn\337\276]h\377\330\373"
) 500
(
#"\367\357\343\311\223'F\307'\204<\e"
#"\341\276\224\326\242\273\272\272>\323}\26"
#"\31\31i\222\27\b\244\317\206\32\215\6"
#"\363\346\315C\327\256]q\357\336=\304\307\307#<<\334\354KAyz\211}"
#"\260\373@]\36`\226\344M\224\265)5A)N\240(\337n\366\354\331\350\326"
#"\255\e\352\325\253g\321\264\25VS\374"
#"\364T\342\310\357\206Q\335\318N\r\25\307\301IU\27u=\217\341b^\177"
#"4\3178\216\203>]\320-\360\17\354"
#"\324\273\210\203\312\251]]\341\314\200\360"
#"q\23\360\177#^D\333\372\276\b\35;\4\258\336pX\24\36\224J3\233"
#"\375\373\367\243z\365\352\270v\355\32Z"
#"\267nmv\237\247\371\354\346j\346\245"
#"\313\263\263\263\341\344\344$\216\34/\210"
#"\214\214Ddd\244\321\262\305\213\27\343"
#"\306\215\eh\330\260!\272u\353f\222"
#"\36s\31%\317\363\324\354\235\20B\312"
#"\200\275{\367\342\304\211\23\250\\\271\262"
#"\230\267+\225M\271\271\271pvv\306"
#"\367\337\177\217\324\324\324\"\237#\274\274"
#"\274\340\356\356\16\255V\213\273w\357b"
#"\373\366\355\320\353\365f\237\237T*\25"
#"\376\374\363O\334\274y\23\273w\357F"
#"nn\256\345?,!\345\220\374\236\3468\16U\252T\21gn(\214\264O\273"
#"\264\202\206\3438\349r\4)))F/\353\244\373\b\374\374\374\20\26\26\206"
#"\n\25*\340\316\235;\370\345\227_\220"
#"\236\236\216\352\325\253\243~\375\372f[pZ\252E/yvv\37\250\313/ "
#"i\360b\257\265\212%\255\275\226o\247"
#"\321h\3049\263-\235&\3519-\363\373\343a\250NW\31\372\251s\5M\341"
#"\31\203\207gE\4\370\335\307\347\247\201"
#"\246\331\337\300\367\245\21\b\270\177\6:"
#"\303\270\357\340\240\2\307\200\257\16\37\305Ws\336\204\257\253"
#"\26\373\2' m\325{\350\35\35\203\220\340Z\0Wt"
) 500
(
#"Z\17\36<\210\215\e7\302\337\337\37"
#"\255[\267F\327\256]\21\36\36\216\35;v(\266J(\252\226\\Ia\265\334"
#"\205mg\216\267\2677&L\230\200}\373\366\341\343\217?FDD\4\0324h"
#" \2567\3676\323\334y\t!\2048\26\225J\5___DEE\25\271\355"
#"\264i\323P\255Z5\214\36=\272\310"
#"m\347\316\235\213\366\355\333#++\v"
#"\271\271\271\2304iR\221\345\334\221#"
#"G\260e\313\26\223Q\240\t!\226U"
#"\277~}|\375\365\327\305\332V\351\276"
#"\325\353\365\360\364\364\304\210\21#\212\334"
#"\177\371\362\345\370\365\327_\361\363\317?\243M\2336pwwG`` \36<"
#"x\200}\373\366A\243\321\300\307\307\a"
#"\203\6\r\22\343\226\322i}K\236\226"
#"\335\a\352RJo\216\354\221%\322e\351ZS\2454Y\266F\275\340{\0<"
#"\324P\363\200^\243A\245\332mQ\351"
#"\317\3\330\365\223+\302F\5@\377\210"
#"A\245\a\300T`\320\343\370\251\213\330"
#"\20\321\17Z\275\32\236\223\277\302\241\327"
#"_\302\345_\367a\372\364\31\270r\345"
#"\nBCC\261v\355Z\305\264\246\247"
#"\247\243c\307\216h\327\256\35\6\r\32"
#"\204\256]\273\212\327HLL\f\372\365"
#"\353\207\204\204\204\"?\201\245\256#\241"
#"\357\221\271u\302y\346\317\237\217\334\334"
#"\\L\2336\r\27/^\304\264i\3230r\344H\254_\277\336h\300?\245\26"
#"\20\362{\200\20B\210\3752\327\27\24\0<<<\360\335w\337a\344\310\221\b"
#"\b\bP\334O\320\251S',]\272\24=z\364(\364|\21\21\21\b\v\v"
#"C\2336mp\342\304\t4m\332\24=z\364(\262,\314\316\316FNNN"
#"\t?\35!\244\244J2\243\223R+\330\201\3\ab\360\340\301x\363\315"
#"7M\266\227n7c\306\fx{{\303\325\325\25\225+W\306\301\203\a1"
) 500
(
#"i\322$l\337\276\35<\317\343\354\331\263prrBvv6\246L\231\2\255"
#"V\v\306\30\372\366\355+\16D\251t\\b]\16\21\250K\v:\300~\3\364"
#"\247%\275\1\262\263\263\241\327\353\341\345"
#"\345e\343T\25\27\17\216S\201\201/\230\3]\5\216\323\3j\36<\334Q/"
#"\370E\234\337\336\17S\324\21\370\265v"
#"\25\\\370I\a\36\34\30\227\217S\247\316!~bO\324\251\334\6^\223\227 "
#"\246K\b8\360\b\351\332\35\355\332\266"
#"GVN6\316\236=\213\306\215\e\e\365\371\6\f\2773OOO\354\333\267\17"
#"\236\236\236b\315\271\360\273\f\r\r\25"
#"\37j6o\336l\324\34\27542\34"
#"\306\30\234\235\235\341\353\353\213G\217\36"
#"\2314\177\27\316\267|\371r<~\374"
#"\30\363\347\317\307\355\333\267\221\221\221\201"
#"\240\240 \354\330\261\3o\274\361\6\326"
#"\255[\207j\325\252\31\355#\244W\247\323!==\35\25+V\244L\223\20B"
#"\34\200\271 \375\372\365\353X\275z5"
#"\2\2\2\340\346\346\6\300\270lR\312\337}}}\221\221\221\1OOO\223u"
#"<\317c\322\244Ih\322\244\t\6\17\36\2143g\316 55\25\r\e6D"
#"||<\272w\357\216M\2336\231\274\20\20\366MII\21\327Q\371B\210\375"
#"\220\337\217\231\231\231fc\4i\205\220"
#"\263\2633\206\f\31\202\3\a\16\0\0"
#"\252U\253\206u\353\326\241[\267n\330"
#"\264i\2238M0\0004l\330\20\200\241\225Odd$\202\203\203\221\220\220 "
#"N\357\346\345\345%\0166\251\324T^)\235\3042\34\"P\227\26t:\235\316"
#"\344M\217\243\223^\330\337\177\377=n"
#"\337\276\215E\213\26\3310E%\300T\5#\270\e\276\32\346S\327!\375\321\3"
#"\244g\352\240\255\252\305\205?\256!\267j>|\274"
#"]\221\377$\35Z\177_\374x\3440>[\263\2"
) 500
(
#"\21\235\232\243\337&=\246$}\217\325"
#"\253\364P\201\203{p\23\364\354\322\32"
#"\376\36\356\350\330\261#\316\237?_\354\f@\272M\235:u0g\316\34\f\37"
#">\34k\326\254\201\277\277?T*\225E3\22iMw\305\212\0251n\3348"
#"\214\e7\16\333\266m3\311\314V\256"
#"\\\211\304\304D,\\\270\20\0\304\1"
#"\204\0\300\323\323\23\273w\357\306\177\376"
#"\363\37\314\2313\a\241\241\241F\307\a"
#"\200\264\2644,Y\262\4\227.]\262`\327\5B\b!\245\301\\78\241\365"
#"U~~>\264Z-N\237>\215\366"
#"\355\333\27\232\237\277\362\312+\370\376\373"
#"\357\261q\343F\274\377\376\373&\307\213"
#"\216\216FPP\220bs\330\340\340`,X\260\0#F\214\300\312\225+Q\245"
#"J\25\243\207\353\344\344d,X\260\0g\317\236\5P\366*C\bqD\346*"
#"'u:\35rssM\326\v\371\315\202\5\v\220\225\225\205\331\263g\243A\203"
#"\68}\372\264\270\235\267\2677>\375\364S\274\367\336{X\270p\241\330O]"
#"\32\370\377\374\363\317\370\353\257\277p\344"
#"\310\21l\330\260\1j\265\32\225+W"
#"F\265j\325\340\342\342\2\17\17\17\264j\325J<f\351\rVM\0\a\231G"
#"]\32\220T\255Z\25~~~\370\353\257\277l\234*\313\22n8''\247\22"
#"5\213\261\27\234\344+\307\0021p\326"
#"*\214x\305\37p\252\212\341\363\377\207"
#"]\323\372\301M\315\243e\237q\250\232"
#"\372\23\266n\335\206M\237\354\202_\233"
#"~\230<\362y<\272\374\17\256\337J"
#"\304\215\e7p\357a\6\364\222\26\344"
#"\205M\321\247D\332\374<44\24\343"
#"\307\217\307\310\221#\221\237\237_\254\375"
#"KB\336\322#==\35Z\255\326$\303Z\262d\t\356\335\273'\6\351"
#"J<<<\260r\345J\314\2349\23\27/^\24\217)=\306\2349s\250"
) 500
(
#"\237:!\2048\0\351\3\264|\271^\257\27\am\223\226\v\205\225O\322\332t"
#"a;\306\30&N\234\210:u\352`\302\204\tF\353\244eD\243F\2150e"
#"\312\24\214\35;\26YYY\342v\34\307\301\317\317\17O\236<y\246\317J\b"
#"\261,s\335\35\253W\257\216\26-Z`\357\336\275&Az\\\\\34\364z="
#"f\317\236\r\0pwwGNN\216\3211\2\2\2\360\361\307\37#**\n"
#"\267n\33529\207\220\27\274\374\362\313\230={6bcc\361\306\eo\340\376"
#"\375\373x\360\340\1n\334\270\201\245K"
#"\227b\345\312\225X\265j\25=\213\226"
#"2\207\210\b\245\27\201\277\277?\334\335"
#"\335q\365\352U\324\257_\337\206\251\262"
#",\351[)\207\352\203\\\360\247a\320"
#"\203\203\272`\241\27\332\16\34\5\6\36"
#"\200\n\265\333wF\355\20257\363<\360\344\257\357\260\354\377V\3Nj4l"
#"\377.\32\276\302\201q\5M\347Q\320\214\236\1(\330\277$\3\266)\r8\330"
#"\256];xxx\210}\326-]\e-=^\347\316\235q\374\370q$$$"
#"\210}\t\27/^\214\224\224\24\314\235;\267\310cU\253V\r\313\226-CD"
#"D\204I\237\365-[\266\340\366\355\333"
#"F\237\2152HB\b\261_\346\372\250"
#"\327\250Q\3\275z\365\202\257\257/\302"
#"\302\302\304\345\346\362t\306\30&O\236"
#"\214\211\23'\242}\373\366\250Y\263&\30c\0307n\34\2327o\216a\303\206"
#"\231\34C\372,\301\30CXX\30f\316\234\211\1\3\6\30=\344\17\348\20"
#"_}\365\25\225)\204\330!y\376\341"
#"\357\357\217\6\r\32`\377\376\375\342s&\307q\2301c\6<==\21\25\25"
#"e4z\273|\354$\306\30\352\326\255\213\305\213\27c\304\210\21\330"
#"\271s\247X\243\376\316;\357(\216"
#"H\357\347\347\207\241C\207\212\373\377"
) 500
(
#"\376\373\357P\253\325`\214a\326\254Y"
#"\320\351t\310\312\312\302\344\311\223Q\271re\312K,\310!j\324\225899"
#"9V@[\f\34\307\301\331\331\31\331"
#"\331\331\266NJ\261\211\177\2N\r\6"
#"\335\277\3\313\361\5S\253\31\276\1\30"
#"p\352\267\323X0g\16\342\327\254\203"
#"\217\267;\364P\201\2518\2003\214\0o\30\230N\17NhNo\346\362,\311"
#"\337]\310\340\2327o.\366Y\177\370"
#"\360\241E\a\220\23\316\3\0302\263J\225*\341\334\271s\0\2005k\326 )"
#")\ts\346\314)vzCBB\260c\307\16\f\35:\24w\356\334Azz"
#":z\366\354\211C\207\16\231lK\b!\304~\231\313\247\265Z-\2\2\2\20"
#"\30\30\210\220\220\220\"\3135\216\343P\255Z5h4\32\\\270p\1<\317c"
#"\342\304\211h\334\270\261Q\220\256t\34"
#"\351\313\202\246M\233b\305\212\25\350\336"
#"\275;RRRp\357\336=\334\271s\a\215\0325r\274\212\2B\312\t\371\313"
#"\267\267\337~\e\32\215\6\2336m\2\360o\237ta\6\t\216\343\20\36\36\216"
#"\0313f\240B\205\nF\371\220p\237"
#"?\367\334s\330\265k\27\372\367\357\217"
#"{\367\356!99\31W\256\\A\363\346\315\213L\313\363\317?\217f\315\232!"
#"44\24\23'NDTT\24\342\342\342\260f\315\32|\364\321G\364|jA"
#"\16Q\243n\256\351sY\273\20rssq\346\314\31\264k\327\316\326I)>"
#"\316\360\246\316\20\\;A\317\1j\350"
#"\0\316I\234\a\35\340\221\220\260\17\233"
#"\266l\304\236/\277\0P0\207:\3t\\\301EX\20\3403N\r\16\2069"
#"\331\345\177]\245\271\314\201\242\347\257\27"
#"\276\27\372\254\217\0301\2\363\346\315"
#"\263\310<\365\362\363\t#\316/\\\270\20\261\261\261"
#"\360\360\360\300\222%KL>\203\322\376\322\257\236\236\236"
) 500
(
#"\370\362\313/1i\322$8;;#..\16u\352\324Q<\6!\204\20\373"
#"e.\317\326\351t\320\351t\212e\200"
#"\322\200M\34\307a\353\326\255\210\216\216"
#"\306\311\223'\321\250Q#\243 \0350\235\35Gi\200\272\340\340`,[\266\f"
#"3g\316\4\317\363F#\302S\331B\210}Q\272\207\235\235\235\261x\361b\314"
#"\235;\27\261\261\261\360\366\366Ftt\264\321~999pqqQ\274\247\205"
#"e\236\236\2368p\340\0\306\214\31\3'''l\331\262\5\36\36\36\205>g"
#"\312\327yxx\0\0n\336\274\211\344"
#"\344d\374\337\377\375\337\263\177h\"r\210\32\365\2224}vdiiiX\277"
#"~\275\311@1\366\214\203\3120\220\34\0\6\36*\0\fN\5\265\344Bs\e"
#"\25\356=\272\207\35;v\0\340\377\235"
#"\315\r\302\233\"\225\270@\332\327\335\344"
#"\\\n\327\201\364\241\2448/p\204>"
#"\353\31\31\31%\372\234\205Q\n\274\3"
#"\2\2\220\221\221\201\304\304D\354\335\273"
#"\327\354g\220.\223?\240\271\272\272\302"
#"\331\331\31yyyb\263$\207\354\36A\b!\345\230\2712I)\357Wz@"
#"\226\377\354\347\347\207\224\224\24\370\371\371"
#"\31-7\367\362Z\272N\340\351\351)\16h*\214:O\b\261?J\203Q\n"
#"\374\375\375\221\234\234,\316\6$\305\363"
#"<\362\362\362\212<\376\260a\303\340\351"
#"\351\t\235N'\216\201Q\330s\264\322"
#"\313@\0\330\273w/\376\371\347\237b"
#"\235\223\24\237C\4\352R\214\2612[\243\250R\251L\6\212q\b\234\341\37W"
#"P\v.\3645\227^^\341\303\336\203\263\2633 \255)7\373',\331eY"
#"\322\301\325\332\265k\207\226-[\226\350"
#"\34%\261d\311\22\\\271r\5K\226,A\227.]\360\325W_\341"
#"\233o\276Q\334V)\263\23\364\352"
#"\325\v\303\207\17\307\364\351\323\21\21\21"
) 500
(
#"\201\273w\357\26\371Y\345/-\b!"
#"\204\330/y\236^\324\213\330q\343\306\241R\245JX\272t)\22\22\22\260{"
#"\367n\223cI\277W\32\31:--\rC\207\16ETT\24F\217\36\215~"
#"\375\372Y\366C\21BJ\215p/\317\2301\3\31\31\31X\266l\31\316\237?"
#"\217\225+W\212\333|\371\345\227\250\\"
#"\2712\332\267o_\350\261\336~\373m"
#"t\354\330\21\303\207\17GTT\24\206"
#"\16\35\212\264\2644\0\205?\237*\3455nnnP\253\325F\343D\221g\347"
#"P\277My\23cB\254\255\250\353N\336'\275[\267nX\276|9\266o\337"
#"\216\3\a\16 11Q<\206\207\207\a\324j\265x\\\216\343p\376\374y\314"
#"\2349\23\215\e7\306\177\377\373_4"
#"h\320\0U\253V\25\373\254\337\272u\253\320\363\27\367a\217\20K\220_ct"
#"\315\21R|\346j\246\224\362o\236\347"
#"1a\302\0044n\334\30\357\274\363\16"
#"4\32\rV\254X\201\37\177\374\21\r"
#"\0324\300\271s\347\220\234\234,n\357"
#"\346\346f2\3\311\331\263g\21\36\36"
#"\216\260\2600|\376\371\347\250Q\243\6"
#"\352\327\257\217\370\370xt\353\326\r\17"
#"\36<0I#\335\323\204\330\17\241\262R\350\223>i\322$899a\301\202"
#"\5x\360\340\1\0327n\214\213\27/"
#"\342\327_\177\205\237\237\2378\367\271\334"
#"\271s\347\20\36\36\2167\336x\3\203"
#"\a\17F\355\332\265\21\34\34\214\35;"
#"v`\300\200\1\270}\373\266\311\210\362"
#"\302\367JN\2348\201={\366\300\331"
#"\331\331d\360:\362l\34\242\217:`\332G\243,\326\250\373\372\372\"%%\5"
#"\200r_kb{J}\322\205\357\327\254Y\203\313\227/\e\365I\a\0\215F"
#"\203m\333\266\241W\257^\360\360\360@\333\266m\1\0"
#"\311\311\311HLL\304\352\325\253\301\30Cnn.\276"
) 500
(
#"\375\366[\204\207\207c\346\314\231F\307"
#"(\316<\353\362\246\223t\355\220\322\246"
#"\324\217\226\20R<\322\26P\362<[~/M\2312\5\325\253W\27\347Ig"
#"\214A\243\321`\345\312\225\3408\16\257"
#"\275\366\32j\325\252\205\306\215\eC\245R!11\21\327\257_\27\247\200KI"
#"I\301\221#G0o\336<l\330\260\301\350\330!!!X\264h\21F\214\30"
#"\201\370\370x\4\5\5)\246\203\356qBl\213\343\f\363\244gff\32\rR"
#"\314q\34f\316\234\211Y\263f\241o"
#"\337\276\270w\357\36\374\374\374\304\351\323"
#"\244\1vff&\16\348\200\361\343\307\243k\327\256F\307\27\346Y\0376l"
#"\30\26-Z\204\372\365\353\27\232/\t\2\3\3Q\241B\5T\257^]\254\200"
#"\"\226\3410\201\2724\30)\253ox"
#"\343\342\3420w\356\\\n\264\354\230\271"
#"\301\340\26/^\214G\217\36a\361\342"
#"\305f\267\377\372\353\257\221\234\234\214E"
#"\213\26\0010\214I\220\227\227\207\177\376"
#"\371\a\34\307\301\303\303\3\a\16\0340"
#"{na\236\365\210\210\b\314\237?\37\r\0324P\f\314\225^\"\20R\332\344"
#"\263U\320\365GH\361\24u\237L\2300\1\365\353\327Gxx\270\311>\302\327"
#"\3\a\16\340\334\271s\330\266m\e\30"
#"cx\360\340\1\222\223\223q\363\346M"
#"\0\206`\274\260\362\245a\303\206\2302e\n\"\"\"\260u\353Vq\200(y"
#":\351\276&\304z\344\2251s\347\316\205Z\255V\234IH\330n\347\316\235X"
#"\260`\1\364z=n\335\272\5\236\347"
#"\215\362\213\n\25*\210y\201\322\375\34"
#"\20\20\200\305\213\27c\362\344\311X\276"
#"|9j\324\250\1\300\320\252G\245R"
#")\356\243\327\353\321\245K\27\364\351"
#"\323\207\2u\v\343\230\3D\275\362\213b\367\356\335\360"
#"\360\360@\227.]l\230*\313\253Q\243\206\30\264\21\307"
) 500
(
#"Q\222y\322\245\322\322\322\320\247O\37"
#"\34<x\260X\177s\341>\270q\343\206\311<\353\364\360Dli\335\272uh"
#"\333\266\2558\223\2]\217\204\24m\307"
#"\216\35\360\367\367\307\253\257\276jv\e"
#"a\236ta\16c\240x\367\327\215\e7p\364\350Q\274\363\316;%J\323\271"
#"s\3470m\3324\243\221\340\345\347\244"
#"\373\233\220\247\327\270qc\234?\177\276"
#"\330\333\v\367\233t\236\364\302\2349s"
#"\6\343\306\215\303\261c\307J|\16\251"
#"\277\377\376\e\37|\360\1v\354\330\1"
#"oo\357B\367\373\372\353\257\301\363<"
#"z\367\356M/\364,\314\356\373\250+MS\322\247O\37\\\270p\1\377\374\363"
#"\217\355\22fa\2141x{{\323\205\355`\326\256]\2538Oza\357\277\204"
#"u\217\37?\206N\247+\366\337\\:"
#"\265\216\320g\375\346\315\233\224!\22\233"
#"\273q\343\206\370\326\35\2401\22\b)"
#".s\367\211t\236\364\241C\207\32\265"
#"&,N~\237\226\226\206\314\314\314b"
#"\235W\332\4\277I\223&\210\217\217G"
#"\367\356\335\215\372\254S\220N\210mp\34g2O\272\234\364\36vww7\273"
#"\336\334\276J\367t\335\272u\215\372\254"
#"\233K\e`\350\342\231\223\223S\342\301"
#"\235I\321\354>PW\232\246\304\311\311"
#"\320b\277\254\fX \334$\251\251\251"
#"\266N\n)\204<\243\223\366I\227\216r\251\224\351I\367-,\3+Np#"
#"4\223\337\275{7\306\216\35\213?\376"
#"\370\203\202\"b\23\302u\347\344\344$"
#"\316\a-,\247\202\232\220\242\311+\""
#"\4\321\321\321\b\n\n\302\210\21#\214"
#"\2727\25'\257W\232\375\303\334\334\352"
#"\362\2640\306\20\34\34\214\5\v\26`\304\210\21HJJ2\332\237\356kB\254"
#"\2071&\366I\217\211\2111\273\235\264\26\373\350\321\243\350"
#"\324\251\223\3211\n\313;\n{^\25\372\254\217\0313\6\177"
) 500
(
#"\377\375\267\342v\231\231\231HMMEpppI?\36)\6\273\17\324\315)"
#"K\201\t\307qX\265j\25\"\"\"l\235\24b\206<\243\233;w.n\334"
#"\270\201\217?\376Xq;\271\222\326\232"
#"\27\226\16\341\34B\237\365\2313g\342"
#"\347\237\177\246\251\331\210\325)\275HU"
#"ZN\b1e\356\376\211\214\214D\235:u0~\374x\263\343\242\24\347\270\322"
#"\27\310\205\r\b\245\264\256Q\243F\2302e\n\306\216\35\213[\267nQ+\31"
#"Bl 66\26z\275^\261O\272\2244\237\210\215\215ELL\214\311,\22"
#"O\373\34\32\20\20\200\205\v\27b\362"
#"\344\311\370\363\317?M\266\273s\347\16"
#"\256]\273\206V\255Z\31\245\207X\206"
#"C\f&\247\324\374\335\334:G\265e\313\26l\333\266\r@\331\371Le\211<"
#"\0\351\330\261\243Q\246$\337\256\264\323"
#"!\250^\275:\376\373\337\377B\243\321X-\r\204\310)M\323F\327!!\205"
#"378\356\eo\274!\316\16\362,/~\237\365a9,,\f\263g\317\206"
#"\257\257\257x^\272\267\t\261\236\327^{\rm\332\2641Z&\237\341GN\350"
#"O^\234\321\332\213\253^\275zX\270p!\374\375\375M\326999\31\r "
#"Gy\204e9D\240.\357\eU\326\372J\t\375\323322\0P_0{"
#"&\374MZ\265je7\177\237\220\220\20\361{{I\23)?\224\2569\272\6"
#"\t)\36\245{E\b\322\355A\223&M\214~\246{\233\20\353`\214\241M\233"
#"6\212\255j\244_\245\337\277\374\362\313"
#"\330\277\177\277\305\323\301q\2348X\254\\zz\272\3702OH\v=\213Z\216"
#"\3034}/\313\17\203\34\307\31M\237 ]NlK^\343a\257/Q\250\377"
#" \261\25\216\343\220\233\233KM\335\b)\243"
#"\350\336&\304\372\212\e\360J\357\317\254\254,\270"
) 500
(
#"\271\271Y<\35\346\350\365z|\362\311'\0301b\204Qz\350Y\324r\34&"
#"P\227\6H\322\257eE^^\36t:\235\370sY\373|\216J\336\202C\370"
#"jo\231\220<\215\204X\313\361\343\307\321\262eKh\265Z['\205\20\207f"
#"\257\371\267\275\225w\204\224\27E=\333"
#"\311\237G333\241\327\353-\236\216"
#"\302\362&\27\27\27\263\351!\317\316a\2uAY\fHV\256\\\211\316\235;"
#"\323\34\304vL\3727\261\327Au\344\363\334\22b\r'O\236D\203\6\r\214"
#"\nkBH\361\224t\3325BH\371P\234\331\202\244\313g\316\234\211\17>\370"
#"\0~~~\245\222\6s\347\27f\340*jty\362t\34.P\27\370\372\372"
#"\"##\243L\\\20\327\257_G\205\n\25\304\346*TX\333\37i\346co"
#"/R\344#{\312\277'\2444i\265Z\344\345\345\321\365F\310S\220O\273\346"
#"\b\367\221#\244\221\20GW\322\226\304"
#"\177\375\365\27j\324\250!Nam\3114\230{\346\235;w.\246M\233V\344"
#"\0w\344\3519D\240\256t\221\16\37>\34\237|\362I\231(0\234\235\235\313"
#"\304\347(\313\3445\352\366\304\334\324="
#"\366\226NR\266\321\365F\310\323\261\347"
#"\26[\362qZ\250\326\214\20\353Q\312\e\224fY\21\326geeY\374\374\205"
#"\375\234\233\233\v\27\27\27\273}>.\v\34\"P77\302\241\213\213\213I\1"
#"\342\210\204\e\317Q\323_\226\231\vz"
#"\355\371oE\31%\261&\306\230\321\370"
#"\32\3022BH\321\244\343\240\0\366\327b\313\334L;\366\224FB\312*y\255"
#"\272<\277\20\226\35?~\34\376\376\376"
#"h\326\254\231\305\316]\234A\274sss-v>\242\314!\2u\240\350\267:"
#"\200\375\275\211.\211\342|>b}\305\351\27"
#"DHyu\362\344Ix{{\243~\375\372F"
) 500
(
#"\313\351\376 \244x\344e\275=\337;"
#"\366\2346B\312\262\242\356\275S\247N"
#"\301\313\313\313h\272\336\322>\347\256]"
#"\273\320\263gOh4\32\212YJ\221"
#"\303\4\352\362 \274\260\0\312\221.\230"
#"\357\276\373\16III\b\17\17W\234\23\221\20B\354\205<oMMM\205\263"
#"\2633\334\335\335\35*\337%\204\20B\312\nwwwdgg[\355|\2141"
#"\334\276}\e\1\1\1P\251T\24\263"
#"\224\"\207\t\324\v\e\321Z\332\207\335"
#"\321F\276\26\246Q\220\217\230\354\bi"
#"'\204\224/\362\274U\245R\211?;\332KRB\b!\304\321\245\247\247#)"
#")\t\315\2325\263x\31\2544F\230P\336\253T*j\372n\5v\37\250+"
#"\365\0216\327g\302\\_*[2\327\207^\372\2750\265\201\224=\244\235\20B"
#"\224\bA\271\263\2633\262\263\263\251\337"
#"*!\204\20b\3W\257^\305\241C\207\360\366\333o[\264\f67\220\35\307"
#"q\370\373\357\277\341\343\343\203\252U\253"
#"\322\v\372Rf\367\201za\27\235^\257\207Z\255.\361~\326\2444\n\267\364"
#"\342W\253\325Fs\20J\277\22B\210"
#"=b\214\341\341\303\207\270p\341\2\272"
#"u\353f\262\216\20B\b!\245O\243\321\30\215\274n)J\255\223\205e\227."
#"]\202\227\227\27\374\375\375\355&\336*"
#"\253\354>P\227\222\327HO\235:\25"
#"qqq&\353\354\215\271\26\0\311\311"
#"\311\210\213\213\303\372\365\353i4UB\210]\223\27\326999HKKC@"
#"@\200\321z\312\277\b!\204\220\322\307\30Crr2*V\254Xj\347P\212"
#"M4\32\r\362\363\363\3054\310\323D,\307\311\326\t(\ty\363w\255V\213"
#"\234\234\34\243u\366\322\344]\252\260"
#"\a\330\234\234\34\270\273\273\emko\351'\204\209"
#"\216\343\240V\253\vm1D\b!\204\220\322\301q\34"
) 500
(
#"\302\303\303q\371\362eqYi\227\301YYY\310\310\310@PP\220\230\6\351"
#"85T\376[\226C\325\250\27\207=^ J\363\36\2\206\276\351\21645\v"
#"!\244\374R\32,N(\224i\306\nB\b!\304\3724\32\r\200\322i\325\246"
#"T;\236\224\224\204+W\256\240u\353\326\3422j\21\\z\34>P\267\247&"
#"\27E\235[\276^Z\eU\334c\20B\210\255H\va\265Z-\316Z\1P"
#"\336E\b!\204\224\26sel~~~\251\325d+\35\323\331\331\331\354\370`"
#"\304\362\0346P\27.J777dff\212\313\245\265>\326zp,\356["
#",\371\372\a\17\36\240R\245JF\307\241\267Q\204\20{b.\37]\263f\r"
#"&N\234(\376Ly\27!\204\20b\31JS\242\311\275\362\312+\330\277\177\177"
#"\251\226\277\362g\200'O\236\300\313\313"
#"\253\324\316G\2149l\240\316q\0344"
#"\32\r\372\367\357\2175k\326\230\254\223"
#"~-M\362\371\203\205\351\v\224\266\223"
#"\177\337\243G\17|\373\355\267\342r\216"
#"\343\24\247j#\204\20[\220?\34H"
#"\363\271\334\334\\h\265Z\223\345\204\20B\by6\362.eJ\345\353\275{\367"
#"\340\341\341Qje\257\374\31@\257\327c\313\226-\30=zt\251\234\217\230r"
#"\330@\0350\\\270:\235\16\316\316\316"
#"&\353\254\375\300(\35DA>\245\201\364B\227~\357\352\352*\356/\4\350*"
#"\225\212\36v\t!vA\376p`n\260\30\371\313Q\312\303\b!\204\20\313\221"
#"\227\273\237\177\3769\372\364\351\00377"
#"\267R\253\230\224?\3\250T*\344\346"
#"\346\226\312\271\2102\207\16\324\201\177k"
#"\260m5(\233\2717^<\317\e=\274*\365E\27\6\223c\214A\245R\211"
#"\301:5!%\204\330\vsA\271\271`\234\272"
#"\360\20B\b!\317\246\250\326\271\333\266mC\347"
) 500
(
#"\316\235\341\346\346V\252\351\220\226\347\353"
#"\327\257\307\2301c\350e\274\259|\240^\277~}T\256\\\31\a\17\36\264"
#"\213f\343BP>m\33244l\330\20={\366\304\337\177\377\215\313\227/\343"
#"\322\245KHJJ\2\0\244\247\247#((\310\250\6\236j\323\t!\366H\236"
#"/edd(\366Q\243 \235\20B\byvJ\225|\322\362\325\303\303\3\351"
#"\351\351VM\323\225+WP\247N\35*\347\255\310\241\346QW\242V\253\241V"
#"\253\221\233\233+\6\272\266\232\313O\332"
#"\364}\376\374\371\230?\177>\22\23\23"
#"\361\366\333o\213\333\370\371\371\241G\217"
#"\36\210\213\213\303\210\21#\260o\337>"
#"t\355\332Uq\232#z\350%\204\330\3y>\24\27\27\207\331\263g+nG"
#"\371\26!\204\20\362\354\314\225\245\267n"
#"\335\202\253\253+\2\3\3\255\32\367\360"
#"<\217\334\334\334R\257\305'\377r\370"
#"@\35\0\362\362\362\304\222\353\a\224\0\0 \0IDAT\332\35[\316\345\247"
#"t\316j\325\252\341\320\241C\342\r\224"
#"\235\235\215\251S\247B\257\327\343\322\245"
#"K\270s\347\16v\355\332%n_\267n]L\2312\305\354\361\b!\304\3264"
#"\32\r\362\362\362\304\371[\245(\337\"\204\20BJ\ac\f\273v\355B\245J"
#"\225\360\374\363\317\e\5\351\245\31\254\377"
#"\364\323Oh\325\252\225\342\270`\244\364"
#"\224\211@\375\325W_\305\256]\273\320\260aC\4\6\6Z\375\374%\2711\\"
#"]]\261l\3312\\\271r\5qqq\b\f\f\304\227_~)\256\277{\367"
#".\302\302\302\0\0{\366\354\261\311\347"
#"!\204\20B\b!\204\330\2364\316\340"
#"8\16\356\356\356x\360\340A\251\277\30"
#"\227\236\367\370\361\343\350\333\267/\5\352VV&\2\365\212\25+\"#"
#"#\39996ivY\234\363\311\267\311\311\311\301\203\a\17P\265j"
) 500
(
#"U\364\355\333\327\350m\230\360\263t\216"
#"uB\b\261\5\245<U\247\323\321x\32\204\20B\210\25H\313`\235N\207\234"
#"\234\34x{{\0030\r\342-\25\a"
#"\311\217\243\325j\221\235\235M\335\333\254"
#"\254L\4\352\200!\360-\315)\n\212"
#"\242t\341\232\233\226\355\312\225+\250Z"
#"\265*|}}\305m\245\373V\251R\305\n)&\204\220\242\311\363\265\2337o"
#"\"((\b...6J\21!\204\20R>]\270p\1_\177\3755\16\36"
#"<\b\0&q\206\245\342 \351q\36=z\4\255V\vooo\n\322\255\314"
#"\341G}\27t\355\332\25\207\17\37V"
#"\234\252\315\32\224.\\s\27\363\252U\253\320\241C\a\4\a\a\0030\36QY"
#"i\224GB\b\261\27\273w\357F\207"
#"\16\35\24\373\247\23B\b!\304\362\204"
#"\330@\245R\301\311\311\311d\271\245\3hi,r\362\344IT\254X\21\325\253"
#"W\247\30\305\312\312D\240\316\30\303\v"
#"/\274\200_\177\375U\234\277\334\26\27\22c\f\227/_FXX\30Z\265j"
#"\205\227_~Y\\.M\223\217\217\17rrr\214\326I\321\333*B\210\275\220"
#"\347\245\256\256\256\310\311\311\241|\212\20"
#"B\b)EJ\25y\316\316\316\310\317\3177Z^\32\344\315\336\365z}\251\236"
#"\217(+\23M\337\205\213F\350\253\356\343\343c\223i\2028\216CHH\b\366"
#"\354\331\3\3000\32}\243F\215L\266KII\301\324\251Sq\371\362e\261\5"
#"\0\307q\250[\267\256\325\322J\b!\305!\315K\205i0i0\31B\b!"
#"\244t)U\344\r\35:\24?\374\360\3\200\242\273\335Z\2020%\233\273\273;"
#"\365O\267\2012\21\250\v\242\243\243\21"
#"\35\35\215\5\v\26\0\260\315[\37ggg\243\221\332/\\\270`"
#"\262\315\272u\3530{\366l|\361\305\27`\214A\245R\201\347y\364"
) 500
(
#"\357\337\37\36\36\36\340y\36\35;vD\215\0325\254\231tB\b)\324\341\303"
#"\207\341\347\347\207\6\r\32\330:)\204"
#"\20BH\271!\4\311\31\31\31\360\360"
#"\360\0`\32\347\224F \235\230\230\210"
#"?\376\370\3\323\246M\263\350qI\361\224\251@=77W\3547i\213\32u"
#")s\347\276z\365*N\237>\215\303"
#"\207\17\243V\255ZF\353\346\316\235\213\253W\257\2\0Z\264ha\225t\22B"
#"HQ\204\374T\253\325\342\356\335\2736"
#"\317_\t!\204\220\362D(o\323\322"
#"\322\212\334\306\222T*\25T*\343\236"
#"\322T\376[O\231\n\324\1@\257\327\eMS`+\322sK\373\250_\275z"
#"\25\217\36=2\t\322\1`\372\364\351"
#"\326L\"!\204\24\333\303\207\17q\341\302\5\f\0300\0\0\365S#\244h<"
#"\30S\301p\247\350\30185\204\273\206"
#"\206c\"\204\24\227\20G\f\37>\34\237~\372\251U\3e\265Z-\366O\27"
#"P\371o=\16?\230\234t\240\5\255V\213\1\3\6`\335\272u&\353lI"
#"\372\342\300\311\311\tj\265\332n\322F"
#"\b!\305\241\323\351\360\350\321#\370\373"
#"\373\333:)\2048\b\258\16`\34\0\216CN\342)\34?{\23Ox\6"
#"z\314%\204\24E>\242\373/\277\374"
#"\202\347\237\177\336*\201\262p\356\325\253"
#"Wc\342\304\211&\313\211u8|\240.\35M\235\34388;;#;;\333"
#"n\233exzz\"--\315.\323F\b!rB\376z\355\3325\324\257_"
#"\237\362.B\212\211\1`\320\201cz"
#"0\344\340\253\270\217\260~\357m\270\253"
#"8\0\274\255\223G\b\261s\3229\322\1\303\300n\302\254Q\32687c\f\371"
#"\371\371\320j\265&i\"\326\341\360\201:`|\321\350t:\273z\333"
#"#MKNN\16v\356\334\211\321\243G\3330E\204\20R<\322\27\236"
) 500
(
#"\273v\355\22\233\275\v\353\b!\346q"
#"\f\340\341\4@\215\373\277\355\304'?\236\301\317_\314F\3347Wl\2354B"
#"\210\3\3418\16\237\177\3769z\365\352"
#"\5OOO\253\224\277\322\301\353\204\237"
#"\205\363R\371o=\16\37\250K/\34\0\250S\247\16\2\2\2p\352\324)\e"
#"\246\352_\322\32\377\354\354l$$$\240w\357\3366N\25!\204\24M\232\177"
#"\t\3u\312\233\342\21B\314S\1\0\axT\256\215\372!\25Q\271\326\v\b"
#"\253\355\v\346\370\217_\204\20+\20\312"
#"\334m\333\266\241s\347\316\320j\265V"
#")\1779\216\303\206\r\e\214*\27\355"
#"a\f\260\362\306\341K\n\216\343\214\36"
#"&\335\334\334\240\321hp\377\376}\e"
#"\247\354_\302\5\255R\251\340\356\356N\278!\304ap\34\207\217>\372\bQ"
#"QQ\342\317\0\275Q'\244h<8f\370\352\36\330\24\315kUC\355\246\35"
#"\321\241\236?\365Q'\204\24\v\307q"
#"x\362\344\t|}}\215\6\314\266\206\253W\257\212\203_S\354b\e\16\37\250"
#"\v\244\27PNN\216Q\177\n{A\279!\304\21\245\246\246R\215:!%"
#"\3048\25x.\17\0\300q<t\372"
#"<\350r\363\220\307\321\250\357\204\220\342"
#"\333\270q#\252T\251\202\216\35;Z"
#"\365\274<\317#//\317\252\347$\306"
#"\312L\240.\25\32\32\212\273w\357\342"
#"\361\343\307\266N\212\21///\244\244"
#"\244\330:\31\204\20Rl\247O\237F"
#"\263f\315\304\227\237\24\240\23R<\34"
#"\0\25\\\0\250\0\226\a\235^\r\336"
#"Y\r\36\254\240\246\235\20B\212\346\354"
#"\354l\324\212\315\32-\332N\235:e"
#"T\366\23\333(\223\201z\375\372\365q"
#"\347\316\35$''\3\260\237&\232\303\206\r\303g\237}f\353d\20B\210"
#"\ts\371\344\221#G\320\254Y3\270\270\270X9E\20488^:\360\222"
) 500
(
#"7*U\314A\316\335\a`\340@m\337\t!\305\245V\253\221\237\237/\376l"
#"\251\27\346\205\5\377G\217\36F\323\246"
#"\241pvq\22'\251`\340\2519\220\225\225\311@\0350L\203&4\327\260\227"
#"\32\240\23'N\340\245\227^\262\233\27"
#"\a\204\20\2\374;\272\253\274\320\316\315"
#"\315\205\273\273;x\236\247|\213\220\222"
#"*\230\206\215\34380\316\5\355zvG\372\301h\264\216J\240\373\211\20R,"
#"\27/^DBB\2f\315\232e\361cK\343#y\254\244\325j\221\235\233\5"
#"\246K\303_g~\305\365'\f`\34\364\34(X\267\2422\e\250\217\35;\26"
#"\361\361\361&\313mU82\306\340\342\342\2\235Ng\223\363\23B\2109B\220"
#"./\264O\2348\1\255V\213F\215\32\231\4\362\204\220\242\360\0T`L\17"
#"\16\200W\233q\370\366\257\233\370cA\17pT\245N\b)\6\275^\217\354\354"
#"lxxxX\374\330\346\312\364\224\224\24\270\270h\341\357W\25Y'\327a\334"
#"\350o\340\345\306\201\3\a\25\323\203Q\366e5e&PW\272\330z\365\352\205"
#"\37\177\374\321h\e[\324\256K\347\"\344y\336nj\370\t!D \315\227\30"
#"c\310\310\310\300\355\333\267\321\262eK\305m\b!\205cP\25\324<\251\r_"
#"\231anu\25\307S\323wBH\261\370\370\370\210cnY\372e\271\271\27\360"
#"?\377\3743<}*\241F\325T,^\260\e\177&~\213\2505\337\342Q\36"
#"\300A\r\261-<)u\16\37\250\27v\321v\351\322\5\t\t\t\342\317\266\f"
#"\322\247O\237\216\331\263g\303\331\331\331"
#"\352i \204\20s\224\362P\216\343\220"
#"\222\222\202[\267n\241A\203\6&\333R\315:!E\343\204\3778\200q<\30"
#"gx\350b\214Q\323QBH\241\204r6**\n\353\326\2553\252l\264d\31\254\24"
) 500
(
#"\e\271\272\272\202\351\262\301\303\3\365\e"
#"\6\303\327\255*\2325\250\n\327\202w"
#"\216\234\343\207\217\16\303\341\177\323JM"
#"6\5999\360\363\363Cvv\266\325GK\224\247\357\327_\177E\263f\315"
#"\250\371(!\304\256(\345\235\2141\344"
#"\345\345\301\313\313\313\2449\274\255Z&\21\342x\f\3/\31bu\36(h2"
#"\3128\207\177\364\"\204\2242\241\234\375\343\217?\20\32\32Zh\177rKJJ"
#"J\302\357\277\377\216\276}{A\345T"
#"\25/wj\212\300\200\246\350\373r\23"
#"\270\253\1\303\251\251F\335Z\34\276\264"
#"0\367\320\310\30\203V\253\305\353\257\277"
#"\216\225+W\32\275\205\262\366C&\307q\320h4v7\270\35!\204\310\ty"
#"\344\352\325\2531n\3348\243\345\204\220\0222\214'\a@\5\216S\e\246lc"
#"4\352;!\244x233K\355\330J\345:\317\363\320\351tp\321h\300\0"
#"\344g3\360,\27\231\322\331*\230\303"
#"\207\217\16\243\314\376\246\205`\270R\245"
#"J\360\363\363\303\265k\327\214\226\333\32"
#"=\364\22B\354\215\364Ef^^\236\342\e|{\311C\t\261\177*\0\374\277"
#"OZB\261O5R\204\220\"0\306\260~\375z\214\37?\276\324\316\241\324\312"
#"\327\315\315\r\231\231\231\340\204`\\\227"
#"\213|''\30:\356\32\362-\32L\316z\234l\235\200gU\324Cc\305\212"
#"\25\341\351\351\211\213\27/\242V\255Z"
#"VJ\225)\236\347\301\363\377\26\314\364"
#"\260K\b\261\aJ\255\2146o\336\214"
#"\341\303\207\333(E\204\224%\252\177\277"
#"rJ\313\t!\304\24\307q\230?\177>.]\272Tj\347\220N\315*<\a"
#"\354\330\261\3\341\341\341`\34\17\216\251"
#"\340\22\344\a\217\224_\360X\a1j\244\b\306z\312EI\321\263gO"
#"\\\272t\tIII\3422k\326h/\\\270\20\355\333\267G\363\346\315"
) 500
(
#"m\326W\236\20B\344\344\363\247s\34"
#"\207\354\354l\334\270q\3u\353\326\265"
#"q\352\b!\204\220\262I\36\3(\305\4nnn\342\210\357\245q~\245J\303"
#"\353\327\257\243F\215\32\340\240\2\343\200"
#"\212\265\373\340\305\312\3070\270g,."
#">\6\f\265\352\324\"\310Z\34\276F\27584\32\rBBBp\375\372u\4"
#"\6\6\202\3438\253\326h?y\362\4"
#"\276\276\276P\253\325Fo\256\250V\235"
#"\20bKJ\203\303\255[\267\16\375\372"
#"\365\203F\243\261a\312\b!\204\220\262"
#"K\36\3\310\177\276p\341\2\0324h\0\27\27\27\0\226\37cK>v\227\360"
#"5??\377\337m\30\0\257\32\210\371\361\16b\251n\321&\312E\215:\0\274"
#"\361\306\e\330\274y\263M\203c\0321"
#"\231\20bO\224\362#\225J\205\274\274<j\361C\b!\204\2242semt"
#"t4\306\214\31\3ooo\0\346\347<\177V\322\361g\16\35:\204\316\235;"
#"\eV\360L\34O\203\a\n\246\231\264\370\351I\21\312M\240\16\0\23&L\300"
#"\306\215\e\305\237\255\365 *oZJ\b!\366@\236\37\2359s\6^^^"
#"\250[\267.\345U\204\20BH)*\254\362\316\307\307\aO\236<\21\267\3J"
#"?\206\330\273w/\272v\355j8\237\212Ao89\324\254 \255\214\acz"
#"\320k|\353)\27\201\272p\201\327\253"
#"W\17\377\374\363\17\262\263\263\1X'"
#"h\316\315\315\205^\257\207\233\233\233Iz\b!\304^\360<\217\244\244$x{"
#"{\303\323\323\323\326\311!\204\20B\312"
#"\254\302\246\227\316\311\311\201J\245\22\233"
#"\275\227V\274\"\217G\\\\\\\220\221\221!\236O\r\0p\6\343\362\1\216\3"
#"\3\a\256`)\261\2162\37\250Ko\4\265Z\2157\337|\23\253W"
#"\257\266\332\371\217\36=\212K\227.a\324\250QT\253N\b\261[\211"
) 500
(
#"\211\2118{\366,z\367\356m\353\244\20B\b!e\232\320\332V\36,s\34"
#"\207\265k\327\"((\b\257\276\372\252"
#"U\322\0\0\267o\337F\325\252U\341\354l\230\210\215Ae\2509\347xp\314"
#"\31\34x\303\366\34\300\321`rVS"
#"\346\3uy\237\216\334\334\\\250T\326\373\330*\225\n*\225\312dteB\b"
#"\261\27\2141xzz\"++\313\326I!\204\20B\312\5\351\300\322B|\300"
#"\30\203\207\207\a\322\323\323\305\355Jk"
#"\306(ie\346\366\355\333\361\312+\257"
#"\210-\2009\350\300\361\206\200\35\34\17"
#"\24\4\356\206 \275\314\207\217v\243\\"
#"\374\246\2455\330\265j\325\202\277\277?N\235:%.+\315\340Y:\200\34\5"
#"\353\204\20k\223\26\376\346p\34\207\317"
#">\373\f\341\341\341\326J\26!\204\20B\n\b\361\301\215\e7p\360\340A|"
#"\360\301\af\267\263\3449\5\356\356\356"
#"\310\313\313\223\254u\2T\302\234\351\206"
#"pQ\372=\261\216r\365\333\26j\215|||\220\224\224\4\275^\17\0&o"
#"\263,u.\306\030222\340\345\345%\236\207\347y\n\326\t!V#\35\321"
#"\325\234\314\314L<|\370\20\301\301\301"
#"\3422\312\243\b!\204\20\353\20*\363"
#"\322\322\322p\357\336=\324\256][\\W\32q\203\364xyyy\3408Nl"
#"\366N\354G\271\n\324\205\a\325\356\335"
#"\273\343\314\2313\270w\357\236\321\205*\275\21JrC(m\313q\34RSS"
#"\361\341\207\37b\303\206\r\342v\322f"
#"\360\204\20bk\2141\304\306\306b\312\224)F\313)\217\"\204\20BJ\227|"
#"\374*___ddd\230lW\232\225|\207\16\35B\205\n\25\320\260a\303"
#"R9>yz\345&P\227\367\357x\355\265\327\360\363\317?\233l'"
#"\255}*\316\rQX\320\255R\251\214\336N\25\247f\213\20B,E"
) 500
(
#"\236\207)\375|\372\364i<\377\374\363"
#"Fy\25\325\246\23B\b!\245O\336"
#"\252w\363\346\315\210\210\210(\264_\272"
#"%\312hi,\342\344\344$\2662\266\324\361\211e\224\233@]>\227y\353\326"
#"\255q\370\360\341B\233\275\27'\2406\267Ma\279\335\0\204\20k\220\347O"
#"J?\37;v\fM\2324\21\247\201\21\226S>E\b!\204\224>\351\30V"
#"\2336m\302[o\275e\22\267(}\265\24\241k\256\364gb\37\312M\240\16"
#"\30O\205\300\30\303\314\23131g\316\34\243u\202g}H\3458\16Z\255V"
#"\234\263]\336\304\236\20Bl\355\370\361"
#"\343\360\367\367G\335\272u\215\226S\367\34B\b!\304:\244\1\270F\2431Z"
#".\237\302\315\322/\321\223\222\222\360\373"
#"\357\277\243\177\377\376\26=.\261\214r"
#"\25\250\3\3067\2030\260\\bb\242\321:\371\367%!\355\343~\374\370q\274"
#"\374\362\313\317t<B\b)\r\331\331\331\270\177\377>\252W\257\16'''\243"
#"\274\213\362+B\b!\244\364I\3\357_\177\375\25\255[\2676Z/\237\302\315"
#"\322-\336\364z=t:\0354\32\r\265\244\263C\345.P\a\376\r\2325\32"
#"\r^{\3555l\335\272\325\342\307\3468\16\357\274\363\16V\257^m\261c\23"
#"B\210\245ddd\340\324\251Sh\337\276=\0\32C\203\20B\b\2616i\231"
#";x\360`q\0j)i\23xK\a\323\356\356\356\310\314\3144I\v\261\17"
#"\3452P\227\252Z\265*\252W\257^*\363\252\373\371\371!??\337\"\307\""
#"\204\20K\332\271s'F\216\34i\353d\20B\b!\4\200\217\217\17\36?~"
#"l\262\\\336\342\327\222\1\365\216\35;"
#"\360\336{\357Y\354x\304\262\312}\240\356\341\341a4\257\372\323"
#"6\373\244\346\"\204\20{&\315\243\236<y\202\373\367\357#$$"
) 500
(
#"\304h\35\345c\204\20B\210uH\313\334\364\364txxx@\245\262nhv"
#"\375\372u\4\a\a[\365\234\244\370\312"
#"}\240\16\30\317\253\376\264\315J\224\202{\245y\20\t!\304\26\244y[ll"
#",\246N\235\n\300\270O:5{#\204\20B\254C\332\367<<<\34\323\247"
#"O\207\237\237\237\325\316\317\30C~~"
#">\275\254\267c\24\250\27\20\346U\347"
#"y\276\320)\333\344\314m\263m\3336"
#"\f\0312\4j\265\332\242\351$\204\220"
#"\222\222\366o\373\345\227_\320\254Y3899\211\313\244\333PAM\b!\204"
#"\224>i\331\354\342\342b\0244[\303"
#"\341\303\207\321\245K\27\361E>M\315j\177(P/\20\26\26\206C\207\16A"
#"\245R\231\314[X\30sA\375\212\25+\360\326[oY\275\t\v!\204\310\t"
#"\371\324\2313gp\346\314\31\f\348P\2347\335\334<\255\204\20B\b)="
#"\362\300X\247\323Y\265\fNHH@\347\316\235\305\264H\277\22\373@Qd\1"
#"\216\343\20\e\e\213\217>\372\250\304\27"
#"\251\264\351\250p\303\371\372\372\"=="
#"\335h\eB\b\261\25\236\347\221\224\224"
#"\204\312\225+\303\331\331Y\\\256\364\262"
#"\221\362+B\b!\244t\t\361\303\247"
#"\237~\212*U\252\340\265\327^\263\332"
#"\271sss\341\343\343\203\354\354l\253"
#"\235\223\224\\\271\17\324\245\17\244\336\336"
#"\336pss\303\235;wJt\f\371\374\206\0\220\227\227\a\235Ng\262\r!"
#"\204X\ec\f)))\370\345\227_\320\247O\37\305\374H)\37#\204\20B"
#"H\351\20\312\332\214\214\f899A"
#"\253\325Z\355\334\353\326\255C\357\336\275"
#"\341\356\356..\243\227\364\366\247\334\a"
#"\352\322\aR\215F\203\256]\273b"
#"\363\346\315\317t\254c\307\216\241N\235:\b\n\n\262"
#"D\22\t!\344\231p\34\207\375\373\367\243c\307\216E\26"
) 500
(
#"\304\24\244\23B\b!\326\301\30\203\253"
#"\253+\322\322\322\254z^\225J\5\275"
#"^o2\365\e\5\353\366\245\334\a\352\2\341\302\f\f\fD\215\0325\360\333o"
#"\277=\365\261\276\372\352+4h\320\340"
#"\231\2u\306\30\335,v\250\270\177\23"
#"[\375\355\350\232!J\266n\335\212\220"
#"\220\20\274\374\362\313\24\210\23bG\236"
#"\365\301\370Y\6\275\265\3461\t)\253"
#"\236\365\376\275u\353\26\16\35:\204\310"
#"\310H\253\246E)\316\240\26u\366\247"
#"\334\a\352\271\271\271\3424j\2141xzz\302\333\333\e\327\257_7\273Oa"
#"7\2c\f\356\356\356\310\313\313S\334"
#"\336\334\276\302\362\207\17\37\0020\24\336"
#"t\263\330\257G\217\36\25\272\276\244\17_E]\27\346\276\2@VV\26rr"
#"r\236\352\274\244l(\354o\236\233\233"
#"\213\277\377\376\e-[\266\244<\205\20"
#";\2434\323\314\203\a\17\214\266Qz"
#"\230\26\276\312\363\374\222>x+\345\35\322c\246\247\247#??_q\eB\312"
#"2\371\275\221\232\232\252\270\256\244\367\227"
#"t\35\307qx\362\344\t\256]\273\206"
#"z\365\352\25\271\217@\247\323\31\215\203"
#"U\3309\225\216w\354\3301\370\372\372"
#"\242q\343\306F\333\3203\244\375)\367"
#"\201\372\371\363\347\361\356\273\357\342\341\303"
#"\207\342\315\326\243G\17\344\347\347\343\304"
#"\211\23%.\364\224.r\3512\371\276"
#"\322\345_~\371%\246L\231b\264\234"
#"\330\27\341\357\27\e\e\213M\2336\0010\237)\26\365 S\234>\301\362Q8"
#"\345_3220l\3300\34;v\314\344Xt\r\225\37\346\256\37\306\30\326"
#"\254Y\203\276}\373\212\3\310\321uA"
#"\210\375P\272w\307\216\35\213\23'N"
#"\230\335FZ\16\310\313\17\351\367\305\251"
#"\35Szf\21\366\273u\353\26\6\17\36\214\2337o\232\354"
#"G\371\b)\353\344\367\322\212\25+\20\27\27'\256+\252\202"
) 500
(
#"\245\250\345\302\361\377\374\363O\264j\325"
#"J\361\274\346\366\217\212\212\302\247\237~j\262N^\311g\356\2310''\aj"
#"\265Zq\232Vz\tg_\312}\240\336\242E\vDDD`\314\2301\310\312"
#"\312\2`\270P\a\r\32\204M\2336"
#"\231\\\340\305\t\202\234\235\235\221\231\231"
#"i\264\254\250@\354\223O>\301\276}"
#"\373\260q\343\306B\267'\266'd\330"
#"\347\317\237\307\352\325\253\25\37\242\2123"
#"'\265R@\257\264}a\313F\215\32"
#"\205\377\374\347?\350\324\251\223\321\271)"
#"\263-\337\204\353\343\356\335\273P\253\325"
#"\250\\\2712]\17\204\3301i\355\370"
#"\256]\273\20\37\37\217\377\375\357\177f"
#"\267\25(\335\327\346j\307\314\225G\362"
#"\3558\216\303\375\373\367\21\31\31\211\331"
#"\263g\243v\355\332\212\373\20R^p"
#"\34\207i\323\246\301\305\305\5\263f\315"
#"\22\227\311\311[\271\230\v\200\245\317\210"
#"\223&M\302\342\305\213\v=\277t\377"
#"\367\337\177\37\265k\327\306\330\261c\25"
#"\357us\371\203\364{\27\27\27dee)\6\365\364\22\316\276\224\373@\2351"
#"\206W^y\5\343\307\217\307\233o\276\t\340\337\213y\334\270qf\3gs\205"
#"\324\331\263gq\343\306\r\f\36<\270"
#"\320sJm\331\262\5\277\374\362\v\326"
#"\254Y\363\324\237\203\224\36soA\227"
#",Y\202\353\327\257c\351\322\245\342v\362LS)\363T\312D\vkv\244\224"
#"\271s\34\207\1\3\6`\330\260a\350"
#"\323\247\217\321\371\251\333D\371b\2566"
#"\354\341\303\207\330\271s'\372\367\357\217"
#"*U\252\210\353\351\332 \304\376\310\363"
#"\376\365\353\327c\327\256]8p\340\200"
#"\342\266r\362\346\360\362m\v{y+"
#"\257u\313\313\313\303{\357\275\207\230\230"
#"\30\204\206\206>\375\207\"\304"
#"\301\311\237\327\242\242\242\340\345\345\205i\323\246)"
#"nkn.\362\302Z\305xzz\26\353\334\200"
) 500
(
#"\241\265M\313\226-1f\314\30q\271"
#"\374\245@Qe\374\243G\217\360\327_"
#"\177\241K\227.\305J;\261\255r\37"
#"\250\v\27\344K/\275\204y\363\346\241"
#"G\217\36x\362\344\t\30ch\332\264)\0324h\200\315\2337\e\3659\27("
#"= \247\246\246\"33\23!!!\305:\377\27_|\201\243G\217b\351\322"
#"\245E\326\254\22\333(\354\r\343G\37}\204\2337ob\375\372\365b\200l."
#"\323\2247S\324j\265&\353\244\333KI\327\375?{\347\31\36U\3216\340{"
#"\316n\n\241\206\320\t\22@z\221W,\210R\24|\5\v \322\204\200\364P"
#"\244\363\211\205\"\"\202\35P \24\251\1D\20\21\3\212\rA@D\21;M"
#"P\244H\v%\275\354\236\371~\234\222\335\315&\4_J\22\346\276.%9g"
#"\346\224\234i\317<-%%\205\216\35;2r\344HZ\266l\231\345Y\0257"
#"\26\331\355\210_\270p\1\267\333M\2312e\324x\242P\344A\262\363\17\a("
#"\\\2700s\347\316e\376\374\371l\333"
#"\266\355\222u}\347\233\340\340`\2\3"
#"\3\275\316\347\244Q\267\256\231\220\220@"
#"\273v\355\230;w.\267\336z\253\337\373\251\361Dq\243\340oM5r\344H"
#"BCC\2310a\2py\26\267RJ\34\16\207]&))\211\322\245K\347"
#"xo)%.\227\213!C\206p\327]w\21\31\31i\37\317\215\365\244\257\222"
#"())\211\270\2708\312\225+\227\343{*\362\6\316\353\375\0y\211:u\352"
#"0y\362d\236x\342\t\346\314\231C\2312eh\334\2701\207\16\35b\363\346"
#"\315<\360\300\3^\345\277\374\362K\257"
#"t\nB\b~\371\345\27\216\349\302\271s\347(Y\262d\226{xv\252u"
#"\353\326\21\e\ekk\355\325\216V\336%;"
#"\237\37\247\323\311\233o\276\311\320\241CY\264h"
) 500
(
#"\21\275z\365\312\361\333edd\360\321"
#"G\37!\204\340\364\351\323\2349s\206"
#"\265k\327\2\306\302\252M\2336~\353"
#"[\307\342\343\343\0310`\0\203\6\r"
#"\342\256\273\356\312RF\231\274\337\330x"
#"\266\201\0313f\360\366\333o_\357G"
#"R(\24\331\220\235\333\224u\274H\221"
#"\"\254^\275\232\316\235;#\204\340\356"
#"\273\357\316\266.\30\256.\337|\363\r"
#"\0\177\376\371'\373\367\357'44\24"
#"!\4e\313\226\365\252\357\217\277\377\376"
#"\233'\237|\222\331\263gS\261bE"
#"\300\277\213\226\232c\0247:\377\367\177"
#"\377\307\v/\274\300\224)Sx\356\271"
#"\347\354\343\236\233\345\236\375\344\375\367\337"
#"G\3234\244\224\234?\177\236\17>\370"
#"\0000\204\376\267\337~\373\222\261\212\236"
#"z\352)\352\325\253g\v\351\326\361\334"
#"l\232\371^7$$\204\364\364\364,\3266j\375\2307\21Rm\215fa\363"
#"\346\315\314\2325\213\245K\227\22\22\22"
#"\302\257\277\376\312\327_\177M\337\276}"
#"\t\f\f\344\227_~\341\235w\336!))\t\227\313ew>M\323\210\217\217"
#"g\327\256]t\355\332\225\364\364t\336"
#"x\343\r\373\272\236\235`\361\342\305\354"
#"\330\261\203\271s\347f\351\30\252\263\344"
#"OF\215\32E\215\0325\308p\240\337\363\317>\373,\27/^$%%\5"
#"\200\304\304D\266n\335\312C\17=d"
#"\267\237\"E\212\320\261cG\356\271\347"
#"\36 k[\350\336\275;\235:u\262"
#"\315\335\375\241\332\217\342\363\317?')"
#")\211v\355\332y\35WmC\241\310;\254\\\271\222\322\245K\323\252U\253K"
#"\366\315\307\37\177\234.]\272d;\366"
#"\217\0301\202\364\364tRSSm\213\232S\247NQ\273vm\300\310\231\\\270"
#"paF\215\32\305M7\335\4x\217\a\247N\235b\340\300"
#"\201\214\37?\336K\223\256P(\f\374\365\321W^y\205\224\224"
) 500
(
#"\24&L\230\220m\377}\352\251\247\210"
#"\213\213C\327u4M\343\203\17>\260"
#"\373\361\206\r\e\270\347\236{x\344\221"
#"G\350\325\253\227\337\372\303\207\17\247f"
#"\315\232\266\271{N\317\223\e>\374\360"
#"C\212\27/N\213\26-.\273\256\342"
#"\332s\303\v\352\3315\364\355\333\267\363"
#"\312+\257\360\341\207\37\2p\340\300\1bccY\277~=5k\326\244q\343"
#"\306\364\356\335;K\275!C\2060z\364h\22\22\22\330\272u+\277\377\376;"
#"\263g\317\366\272\307\312\225+\331\272u"
#"+s\346\314\271z/\246\270.<\365\324ST\254X\221\341\303\207g9^\252"
#"T)n\273\3556\356\273\357>\244\224$&&\322\256];\276\374\362K\273\334"
#"\242E\213\370\371\347\237\371\361\307\37\371"
#"\370\343\217\t\16\16\266\317u\356\334\231"
#"\250\250\250,\346\356\212\e\e\3371l"
#"\303\206\r\266{\204B\241\270\376d\267"
#"\316x\367\335w)U\252\24\255Z\265\272\3445\222\222\222\0300`\0={\366"
#"\364\262\356\233<y2\2336m\242o"
#"\337\276\334v\333mv\272\245\277\377\376"
#"\233-[\266\320\243G\17\0\334n7K\226,a\313\226-\34=z\324k\336"
#"IOO\247C\207\16L\2324\211F"
#"\215\32\375\257\257\253P\334P\274\371\346"
#"\233\234>}\232\251S\247z\35\237?\177>+V\254`\340\300\201t\351\322\5"
#"0\306\202[o\275\225={\366\0p"
#"\373\355\267\263e\313\26\246L\231\302\216"
#"\35;X\264h\21\21\21\21\3665\206\f\31B\223&M\350\326\255\333\25\333d"
#"\37>|83f\314\270\"\327R\\\3\244B\352\272.u]\317r\374\267\337"
#"~\223\17=\364\220LJJ\222iiir\314\2301r\317\236=\362\354\331\263"
#"Y\352K)\345\371\363\347e\235:u\274\256\365\356\273"
#"\357\312\201\3\a\312c\307\216I)\245\374\350\243\217d"
) 500
(
#"\217\36=djj\352U|#\305\265\304\372\336\272\256K\267\333-\207\17\37."
#"\347\317\237/\245\224\362\370\361\343\362\231"
#"g\236\221\323\247O\317R\357\360\341\303"
#"\262i\323\246Y\216\307\307\307\313}\373"
#"\366\311\326\255[\313\370\370x\231\222\222"
#"\";u\352$\267o\337\356u?\205\302\27\267\333-\337x\343\r\271w\357^"
#"\325N\24\212<\316\312\225+\345g\237}\346u\314_\277\265\326(\27/^\224"
#"\35;v\224\333\266m\223RJ9~"
#"\374x\371\372\353\257\313\375\373\367g\251"
#"\263g\317\369k\326\254,\327=u\352\224\334\271s\247l\327\256\235LNN"
#"\226\361\361\361\262u\353\326\362\370\361\343"
#"j\314P(.\3\317\376\362\352\253\257\312q\343\306I)\245<q\342\204\234="
#"{\266\34;v\254\334\277\177\177\226~U\257^=)\245\224O>\371\244\\\271"
#"r\245\224\322\230\273\367\355\333'\333\266"
#"m+\377\370\343\17\251\353\272\0344h"
#"\220\\\266lY\216\367\3757\214\0325"
#"\352\177\252\257\270\266\334\360>\352\322O"
#"\312\4\313W\243N\235:L\2336\215"
#"g\237}\26\267\333\315\340\301\203Y\274"
#"x1/\277\374\262\3275<\375\312\203"
#"\202\202\274\256\327\245K\27\2\3\3\351"
#"\323\247\17\217>\372(\a\16\34`\311\222%\312\37\244\200 }|{\204\20L"
#"\237>\235q\343\3061k\326,>\372"
#"\350#\36}\364Q\242\242\242\262\255\347"
#"{\274h\321\242\324\254Y\223\230\230\30"
#";\302\350\320\241Ci\322\244\211j3\212\34Y\261b\5\267\334r\v\265j\325"
#"\272\336\217\242P(\310~\215\221\233\262"
#"\26\326\\Q\254X1V\257^\315\320\241C\331\276};\241\241\241\214\0301\""
#"Ws\202U\246L\2312\224)S\206\211\23'\362\334s\317\221\226\226\306"
#"\274y\363(_\276\274\232[\24\212\177\311\2301cx\341\205\27\2303g\16"
) 500
(
#"\353\327\257\347?\377\371\17\323\246M\313"
#"\261\277\307\305\305Q\274xq\300\350\237"
#"5k\326\344\303\17?$**\212\360"
#"\360p\257\300q\236\374/\362\303_\177"
#"\375E\325\252U/\273\236\342\372\241\242"
#"\276_\"\230K\345\312\225\311\310\310@"
#"\3234j\324\250A\375\372\365\331\265k"
#"W\266\327\262\4/O\1\254}\373\366"
#"\214\0313\206\355\333\267s\353\255\267\252"
#"\200q\5\b\177Q\333\1\0325j\304"
#"\316\235;\211\212\212\312\"\244\373+\357{=)%aaa\24-Z\224\v\27"
#".\330ylU\233Qd\307\a\37|"
#"@\371\362\345\271\357\276\373\256\367\243("
#"\24\n\223\354\306\372\234\306\177\177e="
#"\317\325\251S\207\337~\373\215[n\271"
#"%\313\365\375\255A\374\375^\245J\25RRR\b\b\b\240b\305\212\271\212X"
#"\255P(2\361\3553\23&L\340\245"
#"\227^\342\336{\357\345\245\227^\362[\306\363g)%\251\251\251v9\353xD"
#"D\4\207\17\37\246^\275z~\357\233"
#"[!\335\337=g\316\234\311\340\301\203"
#"U?\317G\334\360\202\272'V\303\265"
#":\200\256\353t\353\326\215\201\3\a\322\263gO:v\354Hdd$?\375\364"
#"\23\273w\357\316R?88\330\16\344\342\353\223\276z\365j\26,X\300_\177"
#"\375\305\264i\323\256\315\v)\256)\326"
#"@k\245\323Y\260`\1;w\356\264\363\254[\370\e<}\177\27\302\310\223\336"
#"\266m[\306\216\35K\277~\375\210\217"
#"\217\277\372/\241\310Wx\266\237O?\375T\t\351\nE\36\3047\272\262\3471"
#"_\374\315\t\236e\307\217\37\217\333\355"
#"f\366\354\331\274\363\316;l\332\264\311\357f\200?%\204EZZ\32=z\364"
#"`\350\320\241D_\272\327\220\0\0 \0IDATFF\322\255[\267\177"
#"\377r\n\305\r\214g\377|\365\325W\0315j\24\16\207\203g\236y\306\253"
) 500
(
#"\234\347\30P\270pa6o\336lgb\360\\\367\r\36<\230j\325\252\361\332"
#"k\257\361\302\v/\360\323O?\331\365"
#"\254\377r\253\260\361\227\251\241H\221\"$&&*\245O>B\t\352&\236\215"
#"\337\3524M\2336e\346\314\231\324\257"
#"_\237F\215\32\361\342\213/\322\255["
#"7*W\256\314\251S\247p\273\335^\345[\267n\315\347\237\177\356\325\1bc"
#"c\331\264i\0233g\316$((\210V\255Z\261s\347N\322\322\322\256\361\e"
#"*\256&V\e\310\310\310`\367\356\335"
#"\334y\347\235\4\5\5\331y\326\337y"
#"\347\35\273\234\257\251\274\347\2K\bArr2\235;wf\304\210\21\334s\317"
#"=T\251R\205\5\v\26\344*\340\220\342\306B\bAZZ\0323g\316d\342"
#"\304\211YLl\25\nE\336\301s\215!\245$==\235\264\2644\222\223\223\275"
#"\312\370\316\t\26\311\311\311l\337\276\235"
#"6m\332P\270pa\242\243\243\231?\177>\333\267o\317q\3\300\363z\27."
#"\\\240}\373\366DGGS\247N\35n\273\3556\366\357\337OBB\202r\255"
#"R(.\23\253\277._\276\234\303\207\0173r\344HF\217\36MXXX\226"
#"<\353V\377\n\b\b\340\310\221#\204\204\204P\272ti\204\20ddd\330y"
#"\322;w\356LXX\30\357\274\363\16\3\6\f 99\331^/\3466%\233"
#"'V\371\264\2644\2\2\2\256\354\37"
#"@q\325Q\202\272\211g\343\27\302\310\207^\266lY*W\256l\227\251[\267"
#".\243G\217\346\275\367\336\343\233o\276"
#"\261s\250{\2467)_\276\274]~\303\206\r\274\367\336{,^\274\330\216\336"
#"\335\270qc\0326l\310\202\5\v\256"
#"\325\253)\256\"\276V\30\353\327\257'==\235\316\235;#\245\304"
#"\341p0}\372t\366\354\331\303\362\345\313\263\270V\370.\214\22\22"
) 500
(
#"\22\350\333\267/\3\a\16\244I\223&\366\265\313\227/ODD\4?\375\364S"
#"\266\246\215\212\e\223y\363\346\321\244I"
#"\23\312\225+\347u\\-\270\25\212\274"
#"\201?m\367\37\177\374\301\252U\253X"
#"\276|9O<\361\204W\331\354\372\356\363\317?O\227.]\250V\255\32\0E"
#"\213\26e\315\2325L\237>\235\355\333"
#"\267\373\275\227u?\200#G\216\320\243G\217,y\3227o\336L\263f\315\376"
#"\225\20\240P\334\310H)III\341\320\241C4l\330\320\356?c\306\214\301"
#"\351t2e\312\224,.\222\1\1\1"
#"\204\204\204\20\37\37o\237{\352\251\247"
#"\250_\277\276\235\245\1 44\224[n\271\205\35;v\330\367\362\274Nn\261"
#"\3561w\356\\\332\267oO\321\242E"
#"\377\367\27W\\3\224\240\356\201\247\360"
#"\324\247O\37&O\236\214\246y\377\211"
#"\0325jD\377\376\375y\347\235w\210\215\215\365:\347t:m-\373\212\25+"
#"x\377\375\367Y\272ti\226N\225\220"
#"\220@\241B\205\256\362\333(\256\5\276"
#"q\t,\237r\353\234\305[o\275\305"
#"\256]\273\2307o\236\327\240\355\273 "
#"\213\212\212\242K\227.\334{\357\275Y\3565g\316\34\36}\364Q\25\210Pa"
#"s\374\370q\34\16\207\275\350V(\24y\213\354\2\207\n!p:\235\350\272N"
#"\273v\355\274\216[\365|\t\b\b )))\313\361\367\336{\217Y\263f\261"
#"n\335\272l\27\361\247N\235b\304\210\21L\2324\211*U\252x\335/##"
#"\303\313WV\241P\344\16!\4'N\234`\315\2325DEEy\365\237\t\23"
#"&\340t:y\341\205\27\200\314\261\340"
#"\360\341\303\374\372\353\257<\374\360\303\200"
#"\221.\255z\365\352Y\342\31\t!\2307o\36\35:t\310\262\346\373"
#"7\375\324\351t\342r\271\376\315k*\256#JP\367\300\232\334V\254X"
) 500
(
#"\301\3\17<@xx\270_\355\345\235"
#"w\336\311\247\237~\312\350\321\243\211\211"
#"\211\261\217\353\272N@@\0+V\254`\363\346\315^Zs\317\3117**\212"
#"\257\276\372\212\277\376\372\353\32\274\225\342"
#"jc-\214.\\\270\300\262e\313x"
#"\376\371\347\263\370\241[\321\340\367\355\333"
#"\307\254Y\263\354\343v\31\240K\247\316"
#"\364\353\23E\273\366m\315\366\242\333'u$!!E\30\320\257?\263g\277m"
#"\237\227Ve\300\215\16:Ht@\307}\r\336]qm\3615a]\271r%"
#"\35:t\360\262\344Q(\24y\207\354L\322u]'==\235\214\214\f:v"
#"\354\230m=\213\357\277\377\236S\247N"
#"\321\241C\a\257\343\326\3742o\336<"
#"V\257^m\373\254{\222\226\226F\337\276}\0317n\34\267\336zk\226{\25"
#"/^\234\250\250(^{\355\265\177\365"
#"\216\n\305\215\314\344\311\223\275\326\373\236"
#"\363\364\330\261c)Z\264(\317<\363"
#"\214\335/\377\376\373ov\357\336M\353"
#"\326\255\0312d\bw\334q\a\203\a\17\316v\223\315rm\373_\360\364qW"
#"\344/\224\240\356\201\325\211~\375\365W"
#"\312\224)C\361\342\305\375\232*\203a"
#"\6\277k\327.\306\214\31\303\272u\353HII\241\\\271r\254[\267\216M\233"
#"6\361\326[o\371\365\27\25BP\243F\r\216\35;fk^\25\371\37!\4"
#"III\354\333\267\217\6\r\32\370\335"
#"\371\24B\360\312+\257\360\373\357\277\23"
#"\23\23C\221\"E\bpj\244\244\244"
#"\321\255S\a\206\216\31\316\275-\233\1"
#"\32\231C\251\16\0024\4\301\205\202\210"
#"\250Q\203\357\277\377\36$H4\4`\374O\307\201\6\32\b4@\303a\t\372"
#"\212|\217\257\213\5\300\353\257\277N"
#"\377\376\375)W\256\234\232|\25\212<\216\357\246\177\265j"
#"\325\350\337\277?\347\316\235\263\375\303s\252w\372\364i."
) 500
(
#"\\\270@DD\204_\37\366\"E\212\20\35\35\315\202\5\v\330\265k\27!!"
#"!\4\5\5\21\37\37o\373\2447j\324(\313u\301\320\324\327\253W\217\235;"
#"w^\331\227V(n\0v\354\330\301\355\267\337\16\370w]\319r$aa"
#"aL\2348\21)%\232\246\21\26\26"
#"\306\363\317?O\343\306\215\351\336\275\273"
#"]\326\237\246\374\356\273\357f\363\346\315"
#"~\357\235SpbO\254t\216\365\353"
#"\327\277\254wS\\\177\224\240\356\203\224"
#"\222\300\300@\333\204\35\374GN\24BP\245J\25\276\373\356;\\.\27\255["
#"\267\246u\353\326l\331\262\205%K\226"
#"\20\34\34\234\245\236\347D\355p8(\\\270\3605z+\305\325\306\312qk\305"
#"\"\260\216\371\376\354t:y\373\355\267"
#"\371\371\347\237Y\276|9\351\31\222\347"
#"\306\215\243\177\324\20\356\271\363.\4\2"
#"\1\b\t\206\300\256\231uu\4:zz\n\301\201\226\333D\6\370\b\343J\\"
#"+X\370\23\320\1\16\348@\331\262"
#"e\275r\260*\24\212\274\213\257f\335"
#"\341p\20\30\30H\355\332\265\t\v\v"
#"\313\262F\360\255w\370\360a\2326m\352u\314\302*_\264hQV\257^\315"
#"\302\205\v\331\266m\eg\317\236e\354"
#"\330\261,[\266\214\360\360p\277\317c"
#"\t\26\16\207C\371\256*\24\227\201\347"
#"\272\356R\301\34\307\214\31C\211\22%"
#"\2303g\16\201\201\201\304\306\306r\327]wy\371\244\373^\327\"%%\305v"
#"\227\315)\273Cvn3\226\37\275\246i*\230\\>\304y\275\37 \257\340\31"
#"\205;\273s\376\216W\252T\211\"E\212\360\3143\3170n\3348\326\256]\313"
#"\362\345\313\275\26\330\272\256g\251_\264"
#"hQ6l\330@\251R\245\256\316\v)\256)B\b\316\235;\307\351\323"
#"\247y\367\335w\375\372\1y\266\205f\315\2321|\370pRRRx\355"
) 500
(
#"\215Wi|\307\235H\t\302\324\216Ks\17M\240\203\320@\n$n\244\320\220"
#"\302<'\215\1W\"A\30\332ua\327\26\231\32wE\276\305\337\270\263{\367"
#"n\276\375\366[\236|\362I\277uT\374\2\205\"o\340\333\27\375\5\17-_"
#"\276<+V\254\310\222\272\315\372]\327uRRRX\263f\r\243F\215b\331"
#"\262eh\232\226e#X\3234{~\371\357\177\377\313\363\317?O\241B\205x"
#"\370\341\207\371\354\263\317\320u=G\177"
#"\371\37~\370\201\3\a\16\330\363\227\32G\24\212\334Q\251R%/7X_\254"
#">W\255Z5\336|\363M\312\225+G\363\346\3159w\356\34\251\251\251\4\5"
#"\5e\e`\330\223\234d\221\234\374\327\205\20\4\6\6\332q(T\337\316_("
#"A\335\304sb\314m\320\6\253\354\27_|A\357\336\275IHH\240d\311\222"
#"\204\204\204\330e\374M\276\0.\227\213\322\245Kg\331\345V\344_\n\25*D"
#"@@\0\341\341\341\266E\206\365\315}\333App0AAA\204\205\205q\354"
#"\257cp\307\355\206@\216\241;\327\204"
#")\254K\r\4\350\302\20\273\205\4)t\244\320\1K8\367\34\340%\2322\224"
#")\220H)\371\351\247\237\370\376\373\357"
#"\351\333\267o\266\345r3\341+\24\212"
#"\253\217\357z\302\267o\376\367\277\377\245"
#"|\371\362\266\340\355+D[\277\307\307"
#"\307\243\353:e\312\224\241D\211\229"
#"\232\270j\232\206\333\355\306\345r\341r"
#"\271\b\t\t\241R\245J^V\202\276\327\a8v\354\30!!!T\254X\21"
#"]WnS\nEnIKK\343\246\233nB\327u\273/\373\272\314j\232F"
#"PP\20\0/\276\370\"111T\254X\221\371\363\347s\356\3349\322\322\322"
#"x\354\261\307l\367\224\3546\356|\311)\213"
#"\220u,>>\236\3\a\16\320\266m[\265."
) 500
(
#"\310\207(A\335\3_a=7\304\306"
#"\306\262~\375z\346\317\237\317\244I\223"
#"\30?~<\237~\372i\216u\244\224L\2312\205F\215\32Q\253V\255+\361"
#"\350\212<@\\\\\34\241\241\2414i\322$K\266\0O\334n7\275z\365b"
#"\306\214\31\374\364\323/\354\331\263\207\244"
#"\264\4\236\210\354\18\320\204\3006b\27:H\315\34X\5R\n\2\34N\204"
#"\324\320\205\314\24\3221\27\201\322\360i"
#"\227\230\346\363j<.0\b!8r\344\be\312\224\261'\374\354P\223\261B"
#"\2217\360\247Q\267\216\205\205\205\321\242"
#"E\213,\347\375\375\236\230\230\310\373\357"
#"\277\317\253\257\276\232c\377NMM\245"
#"g\317\236\314\2301\203#G\216\360\303\17?\320\242E\v/\377t\177\270\\."
#"~\373\3557\333\274^\241P\344\216\263"
#"g\317\322\264i\323K\316\271#G\216"
#"d\310\220!t\350\320\201\363\347\317\263"
#"}\373v\242\242\242HKKC\327u\266m\333\306\222%K\3204\215\6\r\32"
#"\320\256];4M\343\374\371\363\331\n"
#"\353\276B\272?\301}\342\304\211\34:t\210\0325jP\266l\331\253\363GP"
#"\\5\224\352\315\304s\a,99\331"
#"\257\37\207\257\360\276a\303\6V\257^"
#"\315\322\245K\t\n\n\342\245\227^\242"
#"\\\271r\334s\317=v\n\25\177\276\"B\b\322\322\322HNN\276z/\244"
#"\270\346\244\244\244\220\230\230\230\243\220\36"
#"\37\37Odd$\275{\367\346\356\273\357&99\236)S_\340\233\355;Y"
#"\276r\265a\306\16\20\177\204-[\267p4E\303M\272-o\227.]\230\375"
#"\a\367\361\341\207k\371p\355\373\254]"
#"\273\216\265k\327\262c\337)\\H\300\221y3\241\264\"\5\5+\327qBB"
#"\2\217>\372\250\337\363\236\\\316f\243B\241\270:"
#"x\372\234g\247\355\362\3747\273E8@HH\bG"
) 500
(
#"\217\36\365[\316\342\257\277\376\242s\347"
#"\316\274\361\306\eT\250P\201\214\214\f"
#"f\317\236\315\324\251S\355<\353\331\241i\32\27/^\364z\36\205Bqi\222"
#"\222\222\262\365\17\267\309r$5k"
#"\326\244c\307\216\b!x\362\311'\311\310\310 ::\232\362\345\313S\261bE"
#"\272t\351\302\314\2313\231>}:M\2324a\352\324\251\314\2349\223\215\e7"
#"\342r\271\330\275{7\273v\355\362{"
#"}\177>\362\326\317\361\361\361\224(Q"
#"\302+\206\222\"\377\240\4u\262\356r?\360\300\3\34<x\220\223'Oz\225"
#"\363\354\0\313\227/\267\363\244{\262t"
#"\351Rn\272\351&\332\264i\203\333\355"
#"\366;\361~\375\365\327\324\257_\237\n"
#"\25*\\\2457R\\K\254\201\271X\261b\264h\321\202\215\e7f;X\17"
#"\36<\230.]\272p\337}\367\221\230"
#"\230h\372\233kD\317\211\346\333\35\333"
#"Y\260`\1\22\235\3\v\a\320\371\301"
#"\307\350\361\302N\244\b\4 1)\205\317V/\343\360\241c\314~7\226\365\e"
#"6\22\e\eKll,;\17\236\263\3\311\31\212t\3034^Q0\370\342\213"
#"/\370\347\237\177\274\242\303z\222\235\337"
#"\251B\241\270~x.\236\375\365\307K\231\264zR\263fMBCC\371\341\207"
#"\37\374\226\363\314\223\36\36\36NFF"
#"\206\275A\260f\315\32\336~\373m\326"
#"\255[\347\3679SRR\370\364\323O"
#"\351\326\255\233\262\306Q(.\223\356\335"
#"\273\263j\325*\300\377\274k\345I\378p\240W\231\t\23&\340p8\2304"
#"i\222]\326\352\3175k\326\344\265\327"
#"^c\342\304\211\324\252U\213\276}\373"
#"\362\303\17?\360\343\217?\262l\3312"
#"\226/_\316\374\371\363IMM\365\e\204\322b\333\266m\234?\177\236\206"
#"\r\er\347\235w^\331\27W\\\23\204T[\247@V\223\263\246M\2332"
) 500
(
#"c\306\fn\275\365\326,\347V\254X\301W_}Ettt\26\355\251\365\347"
#"\354\321\243\aG\217\36e\313\226-Y"
#"\3561f\314\30j\327\256\235\243\237\251"
#"\"\177\22\e\e\313\342\305\213Y\263f"
#"M\226s\235:ub\340\300\201\264l\331\22\2003g\3160g\316\34\306\217\37"
#"\217\24F\214\367Q\3777\216\333K\34"
#"g\307\26\27e\332\224`\345\254\177X\370\343Z\32\27\201Sg/R\253t\t"
#"\272\f\372?\206\275=\215:\246O\273"
#"4\233\246e\352\256\314\336\363?\236c"
#"Nll\254\355\277\246P(\362\17\326"
#"0,\321\215\177\245\0!\354\241Y\242"
#"\333nL\232\24V\341\314q\234\314\215"
#"W\211\306\330\377\eM\205J\341\214\30"
#"6\322\353>\351\351\351t\350\320\201I\223&\331&\356?\376\370#;v\354`"
#"\360\340\301\0$''\323\277\177\177z"
#"\366\354\311\3\17<\340U\377\314\2313"
#"4k\326\214\275{\367f>\273\22\330"
#"\25\212\\q\370\360a:v\354\350\265\211f\311\2O>\371$w\335u\27\221"
#"\221\221^\347<\373\326\233o\276\311\351"
#"\323\247\231:u\252\337\363aaa\234={\326>\266}\373v\\.\27\31\31"
#"\31\354\335\273\227\270\2708\322\323\323\351"
#"\330\261#\267\336z\253\327}\306\214\31"
#"\303\271s\347\2300a\2U\252T\271:\177\0\305UE\251\334\360?!\255Y"
#"\263\206q\343\306q\356\3349/\223\226O>\371\204\215\e72}\372t[H"
#"\367\r\376\"\204`\361\342\305\204\207\207"
#"s\377\375\367\333;^\326u\234N\25"
#"\32\240 \341\371\375\357\273\357>\312\226"
#"-\313\332\265k\355c\351\351\351t\353\326\215\241C\207\332B\272'B\b4$"
#"Rj\2744\355%\366\237\326\211\376&\201\207;u\245N\341_Y\377}"
#"\"\347\23\342\351\27\325\207\35\353&s"
#"\374\370\t\22/\n#\240\2340\322\266"
) 500
(
#"\331\371\324\245\333L\355\246R\265\345g"
#"\254\261B\327u\16\36<H\355\332\265"
#"\275\316\253\375U\205\"\357c$\361\220\b\251\201n\254\r2W\32:\2#X"
#"\250\2064\205s\27R\270@\32\233\255"
#":\322\24\322\215k=\363\3548\276\330"
#"\370\5\177\374q\300\36\340\23\23\23i"
#"\337\276=o\277\375v\216~\350\205\n"
#"\25b\366\354\331\314\237??\213\371l"
#"BB\202\355\273\232\235\231\276B\241\360"
#"\306\232\207\303\303\303\351\335\2737\323\246"
#"M\2633\376H)\0316l\30\215\0325\362+\244{\316\341#G\216\244D\211"
#"\22\266f\335\352{)))t\350\320"
#"\201\255[\267z\325\271\373\356\273i\336"
#"\2749\255Z\265\242k\327\256\364\355\333"
#"\227\1\3\6\260\177\377~\206\r\e\306\310\221#Y\264h\21\t\t\t8\34\16"
#"J\226,I\225*Ur\324\274+\362.7\274\240\236\335\204T\266lYV\257"
#"^M\257^\275\330\277\177?`\230\237.[\266\214e\313\226yEv\367W\337"
#"\351t\22\23\23\203\256\353\f\37>\234"
#"\270\2708\0\26.\\\210\303\341P\332"
#"\364\2\204\257\37\341\3157\337\314\301\203"
#"\aq\273\335\244\244\244\320\277\177\177\36"
#"\177\374q\2325k\226\375\0)\215\b\356\301\216Tn\tH\241t\331\2778\375"
#"\363_D\336W\225\235\253\337\247\357\230"
#"'Y2/\232\362\341\241\244\237<\316"
#"\326\2177\262a\343\307l\334\370\t\237"
#"\354\334\313\305t\323\273]8@\350\270"
#"\204e\376\256\310\353\370k\23\326\261U"
#"\253VQ\257^=\352\324\251\223mY\205B\221W13t\b@\23H@J"
#"C\306\266{\262\4\244f\b\343\272\3"
#"\201\323\30\271\205\231\327Cj\206@\217"
#"N\211\320P*\327\250\302O?\375\206\24.\216\35;F\267n\335\2301c"
#"\6\21\21\219>\211\20\202\342\305\213"
#"\263f\315\32\246N\235j\v\353\277\377\376"
) 500
(
#";#F\214\340\253\257\276\262\313\251\30"
#"\27\n\305\245\261\326~\201\201\201\f\35"
#":\224\35;v\260m\3336\0\236~"
#"\372ij\325\252E\357\336\275\375\326\361"
#"\355cc\307\216\305\345r\361\312+\257\0\360\317?\3770h\320 F\217\36M"
#"\335\272u\275\352z\326+]\2724\225*U\"\"\"\202\256]\2732s\346L"
#"\336|\363M\356\274\363N&M\232DPP\20/\277\374r\226{+\362\17\312"
#"\364\335\3\177B\373\326\255[y\363\315"
#"7\351\337\277?+W\256d\331\262e"
#"\227\334m\366\f\30\367\361\307\37\23\27"
#"\27\3077\337|\303\253\257\276J\315\232"
#"59u\352\224\352(\5\234Z\265j\261q\343F\246L\231B\313\226-\351\326"
#"\255\e\340\275\233z\366\354Y\242\347\314"
#"b\374\204q\350\322\211\20 \342v\360"
#"X\327\211t\\\361\31\247V\276N\300\376Oxi\366fVl\375\234f\3674"
#"'n\367<\272t\232\212\263\321=\224"
#"\n\326\20\350\4\325\276\237q#\236\240"
#"J\341L\277t\303\374]\267S\276)"
#"\362\a\236\355\343\243\217>\"00\220\326\255[_\357\307R(\24\377#:\31"
#"h8\354\224\233\266w\222\204\f\221A\0\1>f\357\272wY\17w\246\260\320"
#"R\354;\260\237\250\250\376<\367\334s"
#"\334z\353\255Y\326\24\276\246\357\276t"
#"\352\324\211\241C\207\362\364\323O\263t"
#"\351R\252U\253\246\326%\n\305\377@LL\f\a\17\36\344\374\371\363T\255Z"
#"\225\21#F\330\347r+7L\2312\205\222%K\22\30\30\310O?\375\304\314"
#"\2313\263\275\206\262|\2711P6\330d\r&\347I\335\272u\251[\267._"
#"~\371%\313\226-\3\374\357F\371\313y\30\24\24D\2336m\330\264i\23-"
#"[\266\244\177\377\376|\370\341\207\252c\25`\254}"
#"\257\345\313\2273j\324(F\217\36M\323\246M\275\332"
) 500
(
#"\230\2470&e \340\264M[\316\36\330\305o{\266\361W\2076T.U\224"
#"\17\326}N\30e\370\331]\226fB\342N\213\247P\203\373xu\365;\324F"
#"\30\376\351\22\204\320\rU\215\345\257\16JH\317'xF|\366l\37\e7n"
#"$::\372:?\235B\241\370\267x\206\n\321\b@J7B\350H\334\b\2"
#"\300\f\372\351\364\20\322AGHi[GI4SH7\177\6\336}o9\3"
#"\6\364\341\371\347_\340\226[n\271\274"
#"g2\307\227e\313\2261j\324(\332\267oO\271r\345\324\272D\241\270L|"
#"S\242EFFR\265jU\236\177\376yz\366\354\351U\326w\355\227\235\300\375"
#"\354\263\3172w\356\\\266m\333\306s"
#"\317=\227\355\275\254k^\3563*\362\37j%\217\177s\22\213={\366\340r"
#"\271p\273\335\354\330\261\203\213\27/\372"
#"-\227]Z\225\244\244$\16\348\300\334\271s\211\212\212\"::Z\245e+"
#"\240\350\272\216\20\2\227\313Ett4\275z\365b\314\2301L\235:\325v}"
#"\310\262\241\243\245\333&\220.\375\2\37"
#"\314ZMx\327\305\314~\3659\272t"
#"\356@\333\226\365\211\352W\223e\261\373"
#"\20hH\335\201\236\236\304\331\323\206P.0\205t4\244px\331T\352\312V"
#"&\317\343o\2230##\203\351\323\247"
#"3n\334\270\34\353)\24\212\274\215\220"
#"\200\314 >\361\"\31\22\4\16\334h\b\31\200t\353$'%p..\216\270"
#"\263\2479\ew\2323g\317q!!\35\204\203\264\244x.\234?\317\2713\347"
#"\210;{\216\263g/\220\352\222$&'\260|I\f\217\266\353\310\312\225+9"
#"{\366\254}\277\234\334h\354g\22\202\363\347\317\263y\363fBCC9~\374"
#"8\373\366\355\273\332\177\n\205\242\300\341\271\226"
#"\323u\235\241C\207\362\312+\257\20\35\35\315\220"
) 500
(
#"!C\262\364M\177\2\266\247 \235\232"
#"\232j[\340\336q\307\35^\261\216\2623\231\277\324Z\300_nuE\376Bi"
#"\324M\374\355:}\366\331g,Z\264\210\25+V\0\320\266m[\\.\27C"
#"\207\16E\352.\36|\350!\374\355uH)\331\277\177?\277\377\376;S\247N"
#"\245c\307\216l\336\274\231\371\363\347\363"
#"\360\303\17\23\25\25\305\214\0313(Y"
#"\262\344\265|E\305UDJ\211\246i"
#"\244\244\244\20\25\25E\247N\235x\344"
#"\221Gh\337\276=\213\26-\242M\2336\214\36=\232\2325k\322\260aC\204"
#"\20\204\206\206\22\340\b4\202\6\t7"
#"\216\344\237\231\376\361\3674\234X\222\230"
#"\5s\371\345\3601\276\372\362g\216\256"
#"\36\301\333\235;\262\352\336\365t\b/DBB\2.]C\332\32\30-3@"
#"\221\31P\316\215\3\207P)\332\362:\276\273\354))),X\260\200\a\37|"
#"\220\360\360\360\34\353)\24\212\274\215\24"
#":\347>\34\301\255}\227\321h\302\17\254\36v3\2329p'\355[\305\243\255"
#"\242\370\273lm\212\6`\6\5\325\371O\3577y\255w8\317\335]\233\265\251"
#"\365)_T\0\32N\221J\245F]\371+\365\b\253'\215\247r\265\32\254X"
#"\261\202\a\37|\220\341\303\207S\242D"
#"\t\352\324\251c\a\215*^\2748\205\v\27\366\nL\271i\323&\334n7\257"
#"\276\372*\225+Wf\351\322\245H)\351\330\261#O=\365\224J\337\244P\374"
#"K\306\216\35k\347I\357\330\261#_"
#"~\371%m\332\264\241\177\377\376T\254"
#"X\221*\0217Q\247n]\244\364\266"
#"\234\23B\330\375\362\223O>a\347\316"
#"\235|\365\325W\204\204\2040~\374x"
#"^y\345\25\236z\352)\257{\371\313\225n\341Os\356[^i\327"
#"\363\27\312G=\e\336{\357=6l\330\300\222%K|\316\350\214\31="
) 500
(
#"\232\224\224\24BBBp8\215\34\327\231\246\314\206\300v\366\354YRSSm"
#"sy\213\25+V\220\232\232\312\316\235"
#";y\353\255\267\b\n\n\272Fo\244"
#"\270\26\364\356\335\233\373\357\277\337\366I"
#"\367\244_\277~\350\272N\2312e\220R\342r\2718\177\376<e\312\224AH"
#"\3108\267\203\324\300[IK:\313\370\27\247rSx%#}\317\271\237\231\371"
#"\366\347|s\360W\232\327\n\"\264Z\en{\250=\325\212`\233JZ\203?"
#"^\371\323\225\240\236\237\320u\235Y\263"
#"f\321\264iS\0326lx\311\362j\262U(\3626R?\305\324G\237 \256"
#"Zi>\\\347d\335\276E\324\v\4"
#"\320\211\333\263\210~\317m`\354\373\357\323\270\2209vK\r)@&}\317\310"
#"\366}\2519\353'\6\327\260L\336\23"
#"\2703\260\30w\316X\317\353\3\37!"
#"\300\243\353\217\36=\232\323\247O\23\22"
#"\22Bhh(\0'O\236\344\304\211\23v\272\246\364\364t;>\316\262e\313"
#"\262\214\35\235;w\346\211'\236\340\241"
#"\207\36\2726\177\34\205\242\2000f\314"
#"\30*U\252\304\360\341\303\263\234\233?"
#"\177>\373\367\375Nrr2\305\213\27"
#"\a0\372\263\207f\374\370\361\343H)\0314h\20w\337}\267W\375\27_|"
#"\21M\323x\366\331g\355cj\356\277"
#"\261\270a\4\365\337\326Na\312\302\35"
#"\234\311H\263\323W9\v\335\316\304\25"
#"S\271#\4~^\371\34\37\322\216\361"
#"\335\356`\315{\37\360\311\246X\346\317"
#"\213&=\356g\246\217\231\302\327\247\22"
#"I\a\2\35\32\241%KQ\267\3033\224v\375\206\353\3349\277\246$\217=\366"
#"\30e\312\224\311r<%%\205\330\330"
#"X\222\223\223\371\354\263\317\210\211\211"
#"Q\235.\237\221\335\367\212\214\214\244k\327\256<\374\360\303"
#"\331\326MLL\2647oRSS9x\360 \365\353\327"
) 500
(
#"\a4\212\24)B\217\36\335s\274\337\250Q\243h\334\2701\235;w\376W\317"
#"\250\270\266\\\316w\2301c\6\255Z"
#"\265\242n\335\272\352\373)\24\371\1\t"
#"\b\27\340\364\b\4gl\220\n \375\227\2314|l\23\223V\rd\325\23\303"
#"\2501\363g\246\264(\212@\347\302\17"
#"\213\351=\366C\242\26\255\343\376p\201"
#"\3033\220\\\302\217<\371hw*\277"
#"\370\v\377\327X\303\345\206'\6v\243"
#"\211v\206\255\351\335xkQO\312\340"
#"0\36\301#\306\305\237\177\376\311'\237"
#"|\2\300\261c\3078|\3700\315\2325\3\240b\305\212\264m\3336\333WI"
#"LLd\300\200\1\364\351\323\207V\255"
#"Z]\255\277\230B\221\367\220\30\ed"
#"\346\226XF\362~\346\215\34\313\206\277\223p\271\r\213\26!\4MzLf|"
#"\367\333\320\317}\317\254\31k\270\177\374"
#"4\226?7\212j\265\32\320\247O$\22'\337\314\35\305\253\37\355%)#\r"
#"\244\223\320\320PBJV\346\376A\317pq\373{H\322p\20\210p\6\21R"
#"(\0) \262\273\221\276Mx?\22V\n\307\327^\237I\362\237[\211(\25"
#"\304\266\360\241\314\353s'R\23\b\35t\355\34k\237y\222\245?\236!E\27"
#"\b\251!\244N\341Z\3670e\332xj\02766\1u\251\31j\e\265\254\310"
#"w\334\0\246\357\306\244yl\347\373\34(\31\311\2021-qH\aR\350\374\361"
#"\3363D\265{\235/>\37\315\371\357?fK\221\273\271}\323'|\270\376}"
#"\346\315\213Fs\4\220q\3527\276\374\355\20\17M^\312\2757\31\271PA\247"
#"p\351p\252\225\253\233\353Fo-\274"
#"\v\25*\304C\17=\304\302\205\v\211"
#"\214\214\344\261\307\36c\371\362\345\4\a\a_\315?\202\342\n\342+@"
#"\245\247\247\323\253W/[\233\236\23E\212\24a\320\240A\200\261i\363"
) 500
(
#"\346\233o\332\277{\222\235?\323\264i\323\0306l\30.\227+K$y\177u"
#"\25\327\227\334~\207\327^{\215\366\355"
#"\333s\363\3157\333\365\324wT(\3626n\1\16\351D\n\20\236B\272\31\374"
#"\355\273\17?'\250\312\0354\257\375_\3165\fe\341\352-Lj\3760\1\2"
#"tM\307-\223\211?w\226\270`\235"
#"\0\351\300\355\f\246D\261\"h\16\211"
#"\346\312 5\351\"\347\317\303\203m\37e\306s\35\211\376\277W)=\3626J"
#"zXJy\216\21\21\21\21\366|r"
#"\360\340A\276\376\372k\372\364\351c\237"
#"\317iL)R\244\bs\346\314\241O\237>\24+V\214;\356\270#\333\367V"
#"c\223\242@!tC\3005\3\377\350\361G\371\372\373\237h\370\314:\36\257!"
#"qk\16\264s\273\31\0375\212\327\253"
#"\276\313\260\252\3478\260s;\323\332\216"
#"dV\217[\351\320\255\aF\20H8\264m\35gk\274\310\254\336\267\200t#"
#"\205\v\315\31BD\365P\2124\210BHp\t8\262\341E\372\274\264\21\35\215"
#"W\246\275\212\20n\320\213\322\355\365U<\375@8BjH\214XDcF\r"
#"c\372+\ax\351\255\30\216\313\302t"
#"\351\334\220\226\305\202A\3M&\360\343\366\317(\326y\35/\336S\f\3510D"
#"\374\240\340b\204\a\v{\23B\230\201\207\245)\374+\362\17\5^P\227f\203"
#"\ft\26\245dD5\0326\270\5Kxo\320`,\37U\30\300\247I\243\251"
#"W\266\4\347w|F\314\341\363,\217\2111\e4\2704(V\262<5\32\334"
#"B\203po\263b\317\210\256\227\3027\327v\221\"E\b\v\vc\374\370\361<"
#"\361\304\23DGG\333&k\212\274E"
#"v\213\22+\370\307\300\201\3y\374\361\307m!=\267\213\230\304\304"
#"D\\.W\266>E\376\342&\4\4\4\20\35\35M\377\376\375\t"
) 500
(
#"\b\b\240c\307\216\377*\22\250\342\332"
#"\223]\2738y\362$\272\256\333>\3519e\241P(\24y\aK\vn\256\201"
#"\21f:5\4\310\324C\254\373\326\315\3\243\207P:8\210\316\221\255\2307~"
#"\5?\305?\314m\305A\v.F\372\276\37\30\37\331\206bA\206\326.\240\316"
#"\375\314{\343E\352\25\17&(\3754\23\36\251It\t\215\n\25+1\354\371"
#"\2654\356\e\303\353}\352\343\0\334\350"
#"8|\26\334\236sARR\22\251\251\251~3\322d7\266\24/^\234\367\337"
#"\177\237\16\35:\360\364\323Og+\254"
#"\253\261IQ\20\220\350H\251\241\tS"
#"\2305\177\227\22\n\27+E\265\272\r"
#"\250W\3332s\251\317\223\17\314e\376"
#"\207\277\302\244\312l\375j\27\243\347\f"
#"\244m\267n\246,`\364\375\200\300@"
#"\312\337\\\237\372\365\352\30\202?\200\320"
#"\315\373\318\201jm\306\261\345\241gM\35\276)[Hc\363\317\252c\327\347"
#"\f%N\236\341B\241{)\375\327\22V}\372*-\0373\224{n\341$\240"
#"H1*\324\374\17\365\e\206\30\357`"
#"\305-\222\326\275\315\337\355n\253\334\""
#"\363\23\5^P\267\314\334]Z*\301"
#"\301\305\214\216i6\377s\333\327\260;"
#"\365f\236)\f\333/\204p\364\340\367"
#"\374\360\333\327F\3336w\3304\335\215\346\f\246hIih\3235\335\356lV"
#"^\323\334j4=\217\367\352\325\213e\313\226Q\265jU\6\r\32\304\220!C"
#"X\274x1\201\201\2019^Cq\355\311.j\246\20\202!C\206\360\300\3\17"
#"\360\310#\217x\225\317\216K\5\372\360"
#"'p{\336\327z\226\371\363\3473h"
#"\320 \222\222\222\350\325\253W\256\2\212"
#"(\256/\376\26\311\377\374\363\17+"
#"V\254\240w\357\336\4\a\a\253\357\246P\344'D\246"
#"\206\312\20\326\315\325\205t\343>\376+_\375\276\225\320\225"
) 500
(
#"\323x\366\v'iq\277\260o\337\237|\375[\34\2675\tCO\214\247P\203"
#"f,y\177-\215\2033\27\364\22\35\231\224A@P\31j\375\267\r\e\247\366"
#"\247J\355ZH\234 \335VX\22\34"
#"\232\367B\333\337\6\337\277M\351\264v\355Z:w\356L\317\236=mW.5"
#"6)\n\32\231\232e\315L\231(\20BGGC\6\4R\270$F\237\23\2"
#"\344I6\177}\200\312O\325\346\271g\236C\326oF\265\226\335}\204(#^"
#"PP\341\242\231\3536@G\303!\335\b\3410\307\bi\312\311\32H\211\264\34"
#"\2\203\177\0\0 \0IDATS\351J\34X\3652-s2\316\374\312\272"
#"\217\2662n\303\237\270\346=\312\304E\343x\273\343[\4Hp\340F\"(R"
#"\"\304,\257\231\302\272nZ\3718m"
#"YE\227\240\231\367\222\322\324\262+\362"
#"<\5^PG\0\272\304\31T\214\37"
#"\26\214\346\376\315\245\t\300\215\25698"
#"\266\353<C?x\237\243\237|\316\262\5_s\307\323\237\31y\251=\352jA"
#"%I=\3605\303\376\373\0\245B\214\35s\255\332=L{i\34\267\224\274\264"
#"\340\225\323\361\310\310H\336}\367]*"
#"V\254HTT\24\217?\3768\357\277\377~\216\327P\\{|\277\261\365sd"
#"d$\217?\376x\216\301w<\205z\353_\177m\346r\264\250V\2319s\346"
#"0l\3300\322\323\323\0310`\200\337"
#"2\212\274\201\277\357\233\220\220\300\362\345"
#"\313y\374\361\307)]\2724\240\276\233"
#"B\221\237\320m\233=k\341+\214\215|\241\263)f\31ie{\323\351\356j"
#"\350\31\2\275ZEz\377\3616[7\356`P\223G\320\234\2\227;\235\213\347"
#"\4T4\257f\256\236E\241B,\334}\221\2611}\251R\253\36"
#"\272\271\250\268\0\0354\35\244\323\326\220e'D\373\233or\372"
) 500
(
#"\335\363\347\205\v\27\322\277\177\177\202\203"
#"\203i\325\252\225\32\233\24\5\16\253\277"
#"I[\210\6\244$ \260\b\362\350/"
#"L\352\320\232\205\205\5\350n\364\204\263"
#"\224\272\363e.~;\203v%\4-\312\247r>\305\347\202\272\e\315\31\310\346"
#"i\335\370\357\362b\b\341FJ\aM\206F3\361\221\b\204\264\314\316%\277}"
#"\360\n\243\243\277@\227\2065\215!\316"
#"\27\246\355s3\31\324\274R\246\6\\"
#"j\34\335\272\216\375\305\373\360z\265 "
#"\252>\371\b\263n\36\302\3447*2y\324\323\200\23gr\34\v\6\334\313\327"
#"\245\203\fA?\260\30\335&/\242\307"
#"\177<]ju\204\320\274M\341\25\371\202\2/\250Kt\204\6zz\6\21-"
#"\237\340\215\241-\1\27R:p\26\r'%\345(\363\243W\362\374\300\333y9"
#"\361\204m\362.\314\235.\315\225\214V\256:}&\274J\323\262:h\16\34\301"
#"\241T)\342\6\351\270\244)YN\347\204\20t\356\334\231\225+WR\275zu"
#"&O\236L\327\256]y\367\335w\257"
#"\336\37Dq\331\370\373\306}\372\364\341"
#"\211'\236\360\362I\317\311\204=\247c"
#"9\t\356\227\322\204\274\366\332k\f\e6\214\r\e6\250h\275y\30\337o\227"
#"\222\222\302\354\331\263\351\327\257\37aa"
#"a^\347\224\346J\241\310\37h\231\316"
#"\351\231>\240B\242\305\377\310\212\367\277"
#"\245\321\304\271\364{,\3146\257\375\263"
#"\320\317\334\361\366*\376\34\373\20\345\245"
#"\v\231\352\306\245\273\1\207\31\t\332\205"
#"\304\301#\367G\322\274Nq\322\302\e"
#" \205\265\214w\2030\365m\226_\274"
#"\371\349\255C<\347\e\177\233\301\276\347-\n\27.Ltt4}\372\364\241"
#"R\245J\324\250QC\215K\212\2\205\225)G\n\aB\227F\2006$"
#"ZF\2\262T8]F\276L\207\233\235\270\205\216\203@\26\276\273\212\a\353"
) 500
(
#"6\242\307C\25\351\335v\f\16M7v\350p\30\375Qs d\6u\333\217"
#"`Z\267Zh\30\226\267\241\25*\0322\267\320L\253\30\a\21\315#y\275j"
#"k\\\232\206&ut)p\b'\241\21\345\314]?\t\2469\375\27\237\304R"
#"\362\221\205\204^8\307\271\242\215y\340"
#"\316\233xy\311\237\324(6\233\310\276"
#"= \260\30-\a\274\304\223M\203p"
#"\270\203\221\1\16\312\207\27\262M\347%n@z\373\246\e\352\365k\3767W\\"
#">\5^P7\0022\270\221n7\305\312U\243A\203z\246/\31\246\331z("
#"\267\275\365\16_\215k\216+C7w\261t\263\266\206\333\355\306Y\270\30Uk"
#"\337B\203p\243\216\320%h\206AKfZ\254l\356\177\t\223x\207\303Ad"
#"d$K\227.\245j\325\252\266\220\256"
#"\26\353y\a\177\32\210\205\v\27\372-"
#"\223\335\277\376\312X\370\323fdg\366"
#"\356\213\345\263\256\310\333\350\272\216f\232"
#"\252\376\363\317?\304\304\3040t\350PBBB\374Z](\24\212|\200\351\276"
#"*\2054\205v\35\r\215\324\23\207\t\254\326\222\336-J[.\353\0T\271\357"
#"q\36}w&\233\17&\321\263xEj\335R\207\322A\2321\276#\220\3020"
#"S]\377\321R\336|\372y\312\6\271M-:hv\224w\303<\327s\321\235"
#"[-\271\277\337\301\277{\225\20\302\366"
#"Y\367\207Z\243(\362;\206\6\335\320p\243\t\323,]#C\27\20P\224\233"
#"\3524\244AM\243\254[\300\364\272\23"
#"\220\232 \355\350'\270\265 pk\246"
#"\274`\371\230k\270$\24\273\2516\r"
#"\353\3277\242\310\233;j\272\375\263a"
#"\25S\270d8uK\206\233\312A\337\265\241q=\211\216~\361c6\256H#"
#"\241\301S<\20\253\241;\334\270\316\247R\257z"
#"MZ\367\e\204\340\37\\\232\223R\325\e\360\237z"
) 500
(
#"A\336\233xV\f\r!\220\266\277\274\371\362JH\3177\24xA\35\323\\L"
#"h\22\267L\267\17Ka\b\353B\30\346f.]\22P4\314\3309\363\b\b"
#"\243\233\246'.\335\2300\245t#5\aB\n\273s\371\343r|\221\1z\366"
#"\354ILL\f\31\31\31\334{\357\275j\2\314C\344\24\350-\273c\376\204\256"
#"K\tb\271\335\360\361w\\-\232\362.RJ[H?q\342\4+W\256\244"
#"w\357\336\204\204\204\0\352\e*\24\371"
#"\27K`\26\266\231\252\24\20\\\253\v"
#"\213>\350d\226q\201p\32\326}\25\357cn\354}\b\341B\347!^\235\371"
#"\260\2554\260\257%@\24\252\311\250\231"
#"\313=\f\353\215\363\240\341\26:N\34"
#"\366\"\34\262\237\243<\177\276\224\365\237"
#"oY_r\22\376\25\212|\211\335\216%R\352h\302\324\214\343F\3\334\31V"
#"\2209\27\32N\303-E\202\233\f\34NA\211\322VB72\225|\322\211\324"
#"]\206|\201\300%\300\211\261\201\347\31"
#"\314\355\257\355\253\230\27\373#\272t "
#"\20447\353\2i\326}\b\255\353\2275\256)5~\2343\235-w\216\346\344"
#"\346\341\4b\6\310\376c\1\215\37\\\300W\177\217\242c%\267qE=\323\35"
#"F\222\201\220\1\36V7\232w\340k)\221B\240zp\376\240\340\v\352&\31"
#"i\t$K\303\0\304a\36\223\2\263\373\270\321$|3k0\2557W2\3"
#"GdP\267\327\eLh\220AJr2\272\333\254e\231\236\31\277d{\277K"
#"Mb\376\316[>\353\e7n\344\301\a\37\364:\247&\306\274Ev&\206\327"
#"\v\3256\362.\326\267\2316m\32\205\v\27\246k\327\256\224*U*\333r\n"
#"\205'j\354\317\313\30\202\264\375u\204\347\252\300\22\262\235\346)"
#"\263\2540\216i\36u\274\313[\307|\26\327\346y\247\265\202\271\214"
) 500
(
#"&q9\326:\271\331HV\355QQ 0\335V\214<\351\246\253\254\324p\t"
#"7)I\311\244\331\eqN3\330\234\3\204N\200\263\20\211\373w\360T\333\326"
#"\274]\314\220\37\364\212\215\2306\375e"
#"\2\335\211$\247\271\260RA8\255\34\346\346f\234)\362S\250X)*G\334"
#"\214\324S\321e\0BH\234\322A\221\302\301v\327\226\34d\341\262\257i>f"
#"\36\201\246\2QH\220\341\315\271#\354if\316\331\314#/5$#=\2214"
#"\227n\217\t\32\16\237\261\310\367\265s"
#"\266\260\271\324\234\243\346\244k\213\220\276"
#"\16\264\5\f\313\314=\345\374?\304k\305)[<\4)t{\227\311\332\225N"
#"\271p\222Sg\316\223\220\234\201\256\31"
#"Sd\241\262\21T\r\25\2349\227D\361Re\ttd\232\261H\351\341/v"
#"%\236\323l\370\272\256\263r\345J*"
#"T\250\300\275\367\336\353u\316_yE"
#"\376\345\314\2313\314\2313\207\t\23&"
#"\\\357GQ\374Kr\323\17\323\323\323\231={6\17<\360\0\25*T\240X"
#"\261b\252\357*\256\nj^PX\374"
#"\370\343\217\354\330\261\203\301\203\a_\357"
#"GQ(\362&\36\326,\240\331\211\315"
#"t=\231\363\247.\22\34V\236\302\201"
#"\272G\5c\263\314\255\247\21w\374\30\347\343SH\327%\272\248\203C\250t"
#"s\4A\27O\22\357(E\351bN\303M\5Kf\220\246\346\\\30\232y,"
#"\223y'\231B\230e\362.\321\220\240\247q\352\3709\n\225\251H\261 +\303"
#"\204\241UO:u\234s\24#\274l\21\22N\36C\26\17\247D\260\260\265\350"
#"\2273\27\344\246\254\232[\256\0377\206"
#"F]@\241\222\345)\4`\356\230Y\3071\217\5\227(G\345\22\345\20R7"
#"\315\3425;\2|\351\262\205\321,\37\0243}"
#"\212\300yE\2031X\35@\3234\272w\357\316\222"
) 500
(
#"%K\330\272u+\315\2325\313\326\327Y\241P\\_.\25\177 ))\211\205"
#"\v\27\362\340\203\17R\243F\215\353\365\230\212|Nn6k\325\274\240P(\24"
#"\227\201\245P7\5p\ra\272\252\205P\262| B\a\267\231&\315\360d7"
#"\264\352\16-\2102\225\252P\306\266\2021\342U\351B\340\b\255@)i\204V"
#"\27\0362\6\302p\2211\334m\301%4\333\256F`\4\213\248\20\322e\310"
#"\27B \265B\224\255X\1\251Y\376\364\206J]H(\\\266<E\314c\305"
#"\313U2\317c\247t3\356}\351\371"
#" \267\363\210\232[\256\37\5>\343\275"
#"\300e\b\324\30\301\34\244\351'\"M\263\24)t;_\241\320\245\271\25e\232"
#"\211\1B\272\215\375-i\4v\220\3222\203\341\252\4c\260\f\34\236x\342\t"
#"\216\349\302\346\315\233\215gQfg\nE\236\305_\360?]\327Y\274x1"
#"\367\334sO\26!\275\200\e2)\256"
#" \276\233\264\26\227\212\201\242P(\24"
#"\212\234\320\r\301VJ\220\206\257\267\261"
#"\341\356F\240\341\326\300\241Kc\251/"
#"\0\323\207\235,\303\253\206\20\302v\253"
#"\25B\242\233\327\227X\212{\335\24E"
#"4\204p\3434\317\201n\304\262\303\364"
#"\177\27N3\222\274%t\v\303\227\36"
#"\214\374\353\206\367\274\231\231\312\320\276\e"
#"\327\220\306\263\231n3\271\25\357r\n"
#"B\251\310\e\24xA]J\201\324\254\216g\5Op\331\215Z\330~`n\244"
#"&\260:\34\270\221\270\314\253d\372\212"
#"\t\323\254D\b\335\356fW\356Y\275"
#"w\262z\364\350\301\311\223'\331\270qc\226r\n\205\"ob\365\343Y\263f"
#"\321\242E\v\376\363\237\377\330\307-\324"
#"f\233\"\267\\\316&\255\2774[\n\205B\241\360\207\245\321\3263\203"
#"E\203!\220\243\341@\267-kAG\35023\277\271\205)\340gbh"
) 500
(
#"\3275\241\233\21\345\r\v]L?uc_\300\201!W\230f\365\346\365LU"
#"\242!\263x\\Q\b\3437)4\363\337\314`\222\302L\343f\3107.[\370"
#"\277\\)\301\323*\320\270\247\22\330\363\n\5^P\278@Jt!\20R7"
#"\265\353N\204\345#\"1:\232\260R\237\30~ R8\314\b\254Fc\315\20"
#"\322\350l\2724;\232@\303\267\203\376"
#"\217\317\352gq\325\245K\027222"
#"\350\327\257\37\307\217\37\367*\247:\220"
#"B\2217\260\372\242\256\353|\364\321G"
#"\f\36<\230G\36y\204\272u\353\332"
#"\347\375\231.+\24\227\302j'\377\374"
#"\363\17=z\364`\307\216\35\304\307\307{\235\223RfYh\251\366\245P(\24"
#"\331#\1]\30\21\320\r\241\327\201\300"
#"ej\257\rA\333\26\222=\344\1\235"
#"\f\300H\253\350\26\16\333j\327\300\364"
#"c\267\304+\237q\330P\364\t\217*"
#"\232\375\2570\243\312\333\367\27\220!\334"
#"F\31\335\264\20\266\254\0\204nfG"
#"\367H\323\2103S\251\210\247o\375\245"
#"\371\371\347\237\351\321\243\a\a\17\36$"
#"))\311\357\246\257\232S\256\17\5^P\a2MR\204\206\324\4:n;\177"
#"\242a*\342a\352.tt4\303\f\36\315\f\351\240\23`$P7\374Fp"
#"\233\215\367\312\273\370\373v\4M\323h"
#"\327\256\35\v\26,`\365\352\325\34:tHiM\24\212<\202o_\\\263f"
#"\r\1\1\1\314\2325\213\210\210\b\273"
#"\234\362\371R\374[\254v\22\37\37\317=\367\334CJJ\n\223'Of\367\356"
#"\335\234<y\322\26\320sJ\r\251P(\24\no\f\337s\231\231c\34\214\24"
#"g`\312\a:\350\206\230d\211\275R\32\272v0\264\331\0160\255q1\265\353"
#"\272)s\270\310\314anX\360\332\246\356\350h\246"
#"\333\255\27\22\17\323z\3031=\3002\250\327\\H\234"
) 500
(
#"@f\374,\a:Bw#M\241^H\335|F\341\361\304\271\343\314\2313t"
#"\352\324\211\235;w\362\306\eo\360\335"
#"w\337\221\220\220`\277\263\361\276jN"
#"\271\36\24\370`r\226\330+<\"\274k\322a\n\335\[email protected]\r\320\21n"
#"\r\351\320\320\244\4\315\360,\21R3\203@\30;W\306\306\233\3+:\343\25"
#"}\326\34r\235J)\0311b\4\321\321\321h\232F\307\216\35)Y\262\344\25"
#"\275\277B\241\270<\254~\272u\353V"
#"\376\370\343\17\312\227/O\2336m\0\25\334Kqe\21B\220\224\224\304}\367"
#"\335G\313\226-\2319s&\205\v\27\306\355v\323\257_?4\355\206\330wW"
#"(\24\212+\203\351\317\255a(\276\205\320\355\365>fv(3+\232\31\23^"
#"\230\212\275L-\2730\3TK\241#\204\303\270\16\230\3271\344\4\201 Sf"
#"\32027WM\315\270u\35\204\361\257e\342\356\265|\220NCn\261M\346\r"
#"\231FjV\n9\3034^X\25\315\234\352\271EJIrr2={\366\4"
#"`\352\324\251\354\335\273\27!\204}\314"
#"*\247\3265\327\226\2?\263[>\345\306/V\a\2\373\3255a\232\231h\230"
#"\251\a\315Fh\6c\360h\217\302\353"
#"\337+\377\247\313\215&\244\177\377\376\224"
#"-[\226\230\230\30\333\3741;\224\231"
#"J\336D}\227\202\305g\237}\306\321\243G\251^\275\272-\244\203\332}V\\"
#"y,\315\271\224\222a\303\206\361\330c"
#"\217Q\266lY\246O\237\316\374\371\363"
#"/Y_\215=\5\233\234\276\257\372\366\nE\366\bO\271\0\353g\217\370T\226"
#"i:\231\345\354\237\315xW\366u|\3\272\371\\\333^\e\230\307\275e\n\r"
#"\373\22^\17\230y\17\317\353\n\317\353z\376\233\313\345Gv&\356"
#"\317<\363\f\315\2337\247t\351\322L\236<\231\365\353\327\347\356\202"
) 500
(
#"\212+N\201\27\324\v\nV'r8\34\264k\327\216\356\335\2733g\316\34\222"
#"\223\223\3552\236\23\261\332\365\312{\\"
#"\312|H\371\226\346\17<\277\317\326\255"
#"[\371\347\237\177\350\322\245\vM\2336"
#"\315r^\241\370_\360\r@\350\273\231[\242D\t\332\265kGdd$\267\337"
#"~;}\372\364a\333\266m~7qUD\337\202\207\357w\314.\360\240Z\17"
#"(\24\n\177\344\344\226\27\21\21A\233"
#"6m\350\325\253\27\305\212\25\243w\357"
#"\336\374\361\307\37$%%y\225W\363\311\325E\t\352\371\20)%aaa\f"
#"\35:\224\350\350h\276\371\346\e\322\322"
#"\322T\n\267<\216\277\240\34\376\276\231"
#"\372vy\17\317M\24\353\373\354\330\261"
#"\203C\207\16\321\263gO\234N\247\327y5q)\256\4\276\301\341\262kWe"
#"\312\224\241a\303\206\274\363\316;\234="
#"{\226)S\246\360\335w\337q\342\304"
#"\t\257k\371\373Y\221\177\311\351;\372"
#"\3132\2416\203\25\n\205'\376\306\2\337c\225*U\242y\363\346,Z\264\210"
#"\317>\373\214\0313f\260k\327.\22\23\23\375\256y\324\370re)\360>\352"
#"\5\rOA!$$\204\1\3\0060c\306\f\366\356\335K\257^\275l?E"
#"\265\203\2367\310\356;\b!\320u\35"
#"\207\303a\227\263\216\347TOq}\360"
#"\334D\221R\362\375\367\337s\346\314\31"
#"z\367\356\355\365\255\324f\213\342Jc"
#"\265\245\242E\213\22\20\20\0d\35\37"
#"<\3\312\265k\327\216\366\355\333\263d\311\22\216\36=Jzz:]\273v\275"
#".\317\256\2706d\27\327&((\310\353\230\332DT(\24\376\b\16\16&8"
#"88\213\345\225\357\232f\360\340\301H)\2313g\16'O\236\4\240m\333\266"
#"^\361\265\324\372\347\312\"\244\32\265\363\35\376&\345"
#"_~\371\205/\276\370\202\21#F\344\30\224N\221w"
) 500
(
#"\270p\341\2C\206\f\241~\375\372F"
#"$QM\263\265f\232\246\241\353\272\372"
#"~\327\31\317\205\255\246i\4\4\4\220"
#"\226\226\306\367\337\177O\343\306\215q\271"
#"\\\200\377@\220\252\377)\256$\311\311"
#"\311\234={\226\233n\272\311\353\270\224"
#"\22\207\303\201\256\353^\v\245\342\305\213"
#"s\352\324)\276\370\342\vZ\264h\301\244I\223T{,\340x\2169{\367\356"
#"e\312\224)\324\253W\317>\257\4u\205Ba\3419^\304\305\305\221\221\221A"
#"\371\362\345\275\24G\236?[kR\247"
#"\323I\211\22%\370\365\327_\331\263g\17]\273ve\320\240A\327\355=\n:"
#"JP\317\ad\267[\356{\354\317?"
#"\377d\375\372\365\364\352\325\213\342\305\213"
#"_\313GT\\\6\326\267\323u\2353g\316\220\236\236\356u\334S\340S\3353"
#"o\20\20\20\300\37\177\374\301'\237|\302\300\201\3\t\b\b ##\3]\327"
#"\263l\260x\346\264V(\256\4RJ"
#"\216\349\302\366\355\333\351\336\275{\266"
#"\345\34\16\a\16\207\203\v\27.\360\317?\3770m\3324F\216\34I\275z\365"
#"\250P\241\202j\223\5\30\3371\307\345rq\346\314\31{3\321*c\215Q\n"
#"\205B\1\306\270\360\355\267\337r\376\374"
#"y\257\200\270\2768\235N\204\20\304\305"
#"\305\361\333o\277\261x\361b\246N\235J\2312e(_\276|\226k\252\371\346"
#"\312\240L\337\363\1\271\21\322\1\252T"
#"\251B\373\366\355\31=z4\35:t\340\301\a\37\274V\217\250\310\5\276fA"
#"\232\246Q\266lY\257s\212\274\311\261"
#"c\307\330\275{7/\276\370b\226s\331\231!+\24W\222\214\214\f\2\3\3"
#"\251T\251R\266e\322\323\323\331\273w"
#"/\237~\372)\201\201\201|\374\361"
#"\307\312\272\252\200\223\235\271\251\323\351\264\27\317\312\322G"
#"\241P\344\304\37\177\374\201\333\355\316q~\211\213\213\343\324"
) 500
(
#"\251S\304\304\304\320\250Q#6l\330"
#"\220\355X\242\306\230+\207\22\324\363\31"
#"\331M\262\326\361\312\225+\263`\301\2bccY\265j\25]\272t\271\16O"
#"\251\360GN\3\227\32\324\362&RJ~\373\3557>\377\374s\206\17\37\356\267"
#"\214\257\5\204\22\214\24W\n\317v\344"
#"r\271r\314\225\276j\325*\322\323\323"
#"9t\350\20O?\3754\301\301\301\3669\325\26\v&\331\t\3409\t\346\252-"
#"(\24\n_\334n\267\337\343\326\370\261x\361bt]'..\216\251S\247^"
#"\343\247\273\261Q\202z>#\267\273W\17?\3740[\266la\322\244I\264j"
#"\325\212\273\357\276[\t\21\n\305e\340v\273\2318q\"U\252T\241_\277~"
#"9\366\35\25LNq5\360\25\266t]\367. \341\363/\276\344\333o\277\241"
#"~\375\2724hx\v=zt\307\327\260\331\376]\215\375\5\212\354\4p%\230"
#"+\24\212+\301\212\25+8y\362$"
#"\21\21\0214o\336\234\260\260\260\353\375H7\34JP/\3004o\336\234\n\25"
#"*\360\355\267\337\342v\273\271\375\366\333"
#")T\250P\226\211\333\323\317VM\352\212\202Fv\eT\331\305~\320u\235\350"
#"\350hN\237>M\317\236=\t\17\17'$$\4P\213^\305\365\301j\277V"
#"\226\210\264\2644N\236<\311\v/\274"
#"@\347\216\235\350\332\265+\325\252U\3"
#"\35@G\330\231Wu[8\227\322\247\255\3\2525+\24\n\205B\ba[l"
#"\245\244\244\260w\357^\336z\353-\6\f\30@\263\26\315\251T1\334((\225"
#"\373\314\265F\t\352\5\f\337\16T\275zu\252W\257NLL\f\e7nd"
#"\340\300\201DDDx\225WB\272\242 \343\233Z-'\255\367\217?\376\310w"
#"\337}G\323\246M\251_\277\276\n\350\247\310"
#"38\235N\342\342\342\370\371\347\237\331\270q#"
) 500
(
#"AAA\314\2337\17\207C\2004\323rj\0\232)\200\353H)\20B\303\20"
#"\336\325\370\256P(\24\212\2548\235NN\2348\301\257\277\376JLL\f\r\32"
#"4`\376\374\2718\235N{\rd\307\303Ps\3115E\t\352\5\210\234L\333"
#"###\1\210\216\216&((\210\16\35:P\274xqe\252\253\270\241\310."
#"\276\303\216\35;8z\364(\207\16\35\242]\273vvJ#\25\204Iq\275\361"
#"lw\207\16\35\342\223O>a\304\210\21\4\5\5\31\343=`\234v!p\202"
#"t#\205\3\320@X\232s\363g\3516\27Y\232Zj)\24\n\205\302\346\227"
#"_~A\3234\246M\233\346\243\324\300"
#"\374\327\374A\2B\a\262\217\231\242\270"
#"r\250\364l\5\214K\5\233\313\310\310"
#"\340\203\17>\340\324\251S\364\351\323\207"
#"\302\205\v\347\252\276BQ\220\360\334\324"
#"\372\362\313/9~\3748\225*U\342\336{\357\275\336\217\246PdAJIB"
#"B\2g\316\234\241Z\265j\336\343\264"
#".\215\225\224\275p\322\221h\b\17\333"
#"vi\26\221\350\306!S\3\257\244u\205B\241P\2348q\2\247\323I\2312"
#"e2\17\372\370G\31\363\216D\t\350\327\26%\250\27\20.W\300>u\352\24"
#"\263g\317&,,\214\276}\373*\201]qC\221\236\236\316\371\363\347\2318q"
#"\"\255Z\265\342\321G\37\265\375\177!"
#"\347\366\257\372\206\342Z\222\333\366&\245"
#"\e\204\321\2063\205t\27\240\201\324<"
#"4\357V\5\224\240\256P(\24\212\234"
#"\261\244D\241\246\215\353\201\22\324o\20"
#"\374-\366t]\347\350\321\243L\236<"
#"\331\316\273\256\204\20EA\303\267M\237"
#"9s\206%K\226\220\232\232\312\323O?\215\323\351\364[.\273`s*s\202"
#"\342ZcM\323\376\332\234\216DH\35!\34\200\16"
#"\272\6\232n\4F\24\0164\314\205\225\227\206]i"
) 500
(
#"F\24\n\205B\341\37i\233ay\257ut]Gh\312u\352Z\242\4\365\e"
#"\200\334h\accc\211\213\213#\"\"\202f\315\232)!DQ Y\272t"
#")\211\211\211\264o\337\236\n\25*\344"
#"\252\216\22\312\25y\5\277m\321}\232"
#"\235\233\177\306U\244:w\336Y\231\0"
#"\241\343Brl\373f\376\n\250\300\235\267\325!X\3\201\v)\35\252-+\24"
#"\n\205\342\322$\237d\327\236\275\\Lv!4'\32.$\32.G!n\256"
#"\177\e\325\302\2\257\367\23\336\20\250`r7\09-\314\254sV\336\3653g"
#"\316\360\364\323O3d\310\20n\272\351"
#"\246\177u?%\330(\256&\271\321|\373\226_\275z5\177\377\3757U\253V"
#"\345\376\373\357\247|\371\362\271\276\237j"
#"\313\212\274B\226\266(\1\21@\302/"
#"k\231\276\247$\317U\231\314]e\301"
#"\265\367C^\236\271\222\312]\247p\333"
#"\35\226\"\335\t\270\221\b\204\251uW"
#"\32u\205\"\377\"1\372\260\360\t\356%\361p\177\221 \2059\6\330\361,\0"
#"\\ \235^\261-\214\330\25\206\v\215"
#"DG\a\34\272\206\324\314\224\217\266\t"
#"\264\317\275\354'\322\315\200\30\16\353\1"
#"\221\346\365\204YW\n\354\240\31V=\343\32:\350\0024aF\331p\243D\224"
#"\353L\322>\226\314\231\306OGR\t\n\fDh\32\201\1\1d\24*A\267"
#"\247\27R-\f\314\234\240F\\\24\343\ae\e\177\205Q\32u\5\340-\354\354"
#"\337\277\237M\2336\321\266m[\312\227/OPP\220W\31%\210+\256%9"
#"\231\240\347T^JIrr2\37}\364\21\241\241\241\324\256]\333\336|Rm"
#"XQP\320q\243\245\35!z\314\4\16\324\352\313\213Q\325\210y\366E~\b"
#"k\313+c\36\242\230\303L\255c-\350\245\4"
#"M\250\365\224B\221\337\261\204_c\373\r\0\267\0"
) 500
(
#"\a\36\302\267\207@\r\336}\336C\226"
#"\267\206\205L\241\331\336\304\323\355\362\206"
#"\270\356\3532c\224\225\350\b\251\331\233"
#"\2\322\24\332\205\20\240\v\334\232\304a"
#"\326\266\257\357!\370\e\t$\205\375.jl\312\3\270\3228w\356\34\251n'"
#"\16g\6\31\a\277\344\245y\353\20\265z1y\344C\204\6y|'\317\266("
#"\244\351\202u\275\36\274`\241\4uE"
#"\266\274\364\322K\4\5\5\321\242E\v\352\327\257O``\316f.J\370Q\\"
#"-.\265Id\35\327u\35M\3238v\354\30'N\234`\361\342\305t\356\334"
#"\231\26-Z\370-\257P\344k\314\225"
#"\266D'\341\367u\214}\355s\212\226"
#"\322\210O,M\237\27\307\323\250$h"
#"\322\\\366z\251\257L\355\231\352\2\n"
#"E\276E\227\240I\211\324\244-B\e\232s@\0037\340\360(\207&\260\5o"
#"\335\24\252\2055\37\272m\327\30\335*j\342-\274\353\231\332S S3\17Y"
#"\36\0\17_g\374i\345=\205\177\260\205w\225\372+o!AO=\300\354\361"
#"S\330\236|\27\223g\f\340\346\0\317"
#"\323\232\367\364\202\372~W\22%\250+"
#"\200\354\5\227\213\27/\362\306\eoP\243F\rBBBh\337\276\275\22p\24"
#"\327\24_!\375RB\366\257\277\376\312\27_|AHH\b\375\373\367\277\206O"
#"\252P\\c<\314Zuw\32\273W=\317\v\213\366\362\337\ts\31\332\264\254"
#"m\2+\205\216\216\206\303\\dc\245iS\213)\205\"\37\243\233=\33245"
#"\3273\325\342R`[\320HM\330\302\223\257\320m\231\233#3@8p\241\341"
#"\364*\vHp\v\335\16Li\bf\346X\"%\bc\243@\367\322\206{l"
#"\6J\363\321,9\\\232\242\274)\220\333\e\3\36\331*$N\265"
#"\217x\335\2616a\316\362\321\213\343X\274/\214\321o\214\247I\351`"
) 500
(
#"\244\320=\276\217g\273\2626_\324\327"
#"\273R\250YZ\1d\372>\372\356\333\24+V\214I\223&\321\240A\0034M"
#"\343\205\27^\340\353\257\277\316\366:V"
#"}\265\377\243\270\22x\n\345\276\302\272"
#"/n\267\233q\343\306\261s\347N\372\366\355\353WHW\355SQ\220\220\3022"
#"K\325\301\25\307_\177\304\2013\210\23"
#"{\17\223\212\21@\16\1Bj\30\26"
#"\360\206\371\273PS\277B\221\357\221h"
#"\336\2\221&\220\211\3370\251\357$v&\30}\337V\215K\r\22\177`\362\310"
#"\31|\35\227a\327\267\334`\20\1\306\365\244y\34C\36024\342\340@CH"
#"\r\35A\342\357kyv\370|\216\230f\316B\32\22\270&\315{\351\322\276\206"
#"\224\22)@\323t\320\3151\tc#\301e\226\261L\356\355\254\24\3127=o"
#" \235 2\330\261\354u\346\355L\346"
#"\221'G\320\244t\260=\247H\264\314\215_=\323%BXy\334\24W\4\245"
#"Q\277\301\311\215\t\260g\231\203\a\17\262w\357^bcc\2314i\22%K"
#"\226$((H\231\22+\256*9i\323\223\222\222X\262d\t\247N\235\242{"
#"\367\356T\252T\211\340\340\340\\\371\260"
#"\2536\253\310\317\350H4)\220\270\371"
#"\371\335g\231\362m)\372\264\252\304\307"
#"\3537Q\247\3074\242\356.\353c\341nh\260\\\2500M\nE\376&Sc"
#"mi\262\1\204\373\"\177\36\272@\251\210\312\24\t4\302G:-\263\233\v\e"
#"hTc\16C\276[A\237\233\212e\232\251Ks\343N\0R7\335i4\244"
#"\207Q\263\224n\204p \1=\345\24"
#"\177\35\317\240\342\315\341\4\233U\254\340"
#"\224\266\346\336\324\216\v\t\272p\243\341"
#"\300\266\202\267-\201t\244\24\346<"
#"\254#\245\206\20\276\246\365\212\353\205\4.\354Z\310"
#"\3507\277$\342\341\221L\350\376\237Lm\271nXR"
) 500
(
#"Ha}+ow\a\265\266\272r\250\271\372\6\347R&\305\236\307\244\224T\257"
#"^\235\352\325\253\377\177{\367\36\35E"
#"\231\346q\374[U\335\351\\\310\235\\"
#" \344\2\31\311\0\207\250\200x\37'"
#"+:\30\361\202\270D\307\v\236\203\350\3568z\26AXQQ\341 \23\30V"
#"\375CwV\31\345\350\354\32g\310\21dATTr\334\35\207\305;\271\0\t"
#"\n$\\\2\312%\367tw\325\273\177Tw\247\223\351@\200\204\244\343\3639'"
#"'\335\235\352\256\352Nwu\375\352}"
#"\337\347\345\306\eod\305\212\258\235"
#"N\n\n\n\310\317\317\307\341pH\0\22\275\312\377^\n\325\252^YY\311\201"
#"\3\a())a\321\242E\214\0325*p\277\356\252\302KH\27\203\211\35\322"
#"\25m\325\exu\335q~9\347\237\231:%\207\244\243_\360\357\177Z\303\304"
#"\361\363\230\24o\17D\365\215\20E\1"
#"\216\277\eg*\204\b\37\276J\333\32"
#"\34\334\261\215\235GZ\320\224EB\356$&\344\f\301\30110\24\232\32204"
#"\305\241\317\313\250l\324\311\214?FL"
#"\302\20\"\354n5X-\365|\271\275\222\6\217Nr\346\205\344\347%\240iz"
#"\240{zs}5\365V\n#\207'\330A\333\323@u\371\1b\263\23\320\260"
#"\a)+\245\320t\305\376\317?\245\246\301D93\271\346\352QX'\17Q{"
#"\314\"3'\213\b\315\340\304\301\32\276"
#"o\35\302\370\334\0244\315\313\241=\273"
#"\361$\215cd\202\26xN\226\26\350"
#"\304/\325\303\a\0\367\376\255\374\333\232"
#"\217\261\22&q\3355)\354\337\267\17\0\323\2\345p14u\30q.\v\257"
#"o\360\205\246L\224f\3279\220\177_\357\221\26uqN\32\32\32X\265j\25"
#"\243G\217&**\212\351\323\247K\0\22}\252"
#"\272\272\232\355\333\267S__O^^\36\205\205\205"
) 500
(
#"@\317\317\342JH\27\203\205\302B\325"
#"W\262\362\251\305\224\247\27\361\374\222\231"
#"\fU\32\270\367\360\334\203\277e\327\250"
#"\331\24\317\237Azt\240\234s\247q\247r$%D\270\351\30\356R\276e5"
#"\277_\365\36\r\261\321\0304s\260\336"
#"\315\235\367\335\300_\26l\342\241\312\367"
#"\2319\324\244f\343s<\364\330\307\304"
#"\347\17'\315[O\351_\343x\341\333Rf\272vQ\374\330o\370\240:\201\244"
#"\241\26\207\216\2442\357\217\3173}T"
#"L`\277\260o\315\335\\\2776\223\315"
#"k\237#\307\245q\362\223\307\270d\316^\236Y\366s^\\|\230\325\273_%"
#"_\3017\177~\214\207V}EFN\2\r\225G\310[\371&\313\323\327S\360"
#"\360&\26\375\351]n\316l\345\17EI<|\374)v\277\367\f9m_1"
#"{F!#\236\256\341\331\253b:\357"
#"\206\202\247\223\23\375\252|\355\357X\266"
#"\372}Nh\21\264\266\266\332C\37t"
#"\320\274m\374\30\1771\313\226\257\344\346"
#"\361C\b\264\246+\313\327\302.\305\344"
#"z\223\264\250\213s\342\37\303^QQAMM\rK\227.\245\240\240\200\253\257"
#"\276\272G\367?\323\251\267D\370\v\325"
#"\302\335\23\246i\362\364\323O\223\227\227"
#"Gll,s\347\316\355\364\367\236>"
#"\216\274\267\304`\241)\35\345\210\342\312"
#"\373\346Q\230\235O\262\377\360\326\225\365\21\261?\0\0\feIDAT\313\3"
#"\213\36\347\333c\t8\26101\3201\203\n=I\305w!\302G\360,\r\272"
#"\357\226:\326/}\227\314G\337d\311-\311h\n\16n[\307\227\ak\210\216"
#"\213!\322\1\264~\316\343s\3261y\303\377\260tb\4\215\37<\311;\357\225"
#"\341\324N\360\327\377X\311\233\307\246"
#"\363\365\307\277\301\241\f\312\337\270\217\271\v\377\300\344\277"
#"\314%C)\300 {\306l\306\276\360{\312\36643r"
) 500
(
#"\234\316\226\267w0q\366\277P\220\263"
#"\233?\3065\331[R\273\226\a\36\257"
#"d\301\216-\314\210\6\264\315\24\346="
#"\310\227e\253\271.q;\325\273\17\321"
#"\226\326\206j\311$'\305\311\227\3377"
#"1\324]\201Rwq\367\25\276\322\341\276bu\206\n\nwr\"\261\337e_"
#"9\203G\207_\201[\31\240k\30\276aV\2462\260\34C\30\227\255\373f\26"
#"\320}\307rz\307\367\213\204\365^#"
#"A]\2343\245\24\343\306\215c\334\270"
#"q\214\35;\226\252\252*\36x\340\1\226,YBBB\2\221\221\221\201\345\272"
#"v;\16\25\232$H\r\36\241\202x\360\365\323\235\244innF\327u^\177"
#"\375u\352\353\353\271\367\336{\311\310\310"
#" &&\246o7\\\2100\2404\320\223Gr\325\25#\3\305\233\354\251\327L"
#"\206\216\276\212\2\377mJ\241iF\307\375|\277eO+D8\260\202>\254\276"
#"\2l\f\347\256\271\227q\337\223\227s"
#"\341\223C\310\177h5\257\375\323\255\24"
#"\266l\344\225\205e\20a\241\366ng"
#"\327\317&\362\310h\3\245\31\f\271\356"
#"\37\231\226{\4\275\241\201\252\335\237Q"
#"\367\3316&]\364*\226\245c\265\36\345\344\360X\352O@F\242a\a\260\330"
#"\253\271{\342<\376\363\223=\314\312\362"
#"\262\376;\223K\356\232D\264\243\22\245"
#"+\f\245h\371\372\23\276=\362-K\v&\260\244\315\215\351\204\223?\34gk"
#"]*\277\376\205\233\27\313\313\251Ml`\347\304\177e~S\35Gj\16\360\345"
#"w\377M\305\350{\270@\217\260g\245"
#"@\5\272\274\373\353\321\311\316\251\377\305"
#"\16\313eR\372\317\354y\321\201\216\340"
#"m\207p\323wK\350\6\27\t\351\275E\202\2728g\301\341;x\f{qq"
#"1.\227\213)S\246\240\353:\343\307\217\17,\17\247"
#"oM\227\226\365\360\27jlx\360\355]\377\346\377]"
) 500
(
#"[[\313\341\303\207Y\273v-\355\355"
#"\355<\362\310#\214\349\22]\227\235"
#"\277\20\235\331\25\2275_\267v\5\276"
#"\242O\376.\210\330]\336U\307\347N\303.\16EPx\27B\fT]\16\325"
#"\25\240\f\262o]\314\326[\26\323t\364=\346N\235M\3763\16\356x\352&"
#"4g\244]\245]w\240\231:\206\36aW\345\326u4\3L\315C\253\231\314"
#"UsW\260\341\321\313\360\230mD8\242:\246w\303\302@\a\34\314Xp?"
#"+\347}\300\266|\27\215\256,\376!"
#"\177(\316J\260\374\223\260[&I\227"
#"\315\341\375-\213Ij\367\202\v\234\226"
#"\1\232\306\211\243\303\370\360\215\277q\333"
#"\220c\34\272h!\213Z\237e~\305&\366n\254\344\332%\277\b\204t|A"
#"P\371\213\342Ik\372\200\240\320}\305\3774\320,\273~\234\177X\202214"
#"\303w\334f\177\363X\26r\214\326\a"
#"\344\25\25\275\242k\3602\f\203E\213\0261g\316\0346o\336\314\207\37~H"
#"II\teee!\357\343\277_waN\204\257\256A\274\353T\200\301\275+"
#"\336~\373mJJJ\330\264i\23\337"
#"|\363\r\305\305\305\274\370\342\213\344\346"
#"\346\242\353\272L\257&D\20\273\200\262"
#"\25\230\253\330.\265\254\323\361\325n_"
#"V\276\203j{\21\345\v\366\262\177\25"
#"\"l\4\276\362,\320\274\230\374\310\346"
#"5\177\346\263\243\20\223\372+^\375\342"
#"+^\276#\205\257?\336I\243'\2\217\333B\345L`\354\276\277\361\312\326Z"
#"\3205\216\177\272\211\315\373\276\207\270T"
#"\256\2748\207\377[\363\n\25\226\206\323"
#"\210\344\370\347\353x\371\235/h\363\257"
#"J\371\326\2257\235\273\216\277\302\334\305"
#"e\214\274\366\267\\\24\17\255\246\211\3\205WYDO*$s\307j^"
#"\370\337V\234.\a\272Y\315\313/\275Eu;\304]s\a\227\36\250b\331"
) 500
(
#"k\37r\313\225Y\244]\376K\276\370\344\25>\330\177\5w^\36\213\251Y\366"
#"\364n\20T\375\335\16\354\362\r\337\377"
#"4\254\240\367\235\36\230\351\317BC\5"
#"B\272\346\2335@\227\220\336G\244E"
#"]\364\272\340P\26\e\e\313\302\205\v\1\330\272u+G\217\36e\311\222%8"
#"\34\16\26.\\\210a\30\235\356\27\374"
#"[\f\16\335\375_\203\257\227\224\224PWW\307\2301c\360z\275\334v\333m"
#"\270\\\256\36?\226\20?m\276\251\221"
#"\202?\27A-\346\301'@\375\201\35\251\372.D\370\360O\245\206\16JG\323"
#"\f\242\314*\346\375\372Z\222\"\"\26147z\322\24\26=1\202\247n\\\215"
#"\351\326\321\22&\362\273\377\272\227\242\333"
#"\2472m\362\317\31\21\361\3\307<\21"
#"\264x]\\<{\31\317\226\317\342\336"
#"\311\3271l\230\316\361\203:\277Z\266"
#"\302^\225\322Q\232\27\r\a\220F\301"
#"\314D\36\231\3675\17\277q!\32\340"
#"\361\266\322\324\320\206\251\2019\342f\326"
#"\274\372\25sfMd\332\350\\T\375~\34S\37\347\6\35\364\310\313\270g\354"
#"6\n?\270\205\327\322\1\317\245\\S"
#"Y\315\373\323\237'?\202\300\264p\n"
#"\177\340\363=OM\263\e\331e\a\325\317:\246\377\363\177[h\301'y}\277"
#"-e\241k\22\322\373\212T}\27\347\354L\273\250WWW\243\353:o\275\365"
#"\26\365\365\365L\235:\225\202\202\0024"
#"M#**\252\17\267T\234o\241\336\e\226e\321\326\326Fcc#+V\254"
#"\300\355vs\347\235w2b\304\b\262\262\262\372iK\205\bO*091\276"
#"\261\350\376\313\226\357\0\330\370\273A\351"
#"\376y\227\3458X\210\201\256\273\242\\"
#"\26`\261\177W9G\32\275\0$\217\314''\311\340\310\367\207\30\222\235"
#"A\214awc?\266\273\202\357\232\334\fM\e\201aE\220\220\36G\254"
) 500
(
#"\303\0\357\217T\225\177O\263\t1Cs\31\223\225\210\322}\239\372g\211P"
#"\240\265\376@\365\17^\2622\323pi\n\253\365$\a\177\360243\5\2272"
#"\32108Z\3755\373\32\334hZ<c&\346\21\355\333Jo\363\1\0164\306"
#"\222\235f\317\333\336\\\273\217\306\370\f"
#"\322\343\34\241+\274\373\273\337\a\272\341"
#"\213\376\324\371\30\316\352\324\363A\234\37"
#"\22\324E\257\bU(\356T]\330\225"
#"R\201\237O?\375\224u\353\326\221\234\234\314M7\335Dvv6\211\211\2112"
#"F}\220\331\271s'n\267\233\362\362r\266m\333FFF\6\363\346\315\3\354"
#"qM\241j\23\310{@\210S\353hx\352|@\37\334 %\237)!\6\a"
#"\373\274\\G\25x\5\276\361\347*\320"
#"B\355\277]\5\237\220\363\367\260\351\266"
#"\245\332\336\177(|A\335\327\216J\340"
#"\3615\300\353[\257\356\273\354\360\205y{=\26Ac\230\361bw\332\r\332/"
#")\323wR\261\313\343\a\306\252k\201Q<t\267\231\342<\263\337kv\355\23"
#"\273\346\211R:\362\25r\376HP\27\275&TX?\325r\241,_\276\234\364"
#"\364t\\.\27qqqL\2336\255\2576W\234\a\315\315\315\254_\277\36\247"
#"\323I}}=\315\315\315\24\26\26\6\n\vB\317\3377\301\313\n!\374B\267"
#"\270u\34p\373\257\a\377Q>GB"
#"\204\215N\3115\370\363\336\21\330\355i"
#"\262\374a\333_\360\213@\375\n\273\345"
#"\332\337u>\270%\333\377x\276\340\354"
#"\357\240\243\374\253\366}?\aoB\200\27e9@\367\242)\207=\343DPk"
#"|\347m\17\352@\35\264]\376\345\24"
#"\201\232r\366\266I\327\367\376\367w\377"
#"\203.\357=\240\273Rg\362\357\353=\22\324E\277\353\32\276\16\36<"
#"\310\366\355\3331\f\203\212\212\n\332"
#"\332\332\270\377\376\373\311\310\3108\355"
) 500
(
#"}\273\273\355\\\266g\260\24\267\353\315"
#"\220{\272\307*--\245\274\274\234\324"
#"\324T\206\r\e\206\313\345\342\206\en\220\240-\204\20B\b!D\17HP\27"
#"\3B\250)\2724Mc\317\236=\230\246\311G\37}DUU\25c\307\216\345"
#"\236{\356!::\372\264\1\375LC\341\231,?\230\2gw\317\245\247\317\321"
#"\262,\274^/'O\236\244\270\270\230\366\366v\212\212\212HKK#>>\236"
#"\324\324\324A\365z\t!\204\20B\b\321\327$\250\213\260`Y\26J)\366\356"
#"\335\313\362\345\313)**\"55\225"
#"\304\304D\262\262\262\272\r\372g\353\\"
#"C\377@t\272\232\1\335\215a=\325k\272c\307\16\224Rl\335\272\225\23'"
#"N\360\304\23O\0t\252\346\37j\35\241\256\v!\204\20B\b!l\22\324E"
#"\277\n\16\217=i\331\365_~\367\335w\331\261c\aIII\244\244\244\20\21"
#"\21\201i\232\f\37>\234K/\275\264"
#"\333u\365$\30\236j\271\301\20.\317"
#"\3469\370\357\323\322\322\302\306\215\eq"
#"\271\\\230\246IMM\r\355\355\355<"
#"\370\340\203\244\244\244t\273\236\3012|"
#"@\b!\204\20B\210\363A\202\272\30\20z2\326<\3242\355\355\355l\330\260"
#"!\20\324=\36\17\273w\357&&&"
#"\6\200\326\326V\246L\231\302\344\311\223"
#"\3\217\1\247>1\320u]\241Bf\270\4\366s\355\376\277r\345J\f\303@"
#"\3234\334n7\361\361\361$''\343"
#"r\271\210\214\214\344\372\353\257\357\225\365\n!\204\20B\b!:HP\27\3R"
#"O\273_\207\272\276s\347\316\300t_\246iRUUEYY\31N\247\223\321"
#"\243G3k\326,4\315\236\v\322\351t\236v\335=\375\333@u\272mno"
#"o\17\264\226/[\266\f\247\323\211R\212\250\250"
#"(f\316\234\211\256\333U=-\313\"!!\201\364"
) 500
(
#"\364\364\260|\35\204\20B\b!\204\b\27\22\324\305\200u&c\232O\327m\336"
#"\37F\367\355\333\307K/\275DTT\24\221\221\221\24\25\25a\30\6^\257\227"
#"1c\306\364\331s\351o\301\257OCC\3uuu\350\272\316\341\303\207)-"
#"-%66\226\350\350h\26,X\0t\364\36\360\237\310\350\315B{\275UG"
#"@\b!\204\20B\210\301J\202\272\350wg;\305Zo\4\275U\253V\241\353"
#":\36\217\207\v.\270\0M\323\2-\310\0n\267\233\t\23&0j\324\250^"
#"[\347\371\364\316;\357\4z\27\200\375"
#"|\232\233\233\251\253\253\v\3640\270\365\326[\373d\335=-^'\204\20B\b"
#"!\204\350L\202\272\20>[\266l\241"
#"\271\271\31\240S\260mii\241\266\266"
#"\226\250\250\250n\303\245\307\343a\376\374"
#"\371\235B~_Z\277~=\273v\355\n\331u\37\354 \354p8\310\314\314\354"
#"T\201\335\355vs\311%\227\220\235\235}^\266S\b!\204\20B\bq\346$"
#"\250\vq\32MMM\324\326\326v\n\274\376\256\333~\246iRZZJSS"
#"\23\206a`YV\257\266\30+\245\320"
#"u\35\245\24\215\215\215\334~\373\355\244"
#"\245\245\235\362\304\200a\30\344\346\346\312"
#"\264hB\b!\204\20B\204\31\t\352B\4\351\311\24q\335\361x<\364\365\307"
#"\311\277\35N\247\263G\343\300{\362XB\b!\204\20B\210\201E\202\272\20>"
#"\0035\270J\213\270\20B\b!\204\20?-\347g@\255\20a\250\247\347\260\372"
#"\372\\W\327n\366g:/z\327\313rnN\b!\204\20B\210\201M\202\272"
#"\370\311\vU\235\274\273J\364\241\302n"
#"\327\373\205\272|\256\316\246\5=\3709"
#"\310\224hB\b!\204\20B\204\17\351\372.\4=\237\373\273'\313"
#"\366t\231\263q\246\333!\204\20B\b!\204\b?\22\324\305O\336"
) 66
(
#"\331\2646\237j\216\360p !_\b!\204\20B\210\201K\202\272\20B\b!"
#"\204\20B\b1\200\310\30u!\204\20B\b!\204\20b\0\371"
#"\177\262\0345\36Vp\25l\0\0\0\0IEND\256B`\202"
) 0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 12 #"circumcenter"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 10 #"let-values"
0 0 24 3 4 #" ([("
0 0 14 3 1 #"c"
0 0 24 3 1 #" "
0 0 14 3 1 #"r"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 19 #" ("
0 0 14 3 24 #"circle-from-three-points"
0 0 24 29 1 #"\n"
0 0 24 3 19 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cx"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 4 #")) ("
0 0 14 3 2 #"cy"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 5 #")))])"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 14 3 1 #"c"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 26 #";----------AREAS----------"
0 0 24 29 1 #"\n"
0 0 17 3 2 #"#;"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 2 179 4 1 #"\0"
2 -1.0 -1.0 0.0 0.0 0 84 500
(
#"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\2\251\0\0\2]\b"
#"\6\0\0\0\21%\356\310\0\0 \0IDATx\234\354\335\375\223$\307y"
#"\37\370\357\2235K\371?\260\2508I"
#"\26\361F\211\322]\350\305$\260\273\b\375t\22\1Po\226(\03513\220%"
#"\31\vP\"\361B\351\302\27g]\304E\310\322\335\205\316\304.H\211\4A\207"
#"\355\235\231e\350\305!\362\216\300\202\366"
#"Og\20\v\222\26\355\220\217\244\210\335"
#"\5\2548)\316\247?\201\334\251|\356"
#"\207\254\354\311\311\311\254\252\236\351\252\312"
#"\352\376~\202\340\316\364TWUWwg=\365\344\223Y\242\252\n\"\"\"\""
#"\242\202\230\251w\200\210\210\210\210(\306"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\6"
#"\243\213\37j\0\366\350wX(,\352"
#"\305\257\356/\252\n(\240Z\a\313\266"
#"\254_\325=\207\210\210\326\16\203T\""
#"\32\214h\23\250\212\0z\324\334(\f\4\6\225\302\5\245\306\5\261\"5\16E"
#"!\"@\20|\346\2Q\21q\313&0x%\"\2327\6\251D4\234&~"
#"T\25\34J\r\321\303\340a\v\bP\v \272\5\327\34"
#"m\241\202\vhEd\21h\206?\207vvv\26\217k\24"
) 500
(
#"\324\346\202W\"\"\232\a\6\251D4\34\5\376\366s\377\3vw\177\31\277\372"
#"\211\277\0\304\0\260\356?5\200\2\346"
#"\317\377\0\273;;\330\376\304W\1\270"
#"\354+\344\20P,\2\315\\\320\251\252"
#"x\354\261\307\26\177\17\203Z\"\"\232"
#"7\6\251D4\34\1\276\363g\336\217"
#"\373\241\320\327^\307Wa\340\233\35\25"
#"\v\25\213\377\360\357o\300\312\367\342\3"
#"?\363\243\256JU\0\325j\221\205\5"
#"\322A\347\316\316\16D\4\326\332E\200"
#"\312\340\224\210h}0H%\242\201\3750.\2347P\375w\370\322W\375`*"
#"W\223\252\377\345\377\304\237~\321\300|"
#"\357\273\361\243o\a\214V\260\270\343j"
#"Xa{\255\375\340\340`\21\260\22\21"
#"\321\372`\220JD\3:\204\252\301\17"
#"\377\364\373\361\275R\341\365?\375\34\376"
#"?U4\203\370\361\267\177\376e\374\r"
#"\24\367\377\302\373\360v\1 \26F\317"
#"5I\324&\343\232\250E\335\336\336\306"
#"\376\376\376\210\257\203\210\210\306\306 \225"
#"\210\206\243[\200X\340\277\372\21\274\347"
#"\273\267P\377\315\227\361\345\277\25\210X"
#"\210\376\277\370\3677\376\6V\356\307\375?\\5O0\213zTE3\310*\312"
#"\220\246\272\365\367\367\367\261\263\2633\306"
#"+\"\"\242\2210H%\242\301\250\300"
#"u\353\353\337\305O\377\374\3750\366\257"
#"\361\225/\377\0277h\352?|\26\177"
#"\374\327\26z\341\1\374\210\326G\317\201"
#"\vl\5[\311u\356\356\356\266fQ9\365\24\21\321z`\220JD\3\262\200"
#"\2V*\340\307\356\307y\243\370\353?\371\34\276*\300W\277\374:*|/~"
#"\351g\177\24\220\n~\324\277\0\200m"
#"\237\314?\25\210\372l*kS\211\210\326\3\203T\"\32\214\250\1\344N3i"
#"\377\217\340\347\336\377\335\270#\377\27\276\362\325\257\342+\257\1"
#"\365w\277\e\357~;\0265\250\n\343:\371\345\34R\241\346"
) 500
(
#"\316\316\16\366\366\366\216\5\242\361\374\250\361cDD4O\fR\211h0*\0"
#"p\16*.O\372]?\366 \356\22\301k\317=\207\e\20<\360\213?\203\267"
#"[wkS\205\205\300bk1\252?=\272?\316\224\206s\251r\244?\21\321"
#"\372`\220JD\203\21\5\254\2\2\v"
#"\21\v|\327\303\370\271\373\1\300B\315"
#"\375x\367\17\273[\242\212\310\321\210~"
#"5\260\242\210\233\247\235\235\235\23\265\250"
#"a\346\224\201)\21\321za\220JD\303\21\300\b\340\347E\5\16\361#\357~"
#"\20\200\1\356\1777\376\276\372[\242\272"
#"jTU7\231\277\201\36\253I\315u\337\373\3004\fP}m*\273\374\211\210"
#"\346\215A*\21\r\310B\233\301S\356"
#"\277-\374\307\257\334\0\364{\360\376\177"
#"\360\243\0\334\235\247\2405\214\n\4GSQ\371\260SU;G\364\373\345B\314"
#"\254\22\21\315\e\203T\"\32P\20l\nP\377\307?\304s\257U\300\367\274\a"
#"\357y\2736SM\31@\4\332\334\22\25\212cY\324\276\301f*\233JDD"
#"\363\225\236\210\220\210h\5\334`\250\277"
#"\305g\377\307\337\302\277\376\e\3\253\2"
#"\310w\341\277{\352\247\361\235j\233\251"
#"\247\0\300`\21c\n\216\215\354\367#"
#"\372O\265}\326\252\22\21\315\0263\251"
#"D4\30W\207\372v|\317\367T\260"
#"\250a\324\342\342o\376\257\370\251\277+"
#"\320D\360\330U{\332\265\\h\177\177"
#"\37\217=\366\30kS\211\210f\212\231"
#"T\"\32\224\205\342G\236\274\212\375\17Z7o*j\250TP\310\211\271P\303"
#"\351\244D$9\242?\\\316\313eL\255\265\314\244\22\21\315\0243\251D4\30"
#"\213;\256*\265\251=U\0h\246\233"
#"2\220\23YN\377\273\310\311\277\265"
#"\311\5\242\a\a\a\330\335\335=\345\336\23\21\321\224D"
#"\331\27FD\203i&\344\267\6j|\240\332\f\226R@"
) 500
(
#"\241'\262\247\336\356\356n2h\355\252"
#"3\365\177\17\237\32353\0\21\21\225\207A*\21\rK\21\214\204\262P5\200"
#"\270\340U\242\316\234\276\1\250\377\271\317"
#"\324T!k-\214a\a\22\21\321\34"
#"\260\265&\242\301\270\356\375\360\21\343F"
#"\357\253i\352S\217\353\23\240\206\331\325"
#"e1@%\"\232\17\266\330D4\0307\355\251\2056\223\371+,\304\2729S"
#"O\214\232\352ZW\342\356R}\204e\2\341\277DDT6\216\356'\242AI"
#"\223=]\374l\226\216O\317\266\375("
#"\270\345h\177\"\242y`&\225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225\210\210"
#"\210\210\212\303 \225\210\210\210\210\212\303"
#" \225\210\210\210\210\212\303 \225"
#"\210\210\210\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210\210\212\303 "
) 500
(
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225\210\210\210\210\212\303 \225\210\210\210"
#"\210\212\303 \225\210\210\210\210\212\303 "
#"\225H\1\3006\277\270\177U\25\n@"
#"\27\217\373\345\302\37\355\321\317z\364w"
#"\267\272;G\217/\326\354\1779<\276\3365\246\252@\374Z\203c\2658*\376"
#"=\320\346\317\252\315\242\3561Xu?"
#"\333\350\351DD\264\266\30\244\322\206;\n\35-j\0\6\n\v\21\201\0\0205"
#"\270\375\374\203\356\367J f\vb\4O^\a\324/\v\v+o\340\362\203\2"
#"#\315\177[\337\1#\0021\25>x\335\255\335@\0\0\252\25D\315F\4\252"
#"\"\202\270\231Q\1 >8uGE\305.\226\23\0\356\350[\210\32@\0005"
#"\342\236h,\24us$\327\377\370\21"
#"\21m2\6\251\264\321\24\200\b\200\332\300\240\2\0\2105\200"
#"U\0\267p\345\242\301=\177\364\v\270\245\n\265\n\255\277\5\275"
) 500
(
#"\365Q|\355a\301\326\245\177\v\201\1, \250\0\v\234\277\374W\260Z\303Z"
#"\v\325\32\372\312?\302'\37\26|\360"
#"\272\201U@\265\t\300\334\377\326_s\5`Q\3\267/\343\242\21\30y\34\327"
#"\233\220]\3412\326\202W\360\270\21\230"
#"\213\37\307mX\27\310\342-\\~P\260%\2#\25\21410R\241\222\277\203"
#"'\256\3l\276\210\210\326\e[y\332h\2\343\2(q9U\vEm\0\30"
#"\305+\227\356\303\263\270\214\233\257=\215"
#"\273\265\351\202\226\n\270\353Y\274\252/\343\322\213?\211'^\6 M\6P\0"
#"\253\337>\312\362\251\1\376\333\337\302s"
#"\347\5_\273y\23\6\200\210\5\304F%\6\353\313\5\233\26\6\225;~j\0"
#"\371\6\336\272\211\346\nA\335\361\272}"
#"\23_\307\26\33411\260M\277\276\330"
#"\n\357\276r\v\265~\273\t\376\25\372"
#"\371\177\210O=\3543\324DD\264\256"
#"\30\244\322FS\300\345\364\214\373\327\250"
#"\353f\206^\307g_4\270\364O\236\302=\260.\337'\315\337\0\30<\204\337"
#"\274\374c\370\364\357>\217[\250!\260\250E`\f\0\333t\353\v\0\343;\256"
#"\321\4\302\256\373\333mfk\374\27<2i\202N( \330\202\302\342\361K?"
#"\200\203WnC\3056e\17\300[\237"
#"\377\23\374\320\343\277\n\324\2070\0\f"
#"\f \6jjT\326\2757\322\324\251\342\221\177\214\217^\264\370O7oO\370"
#"\312\210\210hh\fRi\243\211\272\332"
#"R\0\200\326\200**\30\340\v\237\303"
#"\v\362k\370\351\207\25\n\263\250Q\205"
#"5\360\261\322]?\265\215\373o|\35o6\231\324-(l\275\5\30\27\244\n"
#"\0\\\377(>\202\313\370WO\335\v"
#"\305\241\353\352\267\0`\1\263\1\231\324&@u\a\343\16T\0\371\271"
#"\177\200\37\372\243\317\343M\230\346\361"
#"\233\370?\376T\361\375?\0`\313\37"
) 500
(
#"_\v\340\2609V.l\205T\256>\25\200\261\eQ,AD\264\321\30\244\322"
#"f\223C\210\379%\25\324\324\0,`]`$\20H\r,\272\346M\323e"
#"\337\4RV\376\23\276q\333eG\255V\370\322G\336\341\6XI\345\2\333\207"
#"?\1{\343\377\306-q\231D\321\272\371\3265\201\327\232\23\205+o\0P\233"
#"\267aK\1\324\367\342\a\360M\334\4"
#"\0X\310\355W\360\257\355\a\360\310=\26j\253\246D\0P\25\30c\360m\t"
#"g\b\260\300\365\377\r\37\301e\374\213"
#"\247\357\36\373\345\20\21\321\210\326\377,"
#"I\324\312u\271\2730H!\272\5\300"
#"\270\322I\324\20(\264:\312x\252\357"
#"\276\26@\352\n\225\232f\r\6\202\32\17\\~\3Z\253\233\302\312*T_\302"
#"\223\370\27x\344\302\363\270\r\v\240\362"
#"\245\230\eA}\211\203Z\2106\363'\310]x\337/~\35\177\366\212u\231\326"
#"[\337\200\375\245\207p\267\21\210\251\233"
#"\322\0@p\16\26\26\177\376\314=M"
#"\320\357\3763\17\177\32\270\3615\374\347\251_\34\21\21\r\212A*m4?\r"
#"\324b\332#\237%}\357\317\342\327\364"
#"E|\366\245\246\233\277\351\2666\246\202"
#"\237\266\352\315\227\377\0047\360\203\270\373"
#"\356\243\31U\25[\213,\253\313\b>\214?|\371W 7\276\206\233~T\377"
#"\242\373{\240\327\324\324#\270\351\237V"
#"\267\276\323>\307\300M\305e\232\27n"
#"\1\334u\317\273\360\351\207*\30#\220"
#"\207_\304\215g\356\201y\350\237Co<\213{M\223\2116\337\207g_\3\254"
#"\270\312a\27\356\272\f\264\305\213x\310"
#"l\341\340\3403n\252/\21T\306M\377%US\236\21\374g\214i\375=f"
#"L\377\246q1\247\353)\216S\356y}\36;\355\366\210\210\346\202A"
#"*m65\213\300\324\372\21\371\2\210\376\4~\356\22\360\302\377\362\34n"
) 500
(
#".\352*o\342\371\367T\220j\v\242"
#"\237\307\357?\363E\350\245\237\301\303\20"
#"\0n\300\217\17w\\-f\275\330\206m\2!]\374\335\36\375\22\356\316\n\2"
#"\17\37x\235e]a\340\325w]a\0\350\203@c\4[>\vz\3673\270"
#"\1\305\247\36\26\310O\275\200K\347\257"
#"\340\255\303\353\270\204'\361\212U\350\365"
#"_\203\234\177\0167UQ\253\205\352-"
#"\\\271`\360\300GoC\365\16\254\265"
#"\260z\a\265~\e\372\362\a\241\372+"
#"\370\361\235_\204U\227\271\276c-\254*lm\233,\2666S\201)\352\272v"
#"\331m=\376\270\377/\16`\343\307\342"
#"\377\374\261\t\217\317\262\27\5\341\363\343"
#"\307\375:\333\336\207U]\204\20\21\225\212A*m4W_jP\vP!\270"
#"\233\221\n\36~\341\r\\\301Gp\237<\211W\0@\357\305\207_\177\3\317\275"
#"G!\325O\341\5<\201\353\237x\270"
#"\271C\222\373*\251\0346\243\326\1\321"
#"\n\300M\\\371\275O\341\374s\377\30\17)\0\34.\346H\325 J\r\263\237"
#"\313\6\227\361\362\306\30X\273\334\240\254"
#"x\35>\0\n\3\260\243\300\363d\2462\f\252\216\5\204VqGkX{\210"
#"\372\366s\20\274\rO\274\244\320\272\306"
#"\317\374\340\37\343s\37\3733\274x\351}\370\t\261P+P\365\363\1\b,j"
#"\210U\30\3\3240\0207]\2\4\25Tk\300\b\252cw\372\222\243\300_,"
#"\240u6\200Le%\375c~\377\255\265'\202\3310\260\254\252jq,\302\237"
#"\375\277\251\355\204\333\213\3\336\360\330\207"
#"\177\267\326\236:\20&\"\2323\6\251"
#"\264\361\24h\246\3617\20\1\24.\0"
#"\202\275\27O\275\252\320\227-\0362\347"
#"\232\1Q\367\342\331\327\233\314*^\300C\325%\274\254\26\"nZ\251/"
#"=\375\3750\325\26\304T\220-\201\221\373\360'\357\177\3_|\352\373\0"
) 500
(
#"\221\246\346\32567\218\n8\316\22"
#"|\304\353\t\203\232\344\353\325\366\3408"
#"\16D\375\317a\360\26\amaP\34\277\26Y\334\362\324\340\1|\e/<\""
#"\200\32\334\373.\305\263\317|\32\367\277"
#"\353\35\256\334B\4\6u\360\274-\324"
#"F\241\332\4\243\315j\5\267\360\a\277"
#"\363\".~\364\267\360\2358\327,m"
#"\233\367\20G\345\31R%\367\247\355\261"
#"8X\314\35\307\3708\324u}\342\370"
#"\30cPU\325\211\343\230\22\a\253\341"
#"\357\251\322\3v\365\23\321&`\220J"
#"\eM\265Ik\332\243\233\243J\23\356\250\201\313\310=\364)\250~\vjk\250"
#"\336qw\222j\202\21\221\27\361\331\177"
#"c\240\372\16<\375\352!\254\255a\17"
#"k\267\254\255aU\361\332\207\357q\201"
#"\212\2\207\342\357\260\344\356j\25\a\214"
#"g\311\226\305]\304]\1\21\200cA\224\3779\325=\36\357W*\363\232\f\346"
#"\200\305\350~\343\246I\300\23/)\304"
#"\b\356~\370\3758\217\373\361K\217\334"
#"\347\16\266\272P\363\250Q:\4Tp\343\331\273`*\3S\231\246V\365^\\"
#"\373\300M\274\372\324\275\256\302\265Y?"
#"\24\213\231\1\26\333\216\367'\23\334\305"
#"Az\270|\237\354v*\240\265\326\36"
#";\216\376\347\360X\347\202\323p\275\341~\304?\23\21\2553Q^\222\323Fs"
#"Y/Y\344\341\320\4=\26\300\26\254"
#"6Wr\256\177\336M\310\257\301\325\235"
#"\0\"\325\"p\215\203\207C\270\371\3"
#"\264\311$\372\362\2\253\356FU\213\32\326D\20\270L \22\6Hmu\213\361"
#"\357>\353\32;m\215\345\211\347\370\256"
#"\370`\300\230\237\225\312T\202Zk\b\314Q/=\16\1\335:Z\356hO\1"
#"\30(\334\r\0\232Ik\261\275\363\17q\260\177\265)\321\b\266o\0250\375"
#"\272\310\303\340\276\317k^\331\261\t\266"
#"\37v\347\267\225j0@%\242M\302 "
) 500
(
#"\2256\232\17\204\26\0313\0\260\315\315"
#"\245\340\376\250Z\303J\325\324\254\332\243"
#"\356d?\35\25\232@\307\252\e,e\252\243u[\5Ls;\320f}\"\322"
#"\224\23\244\353\20\375\277u]\367\nH\302\0\325Z{\254{8\316\360\305\3q"
#"Z\217\315\n\2\"\r*L\321\4\243\2\240\6P5\263%\324Z\243\271eB"
#"\363\34\340h$\277\v\352]\302\333B"
#"L\265\230\242j\221\221\3663)\250\201"
#"\201\342\320\336q\373\335\4\263\251\301M"
#"a\315gW\23\3306\270\251\357\357m"
#"\353\214\263\250]\365\263DD\233\202\335"
#"\375\264\321\26\261\250\270\233\227\272\332H"
#"\240\226\243?\n*\30U\204S \1M\251@3\205\225U\205T\2\230\252\211"
#"=\233\233\4\210,\356h\245r\b\221sn4z0\2=\354\n\16G\243\367"
#"\231\6)\356\342\217\a5\305\265\223\341"
#"\363\372\254\333;m\240$\213\320\23M"
#"p\351f5\250\26\307\355\16\214\270\\\252U\0z\330L\a\346\353~]\240i"
#"\244\202\3109w\314\254\242n^\317\av>\200C\265\320Za\355!\16\325\242"
#"2[\20\177w\252 \30<M\200\32\37\207\370\261T\ri\3569\271u\246."
#"$\3422\213\2604\200\210hS\254\377"
#"\315\303\211z;\312vV\341\303\322\314"
#"\241\212\223A\216\177L\0\250\r\247\16"
#"\252\26\331X\1 \346x\20\323Vc\30f\376\374tH\251`*\36\5\336\267"
#"~\3624\316\36 \371.\372\223\377\36"
#"\337\357\240I\362\307/\n\304\375\354\b"
#"\200+!0~\376\331\346Q\253z\342"
#"\370\306\257eU\307\251\253\234\342,\353"
#"\362\332..\342\232\346\263d\307YJ"
#"@D\245a\220J\264\244\266\256\337T\240\350\353\fsAi*\320\211\273\374s"
#"\3{\342z\312\271v\r\207\373\37g?\373f'C"
#"\361\363\342\367c\316\307)\264l\320\32\227=\264-\313"
) 500
(
#"\240\225\210\246\306\356~*B\351AC\274\177m\265\235q\rd\34@\346\6*"
#"\305\317\367\313\206\331R_\2\20v\a"
#"\207\353\234kP\221\352\332^U0\231\vz\347&\265\337m7%\310\5\260m"
#"\345\v]\217\21\21\215\211A*\25a\225A\311\20R\331\2708\20\210\3M\337"
#"U\357\177\217\327\221\n2\303\237\303\300"
#"45\261|\250\324\343\326%U\323y"
#"\242{\177\311u\345\376\26\256w\216\307"
#"+\365\375H}\246\374\347$\376\214\226"
#"\374\375\"\"Ja\220J\305\bG\246\227x2\r\3\251\324]\235R]\314q"
#"\20635`&\24\327\230\206\1UUU\213c\224\n\232\375\363\347$\327\25\277"
#"\352,^\234\221\236k\2260\365>\347\352b\333\6_\245>'s\373\354\20\321"
#"\372cM*\25#\356\32/\241&.5\250)\314\220\306R#\265\3332X\307"
#"\aa\35=\226Z\257\177\274\355\216RS\37\257\323He\372NSc\233{\355"
#"\251c\227\233\37v.\226\335\367T\306~\331AWDDcc&\225\212\22g"
#"~\246\26g\236\252\252j\355jO\5Vmu\253aV45UT\270\3160"
#"\200\353\23T\314=3\266\212\300)>v\376\367>\323{\315I[\315t\370X"
#"\337\372U\"\242\22\254WKM\263WR\0265\344O\344u]'\377\326%\356"
#"\372\17\247\226\362e\3\271\222\200\276\203"
#"\243R\301\355\\\244\352P\343\317\3012"
#"A\267\177^|l\343e\346.\16\276\2758;\235\273P*\355\242\220\210(\304"
#" u\323\331\32Ga\227\233h\335\335"
#"b\322=r\364\363\341\321\3\3152\252"
#"\365\342\356@\0\240\376vM\376w\330"
#"\243\373\247\373\365.\376\26\256\3336w"
#"&r\277\213\210{\256={\266\360\264\201H.\233\331\266?}\272"
#"\247SY\321\266Q\330}\6\3\205\353\316\355\377\334\304\301\3512\237\3"
) 500
(
#"U]d\274s\1n[6uN\307.\367\376\307\313\3649~m\301j\327\347"
#"\220\210h\b\fR7\234\232\n\6\200"
#"Z,\356\214$\315\377\251\252\233\244^"
#"\0\330-\27r\n\240r\b\205\17\0\302[\2036\353P\277\36\263\270}%\304"
#"M\274\216\305\235\204\334\357*\0265\340"
#"\356\307\356\267\333<7\276c\20\260|"
#"\266\360\264#\232S\331\314\266\272\3226"
#"q\227~j\200U\274\355\266\272\327e"
#"\367\277d\271,_*p\17\203\312\334\347\300/\27g\274\2279\36\233<\n>"
#"\236\31\0\350w\3\200\370\"\201\210h\25\30\244n8Q\0ZC\214m\202F"
#"\367\273\vP]\20\252\250\1\3\230\3466\240\242[\20\bT}@j\241\270\343"
#"\326\347\377O]\220\240h\326\353\357\257"
#"\216C\324\2w{L\261\0205\250\324"
#"4y\324\303&\200\275\3\4\347\271\270\253\334?\26\376=^6\274=\2501\346"
#"\304\355BSR\353\354\3522\366\217\347"
#"\202M\377\374\266\232\310T\200\26\317\34"
#"\220\223\32\0004\247 \301\277?\3411"
#"\356\32d\346\227K\331\332\332j\35\24\325g`Vi\245&c\t\217Ix\361"
#"\20\317\270\221\252\301N\225\245\20\21\235"
#"\25\203\324M'hR\240\246\t\"\1\225\n\"o\341\362\5\201H\205-y\233"
#"\v\270*\201\221s\20s\36\317\277\251"
#"\315\215B\377\n\227/Vx\360\371\377"
#"\307\235\330\340Ob\25\\\360\372&\256\\\24l\231\n\2251\209\207-\251P"
#"\311\337\301\23\327\233[c\252B\244\311"
#"\310\n z\256\211v\217\0025\37\330"
#"\2452oa\360\351\247i\252\353\372\330"
#"\311\266m\322\363p=\341\211\266\255\213"
#"?u\302\366\317\v3\247}\2\256\370"
#"\371\313\4\231\271u\314Y[\320\335"
#"\26@\372\232\341\256\222\f\377o\256\34`S3\251\251\v"
#"\2008XM]\344u]8\20\21\235\26\203T\202\370\0"
) 500
(
#"U\25\242M7\274\2R\1\347/\337"
#"\202\325\332\335\17\275VX\275\203\333\227"
#"\5\37\271\373I\274,\212Z\276\355\262"
#"\261\366\20\"\332dR\233\262\0\25\b*\0\202\367|\364\233\260u\23(\332o"
#"\243~\371W\361\342#\6\217\277b\241F \326@aP\303gs\261\250\225\365"
#"\1C]\327'\346\b\r\203\311\260;"
#"\275o\r^\256\366\261\253\273=\25\300"
#"\372\347\204\231\323\256}\b_\313i\273"
#"\370\32718H\r\2\n\377\226\n\224rY\321T=j\374s\34\254nj\240"
#"\32\v/\3068\310\212\210\306\306 u"
#"\303\371\323\260X\205\210B\305\272l\246"
#"\30\300\372\232\323\246\313\277\311v\276\343"
#"\251\337\306\257\311\247\360\331/\270|\251"
#"Q\1\314\26\0\3\253X\324\241\212\b\4\207P\0\306\274m\21|B\4x\357"
#"o\341\271\a\24_\377\346\233.\3105"
#".\266\255\26\373\245\213\237\343\314N\230"
#"\5\rO\236\275^oK\367\256\357\326"
#"\354\323\335\236\312\306\366yN\352\261\252"
#"\252\226\352\342\357Z\357\234\203\253T\246"
#"<\365\372\342\256\377\334g \376\234\304"
#"\313\307S\212\261\333\372\270\\/B\352bp\316\237;\"*\23'\363'\307\270"
#"\bR\264\351\202w9M\250\270\272S7\270\312\302V@%\202J+X+P"
#"\270X\266v\23\0034W=\306\325\234Z\3\30\323\364\334\177\273\251C5\0\f"
#"\254\324PT\20\251\26\301/\340g\4"
#"pC\256T\5\376\34\30\327\313\305\231\256\256l[[\306,\374=u'\251X"
#"XS\232\312\202\306%\4\376\337\256\314"
#"\354Y\202\242T\331\302\\\262\201\341k"
#"\317\325\366\346\352\36\17\16\16\216\375\336"
#"\266\215\334\261h\vT7A|\\S?\347.\f\374\317~\31oS\353z\211"
#"h\265\30\244n8\201\205\2129\0324%G\231P\243"
#"\b\202\326C\240\332\202Q\305\27\236|\b\237\304?\302\365"
) 500
(
#"\367\2\242[PQ\270\241Tnp\224+\03708:G5\1\206\237\5\300\2"
#"\346\v\277\217g\365\237\341\366\323\357h"
#"\226h6\3\3\243n!\301\311\301Eq\255h.\230\210\273\343sut\213="
#"\324\243[\235VU\225\255m\214O\310"
#"a\300\32\17\206\n\263wm\265\255\306"
#"\30<\372\350\243\330\337\337O\276\226."
#"s\17\252\226\335\3770\213\275\275\275\215"
#"k\327\256u\326\242\346\326\341g\2He\3537Q[\255t\352}\2123\324\300"
#"\361;\242m\352q$\242\325`w\377\306\v\2+4\365\250p\301\253\25\301\353"
#"\317\334\345NP\346\34\214T0\306\340\241O]\302K\372\"~\322\227\6(P"
#"\e7'\252\250\201\25\205\250m\242N"
#"\3\30\340\213\317\334\207J\4\306\b\244"
#"\252 \217\374s\310\353\337\300-\324h"
#"f\266:\n\220\305\317\273\332\36\270t\235\4\2279A\372\0005wr\2153\235"
#"\376\3670\203\32\16\316\212\353Rs\201X*\3{\326\200s\316\1kn@Z"
#"(\16\230\254\265'\352y\273\216\201_Gj&\200M\16\254r\257=\374L\247"
#"\352S\343\332\354\266\236\2019\177>\211h\\\fR7\236]\314\205j!n\376"
#"S\270\371NU\25\177\377\312M\250u\203\246j=\204j\215Z?\201\207\321d"
#"Yq\b\300OM\345\6`\31( \246\231\260\337B\255\340\201\347n\302Zm"
#"\6O\325\260\365\347\3618>\215\207\37\370C\334\226f\220Tss\0\277}$"
#"\202\266\266.\310\234>\1K\252\234\300"
#"\377-\316\262\245\376\363\313\266m\263k"
#"\260Ox\322?\313\211|\216AV\334"
#"\305\334\366\32r\201}X\202\221:\266"
#"\361\366\346x\234J\23\177\17\302R\231"
#"T\240\32\177\317r\353$\"\2\30\244\22\3402\231V\335\324\373\"h"
#"\346\221\202\b\260\245\342\372\347\233\340"
#"\323jSc\n\300O\274\257\242\20"
) 500
(
#"\373\266&\23\352\352K\25\326=\315\245WQAp\350\247\16\0 \362\b^x"
#"\371q\340K_\3037aQ)\0T\315\214T\352\27k\226=Y\a\27\6\31"
#"}3\252\271@%W\333\32v_\266\235T\333\312\2\342\355\245\266\e\356\177n"
#"v\202e\262\204s<\311\347j!="
#"\37\374\304\23\365\267\5\371\251:\335\334"
#"\357\264\32a\0\232\312\266\246.\376r5\310DD\fR7\236\373\bX\203E"
#"p\352\372\375\253&\247j\233\273H\35"
#"\r\314G3`J\341\352F\267\324\300\312\267\0\0\207M\b\353{\372}Dk"
#"\305\205\240\256\316\324\337.\265\231\300\35"
#"G\263\n\250\252\233\266J\0\361\267b"
#"E:\310\bu\5\252\251\277\247\246|"
#"\n\273\201S\317\313\5\213\251\365\347j"
#"Rs\3u\302\340\265o\226\257o\355k\311\302@\306K\275W\271\356\371\256u"
#"\205\217\373\237i5R\27~\341\317\251"
#"\336\206\266\36\5\2767D\24\342\300\251M\247\256\6\324\0PiFNY\0R"
#"C\2400\272\265(\a\360\1&\304\370\16~\267\nm\262\260\352F\376[u\223"
#"\5,\272\356\255\201j\335dU]\246Up\vW\376\351\247q\377\345\333x\4"
#"\342\2_s\b\310V\23\0\273m#\21\217\344\2\261Tf4\346\353\27sA"
#"o\337\322\200\3609)\251L^\374\374"
#"\324\272\303\375\314m\253-s;\267\0"
#"5\226{o\303\v\212\334\373\34\a\371]\31r:\273\\=o\252\267 \25\250"
#"\346\312<8\360\212\210\0fR\t\0\340\246\231\22XH3\321\251\210\2\6\250"
#"\345\333\0\232X\321\237\363\233\23\213\273"
#"M\252\v\370n<{\37\304T0F\260e\4\225\274\r\27\257\334\206\28'"
#"\26_z\366\235\220-\201\221\n\225\30\210\271\27\177\374\213\267q\343"
#"\351w\0j\0\343'\236\362{\244\213;`\345\272\306Sr\31M\277"
) 500
(
#"\2168#\27v\17\247\262@\251,j\252N5\336vj\37\302\311\376c\271\354"
#"RW\31\303\272\324\365\3452\240\200{"
#"\235\276\213?w\214S\357U\256d\242"
#"\317\305\f\235N\252g\"\374\327/\223\372.\245\2W\"\332l\314\244n:q"
#"YK\210\272\273>5\335\376\202{\361"
#"\364\253\212\247\1\0\207P\335Z\224\253"
#"\272\200RP\213E\205\277\207\337x\255"
#"\306\207\232\214,\232\356zk\1S\271"
#"\222\200\17\275\246\370\r\340\250\316\324\237"
#"{\232\337\217ei\1\210\36B\261\5\t\346O\5\372\5\"\341\343\251,\215_"
#">\234.*\25\254\244\202\230\\\340\30"
#"g@Ss\255\372\333\265\306\333n\333\a\377x<M\222\352\311I\350s\231\333"
#"\322-\e\210\347\226\355\372\34\204\3339"
#"\355\235\275\350\244\266\36\203\324\337\343\347"
#"\372e\373,OD\233\207\231\324\215g"
#"!\0204\303\362\0014c\247\264\16\226\331Z\304\225\2,jU+u\23\363\373"
#"n|\261\6V*(jH\345\353K\315\342y\20\v\225\246\36\325\a\265>{"
#"\v\v\250i\342\326- \nP\335~\345\203\303X\\\203\230\352b\214\353\345b"
#"\251\22\200\256\23\250\317\372\305'\356\256"
#"\e\4\264e\366|\340\353\245\202\340\271"
#"\236\330\343\213\216\324\\\263\241e\203\313"
#"\370\275g\6u\265r\331\352\334\337S"
#"\313\205\323\265\345\262\351D\264\231\30\244"
#"n<\327\305\2768\2117\217\212T\307"
#"\27\223\243\345\3353\f\216E\256\315|"
#"\250U\363\334p\235\307\267e\2029Q"
#"M\363\274\243\365\35\377\333\221>\3+"
#"\342e\302\0\305\a'q\255'\222\373\31\275\364L`\223\v\240N\23\24\245\6"
#"\366\264eJ\327I\374:\201\223\307\355"
#",]\300m\203\255\316\32\4\323q}\337\237T\366\3654\201j\352;\37\376"
#"KD\363&\312o3\25.\325e\333\267\353\337?\177{{\e\a\a\a\20"
) 500
(
#"\21<\372\350\243\307\236\227\232\b>\225"
#"y\r\327\227\232@>|\334Z\213k\327\256\1\0\266\267\267[_O\274\17q"
#"\346\325\257\3573\237\371\fT\25;;;\311\300\313\257'\265oS\t\367\251o"
#"\r\251\277\325\251?n\271u\304\317\r"
#"\217c\34\344\306\353\314\355c\333vh<\376\375\2\332Ka\272>\17|\37\211"
#"\346\215A*\25o\231\201S\3412~"
#"9\37\240\246\6C\305\317\211\37\353\23"
#"\354\345\352T\333\262\202\361\362~\37\333"
#"\326\27\16\366:\315>M%wlS\27\34\361q\363\177\317\5\265\341q\313\255"
#"?\254\351=Mf\233\306\221\252o\r"
#"\277\273\271\345\372\254\213\210\346\211\3\247"
#"hV\332\272ms\3\207\16\16\16\260"
#"\275\275\235\314\310\206\317\215\203\243\266\300"
#"\252m\237\302\232\321\256\fpj\35a\26(\16\324R\373\233RJ&\251\317>"
#" ^i\354\0\0 \0IDAT\244\2\324\260^\270\255\0067\276\313T\370"
#"\367T&\274\317\261\v\367e\352\343\267"
#")R\307:\234.\256\355\373\223\273\250#\242\371cM*\315^\34xT\225\253"
#"\247\365\231\30U\305\376\376\376\"P\315e=S\201M.\360M\355\203_&\354"
#".Ne\3\333\6\233\204\257!\f\252"
#"\303\375L\275\346\3341\231Z\356\265\266"
#"e\236\343\314j\230\5\215\371\3405\374[8\17n\352\330\366\tTK9~\233"
#"\"uA\341\337\243\17|\340\3\213\277"
#"\345\226\213\37#\242\365\300 \225f'U#\n\34\17N|p\23\n\3\325X"
#"\34\264\304\231\326.}\272\222\303\354\240"
#"_^D\26\331@\377\263\337\367\324\272"
#"\302\340\313g\31S\373XJ\200\325\266"
#"_q\360\335\25\300\246\216\333\265k\327"
#"N<\26\37\273\324z\343\31\23b\245\34\277M\322\326\313\20\276_\271,"
#"y\333\305\37\21\315\23\203T*^\252+\267-\370\261\326\36\313f\306\313"
) 500
(
#"\366\351r\367\313\364\35\31\336\225\325\214"
#"\227\t\3\315\324\177\251m\206\353\211\273"
#"?K\r\252\272\3123Re\26m\374tE\252\212\272\256\361\350\243\217BU\27"
#"\217\247\336\257\334\347\245-[\312\0g"
#"|m\337!\377]\214\277\3]\317!\242yc\220J\305k\2539\v3\221]"
#"\313\2.\233\272\263\263\323\31\240\364\311"
#"\312\244j)S\342L`n\231.]\373[b`\225\332\247T\200\232[6\26"
#"\a\265qYE\333\363R\333\351[g"
#"L\343\350s\334\343\213\303\334g\277\304"
#"\357\3\21-\207A*\25+W\347\351\305\231\322eOJ\313\4(m\301e\\"
#"\373\30\357\277_n\310\300\307w\375\227"
#"vb\316e1\273\262\341]\353<\353>\205X\177:?m\345!\36\263\344D"
#"\363\307 \225\212\321\25\264\244\272\206\343"
#"\356\363\324z\342\277\373l\252\177<\25"
#"\264\264\5|\251Z\312\251\263q~?"
#"\374\240\261\222\304\307\241\264`\272+\313"
#"M\345\362\237\243\270\276\270\253g\203\210"
#"\346\201A*\25!\327e\35\376^\3275\252\252Z\49\341s\302 \303\377\273"
#"\263\263\203\375\375\375\305c\341\372\303n"
#"\3778(\355\323}\337\247\v\177\214@"
#",\16\332\343[\262\226 \316(\307\3"
#"\332\246\326\347\275\244\351\370\1\217m\27"
#"\215\341{\27\277\217\271\222\222\222.\224"
#"\210(\215A*\25!\34\310\222\32\261"
#"\e\a\244\341sB\271\337s]\203\376\367\360.M\251;P\245\3665^\337i"
#"\273\257\317\"\365zJ\272\343\24p\274v7u[\332)u\58T\206T\271"
#"L\352\273.\"\250\252\352\330\367>7\350\222\3573Q\371\30\244RqR'\217"
#"x\336\320\\\300\3326\300\n8~b\363\31\32\317w\227\347&\216\17\267\23*"
#"\345\244\27\327\360\266M\2614\266\370\375\231\372Xy\251"
#"\213\f\336\26u\36R\357Q\3303\22.\223\272\360%"
) 500
(
#"\242\362\225s\26\243\215\227\e\b\325\26"
#"\220\266eF\332NP\376\261\203\203\3\354\354\354,f\th\273?|\274\256x"
#"\235\251\345\307\222\352\342,%[\t\224"
#"\267?\241T\0]\362\376n\272\256\367%l\e\372\316\300ADeb\220JE"
#"\t\263\244\341I&\325\305\37/\23\256#~N\374x\374\34?\267\252\377{\234"
#"\205l\353\326o{\rc\311\5\350\245"
#"(\275\e\235\31\267y\310}\216\342\357Z\370]n\353M!\242\2621H\245\""
#"\304\1\245\277\363R\374\267\\\35Z\334"
#"%\237\222\252{\25\21\354\357\357cww\367\304 \255>S\333\304\1q\34d"
#"O\241\304\223\360\\\2\276\271\354\347\246"
#"Zf\272\251\324w\261\364\213%\":"
#"\216A*\r\252o\300\224\252\373\214\263"
#"Z\271.XU]\324`\372\365\354\356\356.F\366\247\266\23\336B\265m\37\272"
#"Nhq\226\246\204\232K\236\204i\335"
#"\204\323\306-#\16T\227\251\323.\361"
#"b\217h\3230H\245A\345\352L\333\226O\325\236\366\311\246\326u}l\364x"
#"X\227\26\377\347\3^\277\256\275\275\275"
#"\23\203\250\302u\23\321\264N\373=\214"
#"\aZv\315\22p\326\355\21\321\3520"
#"H\245\301\365\35\325\335\25\240v\r\220"
#"\362\1h\30\250\346\376K=\367\340\340"
#"`\21\250\306]\372<a\21M\243\357\5n\327:r]\376\34TET.\6"
#"\2514\270>\1^x\242\360s|\246\6I\365\335\3362'\266x\346\200\3342"
#"\fT\211\306\267\252\21\372\341w8\236"
#"\242\215\203\252\210\312\304 \225\6\227k"
#"\370s#\366\343\3569\277L\327\372\342"
#"u\306\317\313\t\a^\265\325\2761P"
#"%\232\316i\277\177\271i\343R\203#\371\375&*\v\203T\32\\\256\6,5"
#"x\311?\346\247\220\211\377\36w\333\245\266\265\273\273\213"
#"\253W\257&\267\231z,\376\e\3U\242\362\3047\337"
) 500
(
#"\350+\276\300\215{j\372\326\250\22\321"
#"\370\30\244\322\350r\203\227\374\343q\206"
#"\243\317\317\241\324<\245ms\245.\et2P%\32_j\376\342e\236\353Y"
#"kQU\325\261\277\261F\225\250L\fRiTm\1d\256\v.\265\216>R"
#"\353\351\252o\363\217uMy\303@\225"
#"h\\g\t\36\273\262\245\251@\225\210"
#"\246\307 \265x\207P\0\356\377,\240"
#"\200\302\236X\312\"ht\233e4\370\213\377\31\326/w\350~\37I<(*"
#">I\264\335\2224\226\233\270;\365o\327z\342\345\2269Q1\333B4\274\334"
#"\\\306\313>7|,\16J\373LO\305\357;\321\370\30\244\226N\267 \0\24"
#"\nU\201\n \315\333\266h2\0250.2u\4\2600\20\5\0\3\261\200\300"
#"\272F\326\b\\\340\273\5\215\336\376!"
#"\e\341\260\213\337\377\356\31cP\327u"
#"\357\375\310\325\242\246\376\355\263_\271\355"
#"\355\355\355\235j\2q\"Z\235\360;\352k\325\227ynn}q}*p\262"
#"\244\200\331U\242i1H-\235\0\260\200\210\272\377\0@]~\324\5\257\3152"
#"0P9l\362\246\326\5\250b\1X\250\1\240Gwcr\201\257[\246\255n"
#"s\245/\243eZ\250\2669\fc\313t\263/[\26\220Z\336w\373\2472*"
#"\314\254\20\215k\25\231T\277\236T\217"
#"\16\200l\217\16\263\252D\343c\220:\a\6.\353\251\177\205\347\316W0FP"
#"\311\26\304\b\214\21\30\263\5#\2c"
#"\316\341\334\223\377\26\300m|\374\3429"
#"\210\234C%[\250D \225@L\205\307_\261P\361+\325\23\31\316T\315h"
#"\233>Y\317\334tRm\365\2519\341tQ\251\355\357\354\354,n\207\272\314\t"
#"\255+\370\315\335h\200\210\206\25"
#"\266\23\313\336\36\265\255\373\336\257\323gNs\263\210"
#"\364Y/\21\r\203Aj\341,j(,\4\26\220\277"
) 500
(
#"\207gn\324\260\252\260ZCo^\306\3758\217\177\366\315C\330\332BkE\375"
#"\311\237\0\0(\16q\341\312M\324\326"
#"\302Z\205\265\n\375\374\23\370\364C\25"
#"~\375z\223\2015G\201\251o\250\373"
#"\316G\332WX\203\32\a\303\271\372\324"
#"\334\357]A\355i\366\267\317<\254\376"
#"\304\310\256?\242\361\255\362\242\260k\372"
#"\272\360om\203\251\230I%\32\a\203"
#"\324\302\2116o\221\32\300\0324\367Ki\376U\30_f*\322dH\1\300\240"
#"\226\246~K\0+\265\353\376\177\357o"
#"\342\362y\340/n\276\345\272\372\203\267"
#"?\325\345\276\354\235\242\342u\365\315>"
#"vM\250\35f<\372\224\f,\243\353"
#"\304\344-\233\301!\242\3259\313\310\376"
#"\266\200\324\377=\325V\205\177\313\265I"
#"D4,\6\251\205\23\25\210\32\324\322\4\234P\34\275m\6\322dC\27\201\250"
#"U(\200J\233\206\324\r\241\2T\241ba\r\0\255\241MMk(\25\\v"
#"I\5u~\244~n\344\274\252\242\252"
#"\252\245j\274\342\345W}\322\210\a\\"
#"\361\4DT\216\323^\204.S\276\224\253\213W\325d\235*{S\210\206\307 "
#"\265p\265q\301i\5\3E\r\237K\205\5\254\34B\255@DaP\271\251\247"
#"\214@\254\302\330\n*\26\242\6\n\3"
#"55\344\372s\370\210\275\214\203\247\356"
#"\1\244Nno\231,*\220\17\26\373"
#"\326w\246\272\333S\313\307\243zs\331"
#"\221\263\fjJ\325\253\205\230M%\32"
#"W\237\366\241M\330\36\245\246\251K\365"
#"\240\344\246\246c\35:\321\370\30\244\26"
#"\316\0\213yOE\232@\24\256\367\337"
#"\250\1\304\272\354\352\"\301j\241F\240"
#"U\215\327\237\376~7\260\2522\250\344"
#"\34\344\221\27\200\327\277\2017\4\20l"
#"%\347[\5\332\263\17mA`\330\35\337&7\25U\333~"
#"\344N\32\241\323\16\232\n\327\231\373}\231\240\227YX\242\325"
) 500
(
#"XE\351Mnz\272\266\213\361\334\343}F\376\23\321\3520H-\234\3004]"
#"\363\306M=%w\0X7\273\224\2\265\32T\20\34\365\335\273\371Q\255\5\36"
#"\274|\23\265\326\260\207\326\r\264\322\353"
#"xR_\304C\27?\2067\303\271\3773\301h8_`\34T\246\2:?\327"
#"i\230\215M\215\256\355\333\310\307\203\256"
#"N\34\233D\327\374\20\265b\341\366\343"
#"\23\344\252jc\211\350\244\266\v\345!"
#"\266\325U\356\223\313\250\362;O4\f\6\2513 \322\334?J\0\203s\256\v"
#"\337\240)\3\0\254\0\356\356Q\315\200*\21H\5|\v\315`+\261\200\32("
#"\336\213O\274\362k\220\327\377\2\267\375"
#"4T\3107\260\341`\245>\335\367\306\270\271X\253\252Z\324\244\306\1kUU"
#"\307&\356\17\327\221Zg\333\266s#"
#"\363W\35\250\306\353\v\3\325\334\311\212"
#"\231\25\242\263\313u\275\3\303\337|$'n\227\272f'!\242\323c\220:\23"
#"\2YL\342\17\261\213I\375M0\210j\361v\252\300Z\340\234XH\23\300\252"
#"\240\311\260nA\3606X\265\213\344k[\243j\255=1h\351\330~5\ru"
#"8X\252\256\353\0235`\341\177>\230\r\245\246\231J\r`Hm;\376}\210"
#"lfj\26\200\324>\345\366\215\210N'\16T\317Z\247\232\3226\273G\256\335"
#"\361]\377\251\213d\"Z\r\6\251\263"
#"\320\274M\202\305\300)U\205\25W\n\340nzZ\343\350\266\250w`\0\324j"
#"\217=_q\v\37\373\275O\342\376\313O\343!\30\250\272\214fW\243j\255="
#"\326\365\357\237\23\6\223a\255V[I@\270|\30\254\206\301n|\22\352:)"
#"\371\277\247N\32\253\346_\303\301\301\1vwwyB\"\32X\34\370\255\372;"
#"\336\247\247(\367\270o\307\206\b\234\211\210A"
#"\352<(\0X\367\257U(\f\4\322\314\305\357"
) 500
(
#"\nP\5Us\eT@Q\1\20|\351\231{!\246\202\230\nF*T\325\367"
#"\343O\177\376\26^\375\360}nY\251"
#"\334\362-\231\324\334\350\327\370y}\326"
#"\21\376\354kX\273F\325\206\333\353\273"
#"_C\363\333\331\333\333;q\313T\"Z\2551\a*\365\351\301\211\367-\16T"
#"\207\336G\242M\302 \265p\n\v\310!\4n\256T5\2\251\1\25\213\372\236"
#"\247\360E}\25\37\276;\354\362\267\20"
#"\334\215\247\277haU\241\365!\324*"
#"T\357\300\326\337\302\253\317\334\275(\1"
#"\220ft\177nz\226\324\337|\26#"
#"\236\22\252\255\213,\314\272\246F\366\267"
#"M\21\223<&\301\362~\35\333\333\333"
#"\330\337\337\37\344\304\3205x\203\331\23"
#"\242\361\250.\177{\3246q\2266\365\367>mRU\35\277\350g\273@tv"
#"\fR\v'0\0\266\26\365\247\2\0\225\253'\255\340B\315\2437\361\20ai"
#"\200\e\e\245M\25\200YdN]\214\272\205\360\355o\353\252OeP\273\32\340"
#"\266\256\371\\\31@j\37R\201kj"
#"\204m[\226\367\254\332f\26\330\337\337"
#"\307\356\356\356\312\266ED\355\306\b\376"
#"r\27\324m\333\366\265\370\fN\211V"
#"\207A\352\\\204\263L\5\203\244L\363"
#"\a\367\267\255\304\23\r\222M\246\37c"
#"\325\21\314\245\262\236g\31\34\220\2523"
#"\365Y\331\266\251]\272\352]s\333Y\245\\Fu\312n=v)\22\235\336*"
#"{I|[6fy\2\321\272c\220\272\341r\243\326\343\277\373\277\265\215\202m"
#"\333Fj\275q\243~\226\340w\214\223@.\243:emj\327`2\242u\324"
#"\326\355\276\214\266\356\375\323\264G\251^"
#"\236\360\361\323\354#\321&c\220J\255"
#"\203\217\272\246\204:m\326 \327e\237\313D\364Y\337TD\344X\267\377"
#"\324'#N\203C\353(W\347\36Z\366s\3376\205\334i\277\277\271\0w"
) 500
(
#"\354\1\236D\353\200A*\2656\232~0@\274\\<\355S\370x\333\372\342Z"
#"\257\334\376\234\345\4\261J\313\254o\331"
#"\222\204U\343\200\rZg\361\347\372\264"
#"\27\264m\353\314u\365\367\235\275$|"
#"\336*\366\217h\3231H\245\326\256\263"
#"\3344S\361h\375\\`\26\a\234\251"
#"\251ZR\333\\\246q\337\331\331Y\214"
#"\354_\365I!\227\r\t\371\327\343\273"
#"\375\303\307\306\324g_\211\326\305\301\301"
#"\1\266\267\267W\272\316T\315|\352\302"
#"\272O\335j\252\267(.\231\"\242v\fR)\233M\360\23\370\3472t\313\16"
#"\246\n\313\6\272\226)\265\313?u\302\n\217\203\237\32g\252,j\270O<\t"
#"\322:S\325\0237\319\315g>\365\234T\235|j\264\177\237m\372\214j8"
#"\205_\274\16\"Jc\220J'\344\352\275R\332jV\303e\374mS\375\372W"
#")\336\317\241\203\263\324\35\270\246\254\3"
#"M\325\3662@\245u\223\273\20;\313"
#"\234\305]\345G\271\251\356R\373\221\332"
#"\307\3609\fJ\211\226\307 \225\216\351"
#"S3\32\2123\237\251:\254\252\252\26"
#"s\b\206\333i\333\207e\214\335\315\235"
#"\e\364\345\367{\225\23\215\367\335\237\324"
#"~\20\255\223\266n\365\263\2543n\363"
#"\226\351\216\357;\217j\352\"\226\337S"
#"\242n\fR7@\256\361m\273\352\367"
#"?\347\352\260\332\236\343\3\325\266\300\265"
#"\355\304\262\252 s\350\223@\237,\313"
#"\230\373\303\0\225h\371\3315r\3\36"
#"\373\264C\313\264U\313\266\27D\304 "
#"u\355\265\rn\212\a\t\370\307\372\4"
#"\243\251\355\204\313\371\256\375G\37}\264"
#"\327\324L\361\337\272\262\256\3761?h"
#"*\265\334\2305\252\261p\20U\270?"
#"\271\327\222z\275\251\343\325w\312\34\6"
#"\253\264\t\366\367\367O\f\236:K]{\312Y\327\23\177/"
#"\31\234\22\365\227\272E\21\255\221\256\6;70\3404\333\t\371"
) 500
(
#"\251\253\256]\273\6U]\f&\n\273"
#"\304\343\355\207\373\3206\25L\256fv"
#"\352\232\320x\237}\267\277\177\255\376\361"
#"Xn V\374\276\204\331\351\266\347\363"
#"DH\233$\36\344\264\352\317\377Y/"
#"\370\342}J\225\27\244\6j\21\21\203"
#"\324\215\220\e\314\24\6{~j\250\270"
#"\2764\34\360\224\222jT}&\265\252"
#"\252c#[C\333\333\333'\236\267\267"
#"\267\227\r\304\302u\247\2\266\241NP"
#"}-S\313\233\n\262\267\267\267OL"
#"\317\225:\211\305\277\227\24\254\23M!"
#"\354}\231\272\35\310I\325\243\346\202W"
#"\":\302 u\303\244\2\27408\352"
#"\252I\215\e\324\370\304\340\327\225\312\24"
#"\204\277\37\34\34\234h\224www\217u\343\307\333\f\367+g\312F>\25\250"
#"\372\356\310\203\203\203dy\205\177\316\316"
#"\316\316\261\213\201\370X\207\217\371mTUu\"@\345\211\2166M8\323\3062"
#"\365\244}-;\230\264k=\271\365\362"
#"{Kt\22\203\3245\327V\254\237\253\205\3145\226\271,\246\37795Q\277_"
#">\236+0\265\235\275\275\275\354~\2"
#"8\326m\236\332\247\251\263\250\341\317\341"
#"q\270v\355Z\257\233\30\304\353\2133"
#"\333\3412\251\254kW\26\232h\35\215y\241v\226u\267eL\231Q%Jc"
#"\220\272\346\272jQ\343`(\327\340\367"
#"\r`\343\355\246\352*\273n\245\232\n"
#"\320\0\34\e\210\344\263\266\341\272\246\356"
#"\346\317\325\306\371\232\334\360o^*\3\235\313f\ecP\327u6@%\332d"
#"C]\250\345\352\343O+ua\275\352"
#"m\20\255\v\321\263\366aP\321\332\256"
#"\332\227\251\241l[.W\27\231\313\16"
#"\246\346Mm\333\257\\\20\226\232\2134\225m\35Zn\377\342\200<\36D\25j"
#"\373[\250\253F\270\317~\255\223\276\307\215\326\333\320\237\203\323"
#"v\367\367\375\16\256\242\234\200h\0351\223\272\346r\301\323\252"
) 500
(
#"\32\305T&\266-\323'\"\250\353z1\250\352\264\257\301\213g\tH\r@\332"
#"\337\337_iI@\256\204\"|<U\233{\226m\371\340>7\20\255k\37\211"
#"\350\364N\373]\356\373\35\\U\335+"
#"\321\272a\220J\235\302\256\3658\340\214"
#"\313\0\332j\255<\37\250\246\6W-"
#"\323P\247\272\310\16\16\16Nl\327\a"
#"\256>\300\363\263\bt\255;\25\324\266\5\177\251 \335\317\220P\327urJ*"
#"\277L\327:}\200\332V\232\21?\217hS\315\355\"\215\301)Q\32\203\324\r"
#"\223\312t\366y\216\3777\25\240\266\311"
#"e/s\203\251\226\321\366\234\360o>"
#"p\365|\231\200\337v\327\200\254\256m"
#"\2462\250\341\362\276\216\324Z\213\375\375"
#"}\354\356\356\36\e$\326\325\205\357\313"
#"#\302\3553\363Bt\\\333\240\314\322"
#"\345\352S\2116\35\203\324\r\3423r"
#"\247\351\262\362]\364\376\337T\340\232\333"
#"fW\2260\376w\350,H\34\224\206\265\255>x\16\247\214\n\345\2\3278\23"
#"\234\e\34e\255M\6\244\251\222\201\360"
#"\271m\333o{\234h\235\31590\r\205\203J\227\251;'Zw\fR7H"
#"\230\221[V\234\371\314\215\244]v\244"
#"j\252\373\272\317\311&\276\35j\237."
#"\371\334\343a\320\32\326\266\206\313\372e"
#"\272\262\267m\27\0\341\361\333\331\331I"
#"\226\35\204\277\2472\336\341\337\343L\364"
#"2\245\tD\353\300\177\276s\2454\2534d\2463\f\264\373\326\235\23m\2\6"
#"\251\e\3444\203\207\302\300\261m\242\376"
#"\370\347\276\302\354\243\257\335\364\217/\263"
#"\216\266\337\227\331\267\270\266\325\333\331\331"
#"9\261\216\323\4\311\341\361\vO\252\361"
#"\373\22\37\343p\337R\27\b\fPi\23\255K&\325\343\367\226\3508\6\251\e"
#"\"\316T.\e\264\265\5\246\341c}\256\376\343 +\34"
#"d\324'\0\216\267\261L\311AW0\267L\2665\236\2"
) 500
(
#"\253-\23\234\332\207\355\355\355\305\357\361"
#"\3116\354\356k\313N\347\216;Ot"
#"\264\t\342\357\302\334\202\274T\273\320w"
#"p$\321&`\220\272\1R\265\236\313f*S\201a\270\36_\267\332g]\341"
#":R\353\215'\351O\325i\346\326\331"
#"\265\315Ud\37\375\361\b\3\327\256\300"
#"6u\"\362\377\206Y\333\334\211\211Y"
#"R\242ns\373^\244\352\317\31\234\22\35a\220\272\346R\1\252\327'H\353z"
#"~\234\341K\325\251\306\317\211\327\37\363"
#"\1\252\377w\250\23\317\262\301nnY"
#"\377\232\302\371X\201\223\3\262|`\e"
#"w\371\307\313\234d\2410\220\23\177\262"
#"\0\232\373\226+\09\376\36Z\3240"
#"\250\0\5T\334\262\2\213\32\26\325\261"
#"\257~\274\36\237\3055 \232\213\241\2"
#"\2731/\n\343\236+\6\254\264\351\30"
#"\244\316\\\237\0064\267LW\220\326\26"
#"\240\206\313\37\v\214N1*\265-\200n+1(E.S\233\e\220\25\16\210"
#"\362\3>\3742!U\205\25E\245\6\"\207P\331\202\242\206BPY\1\304@"
#"\245\31187\301\245\210\1\254\2Fa\264\202B!\242\360\1*\254A%\306="
#"\16\1\4\0\fTk\210(,\266``|\314KT\274\334 \316U\256;\376"
#"\275mn\343!\266\37\267\303\354M\241"
#"M\301 u\346\332\32\255T\220\327\326"
#"\270\205\313\370@\252\317\362\313\324\270\346"
#"\366\263m\331\370\204\260\263\263sb`"
#"\323\224\272\216m\252k?\254k\315]"
#"\f\210\b\214\242\t@\r\240\3522\243"
#"\2\324\306\242\202\201\300\0*\250\315!"
#"\4\225\313}\212\0\20h\363\263j\23p\212\1\214O\2726\333Q@\5\20T"
#"M\240\n\324\0*\255\1\251\206;hD+\22\366R\370\301\210\253\n\342re"
#":S\b\267?\365\276\20\215\205\375yk \325-\224\313"
#"B\306\313\245\226\t\347AMuk\247\266\321\247[\252-"
) 500
(
#"\210k{\2161\346\330r\2455\314]"
#"'\214\266,\364\376\376\376\211\351\255\302"
#"\343aE\0\3X5\20\bT\0\300\242\322\243\257\256@a\202r\200\332oN"
#",\4\200\2504\335\375\356\271b\25z\364dhS\16 \342BW\27\2322@"
#"\245\3718K\351\3162\353\237\242\e>5\226\200\1*m\n\6\251k \25$"
#"\305\1$\320>'i\370o\334e\337"
#"\26\34\366\t:\273\202\313\256\306v\350"
#"\332\324!\244.\4R'6\377\330\336\336\36vww\27\217\371\347U\0\24\26"
#"\6.\3\nu\203\32348\24\26\nA\23\304j\r\243\332dKM\223)U"
#"\310bI\0F \n\250\326ny\300ma\21\370\332E}+\321\234\f\371\231"
#"\315\265\231CJ\265\35\fPi\2230H\235\271T\0\30\216\216O\rl\312\325"
#"\200\372.\3768H\355\23\210\246\2\337"
#"\266\347\267\255+\376\333\34\273\266R\335"
#"\204\341\343\376\347\360\361\275\275\275\23\3"
#"\251\34\3\240\206\25@\244\202\302\325\224"
#":\256\333\337\210`\313T0\325\26\316"
#"\231\213\370\370m\205\302\272\345\344\26>"
#"\366\300\333 R\301\230j\361oU}\a\236|\305m\303\250\6\201\257k\26\354"
#"\311\221ZDE\e\252.5\\\367X"
#"\365\250\3416\375\255\225\303\307\2106\1"
#"\203\324\231\213\3\321\370\226z}\263\237"
#"UU-\236\347\e\303\234\\yA\274L_q\226 \374w\356\31\204\\\326%"
#"WvqbY\5\4\26*\25*X\0\256\v\337@\0\334\304\225\v[\250\305"
#"\342\226*\356h\r\265\212o^\276\203"
#"\247\356\331\302\a\257\233\246\233\177\v\265"
#"\324\270\377\271\333P\253P\275\3\253\337"
#"B\375\362%|\352\341s\270\364\5@D]vu\261\341\343%\5D\245\e\242"
#"}(e\204}|\241>\365\376\20\215\205g\2415"
#"\220\252\e]6H\314\215\312O\5\217\251\272\2548\340"
) 500
(
#"Z\366d\221*;\210\377\346\327]\322"
#"\240)\257\355\4\222:6\271L\364\376\376\376\261[\262\332fd\276{\262qY"
#"\324\346\271\327\237\374~<{Cq\313"
#"*\276\17\365\242&\365\256\247\277\202\333"
#"\227\317\343\205\337\271\202\377\214\n\2\v"
#"c\0\323D\241>\23+\357\375\b\236;\257\370\3137nB\325\217\364\307b["
#"\34\336Os2D0Yj/Ni\373C4\24\6\2513\220\3132\306\rr"
#"8\265\3212\215X[\303\236\v\36\333"
#"\352\262\206l@\375\355IK\221\312\200"
#"\266e\231\303\367(\26.\347\273\24\215\nj`1\17\252\250\e\231o\361\22>"
#"\373\202{\370n\0\6\225\e0\345\3\325\17\377;\350\215\247q\227\333*,\0"
#"\305!\352f\35\300\271\240`\300\34m"
#"\333\357\233\204YU\242y\b\247t[\225\22\2\302e{\223Jj#\211\316\202"
#"Aj\341R5\231\271\0q\252\206)\227Q\35j[%\t_{X\253\226z"
#"o\374\262\251c\24>\266\267\267\207\307"
#"\36{\314=\307\210\eg\337\214\316\257"
#"\305\272)\243n\335\304\213\260\270|S"
#"\2418\204\353\236o\246\223\322\32\220&\270\5\0\34Bl\205J\267P)P7"
#"%\3\362\362\377\216g\315G\261\367\341\357k\"R_\307\354\236)X~\316["
#"\242)\214\335\366\305\301\342\320\3\266\372"
#"\326\365/3\333\n\321\34p\236\324\302\365\355n\232\262QJ\r\6\32*\230,"
#"\261>\265\317~\204\265\302\361\200\251\370"
#"BDDp\365\352U\354\356\356\36\r\200\263n\262\323J]V\324\310\333\240\0"
#"\356\275\a\20\335r]\363\322\4\226\""
#"p\3\252\274\357\200A\215/>{\17\266\236\5l3\355\224{\312\223\370KS"
#"\341\373\320\314\6\0007\355U\345\246\1`\227?\25o\314\266 7\220"
#"s\310\355\247\352Qs\2755c\355\23\321X\230I\235\201\256\321\365S"
) 500
(
#"_5\367\251\271\\\325v\306\234\376\245"
#"\217\\\315n(U\303\eN\251\225;"
#"\301\250*\340\237[\271\300\23\342\246\243"
#"\222{?\204\213\362\0n\276\2518<6\n\337\300M*\345\376\263\20\300~\e"
#"j\f\336\363\374-\34\252\302Z\205U"
#"\305\241~\36\227\360I\274\357\374\25\274"
#"i\335TW\320f\206T\1\216n\217JT\256!\333\202T\355\270\377w\2126"
#"7\325k\223\372;\321\272`\220:3m5\247S5\232\251\253\367!N\34S"
#"\a\343)\251\254J\34L\347\352S\273^\213\253\257s\335\376Z+\214T\0\f"
#"\304\b\324~\1\357\324/\343\e7\5[P\330\246s\277F\23d\352\277\301\343"
#"r\36\37\277U\3F`UQY\270[\2466\335\370F\37\301'\256?\16\363"
#"\3727q\323\270\271V!\207\315\300*"
#"\242\371\311\315\230qZ\271\357k\370\35"
#"\17\a\235\16\325>\345.hS\335\374C\357\v\321\230\30\244\26.w%\357\377"
#"\26g\347\332\236;\4c\f\352\272\356^p\5\266\267\267\27wg*IjT"
#"\277\265\266u\220T\370\2746\a{W"
#"\261\273\273\r\210\205\325\32\"~\252\260"
#"\237\300\177\177\345<>\375O/\343\266"
#"\32\30\255\26YP\205\305[\37\373\237\361i\371op\357\335[P\0\n\205Q"
#"@\215\353\353\0274\365\253\200\237M\265"
#"\tL\267 M\315\252\262y\240\231\21\221\305\340\251U\\(\347.0\375\214("
#"\"\322\353\26\322\253\346\267\347\357\16\230"
#"\2331\204h\356x\26*\\\256\241I5\210S5Rcm\247+\350\233Z<"
#"\212\277\256\353\326c\3236U\325\3421"
#"\261Pq]\367b*\250\326\250\214\273"
#"\223\324\335O\275\210\337\227\217\340\276\v"
#"\37\307\eR\273\21\371Z\343\315\347\177\34w?\375:.\275\364\ax"
#"\257\0PE%\6\265/1mjV\5\267q\345w>\215\a\236{\26"
) 500
(
#"\217\240\t\\}-*X\216J\363\264"
#"\3126\242o\333\26\226\357\214\321F\245\352SK\31HK\264J\348U\270\\"
#"\343\343\e\305\360\n~\3129\375\306\330"
#"nI\203\245\274\266\32\324\370\357q\266"
#"\245\255vu\361\230\32\\;8p\23"
#"\355[\5\254\242V\205\21\327\205\377\221W-~\340\t\301;\345i`1\32\377"
#"\1<wK\361\314]\315\314U\342jP\277\364\364}\220g\354b>U\25\340"
#"\374\225\333\270\361\341\273\232\355\2\"\26"
#"G\363\262\202\221*\315\316\252\333\210e"
#"\333\2351\333\250\2661\0\245\265\225D"
#"\247\301Lj\341r\3358\271n\376\222\32\246!&\326\36j\3359]\333i+"
#"\277\b\37Wu\267\2355\306\264\276G\361(\177S\31\330:\30$a\304u\321"
#"\373\23\247\0\357\375\224B\265\206\252\273"
#"\245\255\352\r<s7\232\321\376\0p/\236y\315\225\vh3h\312\252B\255"
#"\342\265\17\337\25\275\216\240I(\347\243"
#"D4\231\222\332\324\224!\a\253\22M"
#"\215A\352\f\314\245\221\214\255z\277\375"
#"\0\20513\252\271\1\n)\276>,\267\214\v \217g\276S\331\324p=\276"
#"d\340\352\325\253'&)\317eq\211"
#"6I\237\262\231\241\224\24\34r\320\24\255#\6\251\205K\5GSO\177\22\357"
#"G\334\275=\224\251\2\260>S_\211\310b\0Y\237\3324\37\204\306\1\353Q"
#"6\364\344<\252\251\273\351\214y\374\211"
#"J4\345\205\232\37 \2312\346w\261m?\210\346\214\237\352\302\2252/h\\"
#"[\231\373\333P\1\364\316\316\16\366\367"
#"\367'\351\332\352\32\374\344'\352o\253"
#"M\r\227\217\177\17\377Km\263+\350\365\243|\343m2`\245M\22~\336\207"
#"\270=\352\262\306\34\351\37\216O\30s\333DCc\220:\23qfm"
#"\312\355\3462\27afp\310\371\2\307\36@\325\26\34\306\1j\327\f\v"
) 500
(
#"m\363\246\246\236\37/\233;\371\246n"
#"\311\312\23\25m\222M\375\274\207\1*"
#"\263\251\264n\370\211.\\\30\30\372\271"
#"\371\306\24g\364\272\202\250\241\203\310)"
#"F\370\347\2\311p~\304p\331e\a[\205?\2472\"qf\324\a\252\341s"
#"}\211@\351\323t\21\255\332\324\237\367"
#"\22\246~\212\247\244\"Z\27\fR\v\3275\275\321X\342\240\311\aCc\f\230"
#"\212\327]\302I\251Of9\245-\323\32f@s\217\207\353\t\177\367\31\24k"
#"\355\242\353\237h\23L\335&\304=)"
#"S\326\316\23\255\e\6\2513\221\n\212"
#"\306\256yJ\355\313\24\372\fL\32J\3334S}t\275g}jX\1\340\340"
#"\340 [s\227\273\2577\321\272*\345"
#"\363>\345~\224\20(\23\255\32\203\324"
#"\2\234&\330*e\340\320\224\246\330\257"
#"\\w\372\252\366\245k=\271\213\205\266"
#"\301lD\353\252\255\35\314}\376\207j;\247\234\n+\247\204} :\v\6\251"
#"\23K\215\232\317M\365\24?g\23\32"
#" U]\214\354\367\277O\275?\245\314"
#"\303\270\267\267\207\335\335\335\354rS\37"
#"+\242\241u}?\302\336\206\241\a\237"
#"N\321&\247\266\27Om\307v\200\346"
#"\214A\352\304\272j\17s\317\231r\204\373\230\r_\333L\2c\233jz\227\266"
#"\327\\\302T;DS\352;/q[\35\371Y\205Aa\274_CJ\r\332\n"
#"\317\17\354Q\241\271c\220Z\220\\7"
#"r\234\275\233j\204\373TW\344\271\206"
#"x\212\375\230\352\30\364y\315<\31\321"
#"\246\352\372~\254k\300\226\353u\23q7\27\341\224T4w\374\4O,5g"
#"f\252\333\177\354+t\257mN\317\261"
#"\204\267C\235j?\302.\264\261\267\v"
#"\264\337\3620\354\366'\332$]\337\217"
#"\241\333\315\251\273\322S\257;7\eH\352g\242\3221H"
#"\235X[wMUU\243\317\213\32K\325\303N\265\17S"
) 500
(
#"M\277\345\367a\212R\203\324\205Kj*\252\253W\257.\2U\236\204hS\364"
#"\371~\344\254\342{R\322\210\372\324\366se\bl#h.\30\244N\254\255\273"
#"\246\224\1RSeq\201\243\333\241\306"
#"\331\201\251\262\251~\333S\4\311\341\277"
#"\251\254\211\277\240\231\372dI4\266\334"
#"\367c\177\177\177\224\213\267\251\332\351T"
#"\2\241k?J9\257\20\365\301 ub\251\200\"\34\225Y\302\25z(\f\206"
#"6\255\221\er\340E\37]\203\327\332\346N%Zw\271\357G\256$`\325\337"
#"ak\355\3505\240}\346\317\316\315s]\322y\205(\207Aj\301JmH\246"
#"\314fN\255\204\311\272s\277\3\375F"
#"\373o\332\305\5m\206>\337\217>\177;\313\366\247(GZ\346\265Ly\221M"
#"t\32\fR\v\3205/j)Rs\272\256z\375\313<N'\305\335\177\234\344"
#"\2376\335\24\363\a\227\366\35\343\274\251"
#"4W\fR'\226\n\32J\352\216\211\a$\fY\227\231\353\246\352;\20bS"
#"\305\357\321\376\376>\36}\364\321\23\307"
#"\16\230v\236Y\242),\223a]\205\222\276[\251\231\16J8\257\20\365\305 "
#"ub\251\2010%\335{=\f\230\2151\307f\e\30z\37\303\372\327\261\2669"
#"G\251\223OUU\311Lj\374\34\242M1F\360h\255]|\367J\20~\317"
#"K:\257\20\365\305 \265\0\245dMs\246\232fe{{\e\a\a\a\243m"
#"o\356\302\214\252\237;\265\344\317\25\321"
#"\30|\235\366\30]\335%\365\202y\251\327\\J\20M\324\205Aj\1\342 p"
#"S\e\220\370u\ec6\366X\234F|b\364'\354*\b\270\0\0 \0I"
#"DATg\36C\"g\214\t\375K\nP\201\374\f\0l\27h\16\30\244\26"
#"\244\252*\324u]|\0032\324\276\305\265\247"
#"\251\214D\311\307\245\24c\327\340\21\225n\250v"
) 500
(
#"#5\230\264\3046\312\357c\330\345\317"
#"v\201\346\200AjA\302\6\257\264\6d\3549Bs\333(\355\270\224.\234\314"
#"\234hS\r\325n\244ntRZw?Pf\340L\324\a\203\324Blj#"
#"Rr\366a]\354\355\355\35\233;\225"
#"\307\2326\321\220\331\324\241\267qV\245\5\315D}1H-D<r~S\344"
#"\6\32looc\177\177\177\242\275Z/s\231\207\227h(\251\36\205U}\a"
#"Rw\a,)(\214\23\1%fz\211r\30\244\26`.\215\306\220\265\250m"
#"\2670\244\323\363\237-?\332\337\343\361\245M\22\17J]u\233[\362|\316q"
#"\340\334\225\371-i\337\211\30\244\26\300"
#"gQKn\344\302F~\325\373\26\256"
#"\233\223\315\257V\251\237)\2421\305\355"
#"\313\20\275\ta\0l\255\2051\345\235^\343\26667X\225m\5\225\242\274o"
#"\321\206\311\215\16-5\323\225\272\213\321"
#"*\326\31\376\v\240\310\6~\256\302;Qmoo/\36#\332T\253ncS"
#"\301_\211\337\261\324k\16{\257J\234"
#"\347\2256\e#\201\211\345\346\260+\311"
#"\30\r\356\24\367\327\336\24\341E\320\301"
#"\301\1\266\267\267\213\373\214\21\215a\210"
#"r\242RkQSR\355\352\220e\20Dg\305 ubCu\241\257Jn\276"
#"\322Uc7\377\360\346r\"%\32\332*\333\231\324E|I\355X\270/\251\333"
#"\244\316)\310\246\315\303 \265\20\2456"
#"\16c\357\227\210`gg\207#\373\a\340OV\376NTD\233$\34\341?T"
#"\311R\211\3?\273\346\234\316\365\224\225"
#"\24h\323\346b\220:\221>W\336%4\22Cw\365\227\360\0327Ex\262\n"
#"\353S\2116\305\320\3632\307\3\221J\nVsr\3739\207}\247\365\307 u"
#"\"\"\262\2707\375\234\32\211U7\356\354\346\37"
#"WW\355\31\337\aZW%uk\227\362=SU"
) 500
(
#"\16R\245\242\361\3239\260\266\306\250\253"
#"\336\263\224\206,4\344\355\5K|\275"
#"s\227\232\310\337\377\ev\373\227\330MI\264*\245d5\347\364=c{L%"
#"`\220:\260\256\306\250m\36\313\251\32"
#"\262\\\3434t\267\377\34\32\356\271\351"
#"sL\343c\317\223\23\255\233R.\202"
#"\347\320\306\2155X\226\250\17\6\251\23"
#")\365.K\271\t\257\207l\2648\201\364t\342AT|/h\235\344F\266\217"
#"\271\375\22\332\3656\276\313\337\337\226{"
#"\210\271\260\211N\213A\352H\302`\257"
#"O\306t\252 \241k$\350P\333\364\2159G\366\257^\333 =?w\352\316"
#"\316N\362\316_Ds\26\177\216S%.c+\361\0020\254M-q\377hs"
#"1H\35A|\362\17\aLu-?\366~N\255\204}X7\361\211:\374="
#"\314\232\2272\250\204h\fc~\316S\31\335R\332:\177.\362A*{R\250"
#"$\fRG\220;\371\247\272\374\247\314"
#"fMY\3\353\267\315\221\246\323\330\333"
#"\333\343\334\251\264\266R\355\354\230J\236"
#"\275%\0254\227\262oD\214\bF\326"
#"6\332:\365\357T\306\274\232\216\357\202B\323\b';\367J\276\223\16Q_S"
#"\266\257\245\227\317\360;M%c\220:"
#"\260\370\312\275\252\252\3314\nS\354gi]a\233&u\21\305\f\v\321j\224"
#"\330\256\205m.\277\337T\32\6\251\3"
#"\313\215\224/\231o\254\306j\260\374\361"
#"\360\203\246\330XNCU\27\331\324\266"
#"\32\272\322?\277D)S\336\26\270\224"
#"\36\262\30\277\313T:\6\251#\b\247\230\232C\0006v\341|\333\300\36\32^"
#"<\5\232\265\366\304{\220\272[\17Op4'S\16\b*\365\2732\247\e\311"
#"\320fb\220:\2029dS\333f\e\30s\37h|q\320\351\247\244J"
#"-\23.\307\213\t\232\233\251>\263s\0301\37N\342\317\3576\225\202A"
) 500
(
#"\352H\342\271)Kk\264|\3034\345"
#"\276\261a\234V\370\276\347F\373\317\241"
#"'\200\250$\252\nk\355\211\231KJj\377\1\266\277T&\6\251#\211\347\246"
#",\365d?\345>\225\26\270o\242\256"
#"\317&\273\372i\316\246\230{:\327\256"
#"\225\330\376\363{M\245a\220:\221\22"
#"\e\250\251\225\32\270\257\263\266\223gj"
#"J\252p\31\236\320hn\246\230{z"
#"N\355\332\334\366\227\326\37\203\324\21\370"
#"/=\347\0\315\343\355P\247\321u2"
#"\362\335\376s\311\4\21\3651\346\b\377"
#"\322\277'\245\216\223 \2\30\244\216\242"
#"\364F\n89\3\301\324\373Ae\211?\27|\237h.J\371\254\226\232\241L"
#"eOK\335W\332<\fRGTr=_)\r\322\324A2\235\264\267\267w"
#"\242\333\237\357\23\315A\\\23\232\373\314"
#"\216qg\265\22\a\314\2\307\3\322\322"
#"\366\215\210A\352H\302\306\251\224\200\260"
#"T<>eI\315\372\300L\v\315A\333\355P\333\356\2446\304g;\316X\226"
#"\20\20\206\337\353\266\357t\t\373J\233"
#"\211A\352\b\2141\263\250G-\261\1\245i\305w\351I\315\371K4GS\\"
#"d\305\263\274L-\f\234Sw\226\343\367\235\246\306 u\4q\6\265\244/{"
#"\270/>\230\236\242[*u3\201\22"
#"\32\361M\27\317\235\352\273\375\231I\245"
#"\271\352\333\256\255\272\375\363\363\245\226\366"
#"\275\351[\213Z\332~\323f`\220:"
#"\201\222\276\354q\31B\352\366\227C\333"
#"\331\331\301\301\301AQ\307\205\234\334\355"
#"P\231Y\241\271\211\223\5\276w W"
#"\257\272\252\366(\336n\251\337\235>\27"
#"\236%\3567\2557\6\251\3+\265A"
#"\n\305\301\a\221\27\177\36\256^\275\212"
#"\307\36{\214\237\25\232\235\324\347u\350"
#"\213\362\324\367\244\244\357N[]nJ)\373M\233\203A\352"
#"\n\224\36\204\22\255\212\210\340\352\325\253\331I\376\211\346d\350"
) 500
(
#"\240\253\364\240\256O\346\264\317\354\bD"
#"Ca\220\272\2\3136D\374\242\2374\306\0240t:\251nP\316\231J\353\242"
#"\357\264TCmg\16J\234\231\2006\3\203\3243Z\246\b\277\344)\250\246."
#"K\30c\n\30:\235\324{qpp\260\270cOjT0\321\\\2141P("
#"\16\360\214\231\337\251\227\323(\322\24\346"
#"\367M)Ln\336=\337\20\205#:\247\16\4K\24\337\16\225\307g^\342\351"
#"jJ\252\267#\352\22\17\236\32J\252.u\216\370\335\246\2611H=\243\\\341"
#"y\30\220\206W\315%\177\311K\310\204"
#"\225||6Y\3523\261\277\277\277\250M\35{F\b\242U\342\347\226\250L\f"
#"R\317(w\205<\347\214R\t\373="
#"\327L\303\272\211\247'\213\371L\24\321"
#"\272Xe\333\263\216\355\330:\276&*"
#"\27\203\324\25\313\315\205W\362\27\273\264"
#"n\332\222\366e\323uMO6\326\240"
#"\23\242\261\254\262\355\311\255\313Z;\233"
#"\272\324\370\273\317\2625\32\323<\276%3\24\177\221K\r\272JllJ=V"
#"\233\254mpI*\233\312\367\220\346f\314\266pN\201^\352\2\225\337o\32\v"
#"\203\324\1\315\241\21\31256cM\277"
#"\322\326\330\315\341\370m\272\360\226\251\354"
#"\366\2479\ej2\377>\217\225\212w\227\243\2511H]\2619dOc\251\322"
#"\204!\247_\361vvv\260\267\267\327\371\34*W<`\312Z;\345\356\20-"
#"EU\a\255\253N\265a\f\372\210\372c\220\272B%\aV\271+z\21YL"
#"\2215\324\34x\313\334\363\235\363\360\315"
#"\327\376\376>~\371\227\177y\352\335 "
#"\352m\314\236\234>\323\265\225\26\274\372"
#"\375\234\353\334\2564\177\374\324\255@\34"
#"X\205_\354\22\204\215b[\246w\350\301^}\6h1\3130?\274"
#"[\30\255\213\241fg\t\327\227j\343\272f\321\230\22\3572ESb\220"
) 500
(
#"\272\2\271\206\245\224l`\30\34\346\32"
#"\234T#9\304\376\307\243D\343\355\207"
#"\217\263Q\234\207\360}\334\333\333[\314"
#"\235J4\27\251D\303*\327\35'\tr\3\221J\273\365h\237^/\242!1"
#"H]\2218\270+\355\v\34\356S\333h\315!2\b}\376\26\357_\270O4"
#"\37\276\306o{{{\352]!\352m\310\266&\225$\0\322\211\202\334E\374T"
#"\332\316\v%\354\37\255?\6\251+\24"
#"^-\227\370\5\216\273\233R\301\364\320"
#"\373\355\267\267\273\273\273\270\35\352\220Y"
#"\f\32Wis\356\22\3651\364M)\332\6P\371\333g\227\224A\215\211\b\352"
#"\272f]*\215\216\237\270\25+\355\344\3346`j\f\271\371bsY\335\22\e"
#"hZNn\356T\242\271\30\263\35\232"
#"\303d\371\234\212\212\246\302 u\315\225"
#"\0204w\r\224\352\273,\315\v\3U\232+\266CG\3303BSb\220\272b"
#"\251\332\312\322L\321\340p\48\1|\337\251\\\245|6\231\265$:\302 \365"
#"\214\332\32\222\222\257>\307n\0\2311\335Lq6\225'_*\225\257\r\235Z"
#"iu\335q9V)\373E\233\201A\352\31\315\365\266\236UUMrw\240\222"
#"\217\t\215\203\201*\225h\252\0,\234(\277\324\231M\370}\245\2510H\35H"
#"IW\234\251\362\203)\366\317osggg1\262\237\326\337\376\376>vww"
#"\a\233(\235h\25\246\250\241\236\303\264"
#"{\374\276\322\224\30\244\256H<Gj"
#"I\331\242T\367\321\24\215\16\e\272\315"
#"u\365\352U<\366\330c\0\3709\240"
#"2M\21\214\245\316\27\245\2347r\370\375\24511H]\261\266\3732Oi\350"
#"[\236.\243\364F\230V\257\264[\5\23\305Dd\222\22(\340\344mS\375c"
#"%\210\317c\374\36\323\230\30\244\256\210\277\233H"
#"\311\3356m\367\216\236b?h\263\370n\177\242R"
) 500
(
#"M\325\303\224\232/\272\344vr\352s\bm\16\6\251\el\254Ff\325\335X"
#"l\34\347\253O\335\37\337_\32\23?"
#"o\313)\261\247\220\326\27\203\324\1\224"
#"\326\350\245n}:\366]\247\302\177S"
#"\332\216\331\324\3\276hu\342\367\262\353"
#"\376\345DC\233\372\363\26\217g(\355"
#";\300\357(M\211A\352\212\244n\375Y\212TM\321T\3355\333\333\333'F"
#"\366w5za\215Vi\365Z\324-\36\325\277\277\277\217G\37}tQ\"\23"
#"\342\373KS\232b\204\177\334\276\225x"
#"\376`\242\200\246\302 uE\346\362\245"
#"5\306,\6\a\214\261\317q\343\346\347"
#"\3\f\365\331\217\22f'\240\323Ie"
#"\322\253\252j\35\200\301\367\227\2462\325"
#"\5R\311\301_\251\373E\353\217A\352"
#"\212\224\334\300\204\306\336\3178K\240\252"
#"\330\331\331\311f+\30\264\254\2570\243"
#"\272\267\267\207\335\335]\276\2574\271R"
#"\346*\235\3139\204hL[S\357\300"
#"\334\371\206\245\224[\352\3651\325|\200"
#"\236\357\356\317\5\252\373\373\373\255\373\310"
#"\306|\236\342\367\314w\255\356\355\355\361"
#"\375\244I\244\246~\232r?J>\207\260\335\245)0H=\243\334 \244\322\276"
#"\320%5\306^.8I\5\257a\340Z\322q\245\345\345\352P\211\306\3265\230"
#"s\354\301\245%\n\333\335\322\316k\264"
#"\376DK\276t\233\201\370\v\\\272)\367s{{\e\a\a\a\255\313\344\32\301"
#"\266\254+\315\333\356\356.\366\366\366N"
#"\365\\\336b\227\2060\305\347JUQU\25\352\272.2\20\f\263\275s\3529"
#"\244yc&\365\214JlLr\246\nP\227\271\372\316-\227;a\344\262\256g"
#"\335\17\32\317\336\336\336\261\240`\25\237"
#"\227e\327\263\312\347\322|M\371\276\373"
#";^\225\232\360(\241'\2166\17\203\324\25\232\313\211m"
#"\252\301SCt\27\245\2\322\263f]\343\251\256R?\367"
) 500
(
#"}N\237ml\202\324\34\220\251{\226/[\316\321v2?\315\254\21\376\261\222"
#"3Z4\234R\336\357R\333\a\226\\"
#"\321\330\30\244\256\300\334jv\246\334\277"
#"1\216Q<\360\312\377\3347\353\32Ou\25O\266\235z\r\341c}^[\351"
#"\237\221U\313\5\244\0\26s\247\236&\233\232\nx\2279\266\251\v\vven"
#"\236\22\332\355R\306\r\244\304m\e\277"
#"\0374\26\6\251+\220\vdJ5\345\376\215\265\355\324\234\252\251\201Z;;;"
#"\311,_\30\274v\5B\251\6\274k ]\351\237\221!\370Z6\337\245\31\377"
#"-\3247\23\35\276o\313f\263\343\355"
#"\371\f*O\300\233\247\204\357b\t\373"
#"\220\22\177\277\370\375\24011H=\243"
#"\324\311\260\304@5\16\244\247\334\17o"
#"\210c\324\266\316\324\343\271\351\256vvvN\4U>pm\e\235\236\333>G"
#"\264;\271\232;\177|\273\6\327\245\262"
#"\325\276\226\317\337(\342\264\237\253\360F"
#"\27\264\271\246\16\302J\v\6S=H%\236\343h=qt\377\n\344\2721K"
#"2\325>\206]\355C\215\226=\315\3539\315<\254}k]K\375\f\224\244\355"
#"$\234\vTs\27\23g\371\\\245f"
#"\347\340\373G\300\2643G\224\24\244\346"
#"\314a\37i\376\230I]\2419\234\334\246\03245\3646\226\351N\357:\6\271"
#",A\327\f\3>\243\27f]\373lo\323\304]\364\261\334\361?\355@\2506"
#"q\200\332w;\264\36r\237\227\251\203"
#"\257\222>\203m\203\35\211\206\306 \365"
#"\214\346vr\233\242\233&\316P\r\261"
#"\375e\2\232U\17l\312\325\272\306\353"
#"\263\326\342\340\340`\343\202\326\256\331\22"
#"\342\23^<\210*\224:na\326\325\37\347\276R\365\310\361~\322\372Z\2464"
#"hL%\5\201\354\346\247)1H=\2439|Y"
#"\247\316\24\371\355\305\377\256\213\\\255k\3107\354\333\333"
) 500
(
#"\333'F\217/;5V\237,\3612'\222\241k\225\343\372\321x\333\361\347S"
#"UO\4\252\251\214'\220\356\222\365\307"
#"\267\353D\37\276\17\254\31\246\276\337\231"
#"1\202\264\3222\226m\337a\242!1H\335\0\247\35\361<\304>l*\377\372"
#"}\326/|/\266\267\267\27'\2440"
#"p\212\203\257\\\220\237\32}\273L\200"
#"\232\353\356\34\273n9\225\321\4\372\327"
#"\276\371\347\372\371M\303\317}\254\244\0"
#"\200\246\325gv\216\324rcb\366\222"
#"6\25\203\324\r\20g\213\246h\360\30\20\34\27\36\377\334h\366e\347u]&"
#"@\355:\341\216\335\255\27g\216\302l"
#"j\352\263\223*\e\210\203\370\\\355+\3T\n\345\312<\302\317b\274\334Pr"
#"\27\232\fPiS1H\335\20g\311\266\235U\330%\eN\25DGR5\221"
#"\251\301W\341\274\256\236\277\357}W\315"
#"X\370x\333{?v\306(\365\331\364"
#"\237\221\355\355\355\23\313\1\355ur\271"
#"\345\342L5\221\227\372\314\37\34\34\234"
#"\270\301\0040\334\5\34/\244\210Nb"
#"\220\272\346R'\362)\273\216\316:\227"
#"\345\34\365\31\224\23\236\224R\1\242\377=uG\246\324 -U=1\240+\367"
#"\336\347\0063\215\365\376\244\216Mx\202"
#"\366\201B\356\230\305\373\234z}\245\325"
#"\370Q9r\278\261\241z\242\272\312\rV1\a0\321\\1H]s\251\301"
#"!S7r\233\326\320\266\r\312I\5\205}\216O\370\367\334 -\37\274\206\353"
#"\353{\e\330)k\227\343\20025\332?\225\25n\v.R\353%\2\372\a\237"
#"C\3650\304\337\271\324\305\327\230%\aD%a\220\272\1N\e\b\re\323\32"
#"\332\256\354LW\375Y\237Llj\235"
#"\251\2004\25\270\212\310\242d \265\375\261\3045\251m\1e|\362\356\263"
#"^fT)\326\267\4&\376\373*\333\317\\\317\312\30\333&*\35\203\324"
) 500
(
#"\rPJ\200\272\251\215k\237\354\3142"
#"\317\357s\fs\313\264\335\220 \16\336"
#"\306\276\333N\356s\352\3\356\370NT"
#"]\365\250\341:\375\317@\376\326\254\264"
#"yN\333\36\255\262\35K\255\253O\331\1\321&\340mQW\240\344\23^\334u"
#"\24\32#h\234\362\326\202\324\255\3553"
#"\260\273\273\233\374\\\17\361~\306\337\241"
#"T\367'p\362\363\264\273\273\213\253W\257&3M}2\261D]x{\324\264"
#"\222\367\215\326\a3\251k\254-@\365"
#"\177\237\312\246fUK\323V\203\32\226"
#"\0\204\342\201Z\252\232\235F+\\\246\253D!\265lW\27}\256\2534\265|"
#".KK\324\307\24m\226\337f\230\375"
#"g\273I\233\204A\352\32h\e\235\335"
#"\326\250\255\252\301\353[3\271\314\276\321"
#"x\226-\3\331\337\337?\261\254\277!Aj\331p\emR3Q\244>\327>"
#"\263\325\225y\355S\3422U\17\3\315"
#"\317\224\265\332}\353f\211\326\r\203\324"
#"5\220\32t\223\n\2\273\6\350\254b\373\361\357a \0217\264lp\313\261l"
#"`\26/\233\232\"\n8\236u\r\353K\343\240\322g\212R\353\17\3Tc\f"
#"\36}\364\321\23\313\204\177\217kP\373"
#"\326\367\205\317c\240J\245\310]\214\21m\2\6\251k\244+[4E\343\306\6"
#"\265l\251\317\306i\262\357\271ldj"
#"\332\250\355\355\355E0\351\237\267\273\273"
#"\233\254\373\213\263\241a0\e/_U"
#"U\262\373\276\3533\230\313\332\22\205\246"
#"\372\\\234\246\227\214h]0H]#ac\226\312(\205\206\352\352?\353r4"
#"\256\334\t0\264\3144=\361\362\251m"
#"\305\365\253\373\373\373\213\271P}V\325"
#"/\37\6\242\251n\374\324\340\252\266\36"
#"\204\\\r+O\374\324e\252\317G<\e\5{\242h\223pt\377\n\2248"
#"\0\303\30\2638\331\307\206<!\207\353Ne\307\30\4\314CW\251\310*\337"
) 500
(
#"\307\266\357\217\257u\365\301\253\277\370\332"
#"\337\337\307\356\356.\254\265\370\314g>"
#"\203\272\256{\325\226\306\237\375T\251\1"
#"Ql\352YJ\342\v\264\22\332\321\22\317{\264~\230I]SqVi\254\256"
#"\242Tf+\365w*Oj\360Q.k3dv>\24g]\3756|\255\253"
#"\210$\3\324\334>\246^O\237\f2Q\tJ\tP\211\306b\246\336\1\32V"
#"n\260\322\30\215\34\e\322y\351\23\210"
#".\363\374\323j\313\316\244\352Q\375}"
#"\315O\277\r\v,\366\335\2\n\367\237"
#"\324\307\226\361\17\37\375\220\356\251\230\225"
#"c\207\332\36\375\252\200j\r\205\305\321"
#"\241\262\213\327\257\260X\213\327\337Cx"
#"\301\37\376;\25\266\253\264I\30\244\256"
#"\241\260khh\271mL\335\220\323|,3h\vp\203\254\266\267\267\27\201j"
#"\333\200\301\334c\213\256~\377\373\"\0"
#"3\200\0\20\v\301\26\320\4c\252\306\257\0\20\353\226\3215h>\245\t4\25"
#"P\30\b\16\335\257\2@*\2105G"
#"\313\300\300\37e\201\301\246\234>\246\270"
#"\300\217\371R\27\242M\303\356\37656"
#"e\266\224W\373\324Wj\232\262\24\337\315\177ppp\"\0\365'qk\355\342"
#"\347~\335\367M\346T\f\\\246P`!\250\232\0L\1\210\32X\1*\213&"
#"\343Z\3\360\301\333\334\3\207\346u\312"
#"\35\0\347\240\272\5\21\v\361\301\2729"
#"\204B!0\356X\3006\307\n\315\301\231h\267GRJ\327zj\320 \321&"
#"\230{\vK\31Sf2\303\t\327\211V\301\177\246R\1*p|\256U\237q"
#"\352\363\35\20u\31\301\272\371YDP\5]\331.@\255Q\1\200i2\250\213"
#"k\3735\350\356V\300\242\206\3509\b"
#"\0\3533\304\342+\32\266 8\a"
#"\325\272\311\262\232\243\242\0Y\203\327\337!,/I\335"
#"im\f}/\342\210\326\0213\2513\227\233Rg\312\306"
) 500
(
#"\214\r)-#\314\202\206\302\356}\0\270v\355Zv\231x\302\377x\304~."
#"\3e\245\16\362\246\341\212\233@M\0u!*\3345\275u\335\342\n@\326\240"
#"\371\24@\232\327\247h\262\26\2\0\326eOMS\n!US\213\253\20\243\356"
#"\300l\340\327|\331\351\330Va\254A\212D%b&u\346\372\326\342\r\2155"
#"\250tZm3A\354\356\356booo\21\240\346\6w\205\353\210G\373\267\235"
#"\320\r*\27x\1x\363\371\v0R"
#"A\344\34\304\234\203\221\v\370\370-\240"
#"\262\n\300\2\267\237\307\203\362\343x\376"
#"\26\09D\275\6\231T\213\332u\341\3.\360\366yR+\300\233/\341\v\267"
#"]=\256\370\256}\21W\217*\300&\236>\306\236v)WW\315\351\237hS"
#"l^+\263\206\342\356\240)\32/^\325\323Y\304\23\356\3GsS\206Y\326"
#">#\377\333\246\317\212o}\352\272\354"
#"o\343\312\305\nw\377\311/\340\ez\b\325;P\275\2037.\327x\352>\301"
#"\23\257\b\24\6z\327o\340U\373*>t\17\240\330J\345_g\307h\223E"
#"\0254Y\325\246\210\341\255?\304\371\273"
#"\177\0277\203\327h\241\213.~\27\312\316?H_\326\330\31\314\324M*8\r"
#"\25m\2225\350\257\242\222\32+6\236"
#"t\26\252\212\307\36{\f\326Z\34\34\34\234\270\350j\373l\345n8\20?\377"
#"\370c\6_x\342><\253\227q\373\213O\341\256\246;\37\0\356y\352K\270"
#"\211\363x\347\357>\217\217<\374a\334"
#"\207\n\20\v\3\323\f\32Z\203\201S\2\250\312\321\f\\jP\t\0UT\2"
#"\250\272\201R\26\265\313:7}\374F"
#"\305\35\202\r\370\252O=\201~\3379"
#"\200\211\326\321\314[X\362J\351\372\211\263aD}\371\301Q{{"
#"{\311\0\265K\237\332\275\23\353\324W\360g/*\36\377'O\341"
) 500
(
#".\201\353\332\206\2054e\227\367<}"
#"\3\365kO\341>\b\354\233\317\343A"
#"\271\200\217\335\6\344\255+8/\277\216"
#"+\227\37\204\210`K.\341e\324P\334\306\225\v\2\221\nb\4\362\344KP"
#"\v\340\366Gq\301<\200\347o+\240n~\0\334\3728.\312E\\\271e\201"
#"\333\227\361\200y\0\317\277\374<\316\233"
#"\346\371\"\270p\3456p\353y\\\20"
#"\201\30\201\21\301\23\327\375\367\313oK"
#"\\\231\302\a\257\303\317V\340^\341M"
#"\\\276\260\5\21\3019\21\210\\\302+"
#"n\313\260o~\24\27\344\"\256\\\277\214\a+\323l\257\302\223\327-p\3532"
#".\334\373\24\276\250\257\343\331{+\\"
#"\270\362\26\f*X\274\201\217\235w\203"
#"\313\244\22\30\363\4^n2\252\366\366"
#"\363\270h\236\304\225+\27`\344\34\214"
#"\271\204W\260\36m\300\224SO\21m:\6\251kb\312+\3758\220\330\336\336"
#">q\247 \332\\\2519{S\301\347\316\316\16\256]\273\226\314\200\366\tVs"
#"s\3\247\272\376\375r\366\255o\340\353r\21\357\272W]}f\363\365Qi\22"
#"\245\301\304\375\246\371\177[\1\320\32\220"
#"\27\360\354_\3766Tk\334\321O\341"
#"a\373W\370\330\305\373\360\354\17~\36Vk\250\275\216K/\274\17O~\1\200"
#"\32\324\276O]\233\206\327\324\250E!"
#"\225\1\324`K\277\202\247\177O\260g"
#"-T\357\340\315\347.\342\3063\367\300"
#"\374\212\305\277\262\n\265\2127._\300"
#"\247\36\271\204\353r\e\37;\177\17\236"
#"y\327K\260\252\260\372y<\361\311\367"
#"\341\203\327M\323m\177\eW.\274\23"
#"\317\376\320\347\232\375S\334\272\362\227x"
#"\370\374\307q\23\256\233_\345u<\363"
#"{\300\277\264\n\2655n=\367\36\274"
#"\370\276_\307K\367|\30\257\335\272\214\373\345<.\337>"
#"\304\215\247\337\1\340-|\354\302;\361\324\177\375\22\324*\254"
) 500
(
#"\275\203[W\276\216\367]\274\2027\324"
#"\270\t\252\364\5<\363\365\377\t\265~"
#"\v\265\375C\274wMFV\371\317\312\336\336\336\211\21\376D4,\6\251kB"
#"UQU\325\211\321\317c8\353\235\212h\275\305\263M\304A\250\252bww\27"
#"\373\373\373\307F\347\307\353\360\313\366\335"
#"N\270=\277M\277\336\305L\0j\240\372.\334{\227@!.\353\211`\\\220"
#"\0V\264\31\355\357\262\220\246V@\277"
#"\3\225\2\227~\366'\341'\271\267o"
#"\275\204?z\355\1<\367[\17\271\351"
#"\232\364\275xA\25/<\344\272\314\267"
#"`\334:\215u\203\225\324\242R\v\251\1k\16a\241x\342\267?\204\273\232q"
#"\366\357x\344\347\377\377\366\336\364Y\222"
#"\353<\357|\336\223\325\364\374\0056)\333\32\n\335\r\300\20\355O#K@\3"
#"\236OCb\341b\216h\322\303\272\205\31[\4 \216\bt\303!\333\241\221c"
#"\276H\263iFD\3\340p\203\354\230\300\355K\212\224\24\26\27,\342Wb\241"
#"c>L\204\26\23\350\0054EYR"
#"x\346\37\20\273\362\274\363\341\344\311{"
#"\352\334s2\263\356\255\312\245\352\371!"
#"\32\367\336\252\254\314S\271\274\371\344\273"
#"\35\334+\300\343\377\352\n.\310\22\n"
#"\340\342\303\37\303\275\372'\270\376\352\253"
#"\370\3557\357\303\325\177\361\260\363\372\352"
#"\373\361\5-\361\205\a\1\300\2\257\374"
#"\37x\372\315\177\212\227\276\370H=\351"
#"\300\371\247~\5\217\275y\5\317\274\2\300\32\210Z<\361+Wp\1\0d\211"
#"\v\37\374\307\3709\375C\334\272Y\0"
#"\260(\24XVU\375\372\352o\340\237"
#"\275\361\30^\372\342C\200\272f\376\27>\363?\342\27^\177\32W_U@]"
#"7\325\307~\376\277\202\300@t\206"
#"\35q\244\216\312\2361\235\212\354\e\314I\2358q2}"
#"\352\275\276\306@H\27B\257\246\367L\205\0025UD\25"
) 500
(
#"\1776GSK\266P\34\327\313I\1#\177\214\267n\1\17\236w\"\322\317\274"
#"\244\225y4\352\335\253\5\214TsS\211\300\342>\334}\1@5K\223\271\361"
#"}\274\201{\360\253\27\253\331\230\304V"
#"\342\326@M\t@a\355\361\324\243\256"
#"#\253\270\242%\30\0\367\341\236\v\356"
#"w\255tq\241\227\360w.\272\327|"
#"\205\275\0000o\3751\336\304\373\360\253"
#"\27\252u\251o\223\345\306\377\316\365?"
#"\202\352\e\370\240\374k\210T%N\352>\3733\327o\1wZX\271\17\367\334"
#"\351R\17\n\314\0\bJ#\20\250\353"
#"\227\n\340\\\351\266\371\316\333\177\4\2137\360Ay\1RMx\340\3046p\337"
#"[7a\357\4\f.\341}\347\213\272\307\177)v'\212\313B\eK\b\351\27"
#"\212\324\211\3236C\317\20c`>*\311\21\212H_\275\357\317\27/P\375r"
#"\300\252\a\265\251\200%W\371\34?\300"
#"\235H%8\177\21\367\350\353x\373\206\2\27\264\366:\2262C\1\v\325W\360"
#"D\361?\341\247\257\277\216'\353u\e"
#"@o\37OT\245\263\252\237\252\205\201"
#"\340\270\215\350qS|\261\256u\223\251D\233X\5P@``a]\303|,"
#"!\352\352\353El%b\265J3\255f\275\2\240P\30\24u\17\323R\227("
#"d\346\304\265\330z\312Rs\357\363\270"
#"\376\306/\341\16\25\210\270\2020\255\376"
#"\217\eNJ\252(\n/\233U0\263\200\25\201)\335\253\326\270\355/E\201{"
#"\237\303[o<\211\213N\242\2j\216\333\245\336,\240X\2R:\301\\\215u"
#"\352\214\345\1\234m\247\310\2762\375\307"
#"\\r\342\206>\324\366=\353\314\370C"
#"\366\207\234@\315E\2\374g\342\231\244"
#"\232\252\235\27576\\gj\2\200\343u<\210_~\346~|\351\327"
#"\237\307M8\1\b\251\f\2435\270"
#"\365\334\377\206\177\255?\215\213\27\334\272"
) 500
(
#"J\1T]\n\200\201u\325\357\352&S5w\336\215{\361'\370\376\17\312 "
#"\e\323B\254B\215\240D\351\274\246Z"
#"\2F\1\224\200\224( \260\362W\20"
#"\314\240\242\2005\316\213\253\325x\214B"
#"\324\365kU#(P\240\274\353N\\"
#"\262\377\17\336\276iP\310\273\0\353\374"
#"\233N\202Z\334q\367]\3207\277\212o\335t=`}\307\2\343\3244\24\342"
#"$\262w\231\302\300\232%D\4\245\2"
#"0\267\335\347T\1#\270\353\302\373\200"
#"7\277\212\227o\334\256\246H\255\216\5"
#"P\205\365K\224b\200\262\250'\3\330"
#"\205\333K\343\3N\317\343 d\37\231"
#"\276\25\331s\302\233\374\20\371\250)\303"
#"\35\346\375\21\22>D\315\347\363\316\2"
#"\325\23\207\350C\21\352\273\0\370\177\336\ek\255m\\g(T/^\3717x"
#"\6Wp\361\201\347pC\304y9\25\270\365\374%\334y\345\273\370'\257~\31"
#"\17\0010jPh%\321\252\320\271(\0#Pk\240\347?\204\217\335\367\6~"
#"\371\177\375\16\234\373\363&\236\2754\203"
#"|\372;\220;.\342\247\361\357\360\365"
#"o_\257\276\317\17\360\354\177{\5o"
#"\350\314\tF{\256\312y\225\343\234U"
#"\0\205\30\300\nT\254k\244_:\261\213;?\204\177t\337\367\360\364o\274Z"
#"\355\244\37\342\371\373f0\217\277\354\246"
#"z}\377\277\304o\336\377=<\375\337}\0367\245\32\347\313O@\212K\270z"
#"\v\2001P-\217\247AE\225~\240K\27^;\177\27\336\2077\361\366\215\252"
#"\335\326\303\377\34\237\275\367M<\375O"
#"\277\210\e\326\255\317\276\372\30\214\\\302"
#"\2637\1\350\f\205(\254\361\265f\256"
#"\314l\352\304^\371\241=\253c\30\3!}\302p?9\23q\3254+\373I"
#"\214?7\26\213\305\312\271\321E\240\306\304\25\377\276\340"
#"*~\277\313M<|\300\272\374\272\305\235\217\t\356\222\247"
) 500
(
#"\217=\217\362\367\361\314\r\305\225\vU\310\36K\250\224Pq\336H\213sn;"
#"VQ\32`\206\v\270\362\332u\310\375\27]J\200X\340S/A\277\364\1@"
#"\201\27\256\377&\356\277\363\357@\236v"
#"\271\252\217\275\362m|\352\341_\203*\0Q\210\26>\273\265\356AjU!+"
#"\251\3Z\245\273\376\24\236|\375\26\364"
#"\376\363n[\260\300c\257\300~\371\375"
#".\367T.\342\351\357\276\rs\351N\\\224'\253o|?\236\275\361\32\236\274"
#" \220\233\nW*\206:%AUa\374T\257\362\b>\374\213\212G\36\26|"
#"\361\27_\206~\341!<\375\306\r\340"
#"\276\213\270\263x\312\355#\271\37Wo"
#"\276\216\313\347\1\334\264\260V\252\261\332"
#"*\25\300L\276\276?>\217|\205\177x\316\r\5\305*\331\aD\31\223=3"
#"c\310\25J\205\245\206`,\6\234\fK|\16\246\316\213M\\7\2338\337r"
#"!]\n\0\222b\f6.\216.\344~n{\373\204l\ezR7@\330\336"
#"f\350\e\333\3207Y\32\256\375%u"
#"\356\371\352\375\303\303\303\225e\306t\223"
#"\353\373\6O\246\315\30\316\3338\202\225JI\340yLv\1\212\324\r2\6\303"
#"0\344\354(\276h\205\354'\361\271\27"
#"\347\236\2069\245C\344O\347h\353\34"
#"@H\310\320\347Gn\322\n\17\317c\262KPQ\354\0\276X$n\337\323\367"
#"\23\377\230\274cd\30\374\361\17C\242q;\2501D\34<qOVv\246 "
#"9\206>'\302|\353\246^\302~\31Bv\1\212\324\r\20W\200\16\261}\277"
#"\355!\3072\206\\-\322?\341M\3227\350\317\0253\r}\243\217\211\257\21/"
#"\240y\223'1\376\374\275v\355\332 "
#"\323\243\346\316\311&\261J\310\324"
#"a\270\377\214\214\241\311rh\274\206N5`\230i"
#"\277H\345\237\246\n\244\342kd\314\347\311\30\256i2"
) 500
(
#"N\206rB\204B4\227w\32\217m\314\327\30!]\241H=#c0\2c"
#"\311\251\eS\30\227\364\203?\347\36}"
#"\364Q\34\36\36\236\270\231zb\3017"
#"\226\363$w\275P\240\222\220\266\363y"
#"\233\244\234\20]\n\244\306r\215\21r"
#"\26(R'N\354\361\31\332\223J\366"
#"\217T\257\322\251\234\vS\31'\31\226"
#"\370<\31\303y\23\212\324\32457\245\353\220\220\34\24\251[bl\5\"!)"
#"\3435\346\361\222~X\327\e\177pp"
#"\0\21I\206\367\303\365\247D\361\245\0\0 \0IDAT\21B\372\207\327\36"
#"\331\5(R7D\352)v[\255v\316z\363O\t\324M\207\257(P\246\305"
#"\272\271m\261\367\264i}\204L\231)"
#"\234\313}\217o\354\373\203\354\16\254\356"
#"?#^\334y/d<\207\3756\362\335\342j\316.-\247\342\367\342\212\353M"
#"\317\374C#6-\232\216Wx^\373\251H}s\376\230u\246%%d\n\244"
#"\252\347\207\252\360O1D\3764s\266I_\320\223zF\332*,c\361\272\251"
#"\247rUEQ\24+\353\357\"4R=+S\343^w\234c\230\222\225l\206"
#"\\\345\360\301\301\1T\25GGG+\313\205\f]\274G\3106\30\262p\252\t"
#"km}\37 d\27\241H=#\271v5\361\364\217\233\276y\237\246'j\350"
#"\21\b\5n\323\262\353\214'\336\6\205"
#"\3124I\235\253\363\371\374\2048\215o"
#"\332<\a\310.\222{\30\e\3\271\326"
#"n\333\274\366\330\236\215\364\t\303\375g"
#"$n\17\222\nw\346\252/\373 %\236}\256l\323x\3265Bcm1D"
#"\272\321t\374\16\16\16j\201\352\337K-\37\247\235\360\34 S'W5?&"
#"R\367\240m\\{c\373\336d?\240H\335\209\343\320\326&\244\217"
#"q\371q\0@Q\24Ycs\226\220}*o\213L\207\334\21587"
) 500
(
#"\213X*\364\271\216W\237\220)\220\262"
#"kc;\277\373\232$c\214\351\16d"
#"\367a\270\177\v\304\241\317\360\357T\201"
#"U\23m9\177a\353\250&\3\25\347\2406m\353,\341\332\261\31pr:\26"
#"\213\305J\376)\220\16%\246r\365x"
#"\16\220]c\314\347\364\20\23\271\214y"
#"\177\220\335b?<\251Z\242\4\240Z\2Z=\5*\240\360\202m\365\247\372\337"
#"\265\372}\3453\376\375\304f\22\271z"
#"\300\372EI\"\2c\314\212\a\326\377"
#"\263\326\236x\315/k\214\251\327\237Z"
#"\347\272F\254\353\262\336\333\306\247\353q"
#"\323\365\370\370\343\31\nT \355)\35"
#"k\256\36!\333fL\25\376!\333\260\303\264\355d(v^\244VAn\b\24"
#"\202\2\0`E\241P\210\232J\204\272\335`\241\0,\244zM\305B\252kS"
#"\244\204\25\205\0\20]\2VW\304\352\272\236\321\\2\276\27\223eY6\2563"
#"\366^y\361\232\23\311}\30\31\n\224"
#"q\323\24\256k\v\357\23B\2721\244\240\333\2267\225\305Rd(v>\334\257"
#"\n\210X\30T\242\23\6F\5\360^!\255\27\202A\341\304\247qo\v\f\264"
#"\272\336\305\316`\214\205B \230\1\306"
#"B\220\366(u5\24q\230f\235\274"
#"\247\\\241\213\265\26\306\230\225\34\330\224"
#"q\331fh\210!\337\361\22\347\217\372"
#"c\225\233=\212\20\262\36C\266a\333"
#"\326\266i\323\311P\354\274H5b\341\34\306K\bf.\344/E\345!\265P"
#"9\16\253\243\362B\n\226\360\273F\24"
#"\200X\2501\20T\353\22\240\311\t\275"
#"\316\305\274\351\302\2520\3574\265\336\234"
#"\267u\223\320\230\215\217&/{\\\275O\b9\eC\332\300myR\t\31\202"
#"=\b\367\373\2578\203\325\37\340s\227f0F`\214@f3\30\21\210"
#"\24\230\25\306\275\366\370w\0\374\bW"
#"\357\227*\317S \305\f\205\231\301\310"
) 500
(
#"9\30)\360\330+.\2375\25\374X7,\22\26>u\255\236L\265\373\311-"
#"\23\257w\233\336S2^\232\252\367\375"
#"\354Q<\206\204\234\215\241\256\241\330\21"
#"\261\215\365\3\f\373\223\376\331y\221*"
#"AQ\224\221\237\302\223o\224P\253\260"
#"\252(\257\177\26\227p\tW\257\227X\226Kh\251\320\27\336\17@!\2\334w"
#"\365\26\254*\354\322\242\264KXU\250"
#"\376\25\276\364\220\313gM\311=\37n"
#"\a\326\313S\215C\363)c\220+\210\312\255/\26\262\3330.>\207\221O\332"
#"\323A\325Mm\312cG\310\331\210\213"
#"\247\306p-\321\223Jv\211\235\17\367\3\6\26\n\3\3\253\200Q\3\30WP"
#"e,\\A\225\0\245\0003\5J\0\5,\264D]P%\342\226\267\n\30\231"
#"\301\0PA\235\26\20\207\351\273\346\5"
#"\305\36\321\260\321~\256\260\312\223k\3"
#"\224\22\272\251\237\233$\267N\3461\r"
#"O\352<y\364\321G\353\334\323\246\363"
#"\203\307\217\220n\214\251\25\esR\311.\261\363\236TX\300\250@a]~\252"
#"q\255\250\4\2005\256\226\337\302\242@"
#"\1\250\242\250\234\215\5\0005?\256[P\t|~\253\23\254\242\26\352\363V3"
#"-\246r\5K\3763\251B\251\262,W\252\374s\244B\370]\212\244\372|\312"
#"\246Q\e\236\370<\t\303\373\341\373\251"
#"\a\30\36?B\2721\246Vl\364\244\222]b\367=\251\306\207\373\275G\25\20"
#"q\255\250\214\372w\fD\0015U\275\276UXcPT\342\324w\5@-0"
#"\341\n\256|!\25\272\317\357\334&@"
#"C\261\0206\336\17\363KS\305P\276"
#"\242\177[\254\333\261\200\214\v\37\222l\252\336\347q#d\27249G6\1\363"
#"Q\311\20\354\276'\25@\351=\241PW\335\217\245{C\r\254\224."
#"kU\3342\26\n\30\3X\301kW\356\202\30A!\205\23\210\263s\270"
) 500
(
#"\364\334;\325RZ\27eu\361\2346\221\373\234\317m\5\232[\\\305\2\265k"
#"\16\352\272\5^M\237I\2656\"\303"
#"\20\357\373\371|\216k\327\256\261\275\24"
#"![bh{\327\347\366\207\376\256d\277\330y\221\2520(\304T\223IY\327"
#"\320_g\260\270\215\262X\302\250\201\210"
#"\302Z'\\\235\220u\36\314{\237}\eZ*\254\272\306\372\266\374+\274~\371"
#"\216*\303\265\f\32\375\347C\351)\357"
#"jX\324\224\373\34\220\256\330LU\353"
#"\347\326\27~\266\253\247\267\215\\QV"
#".}\201\364O\270\357\27\213\5\333K"
#"\21\262e\206\266w}n\177\350\357J\366\213\335\27\251U?T\30\v\350\314M"
#"k*\200\3019\24\313wA P\25\30\231\255\b.\3\v+nY\205\233\231"
#"Jp\316\275\17T3R\235\364Z\206\5P\307c8\351\331\354\332n*nO"
#"\25\n\304\270H*Gj[\353<\r\307\337\315\217'\356\257I/\3520\344\272"
#"@\34\34\34\340\305\27_\34bH\204\354\5\252ZW\370\17i\367\350I%\273"
#"\312\316\347\244\32\1\24%D\317AQ5\362G\345\2454?\6P\2\352\362N"
#"\341\374\243(\340\246N=W\316\\\336"
#"\251\32\327\320_\305\3152%\200\25q\n?Sx\22\n\273\234\247\265Kc}"
#"\237\233\32\316\"\25n/ES\205v"
#"S\241L\323\30\272,\e\347\315\362\211\273\37\342c\275X,\0\340D\5?!"
#"d\263\214\245\3200\266\1\233\26\222]"
#"\35\"\204l\232\235\27\251\320\343B)"
#"\225\252XJ,\254\30\24j\0\24\260\306B\252vS^\240\2@i\302\31\246"
#"\340\347P\5` P\227B`\322F\252)\5 \26\247M\"\",\242j\252"
#"\342\317\265\22j\362n\256cl\272\2145\265]\322\37^\240^\273"
#"v\255\321k\317\207\bB\266K\337\327W\237\333\243\355 }\262\363\341"
) 500
(
#"~\0\265'\324h\341\274\24600\336\323)\256\345\223\237>\312\25D\t \6"
#"\205Z(l\365\236\251\204\254/\2262"
#"\307\355\1\374f\242\260x\374\272'\225"
#"g\232J\e\b\227\365,\26\v\314\347\363\23_1'Dr\3539M\270?\265"
#"\236\266q\220\376\b\333K\345\2167\5"
#"*!\333e\210\353\253\257\312{\332\16"
#"\3227;\357I\325\252j\277\204\251z"
#"\237\372\266R\2\\\270\202\327\313+P"
#"A\25\362w\315\375\v\\\300\345\327J"
#"\\\366+\221\343u\1\256G\252\221c"
#"\301Z/\226\b\245\267y\36S\237\215\337\v9<<\\\311w\365x\357Y\327"
#"\360\323i\274\250\353Bc\326\17>\37"
#"\316\347\a\347\212\344\326\361\340\23BN"
#"\307\20\327T_\3272\37rI\337\354"
#"\274H\365\227RQ\375!\341\353\262\372"
#"\273\3733\357\\\256/K\351\356\200>"
#"\315\5\335V\211\357sT\303>\252\363\371|e\231M\266\eJ\215\307O\2519"
#"5r=e\273\244\\\344~nrl\251\365\305^\222p9\37\336\217\227O\255"
#"o\23\335\35\b!'\361\305SC\331\304\370:\337\244m\n\243rL\345\"}"
#"\263\363\"\265/\232\4\306\2724y\301<\261P\215\333\f\35\34\34l,\4\324"
#"\265`*\376}\214\304\"3|=EJ\220\266y\273\327\305\37\313.\0025\334"
#"\356|>\317\266\227\32\373q d\327\30\312\313\30os[c\240=!C@"
#"\221\272!Ry\246\376\357.\27w\316\3204\tM_L\225\352\203\232{\242\367"
#"3\0175-\263.\271\357:V\241\24"
#"\356\257\324\276\213\5\351\266\277\207\367\354"
#"\246\36N\374CH\370\276?\206)\201Jo\a!\3030\224\275\213m\324\266*"
#"\374=c\265\353d7\241H\335 \341\305k\255M\32\v\37n\16C"
#"\365\300IC\23\v\324\324\254R\261W\260\2518&\26d\252\212\305b\261"
) 500
(
#"\322=\340\350\350\350L\6h\254\341\344"
#"\\\330;\24\371\271e\303\345\233\326y"
#"\326\261\245\216\177\312\323\353C\212\271\e"
#"\20s\306\b\31\206!\vE\373\274\336i[H\237P\244n\220\360\342M\0257"
#"y\302\n\376\224xRU\24E\261\342E\213?\37\207\376CQ\323\2243\31\212"
#" _\t\356\227K\245\bt\355\265\271"
#"\355|\315\263\220\e\207\27\347\306\30\224"
#"e\331\311\3\271iOe\352\370\207\36"
#"\324p\233m\325\373q\32\302\230\216\1!\273\316>]k\264-\244/(R\267"
#"LJ\270\265\205\232c\257i[\376dN\34v5\"~\271T\370?\26\256\207"
#"\207\207\215\271\267c\23\250@{oW/\362\303^\264\376s~\231p\371.\353"
#"=-9\317n[QF\352\34\30\3231 dW\31K\232S\237\333\245m!"
#"}!:d\214bGi\n\333zrb$\225\n\20.\337\346\251\314\245\27\244"
#"\4q\227\361\307\177/\26\213\0251\227\22Nc\23\251@\267&\366~\337w\31"
#"\377\266\4j,\224\375\376nJ\305\30"
#"\343\376\356\213\251v\231 \273I\230\216"
#"\323\3275\231\312G\335TNjn=\373lsH\277\320\223\272\5R\2/\26"
#"\216\361\353\336\260\244\4jj\3359\3\221Zo\374\3316\3\323\224\223yxx"
#"\270\"\f\302B,\317\230DC\354U"
#"l\372\336>\344\337\226\243\272\216\247\262"
#"\353\215\"u3\210\5X\27\201\312\233"
#"\a!\303\221\262\273\333&\266\353\333\366"
#";\2151\245\213\354.\24\251\3\2202"
#"*\241\27\355\254\236\274\2608\253\253\a"
#"\366\264\244\4i\252g\353&\267\277\316:\272.\227J\305H}>\374;\366z"
#"\266m\277\255\330)\244\253\207\260i|"
#"\204\220~\0312\314\277n\232\327i\266\261\255\365\23\222\203\"u\0R"
#"\341\231P\360\344\304\\\27C\21\257\317{f\317\2223\272\356\362qk\244"
) 500
(
#"\371|\276\"\232sy\255)!\333\227"
#"\2470\334\236\27\371eY\326\357\205\357\2573\216T.q\370\320\20?Dx\201"
#"?&o4!\244\235\2412\347\266m\37\233R\313\b\3316\24\251=\320\26\202"
#"O\205iR\36\262\246p}(z\342\34\324\330x\256+T\273x\3c\302\365"
#"\247&\32\b\307\18okj\\}z\n\303m\227e\271\322\277\324\357\317\323"
#"\216#\374||\314C\201\3324\265)!d\274\304)@}]\303)\347\305&"
#"B\377\341\347\31\342'CA\221: 9#\20\e\202\320\253\347?\27\322T\250"
#"\325$TO;\346\324v\343m5\255?\327E \\O\2373)\245rL\273"
#"\204\376\327]\177\374w\350\345>88"
#"\240@%d\342\234\345A\366\264\333\333vx?u\177\241}\"}\301\352\376\236"
#"HyJ\343]\357\303\314\376\367\334\262"
#"M\341\227\256y\217\24754\271\\\311\266\364\204u\267\31\27du\r\177oJ"
#"X\372\317\246\3221NCl\350\255\265(\212\2\237\374\344'\1 Y\21\314\233"
#"A;\254\356'cc\210\n\177\340d\321\326i<\251m\16\217\360u\332&\322"
#"\a\364\244\366@.\334\36/\223\22W)a\31\e\2070\274\2373\36\251\365\237"
#"\306\320\344DT\356\251;\265lnl!\261\3608888\261\\\270Lj\35"
#"\233\22\225\233\n\235\371\237~=\237\374"
#"\344'\e\253\367y\23 dZ\364\355I\365\333L\335\27\316\262\216TT\257)"
#"\335\214\220mA\221\332\3\336s\326$&S\2\228\236\271*l\360\237\312i"
#"\4\362!\2328\f\177Z/c[^f\333\366\343\337s\353I\221\22\244\271\211"
#"\6N\233?\25.\3374\rm\356{\264\21~\336\347\237\236u\235\204\220a\311"
#"=\230\367\305&\266\231[G.bGH_P\244\366D((s\"*%\344|\230"
) 500
(
#"\331\367\360\\g{\251\337\317\342\25l"
#"\363\204\346\266\3316\226\323\214CU\223"
#"\336V\377\276o\200\277I\316R<\20\212\336T\376\351Y\323\t\b!\303\260K"
#"\327-\37\224\311\330\240H\335 M9"
#"\205)\241\266\351\247\327\256\306e\323\302"
#"\350\264\3538k\276(\260\272\217c\321\272X,Nx\255s\371\213M\271X\251"
#"\345\232D~\316K\356Et<\6\336\24\b!\247\241K-\300:\237\367\316\6"
#"\226\252\220\261@\221\272A\232D\347\220"
#"O\250M\206\254M\214\205\34\34\34\340"
#"\360\3600\373\376\0204\355[?\326\220\\A\326:\307(N\265hJ_\360\313"
#"-\26\213N\29\3657!d\32\370\bO_\5}9\207F\256\346!\376="
#"\266{\264=dlP\244n\2308$\234\v\363\207\313n\233\2660}\334\360\277"
#"\3513]\337\357\223u\f\254\277q\204y\255~\35\326Z|\345+_I\32\370"
#"p;\341\347s\"\337W\357\253\352J\377\323\24\233*j#\204\f\303&\212\227"
#"65\206\370g\0341k\253\t\240\27\225\214\t\212\324\r\220{2\215\5`|"
#"\361\367e\320\272T\326\347\274\2021c}\342^w<q\370?<f\361d\3"
#"\271.\2\252\307\323\317\306\333\237\315f"
#"\230\317\347\255\2\265m|\204\220\361\323&\374\266M\223w4\264Wmc+\212"
#"\242\276g\0212\6(R7@\312@"
#"\205\323\200\346\226\e\332\223\352\361\235\a"
#"\302\t\3\272\254s\fB5\345\3018"
#"MN\226_\376\350\350\350\304\303D\334"
#"\376*\24\255\376\30\207\336qc\314Jj\304i\276\17!d\32\244\n*\373\24"
#"z\251HL\312\36vq0\320\376\220\261A\221\272%\272\30\2511yR}\367"
#"\200\334\262\271P\322\320\304\206\367"
#"\264\36\325\320+\32\222\362\244\306y\255\341\266\2151"
#"\230\317\347'\4j\327q17\225\220i\221\262\213}"
) 500
(
#"^\2679\273\227\eKJ\254\322\326\220\261B\221\272!R\")\225cx\226\26"
#"P\247%\267\3750g6\16\r5\255#\365\367\320\244B[\247\21\253ma;"
#"\219Q\20\341\303\372\213\305\342D\203"
#"\376\334zrt9\26\204\220\361\320\24"
#"Z\357\213\224\255h\272\3174U\365\217"
#"\311\256\23b\206\36\300\256\220\22m\341"
#"S\354\320\311\351\3618\232\322\20\200\223"
#"\343K\205\257\307f\310\3021o\362A"
#"\240m=a\317\323T\341U\333\372\306\346\235&\204t#\347t8:::\21"
#"q\31\23Mvf(\241MH\n\212\324\rr\32\317\335X\311=\231\217\231\263"
#"\26/\344Db\333z\342\326\\~\226"
#"\260x\335\311\365)\0\251\274\27\220\225"
#"\227\217\261P\277\16\255\376\16\326WV"
#"\37\360\257\250\226\365r\204\220\3551\326"
#"\250\307\272\0023\265\374\330\276\23\331O(R{ ,\252\361?\247f\0v\371"
#"\251z\235\343\222\3620_\273vm\345s\251I\22\32=\0276(j\360\257\301"
#"\242\26\231\326\0Z\2\242\200\0\260\2\201T\313Z\210\2\20@\354m\3677\n"
#"\250\0P^\336\204\fAS\230\275\217m5\331\233\324\362\251||B\306\0s"
#"R{\240)_\251)\341}L\214m<\233\244-\324\236\n\307\317\347\363d~"
#"j*\3677^w\370w)@\1\201\302\t\320\2526\30\n\3Q@\5\20\3"
#"\b\nX\5D\0\30\205j%Fa`\374\252\345\234[\277\0b\0250\n>"
#"\207\22\322\17qnj.\5l\323\244"
#"\266\223\372;\34Wn\334\204\214\r\212"
#"\324\236i*\240J\25Z\215\215\261\216"
#"\353\254\370}\356\333qy\257B\252Xl\261X\340\253_\375\352\t\317C|c"
#"\312\35\343p\377\25\n\30S\300\252\2\260\316\373\351\305\2528\217j\t"
#"\343\226\23\270e`j1\353\274\250\346x[\250>k\24\252\6;x"
) 500
(
#"\250\b\31%\261]\334\324\264\323m\344"
#"\4jl\323R\313\2\316\213\232\313\223"
#"'dh\350f\351\231\246\"\245\334\323"
#"\367\320\370\220\366\330\306\265iR\236\356"
#"\370\373.\26\v\34\35\35%Cc)\257\251\277A\204\307xu\243\200\212u\302"
#"R\r\256?\377\0\304\0240fV\235\17\367\343s7l\25\346\277\201\253\227f"
#"\20)`\212\31\214y\27d\346\3776x\374\17\264Z\17\0\265\300\356\36*B"
#"F\317\321\321\21\346\363\371\326\267\23\332"
#"\255\234\b\215\227\365\244\272\321\354\272\235"
#"'\323\202\"\265gr\371CS0\20c\35\327&H\35\227\360\265\203\203\203z"
#"\366\250x\331P\260\246rQc\241\32\256_\325\305\360Uo\340\271\a\4w\377"
#"\366\307p\323Z\330r\t\253%n^-p\345\256\2O\274\262\204\32'B\37"
#"x\366-\334\266KX\373c\330\322B"
#"\365\257\240V\361\305\17\370\215\2\220\231"
#"\363\262\22B\6!UD\271\315\334\376\246p\177\323g\342\a\350]\266\363dz"
#"0\334\337\3\271\336\227>\34\24\206\205\306h v9\24\224jx\35\207\351}"
#"\365~Q\24'\274\25\376F\324\245\355"
#"T<\205\252\373W\300\332\22\257~\332"
#"\340\262}\0367\336\370\357q\276\216\367"
#"\e\234\177\352\273\270\216\373q\327\257\177"
#"\21\377\374\241\367CE\261\324\2\5P"
#"\247\6\250\316 \270\rS\345\244\2\316"
#"\231j\5n9B\310\326I\345\237\306\366b\333v3NM\312\215\255i\214\204"
#"\214\t\212\324\36\310]\374\261A\31k"
#"B\373Y[;\215\231\266\364\n\237\352\20N\e\333\245\20\"\265\316pV\257c"
#", \257\340\e_\6\36\177\35138\17\353\262P\265\200\0P\224\270x\3715"
#"\330\313\0p\23\205\25\b\226\256\345T\225\263\252b\240p\2U|\321"
#"\25,\n\6J\b\351\2156;?$mc\30\303\30\tI\301\273\330H"
) 500
(
#"h\352\317yR\330\220M\222\332\277>"
#"\274\357\5j\\\4\221\362R4\345\262"
#"\372eb\257\271Z\5\336\271\201?\326"
#"\373p\317\5\vQ\343\312\242\4\325\277\302\265\232R\0(Q\n\240\22\24WU"
#"ETb\375\266\215\373\235\355\247\b!\35iKw\"d(x'\e\230\234\27"
#"\257)T3\6\3431\2061\254C\323x\343vQ\213\305\2\207\207\2078::"
#"\202\210\324\36\324T\336p\252\372?\267"
#"~\277\214\27\252\252\352\274\241K\300\312"
#"=\270\373\274\201\n\2400U\361\23 \26@\275\316s\0\f\276w\371\"f\""
#"\20\343S\6\4\367=\377\3\224\276\243"
#"\277\221\252\303*\373\36\0222\6\206\266"
#"\227q\257n\240=\324O\357*\31\3\24\251\3\2232\36@s\22|\237\236U"
#"\37\356\16\307\22\217o\314t\31o\30\362\177\364\321Gqxx\270\"\\}\316"
#"iJ\214\306\225\261]:\4\254\254O"
#"\1\24\200\301[\370\367\377\241\204X\37"
#"\262\207\31375\225\347U\0\213\22b"
#"J\334{\365\26\226ZB\255\302\252B"
#"\255\342\265\247\356\300\254R\265\212\333\274"
#"\260\t\31\1\327\256]\303\301\301\301\340"
#"\3662\227\23\333\326\37\232\220\241\341\275"
#"l`B!\344\351b\34\3724z\251\247\357\251\320u\274\"\202\305b\201\27_"
#"|\21\300j\357\300\324\361i\313\323M"
#"\335\f\342\361\250*L!\300\371\213\270G_\303\333\327Q_\221\"\326yRa"
#"\240x\31\217\313\275x\376\26\0\v\230"
#"R\235\267\25\307\375T\215\240\n\361\e"
#"\b\3169\217\254N\343A\202\220]\246-R\266mR\205\257\361\203wj\271\241"
#"\2055!\0\v\247FA\312S\332u\331>H\t\260\261\24uu\241m\234\a"
#"\a\a\0P{\214S\3026\16\361\247B\376M)\32^\344\306\375U\325"
#"*D\n\334\272\372\17p\376\327\236"
#"\303\277x\360i\374\224\272\327\252\312)"
) 500
(
#"\334z\376\177\301o\341\357\342\345;\f"
#"\336\6\260<g\240(!u\355\376\22"
#"\300\314\265\371\257\v\252\200z\276TB"
#"\310`\344\354E_\304\366:g\253\246b\317\311~A\221:\2\332DQ\274l"
#"\3332\333 \227r0u\303\26\24734y^\233R\aB\241\352[U\245>"
#"\e.\v\370\276\373%\304\b~\363\322wq\376\276\31n\276\361$\356P\205H"
#"\211\353\237\373/q\367\3457\360\v/\177\27\17\312-\274\r`V*\214\26U"
#"\302\252\363\236\252\226\20)\240\nXX\24j\0a\240\204\220!I\331\214!l"
#"g\3236\233\354\31!C\303\273\330\bH%\2577\25\341\204\313\364E*,4"
#"U#\346\307\277X,\352\231\264\200\325"
#"B\202\266\317\253j\335\3634\364D\204"
#"\275P\303\367\303\317\255\34\347\252\270I"
#"\255\342\227\337\0\376\340}WpA\n"
#"\230\231\201\310_\303]O)\236\271\241"
#"x\341!@\325\2\20\250\226\320\252\217"
#"jU_\345<\257\325\372\234@e\321"
#"\24!C\223\312Q\367\257\367\2356\325\265[L*2D\310P\320\223:\2\332"
#"\236dC\2431\6a8\2061\254C"
#"\274\377\26\213\5\200\325\360~\252\30\252"
#"\215X\270\37\34\34d\37\"\362\307\316T\305NU\233+S\215CK@\n\240"
#"\352\233\n-\0\271\210\313\257/\361T"
#"\325v\np\21}\327'\325\207\370M\325)\225\0202\26\306T=\237\262K\271"
#"\237\204\f\r\357e#\242\251\202|\b"
#"\243\21\207\302\247J\270O\275\367\324\177"
#"\257\276\274\6\315\307\356Xt\332\322W"
#"\363\27\325\370\4\6E\335\27UUV"
#"\263L\203\226\252\253k\343\245M\310\30"
#"\360\25\3761}{*\275\255KM\343\234\373I\310\320\360N62\326I\256\337"
#"\244\221\233rh'\25\242O}\237\260z\337\223\233\322"
#"t\250\375\321\366@\302\233\a!\323f[\351RaZ"
) 500
(
#"Q\352\301\273\251\222\237\220\261\302p\377"
#"\310H\345-\206\257m#'u\352\241\235\\\357?\377\323{1\16\17\17;\345"
#"\375\246\326\331'\361\361f\b\216\220\335"
#"`\233\327p\350\5\315\245\212\321SJ\246\6E\352H\bC1\261w\257)\207"
#"h\23\354\232\301\n\r\361|>\307\321"
#"\321\321\211er\36T\317\320\235\23\0"
#"\254\316L\225xp\331\265\343F\310\256"
#"\263\315\207\315\270\216!\336\2361\246\236"
#"=\217\220\251\300p\377\b\210sQ\343\367B\272Vh\236v\34S'\374\16\a"
#"\a\a8::J\356\3036c=T\347\204\370u\377\320\22/C\201J\310\364"
#"\330t\16|.\304\237\212\30\361\301\226"
#"L\21\212\324\21\220\vW\207\357\245\214"
#"\332\246\rN\270\276)\26M\205\373-"
#"5\376\330\240\267\255\253/\232\266\25\27:\20B\246G8=\3526\242`q\250"
#"\337\333\fo[\332\"G\204\214\25\206\373G@\312h\3059EMBv\323\333"
#"\237\2321\v\367\321|>\207\210\324\375OSyXmmW\206l\264\335\24\326"
#"gn*!\323e[v\265\311.\264\345\353\0232v(RG@\312X\204\371"
#"\210]?\263\251\355O\315x\371\361."
#"\26\213\225\374\323\266\n\3711\264_i+hH\205\355\246v|\b!\307S#"
#"o\303\233\332\326\21$N\3\240-!"
#"S\201\341\376\201Y\247\375\21\215J~"
#"\337\314\347s\34\36\36\366<\232\263\263"
#"\356\361\334\367\343O\310T\331Fg\226"
#"x}\353\344\273\322\226\220)@O\352"
#"\300\244\fE\252\365P\237\214-\334\337"
#"\24\242\362\355\245|\201\24\r/!d"
#"\214\f\231J\224\332.\355%\231\2\24"
#"\251\3\2233\24\271\374\304>\30\233\341"
#"\312\345\224\306\305Q\361\373\204\0202"
#"\26|\n\327&\311\265\257\v\377\316=\344\323F\222)\300"
#"p\377\3004\265\234\362U\232}\346J\252j-\376\306\346"
) 500
(
#"Q\365\304\2\265if\25B\b\31\3GGG\311\351Q\317B\333\375\243,\313"
#"\254\aw\254\366\235\220\20zRGF\252\222;DU\353\246\314\333\20cc\177"
#"\322^,\26P\325\225\374\3231\216\223"
#"\20BB\266\35\341\t\357\27\251B\251"
#"x\f\264\233d\nP\244\216\200\246\326!q\270&\\~SFo*\341q?"
#"{T\327\226QS\371^\204\220\335'e\3037El\vs}Qi\17\311\324"
#"`\270\177`N[\34\265\215\26&c\306\317\36\5to\31E\203L\b\31\23"
#"\333\362b\266\2557\366\260\306\277\0232"
#"V\350I\35\230\256M\345}\230\337Z"
#"\273\225\252\377\261\n:\237\303\25\346\237"
#"\216u\254\204\20\322\304\266\204a\334\v\265i:m?\16\332Q2\5(RG"
#"@\227\246\362\276\215HW\3261B\3336X\247]\177jjS\32VB\310>"
#"\261\215\231\361hG\311T`\270\177\"\304\306\251\255=\325:F(\\6%\f"
#"\317B\27C\232\22\337\213\305b\243\343"
#" \204\220\241\271v\355\32\346\363y\347"
#"\345S\2024\345\304H\325.\20\262\vP\244N\f\37\366O\365\274\e\243q\352"
#"\"\226\343\202\202\305b1\311\331\243\b"
#"!$&\266\313~z\324.t\361\230\372VSEQ\254\35q#d\3540\334"
#"?r\332\232\375\347\226\353\32\n\32K"
#"n\222\357}\252\252u\201\324X\306F"
#"\b!\247%\225\266\265\216m\353\322\271$\316I%dW\240H\359\251D\367"
#".\271I\353\30\300M\267\264j\"\267"
#"\r\337^*\\\206\306\226\20\262K\234"
#"\325\256\305\266\261\251E!!\273\0\303"
#"\375\23!\27\316\317\275\276N\310'4"
#"x\326\332\323\17r\215m\205\204\355\245\3742\fY\21Bv\221u\246Gm\252"
#"5HM\364\22/C\310\324\241H\235\0)\343\323"
#"\346\375<\215\320\213\275\231\333\346\340\340 [\250E"
) 500
(
#"CK\b\331\5b[\272\316\364\250M}O\375{\2765!\37\356\311.\302p"
#"\377\4h3T\271P\317\272B\257\317\36z\a\a\a8<<\\Kx\23B"
#"\310\324\3109\21\272\220\262\205\241\335\17"
#"\243_\264\233d\27\241'u\2\264=\35\307\t\364\247Yo\370{\312(6\375"
#"\\g;\300q\233\253\\\36-\r-!dW8K:VN\240\306\353\311\211"
#"YB\246\16=\251#GUQ\24\5\312\262L\32\241\2247\265i])A\333"
#"\224x\337\265O_\270\2541fe\274\376\363\217>\372(T\225\375O\t!{"
#"Cl?O+\36S6\270\251S\0\37\366\311.@\221:r|8'%\""
#"\327\361\240v\351\4\340\373\367\345\232Dw\31k8\336p\273l\316O\b\331W"
#"N\e\355\212\327\261N\253A\206\377\311"
#".\300p\377D\3105\361\367\357ui\370\3346#I\356\365\\\237\276\246m\204"
#"\257\371\360~\256\32\225\20BH\236\260x6W;p\226Y\a\t\31+\24\251"
#"\23\242,\313\354l%\353\344\211\346\332"
#"@\305\236\316\246\\\252\224767\275"
#"\251\237=\352\264\275\\\t!d\227\270"
#"v\355Z\247\n\377\234\275\r[\5\262"
#"\365\24\331e\30\356\237\b\251\6\376)"
#"\357i.\177\25H\347\240\246\232B\347"
#"\226\t\327\21.\223\22\250\336\0{\341"
#"\313\320\23!\204\254Gh[\233ze\307\320\336\222]\201\"u\"\344Z5\245"
#"~o2N9\361\331E\240\246\326\223\22\314)\257l\237\355\255\b!d\354t"
#"\211z\305\366\322\247|u\371\fm-\331\5\30\356\237\0\251\\\316X$\266%"
#"\346\307!!cLV\320\306\336\325\324\272b\17\252\377\314|>O\26H1$"
#"E\b!\307t-F\215\377N\265\16\214\213j)P\311\256@O"
#"\352\4\310\345rzC\24\347'\305y\253\261\230\365\"7|\177>"
) 500
(
#"\237'\223\360s\206\316\317r\342\361\341"
#"\375pz\323\246\357@\b!\273N\223X\\\327&\346lw\323OB\246\16="
#"\251\23'%J}Nj(N\313\262\204\252\302Z\233\314\37=<<\254\r\240"
#"\2656[\240\5\270\274\327\260\315\224\367"
#"\236\262\305\24!\204\34\323\324M\345\360"
#"\360\260~\270o\n\341w\211\224\21\262\253P\244\356\0a{*\340\330\210yA"
#"\3326\eI\374\273\210\234\350$\20\256"
#";\364\240.\26\213\254\367\224\20B\366"
#"\235\266&\376M\215\376s\357\261}\37"
#"\331\27\30\356\337\21\302\206\377\251\2371"
#"\361\23~\3523\251\246\374\3763\a\a\a\234=\212\20B:\220\263\3039/i"
#"\230\367\237r0\320\233J\366\5\212\324\35\"73US\361SH*\237)\356"
#" \0\234\254\336\247\321$\204\220\223\244"
#":\256\204\366\322G\253\332lh*\17"
#"\225\220}\200\341\376\211\23\32\257\242("
#"\32\237\330\303\237\361\323{S\370(\\\257\317_\rI\25\\1\34E\b\331w"
#"\342P}n\226\250\234\210\315yR\t\331\27(R'Nh\314R9\250\361\223"
#"|J\300\306\36\330x\375eY\2p\5R\207\207\207\255-\256\350Y%\204\220"
#"cb\373\233j\320\237\263\241\276\350\225"
#"\342\224\354#\24\251;@\252_i\\\365\237\23\215\a\a\au\341S\256'\337"
#"b\261\250C\374EQ\324\353\3572\6B\b!'C\366\252\212\303\303C,\26"
#"\213\306\334T\3777\333K\221}\2049"
#"\251\23\245\213\2672.\246\212{\2336"
#"\211H\377\271\371|\276R\275\337\324?"
#"5\227\343\272\353\320s<\34]\212Q\b\31\3M\366\261\251i?\317e\262\317"
#"\320\223:\1rax\3773\27\nJ\205\376\303\367R\371R\341:C/k\370"
#"\271\246\36\252\373F\234?F\372\245\351\332 \204\20"
#"2m\2506&@*_4\225\277\224\n\301\3X"
) 500
(
#"i%\225\312\31\215\223\364\347\363yvz\323p\333$]4F\b!\247\245\255"
#"\220\225\220}\202\341\376\t\220\252\b\365"
#"\2022\16\351\247>\27\367<\235\315fX.\227\311\20\223\27\247MsA7\265"
#"\266\332g\330\317pX\270\277\311\324\t"
#"#c<\227\t\241'u\22\204\342\260"
#"\311\v\352\227\211\337\363\370\367\254\265u"
#"\1T\270l(Ps\236W\n\323\223\204\3735\374\2337\231~\341\203\23\2312"
#"]{\246\22\262OP\244N\210\\/\275\3342)\302\233\270\257\330o\v\357\257"
#"\323Su\37\211\37\24\270\217\206\201\36~2E\16\17\17\353\31\374(P\tY"
#"\205\341\376\211\221\23Bma\371\324\317"
#"\243\243\243\372g\274\236\24\361T}4"
#"\250\253\204\373\204\373\245\177X\300F\246"
#"\210\267\301|\270\"\344$\242\2742&"
#"K\223\327\250\213\200\364\357\317\347\363\225"
#"\365\345\362[\2151\331\231S\366\231p"
#"\277\205\373\210l\237\246\363\220^U2"
#"\5\276\362\225\257@UW\352\6\b!\16\212\324\ts\226\233\360YsM)\0"
#"N\342\323'H\177p\237\223)\223\263"
#"\277t\2\20\342`N\352\204h\22\205\353\b\306\330#z\226u\21B\b9="
#"\341\4+\36\nTB\34\24\251\23\"7\273\216\177\257I\\zCh\214AY"
#"\226F\374\331\237\0\0 \0IDAT+\237\357:\205j\274MB\b!\355"
#"\344&\235`\347\24B\232\241H\235\30"
#"\271\206\375\376\367\234\2413\306\234\350\227"
#"\32~\276-\237\222\6\224\20BNGl\233\275-\366\2603\5!i(R'"
#"Fh\310RyK9/h*\304\37N\247\32{T\233\246Peq\20!\204"
#"\254G\333\254\177\251I[\b\331w(R'\310\272}KE\244\16\361\307\215\372"
#"\343\211\2\302\327\343\246\364L\346'\204\220\323\23v"
#"\2I\275\327\3647!\373\bE\352\304\361\263G\345"
) 500
(
#"\204j\374\204\336\326\256'\26\252\3612q\230\212\20BH;q\213\277\234X%"
#"\204\34C\221\272\3XkW\n\237<)/kS5\177\234\300\37\213Tc\f"
#"{\371\21B\310\232\204\17\367\251I?"
#"\232\272\255\20\262\317P\244\216\5\5\252"
#"\31\340\335\23\366\312\2336\370i\253\337"
#"\312\3723\252\n\265\n1R/#R\324\353\251\r \0\221\262\336\16l~\216"
#"\371\224Pe\316\24!\204\254G*\212"
#"\225\v\355\323\1@\310*\24\251\3\243\376\177R\tQ5\20\5D\375\233\3565"
#"\v\5\254\1\324\0352\201@\305-'\20h%Z\1\3#\347\240\345\217Q\302"
#"BP=\271\3\20,\241\325L\270\n\0035'\363Q\375\337\341\3178G5\347"
#"i%\204\220}\245)\3174e_\t!\355P\244\16\214\300\302V\336MQ@"
#"\305\2F\261\254\364\237\205B\0050\20"
#"\250\261\200T^T\230zy\25@\244\300RK\210\24(m\tH\201BM-"
#"\202C\201*XB`!8\16?5\245\6\264\245\1\20B\310>\22\267\225j"
#"J\247\242\375$d}(R\aFa`\264p\36R\1\304\32\2240\230\301\t"
#"R\3qb\24\267\375\a\334\362\250\304iu\b\25\300\177&\5TK\24\205\300"
#"Jy\354\235\25\213\0223\347UU\v`\6X\201F\207?\169\305\342\264("
#"\212m\356\nB\b\231\24\271\a\370\270\357);\243\20r:fC\17\20081"
#"\n\30(,\304\0\6\306\205\366\5UH_\19\347\26\27\v\205q\342\264\362"
#"\244\212\2b\316AK'JK\2530R\tYU\2705\6\237\3\0\243\200Z"
#"@\322\3023e|\331p\232\20BN\222*2\215\275\254\204\220\365\241H\35\30"
#"/6\5\0\304\347\233V\377\23\353\3367\nQ\227\203\352\323\2"
#"\334\373\200\250\201\24\2\353\r\242\226\208\217*\0240r\3541"
) 500
(
#"U-\241Uv*T r\334\270?\356\235\32\347P\205\313\370*\177B\b!"
#"'mhn2\24B\310zP\244\16\214z\17\247\0b\0250U\221\223X8"
#"\357\252\27\262\n\210\270\327\274x\5 "
#"\205@my\274B\357A\205\201\210\255\304\253u\5Y\306\245\16\0pES6"
#"\237?\25\222\naQ\250\22B\210#l'\25\333\305\\\367\24\nWB\332a"
#"N\352\300\210\276\203\347\35770\"\220"
#"\302\3754R\300H\1\221\a\360\374M"
#"'2\325\334\302\363\367\n\376\301\325\233"
#"\201@5\320Zh\336\304\325K\2462"
#"\226\5\214\21\210\234\203H\1\221\2\217"
#"\275\n\250UX\275\215R\25\313\322B\255\326^RU\355$:C\241J#K"
#"\b!\353\317\312G\333IH7(R\207\246\262U\367?s\303\tEU\250\226"
#"\260Vq\343Y\213\313w>\201W\253\266Tj\\]\276\3025\324\267\245\255\372"
#"\240\272\220~\241\212\373\256\336ra\375"
#"\322\255G\265D\251K\274\360 \352e"
#"\235?\326\326\333\256\207\322\321pz1"
#"\e6\366\317\345\251\2165\177\265\313\270"
#"\372\30\373X\367\17!\373B\\}\337\265\261~\256\373\t!dsP\244\16\216"
#"\201\212\2424\366\270/*\\\301\324\371"
#"'\377\a|J_\3007^\325\252\365\224BL\tSU\361\273\264T\v';"
#"\227(\r\334z`\252\2+\227N`\264\250\376V\b\\\241\224h\367C\237k"
#"\253\342\213\3RS\250z\342\327\2070"
#"\344\241\207\270\251\r\314\20\255br\333"
#"\330\245\276\212c\236Mg\214c\"\375"
#"\221\212\f\345\32\353\247\362L\331\a\225"
#"\220\355B\221:0\252\267a\340D\243"
#"\242tM\373\253&\374\220\2\5\0\205"
#"\317\3\5\376\335\225\273\352\20\277\23\241\246j\344/\230)`J\tW\356"
#"R\3\252\356\1\342z\\\1\t/j\23MBj\235\252\377!\272\3\204"
) 500
(
#"b\32@'A=t\a\2038dX\24\305\250\205^\e~\237\17\275_St"
#"}\270\"\273\311:\251K\241 -\212\";\245)\317\35B6\aE\352\300\270"
#"9\235Q7\3447\245\0j\240Z\342\225'\36\306\v\362i|\360!\267\334\323"
#"\257\31\334\373\2337\253*\177\3\300V\225\376\316;Z\32\340x\nUT\205V"
#"\266r\320.]\313*\225\272\301\177W\271\320$,B\341\331\324Gu\250\\\326"
#"\3246\273\210\345!n4\251\233\234\237"
#"\363;\327\273v\n\204\335!\2460\3761\212i\262=\232\242*)\302\242Q\366"
#"A%d\273P\244\16\214\252\300\30\2037\257\\t\305N\347\4b\n\23433"
#"<\362\302\247\360-\373\177\342\203j!"
#"\346\"\236\271\317b9S\27\342\327\322\205\354\5.\214/\6Z\2o>}\247"
#"\23\273R\324EX\367?\373\16Tg\256\203\200\270\344\0\355,Q\333\5\2337"
#"\320^L\31s\362\264\32\322\200\347n"
#"Bq/\303\370\375\276I\315\347\235\v"
#"#N\351\206\230**\31\213\20\214\307"
#"\340\317\2111\214\215\364O\23374\327\335dJ\327#!S\202\"u`\304M"
#"\214\212\373?{\v\326*\254U\250\336\306\322*\324~\31\17\253@\212sP{"
#"\23\252\200)]s~HQ\205\356\227"
#"\256\207*\24\"\300\275\317\334\204\332\22"
#"?V\v\265%Jk\361\372\345\367F\222\264\352\2\240\335ZHu\271a{\201"
#"\32\367T\35C(\254I\210zA\35/\323\3678S\333O\345\300M]<\245"
#"r\377\206$\334\247\376A\313\377Nv\237\246\353>~(\fs\360\313\262\234D"
#"T\200\220\251C\221:4bPX\1d\tX\255RE\275\207\324\241\266\204\352"
#"\322\205\357MeD\365\266{\337\26\256\247je(\v(J\1"
#"f*\325z\\i\225\221%`\313\272\230\312*\352\311\3Z\207\30"
) 500
(
#"M\357\27\376\214\227\t\205\2521f\255"
#"\234\325m\321$8\332\n\277\372 \16"
#"\25\246\366\325\330<\220\247a\254\241\321"
#"8_v\252\373\227\254O[\276\275_\306\267\350\v#F]\2120\t!g\203"
#"\"up\226\260\246\n\300\eY\311\25\25\365\5N\26\"\347P\250\242\260@\t"
#"\v\3509(\304Mo\n\343\302\375(`\305\242\250\n\243\254\224n\312T\b\240"
#"3\250)\\G\00050\262^#\376\266\312WOh\334\343\360\377X=\17c"
#"\22\321]\3061&\201\267\16\261\20\34"
#"\313\367H\215kl\347(\331\16\271\316"
#"%\251b?\37\342\357\22\t\30\313\271"
#"M\310\324\241H\35\30\205\v!\331*\360\257R\351\322\332\323i\1kPb\t"
#"+\2568\252\200\201\32\vSu<u3J\tDJ\0\263Z\344\32\24n\352"
#"T\340\370g\365\373\246\17}\256=K"
#"\252hf\35\3~\332\36\206\353\22\206"
#"\3767\265\276.\257\205\354\2038J\25"
#"\260\205\177\267\321\245\203\304\272\343\ts"
#"Pw\301cM\272\321\364\240\24\346&"
#"\373\a\3550\304O\310\324\210\355Y*"
#"\367~\2146\217\"u`\274\311\233\351_\203j\345i\254\336p\341|S\v\323"
#"\2\6\337\273|\21\"\202B\316U\205Q\202\237}\366\207U~\352\314\31U\30"
#"\224\311\255m\361{D^Rk\355\211\334T\357\205\210\r}\2568(\\o,"
#"\0366)\"\332\274{)a\34\no\237\326\340\307'\"\311\0265m\236\227\246"
#"\375\260\253\264\345\250\246\n\233B/\327"
#"\321\321\321\312\337\271\34\343\24\251\34\352"
#"\370}\262\273\344\216yQ\24+\271\311\252J\201J&O\312A\20\337w\306x"
#"\216\213\356\313\335p\254(P\212E\341=\2420.\344/\266\26\233E\35\377G"
#"\275\214E\351<\245\250^SSya-`}\356"
#"j\265\276\236\tEd\352B\0\322\236\252uB\300"
) 500
(
#"\333\f\27\307-fba\34\v!\377\336\301\301\1\16\17\17O|w`uv"
#"\256x\374\271\"\251}\242\351\241#\347mUU,\26\v\\\273vm\345\265\320"
#"#\236{\0i\23\250\251\317\220i\22?,\347\216i|\16z;\20\333\200\266"
#"\365\02026R\347\360i\226\31\2z"
#"R\a\247\204\201Y\255\276\257\4\252\352"
#"\261@\325\340\234Q\255B\371\250\32\363"
#"W\357\273\314V\0035\276\27j\277\207"
#"7\0252\365\257\247<\255\261W\265\351"
#"\342\211\331\344E\24\257\277,\313\225J^\277=\357e\211\303$M\205Nq\21"
#"Y\374~\323g\367\201PD\246Z\202\205E+MB><\367\374\262qna"
#"\270\316T\25\377>\37\207]%\365p\22\276\347_Ky\224boj\b\317\r"
#"2\5\272\2461\245\"Zc\361_R\244\16N\1EY\345\241\232\252\365\276\251"
#"C\376\356\337\22\342gMU?\203\24\240\326T9\255U\357S\325\252P\n\20"
#"\253A\22j\277\264\25#\0'=Y]\304\302\266.\232\370\206#\"\265P\365"
#"\177{\1\25\366F\f\307\333\345)5"
#"\26\253)Q6\26\303\320\27\341\376\262"
#"\326\326\17\1\261pH\35\243\324\337)"
#"\361\232\362Z\347\304\n\331-\232<\364"
#"a\367\221\270\347i\312\6\205\257\357\333"
#"uJ\246I\352\336\331\226\33246{H\221:0V\\\330^+\217\250\361."
#"\323Jp:\214\323\246\212\252\0\312\2Z\2\306\272\31N\305yNE\264jE"
#"e\1\243\275\346\2456\t\265\\\3105|=\347\365j\272\2706q\243\310\335t"
#"\342\20\177J\234\306\343\212Egj|"
#"\336\313\0277\3\37\233a\30\nk\355"
#"\231\32\352\267\235{\251\343\223\332\347\24"
#"!\273C\352\201&|H\16\227i\22\265\361r\204L\205\266\363\3323"
#"\266P?@\221:8F}\330\276\352\215Z\235\37\"\2722}\251 "
) 500
(
#"\f\371\e\0\5\4\6b\334t\247\242\300\22\2T\202U\21\344\262\366@\223'"
#"\261)\27\323\277\346\177\346<\256\271mnr\374!a\3709%\232R\36\320."
#"9k\241@\rs[\307f\30\206\"N\263\0\322\373:EJ\330\372\363'>"
#"\226\376\275\334z\272\32u2\35R\3424\244i\6\272\24<?\310\24X\307\1"
#"2\266P?@\221:<U1T\30\256\267\n\270\336\247~!\343\32\375{G"
#")\0+\316c\252\230U\342\326bV"
#"\305\367\305\177\246g\272z:\233\362\304"
#"\374\373\261g5\227B\260\2111\347r"
#"^\303\374\331\\Ni\356\357\24\261\a"
#"\265\213X\332'\302<\300\324\303L\374"
#"z.$\eS\24\5\312\322\305\25\312\262DQ\24\365{\261'\275K\352\6\231"
#"\16\261\riz\340\315EKR\321\26\236\37d\n4\235\247\213\305\2\213\305\""
#"\371\336\230\36\322)RG\301\f@u"
#"3\366\205\371\236\252 \n\306\375\342\317"
#"7\337#U\352\305L\275|\375\372\3006\264I\\\246rQ\375{\251\345R="
#"L7\21\376\317\211\236Thx\235\v7e\30R\351\0M\241\346}\271\tv"
#"}\230\1V\367I\227\343\357\305G\234\373\272/\373v\f\234%\357z\335k:"
#"\274vBa\232\213\202t\271\256S\17K<\177\310\24h:OU\25\207\207\207"
#"888\300\301\301A\375\372:SC\237\345\332\356\312l\343k$$ \27\376"
#"\17o\36a\243\354\256\205-\353x\276"
#"ry\262\271\355\345\326\221\312%\355\262"
#"\255\360;\267-\267\217\236\274\224\267<"
#"\336\17]\214_J\320\246\274\255\251\277"
#"\343\364\222};\6\333$w\\\374\353"
#"a\36r\312k\336\365\372\f\v\241\332"
#"\36|\302\207\337\334\2034\217=\331\a|\333D/T\257]\273\326\371"
#"\374\217\257\317m\\3\24\251d\253\264\2116\21\251C\260\271'\270\360"
) 500
(
#"\306\22{`\273x\35S7\272T\356h*\0176\336\236\27\323m7\266x\275"
#"9\201\232\372nm\337gWi\v\361\267\t\325p\271P|\344\366w[\252\307"
#">\36\203>\210\217GJ\240\2\335\212"
#"\224bq\332F\270\316\246\317\360\330\223"
#"}\301_\a\276\337t(Vc\232\256\323m=\334S\244\222\255\222\23\234\341{"
#"aH6'\32\342\337\343>\253~\35M\2428\36CNT\206\177\247.H\357"
#"\371\211g\241I\375\336\346\315\213S\f"
#"\366\23161\222\332\227)!\352\333X"
#"\245\326\233\363\324\347\f/9\e\251k"
#",w\235\304\313w]O\334%\243\313\261k+\222\342C\n\331'\302s='"
#"V\273\334/\303um\352\32\242H%"
#"\275\322t\2227\205\323\233<\241\341\373"
#"m\341>\377\331\334\372r\177\307\333\310"
#"\211\352&\17j\356{\244\326\265/7"
#"\311\330\353\31\277\327\346Q\355\342\5\217"
#"?\337\346\t \233\243\355\1\241i\371"
#"\370\365\320\343\232\273\306\273\34?\177\315"
#"u\0357!\373\204\277\306B\261\252\252"
#"8::\252\227\211\257\345.v\366\264P\244\222\255\323\305S\25{H\333r\t"
#"c\232\304K\352\206\226\273a\206\3137"
#"y\333\302e\342\355\246\204W\323\205\333"
#"$\234v\235\334\367l\363\250\245\304\277"
#"\367\240\246\2721\370m\245\36\"R\206"
#"\266i\fd=\232\366y\23\271k\270"
#"\351\363M\357\305\17\266]\307L\310\256\322vonJ\3h\213xl\n\212T"
#"\262U\326\315S\211\5b\227\eSn\35\341\347\232nj!9\301\322\346}\v"
#"\267\27\207\233\273\214=%\214\367\215&"
#"\301\230Z.\334\307\341CA\256\377l\223g6\367\360@\316Fj\0377\205\377"
#"\343\317\206\313yN+Ps\327d<\306}\277\16\311\376\320\305\316\372\337"
#"\273\344\254n#*\305\26Td\253\304"
#"\306\37\300\211\237\251\345\303\360\277\177}"
) 500
(
#"\335m\206\237\v\327\31\257\337\337(\303"
#"\261\256#l\303\v2\225\256\260\256@"
#"\336G\3265jmi\25\376\365\370\357"
#"\360\334\213SDR\333 g\303\357\337"
#"\242(V\256\253\3605\237K\356\377\371\277\303ux\232\216IS\224\"\2669)"
#"\321\333\345\1\211\220}!\367`xx"
#"x\210k\327\256\341\340\340\240\227>\253"
#"\242\264\304d\344\344\302\273\233\276\231\244"
#"\274-\271\312\341M^\204]\306B\34M\202t\235c\224K\323 \233g>\237"
#"'\37\b\326\335\347\361\203I\330\357\326"
#"_\253\341kGGG\230\317\347\e\3766\204L\207\246k\3544\367\320\\D\""
#"\345U\335\24\f\367\223\321\23\336\340\302"
#"\n\376m\205\345\332<l\3412\361\262"
#"\241'8\227\343\230\313\3\332W\221t"
#"\332\357\356\317\207\260}YH\227c\320"
#"t\274\310f\310\355\333uSx\272\206"
#"\344\275`\335\327\353\211\220.\34\34\34"
#"\234\350\211\332d3\343\317\2\356Ap"
#"\333\327\31E*\231\4a\276a\252\237\352YEF(T\332.\272\330\243\23\207"
#"\23s\302'\16O\307\357\355\273Pj"
#"\373\376\341\276\rEH\334\2736\316u\314=\24ty\240 gc\223\2\25\310"
#"\207\344\3434\35\nTB\216is\220"
#"\204\313\304\204\327\323\243\217>\272\222\237"
#"\32~>\336\326\246\240H%\223\242K"
#"\365\377i\303\30m\304\342\307\177.\366"
#"\342u\21\2739\241\272\217t\311\5\f\367U\252\17j*\334\e\257?\267\215T"
#"\bz_\217\305\246i\2731\266\321t"
#"s\315y\305\303\367\b!\353\265\177\213\227SU,\26\v\210\b^|\361\305V"
#"Q\272\351\353\216\"\225\214\236\324E\23"
#"\206\377\233\226]\227\246\213\271-D\237"
#"\n\233\344\346\211O}\247M}\207\251\221+Zj\362B\247\310\315\6\326e"
#"\177\246\f\364\276\35\207m\261\355\3531"
#"\345=\345q#d\225.i2\261\23\246"
) 500
(
#"\251\222?\374\3146m%E*\31=\261h\360!Z\377^\30\262=\353\205R"
#"\226e2\237-\27\236O\215\323\23\316"
#"I\236\373N\361\272\372\270\350\307F\312"
#"\363\234zZ\367\36\324\266\260Tj]"
#"]\303\316\261g\216\234\215\334\371\274\316"
#"\371\335\264\234\277\276\30\336'\244\235&"
#"\e\270\2168\215\327\267M[I\221J&A\333\315\356,\236\310\266pE\233@"
#"\315\215-'\232\232\306\20{\f\367A"
#"(u\21\346\241\330o\333'\361>\217\327\237\312ql{\215\234\216.\17\6m"
#"t\311\225;\3536\b\331W\302\353d"
#"\261X\300Z{\246\202(\346\244\222\275"
#"\244\2537l\23\2\265\311C\32{n\303\367\333r\347R\241\377&\341\265/7"
#"\331\224\200\214\367o(8\303\317\371\327"
#"\342\a\227&A\3325<\274/\373\177\333\2345gm]\201z\232m\20\262\313"
#"\264\345\205\37\34\34@\3448\347\364\264"
#"\367\321m<\34\262O*\2314]D\346iHy\342\316\272\356\234\0n\na"
#"\357\23M\373'd\35\203\230\363zo\352<!\233\241K\256\34p\354Q\317\345"
#"z\23B\2721\237\317\1\343\256\241\243\27\257\1\2\0\26PS\375\16(\0\321"
#"\22\245\24(`Q\317\377\244\200\242\237{\26=\251d\322\344<h\336s\351_"
#"?\313\305$\"'f\222:\315:S\36\325>rz\246B\354\31=\253@\215"
#"\227\367\333\240@\35\37M\3072\345Q'\204\254Ol?\257U\342TUa\241"
#"00\20\261P5\20\361Z\325\tT\5 V\1#\260\2420\350\347\236EO"
#"*\231<\271\20{\256%QW\201\23^\314g\365\334\204\306\3017\237\337\304z"
#"w\215\323\344\361vy=<\27\270\317\247G\316#N\b\311\323\371a\36^\200"
#"VE\210\"\220\332\243Z\211V\0*\307\336T"
#"/X\267\rE*\331iB\357\234\377\271\216h"
) 500
(
#"=\253\367\3464E\37mc\332u\266"
#"\3451\213\275\341dx\332\316s\357\371"
#"\366\355\305\b!\233C\1H\20\342w"
#"\177\37\377\4\252h$\f\20\347\376\327"
#"\313l\27\323\3036\b\351\225\330\343\22"
#"\206\217\273\210VO[X\271\213\220\312"
#"\t\342T\261O\323\347\366\5\277o\214"
#"1\247\332\a\361\261\367?\275\a\325\30"
#"\232\2741\321T\24\347\363OC\201J\237\n!\233\304\tT\25\vh\351\4+"
#"\0Q\300'\0\324\236S\21\300\252\373\flO\301~zR\311\16\321\245\312\337"
#"\30s\302+\223\22\214EQ\2544\207"
#"\17\3731\236E@\306\336<\346\331\35"
#"\223+\234:\213'\315\213\235\262,\e"
#"\267C\206%\327\315\241\313\362\204\220<"
#"\251\373\333\312\265\243% \5J\0E"
#"\35\302\257\356Qj\234\313\324\0\252%"
#"D\n(\\\321\224\361ol\31\272\25"
#"\310\316\320\324\346\306\337\364\254\265(\212"
#"\242q\331P\240\372\367}\36cQ\24\247\36[*\334\354\5\360\276\23v9\b"
#"\361\225\334)\317jjY\277\256\260@j\271\\\256,C\2013\36r\307\254\355"
#"3<~\204t#\276VN\\;\342\356i\342J\371\235\a\365/\277\215_\235"
#"?\212\371\301\27\360\177\eu\241})"
#"\0\375O\370\326\257\314\361\350\342_\341"
#"\367\377\274\237\373\26\357\216d/\b/Lk\355J\n@\274\\\\X\23\206\350"
#"\275x\355z\223\fo\274\2417/\274"
#"\21\347f\271\332\27\342\352\373\324~\b"
#"\305\245\27\254\361\203\206\177\370\360\313\206"
#"\353\214\267E\2413\16bqz\232\24\32B\310)Q\0X\326>Q\225\322\375"
#"\3667>\204\317|\342\275\20y\35\337"
#"\374\306\377\353\4,,\376\374\333\317\341"
#"w\376T\360\223\37\373\f\376\341O\3643D\212T\262\267\244\362US\2055"
#"\376\246x\353\331\a`f\6R5\337\20\21\30\377Y#\20)j\1ed5"
) 500
(
#"\a\326\3109<\376j\225\231\16\v+\307!\2250_\262\253P\235\222\240M\345"
#"\211zVr\22\201*\364\344\363\236\374"
#"k\376s\26\326\272\177j\375q\363\302\264DY=|\270\36~yR)!9"
#"\257,\331\36\2418M]w<\6\204l\31\261P\314\352\374R\3019\367S\4"
#"\357\371\360g\360\361\277\255\370\301\357>"
#"\207\177\373\227\26\370\217\337\302\363_\177"
#"\a\366\275\3775\236\374\360{z\e\"E*\331y\232DR\374\332\311p\276\205"
#"\305\r\\\275dp\341k\37\303\315\245"
#"\302j\211RK\2247\237\301\275\0\360"
#"\370KP\253\260z\3\317\376\34\360\263\317\335@\251\n[\335|UKX\275\215"
#"\27\36BU\16i\\cd5+c\360\271\260]\230\2227)\345\311<\376\335"
#"y\227]\222\276\2( 0U5iUi*\200 *6\23@\3656J]"
#"B\255\363\3\324[\21\227\324\337E\344"
#"4y\324Iw\232\256\261\\\236q\350"
#"\361\316u\300 \204l\23\177\17\262\260"
#"\225s@\252\302(\340\335\370\360\345O"
#"\340o\333[\370\375\347\277\204\317\177\356"
#"\353\370\221=\217\217\177\346\243xO\217"
#"\227&E*\331y\332<g\341\r\323"
#"\207\336\303\e\344w\36\277\e\277,\317"
#"\340\346\353\227q\207\34{\351\314\35W"
#"\360\272\276\204\307^x\4O\274\f\bJ,Ea\324V\341\221\nk\2408\236"
#"X\300\242\n\251\310\311iQs\5B\251\n\350\251\262\222{\250\246neb\340"
#"\273G\333Z\234\302\2\202e-\356K"
#" \360\224\316\334g\252\277K\240\22\275"
#"\6j\1\221n\"\265\255\323\2i&"
#"\336\177q\312F\230\333\35\207\365\317\332"
#"=\203\20\262\1\254@*+\214\240\242"
#"\37\357\3760\236\374\304{a\177\370"
#"&\336\370Q\201\377\374\23\277\204\217\274\333\31\346\276\256N"
#"\212T\262\323\244\304\250\377=~\315\3370\313\262\f<l"
) 500
(
#"\5~\377\267,\376\311\257:\201*a\353\r\1\200\207\361/?\373\0^\370\365"
#"g\3606\n\24\2\300J\345\5\254B\230\3065@\266pM\222\215\26\325\5~"
#"\262\251|.\364\37\216w\352\254\354s"
#"\201\v\361\253\301\261\341s\277C\265\262P\306u>\21A\241\0d\t\250VU"
#"\246K\250qO\377\205\2\2\267o\305\370\365\264\217\5X\177&+rL\333\376"
#"JyNS\237e\e6B\372\306\302\302\272\346\375\260P\357\0\320\262NM\373"
#"\211\377\342>\374-\263\4\344o\342\357"
#"\377\314\273\1\0Z\331\353>\240H%;MJ\4\306E:)\341\nT^\266"
#"\227\237\300\227\324\340\267\36\226\312\311\347"
#"/\31/\244\200\363\37\374\207\370\331\357"
#"\275\215[(a-\0\243\265G\360xY\300\250T\25\224n\266\2162\272\374\302"
#"q\244zz\206bz\252^\246\223y"
#"\267\26@\1\255\274\313\265\260\267\2\324"
#"\307\256\232\242\317zQ;s\302\a\200"
#"`\6\361O\376\202j\241\362TO\371\276\363\3Y\217Tx\277\251 *\327\245"
#"\201\242\224\220\2761\325\314R.\375L"
#"\244\272kIe\211\365\377\303\267>\377"
#"u\374H\r\200\37\340\353\317\177\3\177"
#"!\200\210u\237\353e\204\204\354\1\361M2\345UM-_\32\v\301\247\360\222"
#".aD`\212J\310\332\252S\234\0j\4\205\376!n\334p7\347\357]\276"
#"\vR\b\304\234\203\221\2b\4\367>\367\216KR\27\347 \204Q\230\340I4"
#"\25r\316\365}\355\332\252gl\204\205"
#"i\365\276\17\212\320\\\330\2762IFj\217\265\302B,\234\270\207\5\304%L"
#"\0\313\225\207y\205\337O\205\363\n\254"
#"16\277\1779e\352\372\304\241~c\314J_aO\356|m\272\376\b!\333"
#"C\341\332\242j\355B\5\334c\272\201\1\360\27"
#"\337\276\212\257\275c\361\223\377\350\177\307o|\374\2"
) 500
(
#"\314\237~\r\317}\363/\252O\227\251"
#"Un\34\212T\262\363\304b\257\251\212>\26\207\2055\0\4\205\26\270]\25C"
#"\211)P\24\347PB!\nX\vXS@\244\0D\360s\317\274\5\265\n-"
#"\25\245\226\320R\361\275\247\336\213\272\270"
#"\247J\t\b\237Ds\205;\271\302\236\251\205\245S^kU\305\22\25614\324"
#"\300\276s\25\367\213\300\230\307\361*\202"
#"\24\f\0000\337\301\23F`.}\16\327+\3\252\370S<\373\300qw\205\231"
#"\30\30\363\256\272\323\302\247_m\37W\352Ae\335N\vd\265\17p\256\335Z"
#"\327\a\2530\365\202\20\262=\234\325\263"
#".\177\277\256\241r\202\325\376\247o\342"
#"\371\257\375\31\344\275\237\300\223\37y\17"
#"~\342\221\247\360\361\237,\360\243\337\371"
#"\34\276\371\347\26*\375D\235(R\311\316\23{z\302\eh\323\262\0`\37\372"
#"\b\36\227/\341\367\376\0\256\"\37\200\332\22K\3751\336%\6b\4?x\371"
#"w\361=\373\367p\327y\353\n\244Lu\361J\340)\255.\265:\337\307\370\""
#"\241\223\344\252\243s\371\265S \327\263"
#"t\246U\345\276X\30\24p\241\377?"
#"\301\365\233a\316\260\0007\376=\376D"
#"\\\37\277\31\0h\tQ\v\v\340\376\253oC\255biK\250\226P[\302\252"
#"\342\213\37h\177\322\317U\225s\256\370"
#"n\304m\244R\271\323\271\337\201\223\347"
#"6s\203\t\351\21\5\0\3\305\3548"
#"\362$\2\310\237\341\333W\277\206?\323"
#"\277\205\217=\365\b\336\r\0\346\257\343"
#"C\277\364q\374\244\376\0_\373\334K"
#"\370\313\236\356?\24\251d\357\350R\350"
#"\3411x\b\37~\fx\341\327\236\301\255\252\22]\365\6\236\2734\203>\3612"
#"T_\301\235\227\337\0\360y|@"
#"\f\304\26\225\207\264\352\201Z\375\357\270\17\35\234\307\265"
#"\"%4s\343\333\3116I>\217\324\315\273\207\2\212\307"
) 500
(
#"\37\273\a\277\375\362M\324\205T\"\270"
#"\365\362\357\341}\217?\346:%\370\2)\261.mUg\325\272\252v\0~\237"
#"\236\341I\177'\366mEJ\b\206?OC.\337\3644\353i\372I\b\331\36"
#".\307\37\220\252\320\327\331[\340/\276"
#"\365y\374\336\17\v\350\245\237\307G\376"
#"FQE\273\0\374\315G\360\321K\5"
#"\314\17\177\a\317\177\363/{\31\343\254"
#"\227\255\0202a\36\376\322;\370\354\245"
#";p\301|\37/\353\27\361\220\\\304"
#"\345\357\336\0\36\270\0001\6\6\217\343"
#"[\372\5\210\234\3\304\342\322\307o\273"
#"j\365\352>\233\313-\5\322\236\245}\272A\253* \246r:/]\376\351G"
#">\212\277\373k/\341\235\247\236\302\35"
#"\n@\256\343\333_/q\317\307\25\370C\270\375Zy\0\4\6%\\%\252\210"
#"u\36k\377\276\27\277{L\3123y\26!\230j\341F\b\231(Z\2Ru"
#"D\201\201\3426\4\5\336\363\241\377\31"
#"\377\327\207\3742\316\322*\24\242\6?"
#"\363\213\207x\361\323\200\342v/C\334o\vNH\27\364\247p\345u\205\276l"
#"\360\260q\205PR\334\211+o\272\212}\213/\343\203\362\4^\322\267p\365^"
#"\301\eO\337\rc\212:|\222\23\250'6\263\217\271x\"\20-\241\6P9"
#"\207%\0\340N\274O\276\217\267P\225"
#"\364\337\3746~W\347x\377\335\6\"\205K\327\257\32\366\2736URy\4\234"
#"\a{\245M\330\236\3235t\336v\316m\312sJ\b\31\17>\252\347sSM"
#"\325+\265\276wU\377S\205\313[\25\300\212B`a\364\\/c\244H%\244"
#"\1\r\313\307\37\374\242+\206*\325\345"
#">.-J]\302\252\342\355\253\337\3077_\271\210\313\257Y7#\225\3751L"
#"a\32\275\246+\333\331\327\\<U\270Y\246\226\20"
#"\253\316H\232\v\370\300\177\363G\370\306+p\315\376"
) 500
(
#"o^\207\376\343\aqWi\0-a\254\326\202\264\200\340\315\313\27QT\305S"
#"\205\231A\244\300\245\347n\366\326lz\354t\251\236oJ1\tsNS\237%"
#"\204L\24E5\333\37\340\344\240\313M"
#"\25\205\363\262z\244^\34F\331\314\237"
#"\220\321 8\16\333W\2159a\4\0\226\325/K\b,.>\365\32>\377P"
#"\351ZL\301\211S\275\35N\n\220oZ\16\354q\16\236HUL6sO\354"
#"\242\200\5.^\270\a\277\365\373/\1\2\274\374o\277\214{.\334\0011\316h"
#"\226Fk\317i\t\305\275\317\336\200\325"
#"\262\22RK\250*^\177\352B\325?"
#"\225\204\344\332\256\305y\252)\317)\363"
#"E\t\3311\\\353\24\367{\325\300\277"
#"\316\226\222\2\250\246H\25\377\276\377\214"
#"-\262\205\277\233\206V\234\220&4h"
#"\203\4[\205\243\1\365\305:\230\325\375RM\325\222J\241Und0)@\324"
#"\340\274^}B\34\354\23\nE\370\225E\201R\0y\360\347\361\251?\274\211["
#"\366\17\360\315/\377\2>\372\260\0\245@a0\2534~Y7R5\360\323\253"
#"b\245\301t?3\242\214\231&\217i\252\301\276\237\22\270)\254OO*!\273"
#"A5\267L5\365\264\27\236\266\272\217"
#"\271\234~\365\263%\342\34\374\0046\256\271j?c\244H%\244\1+\n\321J"
#"l\302`\26T\355\327\327h-b\r\254\350\361\314R\365\333\2533E\205B5"
#"\f\361\357\343\315\337\345@\271I\16 "
#"%J\251\2529\345\375\370\350\337\373\32"
#"^y\376\367\360\345\307>\212\aQU\242\312\322y\252aQX\5\240U\203\177"
#"'p5\364z\323\274e\37zR\5|]sN\367\355A\212\220]Ej\267"
#"\313\f\341\264\324\256\356\327\300E\n}\210\277\272\357y!\333\323\30"
#"i\305\ti\300\250\300\32uU\347\376E?\265\251\2\252e 0M"
) 500
(
#"\225r^B\305\326\341\220Th5\24\253~\372\323\375\254\234vO\353.\aJ"
#"kq\257\0\316\337c\360\344\323/\340"
#"\336\237\276\273\232q\252\22\243\2X5"
#"\200Q\370\307\203\360\251^\351A\255I\235K\261W\237\5Q\204\354+\263c{"
#"\251\356\341\337\242<v\262\350\314\331\206"
#"\372\26f*\a\315\361\375m\333P\244"
#"\22\322\204\270\313\3628\277q5G\265"
#"\256\216\254\205\250\1\244\350\224\17\351\205"
#"\201o\202\236J\a\360\313\265\255\347\264"
#"\257\r\215\e\221\255\333E\271\347y\367"
#"\373\305\207?\216\373\360s\370\304#w"
#"@\215u\341(k\252g\204\22\300\254"
#"\312\360\267U>+ \272<\336\367\343\373\272[\243i\312\3218\254\37O[:"
#"\306\363\202\20\322\17\265\275\254\242O\6"
#"Et\217\223\343\231\22\353\227\373\353^*J\vE\310\250HyTsU\377\251"
#"\327\273v\n\30C'\1\237\23\5TmN\340^p\236ks,4\305\5\243"
#"|\330)\335\v\325\3263{\355S@"
#"\272\313\361^\347\234\"\204\220\261@\221"
#"J\310\310\350\332\21 \365\231\334\337\243"
#"\245\22\232\252\2\21E\t\240\250\304\251"
#"\2\260\2\30-\235\307\332\2\326TB"
#"Ul\335\200\332\213S\205\302X\270|"
#"\200*oj\252\301\242\246\343\331\364`\22\376\36.\23NYJ\b!S\201\""
#"\225\220\21\320\346\r\313\315\221\236[O"
#"\333v\306\203\27\222\26PS\377U\351"
#"\320*\214o!\326\365\376\362\236W\vE\25\204rN\325\360{Y\205\32q\5"
#"U\23\23\251g=>\2418-\313\262\363D\22\204\0202F(R\t\31!M"
#"\3362\237O\30\276>=q\352(aQx\1\32\206\373\325M(-j\2526"
#"U^\240.\241Z@\244tI\375\250;}U\337\321\25\260\205i\4S"
#"\243)\265\3X\3153\365Ew\3412\223\365\252\23BH\4E*!\23'"
) 500
(
#"\364\262\212H=3\320$\250\252\372\325H]\341\17S\315(U\351*\227\2P"
#"\375\264z\334\243Ol\325\27\265\254\225"
#"\252\205T\377\271\277\246\340I]GT\356\311\203\307\0\0\2ZIDAT\246"
#"\36P\272\254\203B\225\0202E(R"
#"\t\31\230\266\34\303\334\362q\177\325\334"
#"\214@\241wmtbEK\250\24\20\330\252X\312U\215\206^\321\332-Z\375"
#"t\31\250Uu\177\215\255\373\247\272\222"
#"\253\352\263\23\303Z{\302;\32\36\327\360\1\244\353y3\272cN\b!\35\241"
#"H%dBt\21\2571\343\367\264V\0023\210\321\327\363G\373\2(5Pq"
#"\231\250\246\222\264\256\200juM\316\301"
#"j\241\342\32\252NQ\232\255\333\202,"
#"\305i\316\23B\b\31\e\24\251\204\354\31\247\21A\353\b\233]\23A]+\353"
#"O\373\275\307\377\20A\b!\303@\221"
#"J\310\36\221\v'7\211\244\261\213\316\276B\334mb5\267\355\360\357x:\\"
#"\377\376h\3231\b!d@(R\t\331q\326-\252\211ER\334\372j\250\274"
#"\307\256\333\30B\350\265\355\303p9B\b!\335\350on+B\310 \264\t\266"
#"X\260\346\204T\\Y\36~f(\357_\312\3\271\255\261\244\276\347\246\304(="
#"\250\204\20r\22zR\t\331#\272\346T\256#\232\302t\201x\275\233b\350B"
#"\240\256b\264\251\307\351X\275\300\204\20"
#"2V(R\t\331C\272\210\251\323\346]z\266\221\23\332u\2149\341|\326m"
#"7m\223\20B\310f\241H%\204\234`\35\257j_E?\251\242\243\2461m"
#"r<]\5{_\333$\204\220}\200\"\225\20RsZa\224\232``\233\2"
#"k(\1\327\364\375\316*V)J\t!d\25\212TB\b!\204\0202:\246"
#"7o !\204\20B\b\331y(R\t!\204\20B\310\350\240H%\204\20B\b!\243\203"
) 179
(
#"\"\225\20B\b!\204\214\16\212TB\b!\204\0202:(R\t!\204\20B"
#"\310\350\240H%\204\20B\b!\243\203\"\225\20B\b!\204\214\16\212TB\b"
#"!\204\0202:(R\t!\204\20B\310\350\240H%\204\20B\b!\243\203\""
#"\225\20B\b!\204\214\16\212TB\b!\204\0202:(R\t!\204\20B\310"
#"\350\240H%\204\20B\b!\243\203\"\225\20B\b!\204\214\16\212TB\b!"
#"\204\0202:(R\t!\204\20B\310\350\240H%\204\20B\b!\243\203\"\225"
#"\20B\b!\204\214\216\377\37\23\213{\266m\306lc\0\0\0\0IEND\256B`\202"
) 0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 18 #";general-functions"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 15 #";area-dependent"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 14 #"area-dependent"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 2 #"rf"
0 0 24 3 1 #" "
0 0 14 3 2 #"rr"
0 0 24 3 1 #" "
0 0 17 3 22 #";front and rear radius"
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #") "
0 0 17 3 31 #"; front and rear points in legs"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 39 #";CONVERSIONS (PERCENTAGE > MILLIMETERS)"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 53 #";radius-front (max = 100% = distance to circumcenter)"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 29 1 #"\n"
0 0 24 3 11 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"rf"
0 0 24 3 2 #" ("
0 0 14 3 8 #"distance"
0 0 24 3 2 #" ("
0 0 14 3 12 #"circumcenter"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #") "
0 0 14 3 3 #"PLF"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 52 #";radius-rear (max = 100% = distance to circumcenter)"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 29 1 #"\n"
0 0 24 3 11 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"rr"
0 0 24 3 2 #" ("
0 0 14 3 8 #"distance"
0 0 24 3 2 #" ("
0 0 14 3 12 #"circumcenter"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #") "
0 0 14 3 3 #"PLB"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 7 #";POINTS"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 8 #";new ucs"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 17 3 2 #";("
0 0 17 3 6 #"define"
0 0 17 3 1 #" "
0 0 17 3 4 #"PLFn"
0 0 17 3 2 #" ("
0 0 17 3 9 #"loc-in-cs"
0 0 17 3 1 #" "
0 0 17 3 48 #"PLF (cs-from-o-vx-vy PLF (vx 1) (p-p PLB PLF))))"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 17 3 1 #";"
0 0 17 3 1 #"("
0 0 17 3 6 #"define"
0 0 17 3 1 #" "
0 0 17 3 4 #"PLBn"
0 0 17 3 2 #" ("
0 0 17 3 9 #"loc-in-cs"
0 0 17 3 1 #" "
0 0 17 3 3 #"PLB"
0 0 17 3 45 #" (cs-from-o-vx-vy PLF (vx 1) (p-p PLB PLF))))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 14 #";center-points"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 3 #" (("
0 0 14 3 1 #"="
0 0 24 3 1 #" "
0 0 14 3 2 #"rf"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 3 #") ("
0 0 14 3 12 #"circumcenter"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" (("
0 0 14 3 3 #"not"
0 0 24 3 2 #" ("
0 0 14 3 1 #"="
0 0 24 3 1 #" "
0 0 14 3 2 #"rf"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 4 #")) ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 2 #" ("
0 0 14 3 12 #"circumcenter"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #") "
0 0 14 3 3 #"PLF"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 3 #" (("
0 0 14 3 1 #"="
0 0 24 3 1 #" "
0 0 14 3 2 #"rr"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 3 #") ("
0 0 14 3 12 #"circumcenter"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" (("
0 0 14 3 3 #"not"
0 0 24 3 2 #" ("
0 0 14 3 1 #"="
0 0 24 3 1 #" "
0 0 14 3 2 #"rr"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 4 #")) ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 2 #" ("
0 0 14 3 12 #"circumcenter"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #") "
0 0 14 3 3 #"PLB"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 16 #";quadrant-points"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"QF"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"3pi"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"QB"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 1 #" "
0 0 14 3 4 #"pi/2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 11 #";mid-points"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"MF"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cy"
0 0 24 3 1 #" "
0 0 14 3 2 #"QF"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 2 #"QF"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"MB"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cy"
0 0 24 3 1 #" "
0 0 14 3 2 #"QB"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 2 #"QB"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 15 #";tangent-points"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"TF"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 3 #") ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"TB"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 3 #") ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 28 #";reference-angles (half arc)"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"\316\262f"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"3pi"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 2 #")("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 4 #"))) "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 3 #"\316\262r"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 2 #") "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 17 3 6 #";tests"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 10 #"let-values"
0 0 24 3 4 #" ([("
0 0 14 3 1 #"c"
0 0 24 3 1 #" "
0 0 14 3 1 #"r"
0 0 24 3 3 #") ("
0 0 14 3 24 #"circle-from-three-points"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cx"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 4 #")) ("
0 0 14 3 2 #"cy"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 7 #")))]) ("
0 0 14 3 6 #"circle"
0 0 24 3 1 #" "
0 0 14 3 1 #"c"
0 0 24 3 1 #" "
0 0 14 3 1 #"r"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"not"
0 0 24 3 2 #" ("
0 0 14 3 1 #"="
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 4 #")) ("
0 0 14 3 6 #"circle"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"not"
0 0 24 3 2 #" ("
0 0 14 3 1 #"="
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 4 #")) ("
0 0 14 3 6 #"circle"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 8 #";GEOMERY"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 15 #"join-curves-new"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 6 #"append"
0 0 24 3 2 #" ("
0 0 14 3 4 #"list"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"MF"
0 0 24 3 1 #" "
0 0 14 3 2 #"QF"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 7 #"arc-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 1 #" "
0 0 14 3 5 #"rf-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 21 3 1 #"3"
0 0 24 3 1 #" "
0 0 14 3 2 #"pi"
0 0 24 3 2 #") "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 3 #"\316\262f"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"TF"
0 0 24 3 1 #" "
0 0 14 3 2 #"TB"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 7 #"arc-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 1 #" "
0 0 14 3 5 #"rr-mm"
0 0 24 3 1 #" "
0 0 14 3 4 #"pi/2"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 2 #"CB"
0 0 24 3 1 #" "
0 0 14 3 2 #"CF"
0 0 24 3 2 #") "
0 0 14 3 4 #"pi/2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 3 #"\316\262r"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"QB"
0 0 24 3 1 #" "
0 0 14 3 2 #"MB"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 17 #";area-independent"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 16 #"area-independent"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 2 #"rf"
0 0 24 3 1 #" "
0 0 14 3 2 #"rr"
0 0 24 3 1 #" "
0 0 17 3 22 #";front and rear radius"
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 3 #"a-w"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-d"
0 0 24 3 2 #") "
0 0 17 3 16 #";width and depth"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 39 #";CONVERSIONS (PERCENTAGE > MILLIMETERS)"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 43 #";radius-front (max = 100% = a-w/2 or a-d/2)"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rf-mm"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 3 #" (("
0 0 14 3 2 #"<="
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"rf"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" (("
0 0 14 3 1 #"<"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"rf"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 40 #";radius-rear (max = 100% = a-w/2 or a-d)"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rr-mm"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 3 #" (("
0 0 14 3 2 #"<="
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"rr"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" (("
0 0 14 3 1 #"<"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 2 #"rr"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 3 #"100"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 7 #";POINTS"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 7 #";origin"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 6 #"origin"
0 0 24 3 1 #" "
0 0 14 3 2 #"PO"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 11 #";mid-points"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"FM"
0 0 24 3 1 #" "
0 0 14 3 6 #"origin"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"RM"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+y"
0 0 24 3 1 #" "
0 0 14 3 6 #"origin"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-d"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 16 #";quadrant-points"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"FF"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"FM"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 14 3 7 #"a-rf-mm"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"RR"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+x"
0 0 24 3 1 #" "
0 0 14 3 2 #"RM"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"a-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 14 3 7 #"a-rr-mm"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 14 #";center-points"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+y"
0 0 24 3 1 #" "
0 0 14 3 2 #"FF"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rf-mm"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 2 #" ("
0 0 14 3 2 #"+y"
0 0 24 3 1 #" "
0 0 14 3 2 #"RR"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rr-mm"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 15 #";tangent-points"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"FR"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rf-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 3 #") ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rf-mm"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 2 #"RF"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rr-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 3 #") ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rf-mm"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 28 #";reference-angles (half arc)"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 5 #"a-\316\262f"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"3pi"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 2 #")("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rf-mm"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 4 #"))) "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 5 #"a-\316\262r"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 15 #"\316\264-tan-2circles"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rf-mm"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 2 #") "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" "
0 0 17 3 9 #";GEOMETRY"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 15 #"join-curves-new"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 6 #"append"
0 0 24 3 1 #" "
0 0 17 3 12 #";joins lists"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 4 #"list"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"FM"
0 0 24 3 1 #" "
0 0 14 3 2 #"FF"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 7 #"arc-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rf-mm"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 21 3 1 #"3"
0 0 24 3 1 #" "
0 0 14 3 2 #"pi"
0 0 24 3 2 #") "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 5 #"a-\316\262f"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"FR"
0 0 24 3 1 #" "
0 0 14 3 2 #"RF"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 7 #"arc-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 1 #" "
0 0 14 3 7 #"a-rr-mm"
0 0 24 3 1 #" "
0 0 14 3 4 #"pi/2"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 2 #" ("
0 0 14 3 8 #"\316\270-slope"
0 0 24 3 1 #" "
0 0 14 3 2 #"RC"
0 0 24 3 1 #" "
0 0 14 3 2 #"FC"
0 0 24 3 2 #") "
0 0 14 3 4 #"pi/2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 5 #"a-\316\262r"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"RR"
0 0 24 3 1 #" "
0 0 14 3 2 #"RM"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 2 #"if"
0 0 24 3 1 #" "
0 0 14 3 3 #"lbp"
0 0 24 3 2 #" ("
0 0 14 3 4 #"list"
0 0 24 3 2 #" ("
0 0 14 3 8 #"line-new"
0 0 24 3 1 #" "
0 0 14 3 2 #"RM"
0 0 24 3 1 #" "
0 0 14 3 2 #"FM"
0 0 24 3 3 #")) "
0 0 21 3 1 #"'"
0 0 24 3 7 #"())))) "
0 0 17 3 44 #";if panel is #t, the curve has to be closed "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 14 #";leg-base-area"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 13 #"leg-base-area"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 5 #"begin"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 3 #"lba"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 14 #"area-dependent"
0 0 24 3 1 #" "
0 0 14 3 6 #"lba-rf"
0 0 24 3 1 #" "
0 0 14 3 6 #"lba-rr"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBB"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 3 #"lba"
0 0 24 3 1 #" "
0 0 14 3 2 #"lc"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 16 #"area-independent"
0 0 24 3 1 #" "
0 0 14 3 6 #"lba-rf"
0 0 24 3 1 #" "
0 0 14 3 6 #"lba-rr"
0 0 24 3 1 #" "
0 0 14 3 5 #"lba-w"
0 0 24 3 1 #" "
0 0 14 3 5 #"lba-d"
0 0 24 3 7 #")))) "
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 20 #";leg-stretchers-area"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 19 #"leg-stretchers-area"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 3 #"lsa"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 14 #"area-dependent"
0 0 24 3 1 #" "
0 0 14 3 6 #"lsa-rf"
0 0 24 3 1 #" "
0 0 14 3 6 #"lsa-rr"
0 0 24 3 2 #" ("
0 0 14 3 13 #"point-in-line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsa-h"
0 0 24 3 3 #") ("
0 0 14 3 13 #"point-in-line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 2 #" "
0 0 14 3 5 #"lsa-h"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 32 #";----------OUTER FRAME----------"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 32 #";linear connections between legs"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 29 #";options: lf+lf, lr+lr, lf+lr"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 17 #";general-function"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 5 #"outer"
0 0 14 3 1 #"-"
0 0 14 3 5 #"frame"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" "
0 0 14 3 4 #"name"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" "
0 0 14 3 2 #"l1"
0 0 24 3 1 #" "
0 0 17 3 6 #";leg 1"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" "
0 0 14 3 2 #"l2"
0 0 24 3 1 #" "
0 0 17 3 6 #";leg 2"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" "
0 0 14 3 1 #"h"
0 0 24 3 2 #") "
0 0 17 3 18 #";connection height"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #" "
0 0 14 3 2 #"l1"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 15 3 4 #"let*"
0 0 24 3 3 #" (("
0 0 14 3 3 #"L1B"
0 0 24 3 2 #" ("
0 0 14 3 20 #"curve-start-location"
0 0 24 3 1 #" "
0 0 14 3 2 #"l1"
0 0 24 3 3 #")) "
0 0 17 3 20 #";point in base of l1"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ("
0 0 14 3 3 #"L1S"
0 0 24 3 2 #" ("
0 0 14 3 18 #"curve-end-location"
0 0 24 3 1 #" "
0 0 14 3 2 #"l1"
0 0 24 3 3 #")) "
0 0 17 3 20 #";point in seat of l1"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ("
0 0 14 3 3 #"L2B"
0 0 24 3 2 #" ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 6 #"equal?"
0 0 24 3 1 #" "
0 0 14 3 2 #"l1"
0 0 24 3 1 #" "
0 0 14 3 2 #"l2"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 25 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cy"
0 0 24 3 1 #" "
0 0 14 3 3 #"L1B"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"L1B"
0 0 24 3 3 #")) "
0 0 17 3 22 #";point in base of axis"
0 0 24 29 1 #"\n"
0 0 24 3 25 #" ("
0 0 14 3 20 #"curve-start-location"
0 0 24 3 1 #" "
0 0 14 3 2 #"l2"
0 0 24 3 4 #"))) "
0 0 17 3 20 #";point in base of l2"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ("
0 0 14 3 3 #"L2S"
0 0 24 3 2 #" ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 6 #"equal?"
0 0 24 3 1 #" "
0 0 14 3 2 #"l1"
0 0 24 3 1 #" "
0 0 14 3 2 #"l2"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 25 #" ("
0 0 14 3 3 #"xyz"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 2 #" ("
0 0 14 3 2 #"cy"
0 0 24 3 1 #" "
0 0 14 3 3 #"L1S"
0 0 24 3 3 #") ("
0 0 14 3 2 #"cz"
0 0 24 3 1 #" "
0 0 14 3 3 #"L1S"
0 0 24 3 3 #")) "
0 0 17 3 22 #";point in seat of axis"
0 0 24 29 1 #"\n"
0 0 24 3 25 #" ("
0 0 14 3 18 #"curve-end-location"
0 0 24 3 1 #" "
0 0 14 3 2 #"l2"
0 0 24 3 4 #"))) "
0 0 17 3 21 #";point in seat of l2 "
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ("
0 0 14 3 3 #"LC1"
0 0 24 3 2 #" ("
0 0 14 3 13 #"point-in-line"
0 0 24 3 1 #" "
0 0 14 3 3 #"L1B"
0 0 24 3 1 #" "
0 0 14 3 3 #"L1S"
0 0 24 3 1 #" "
0 0 14 3 1 #"h"
0 0 24 3 3 #")) "
0 0 17 3 15 #";connection pt1"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ("
0 0 14 3 3 #"LC2"
0 0 24 3 2 #" ("
0 0 14 3 13 #"point-in-line"
0 0 24 3 1 #" "
0 0 14 3 3 #"L2B"
0 0 24 3 1 #" "
0 0 14 3 3 #"L2S"
0 0 24 3 1 #" "
0 0 14 3 1 #"h"
0 0 24 3 4 #"))) "
0 0 17 3 15 #";connection pt2"
0 0 24 29 1 #"\n"
0 0 24 3 11 #" ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LC1"
0 0 24 3 1 #" "
0 0 14 3 3 #"LC2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" "
0 0 21 3 2 #"#f"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 25 #";+if coincident with area"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 11 #";seat-front"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"seat-front"
0 0 24 3 2 #" ("
0 0 14 3 11 #"outer-frame"
0 0 24 3 1 #" "
0 0 14 3 2 #"sf"
0 0 24 3 1 #" "
0 0 14 3 9 #"leg-front"
0 0 24 3 1 #" "
0 0 14 3 9 #"leg-front"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 10 #";seat-back"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 9 #"seat-back"
0 0 24 3 2 #" ("
0 0 14 3 11 #"outer-frame"
0 0 24 3 1 #" "
0 0 14 3 2 #"sb"
0 0 24 3 1 #" "
0 0 14 3 8 #"leg-back"
0 0 24 3 1 #" "
0 0 14 3 8 #"leg-back"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 10 #";seat-side"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 9 #"seat-side"
0 0 24 3 2 #" ("
0 0 14 3 11 #"outer-frame"
0 0 24 3 1 #" "
0 0 14 3 2 #"ss"
0 0 24 3 1 #" "
0 0 14 3 9 #"leg-front"
0 0 24 3 1 #" "
0 0 14 3 8 #"leg-back"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 67
#";QUESTION: THE RAILS HAVE RADIUS WHEN ARE NOT COINCIDENT WITH SEAT?"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 64
#";seat rails? no (or you would need to have 2 independent radius)"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 19 #";stretchers? yes..."
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 33 #";----------RADIAL RAILS----------"
0 0 24 29 1 #"\n"
0 0 17 3 2 #"#;"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 2 285 4 1 #"\0"
2 -1.0 -1.0 0.0 0.0 0 137 500
(
#"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\3\\\0\0\1z\b"
#"\6\0\0\0\r\217Y\306\0\0 \0IDATx\234\354\235w\234\25\325\371"
#"\377\337\347\314\335]\266\300\202H\207\5"
#"\4\221\16\202J5\210\306\n\242\30\261"
#"\304.\304\222Xb\214\306\22\vFc"
#"\324\330\222\257\321D\243\261\306\36\vb"
#"\357\5\215\202\202\r\25\24\20,H/"
#"\333\356\235\363\374\3768g\346\336\245X"
#"\242$?\327\347\375z\351\336\235;w"
#"\346\314\260\367\314\3639O3\"\"("
#"\212\242(\212\242(\212\242(\3379\366\177=\0EQ\24EQ\24EQ\224\306"
#"\212\n.EQ\24EQ\24EQ\224M\204\n.EQ\24EQ\24EQ\224"
#"M\204\n.EQ\24EQ\24EQ\224M\204\n.EQ\24EQ\24EQ"
#"\224M\204\n.EQ\24EQ\24EQ\224M\204\n.EQ\24EQ\24E"
#"Q\224M\204\n\256\357\0i\360\323\221"
#"ol\346\302v\227\276F\374\357R\370"
#"\301t{\3763\340\20\2117\325\220\377k\b.\\Xr/\0q\304\351/\337"
#"\3059\240a;9W\360\206\377=\275"
#"\267\r\376\261\34\212\242(\212\242(\337"
#"\34oS\344\255\276\344U\216\324zK\337\362/Dd]\323o\35[\310Qx"
#"D\1\\z4\267\336~\3111\327\35\327\2726Ob\213\305\353\331=\256px"
#"\5cr\251]\232\2169\354\224\216F\n~\n qz\375\337\225}\327\230P"
#"\301\365\255q\30\200 \216\4\213\221\2"
#"q\1\30\261 \326\357c\0\254\377a\0221\6B\214I\277\30\2003`\242\377"
#"\326El2\f6\377\275\23\177\371b,\366;\24;\0060\306\244\367\22\261\b"
#"9\3048\304$\377& b\303\375\307\277\247\177\376\212\242(\212\242\374"
#"'\210E\214\v\26\235#1\251\205\fQj\317\211\267M\214\361\213\350"
) 500
(
#"\306`$G\"\230\274-X\260\30\214\205`\263\204\3`1\304x[\306\213&"
#"pbq\342\355+c\222\363\27\216M\300\331`\353$v\250\20\211M\217+\311"
#"\371\4\214!]\244\26\262\210\261\304\306"
#"\217\337$\203\261^\376y\313\324a\215\3039\347?kr@\24L\254\fb\276"
#"\375\355ml\250\305\371\255\t\267\320\30"
#"\322\277/c\363\253\318 \353\377\370"
#"\202\2002\211\347\312\t&|\336\30S"
#"\360\305\0\254\3014\n\17L\230P\260"
#"\341\v\3500N0\362\335H\256\374\352\220\363\367RHT\35&\21\266\341~\e"
#"S\350\205,\370\367R\24EQ\24E"
#"\371\206\310:b\313\340\274\355\26\304\213"
#"\301\333r\16\300D\30\34B&,\370\332\6Q7\r\274I\301@1&\aX"
#"/rD\300x\301c\fX\203\27o\342\305\230\27e\0\326\2130K\260\205\234"
#"?\23658\343E\23\246`\234\4\273\323\370\375\fE\0Da\374\"6\275\306"
#"\274\343\312\22c\261&,h\223\1\343\255+\t\367Ai\210\n\256o\211\220h"
#"\253\260J\220\270r\215\370/\242X\304"
#"\24\205\275\358AL\4.\366\253\5"
#"\351\227\315\22>\1\353\270\234\277\337\344"
#"\275J&\231\224lxe\276\375\0272"
#"\357)\214S\261\345\177D\351\202\217_\375\361\3427\21Y\371\25)EQ\24E"
#"Q\224o\206\30\302\322\255\27$Id]\274f%\323\37\276\222\221];S\325"
#"\2653]\252\272\321\255K_\216\271\346"
#"\31\26\256p\230D\354\340\243p\252W}\316\324;og\3523sR\201\346\205"
#"\227\3\311\204\263\271\202e\342B\333%"
#"\357M\212\\\260!\303X\\\352\235\262\5B(\21P\341?\3b\262a\241:"
#"\2710I=o\6\357\301r\3515\32\344\323\307\331\271\252+cO\375"
#";kq s9m\267m\30\365\323\3370\277\26\214\23T^\254\217"
) 500
(
#"\336\221o\211\t\177\206\353n\303$+\e~\345 \361\362`\rF\300%\341\202"
#"&\37\253k%\362\241\207\326\344\367\377"
#"\236\263\236p\f\236?\357\276\376\356d"
#"\245!JC4\23\21\206u\351j\217\377\367H\206`700EQ\24EQ"
#"\224\257\207\241@\247\204\250\235\332\0053"
#"9v\207\276l;\366T\354\200\241\214\34\276=C\207\17c\273m[q\347\261"
#"\243\351<dO\36\230\275\222\302\320\301"
#"g/\336\2311\a\236\314\aq\223`\307\330\2!W\220\216n\362^&S8"
#"\b\300\220\363a\213a,\376\323\6\tj,\274\343#\214LA~\26\340(\362"
#"\257M\22^X\340\265\v!\210Q\20Q\26C\\\322\234\255G\16\245\377\226m"
#"\211\214E\\5\357\315\230\316+\263\336e\2553\336\300sjd\255K\346\253w"
#"Q\276\24g\202ao}\310\232\30\234\361\201\202^x\331\264P\6b1\306\205"
#"\367\203\367\v\274\e\326\304X\211\302\212"
#"I\370RI\214\371\236\347q\231p\335\316\370\360I\323@C~W\327\226\234#"
#"\366\302K\374\375\24\"\242d%\310Y\260~\225\307\346c\v\25EQ\24EQ"
#"\376\3\22Q\342\275G\221\324p\373\37'q\355t\307\351\267=\315y\a\16'"
#"\222\220\300`\34\357=p\t\23\16;\215\375~z<3\236\275\205\336\25>\237"
#"\274\242I9\230:\2324/\a\222\274)\223\2129\203\17+\214\375\331B$T"
#"\362\"\244S\4OW\32I\224\26\0210ADy\373\307X\t\236\257\374q\""
#"\310+8\343\274HK\216\225\206\5\5"
#"\361'B\246\305\266\374\341\266[\274\315\n\30q\0247\311P^ZF\306\tb"
#"\4\214\325\264\215uP\301\365m\t\341"
#"q\351\27\303\b\313?x\215\227\337_\22V\34\212p\316y#"
#"\337\324c\\\206~\273\214\241SqpG\247\206\177\2269\257<\303"
) 500
(
#"\354\325\31\206\3560\212\226\31\371\336\213"
#"- \r\225\264H\270\340\34\363\246?"
#"\317[\213\205mF\355H\333\262\357\356"
#"T\16\353\377\240\215\303\20ak>\343"
#"\331\247\246c:\365fD\277\316\30\326\360\346S/\361Eq\e\206\f\eHE"
#"\244\23\202\242(\212\242(\377\t\26\347"
#"\300Z_\264\313\255\371\200g\356}\35"
#"\263\343\351\234{\340\360`\217H\310\31w\364\30\367\eN\ew\23\a\335r\e"
#"w\274t)\223wm\311{\377~\226g\337^\16\262\232\231\217=\300ckz"
#"\262\355\320!\264(\1\227\375\214\27\237"
#"\236\316\212zC\21B\326\26\323{\233"
#"\35\331\242u\224F\355\b\265\274\367\342"
#"\313|^\334\203\241}\35/=\363&5\331\34\233\367\32\316v[\266\"Y\220"
#"\306xa\364\351;\2571sQ\31\243v\252b\326\323/\262\244>K\2236\275"
#"\0305\270\e\221x\307\301\202\31\17\362"
#"\326gE\b\21V\262\224\266\354\305\350"
#"\241[\0\241\336@\355g\274\370\344t\244s?\206\367\355DD\6\27\31_\27"
#".\362\261]\272\246\275\1D\371V8\347D$n\260\355\201\323w\24k\220P"
#"\322E\242\360\223\260\255\353\210}\345\312"
#"\273^\313\37CDD\26\311/\267k!\230.\362\330'\377\315+\330\264\370\373"
#"S\360\273,\227\vw\357\"\2062\271}\356ws|\177\206\330\377LO\27K"
#"\374\361}R\5\322e\337\363e\245\210\210{C\306o\216\330\356{\310\2545n"
#"\275\261)\212\242(\212\242|\35\234\304"
#"\"\256\300\316\251Y \277\330\332\bm~*\263j\323\235\304I0M\\,+"
#">xF\256\277\356F\371\367G+D\352\27\313\317GD>\232\317\204\237m\6"
#"\310K+DVO\277M&\214\356)&\215\374\313\b \355\372\357."
#"\177y\362\375\364\270\342>\222\343\6"
#"\265\227fm\16\220\237\35\322\331\333"
) 500
(
#"\235\246\231\234\367\340\234t\214\336J\315"
#"\211H\255\334\364\363a\2?\222\343N\32&E\306\333\246{\377\376!\251w\""
#"\262\372\39\377\324\203\245\252(o\277"
#"b\20Kg9\370\342\233\344\323Z\177\255\361G\367H\25\310\26\a\\(\253%"
#"\26\311\315\224\375\252\"\331l\360~\362"
#"\366\332p_\224\365\370\376'\t\375\217I\342l%\344#\211\bM2\26gZ"
#"\360\253\177Ng\301\202\5,\230?\207"
#"\371\37/`\301\374\205\274y\377\37)z\347nN\2320\216\263\357|\257\300+"
#"\334\212\311S\336d\376\242W\30\325\232"
#"\202\222\235\256\301JA\322\277\252\301\352"
#"A\250\322'\241\370\214\220\315oNK"
#"\223\206\230\335\6\237u\r\217\225&L\306\351gE\3424$R\32\354\346\23>"
#"\363\343\311n0_+\211\5N\275\333N(j\326\24)jI\261-8`2"
#"NI\a\334\340x\"\222\36\247\360\272\214\211\303\375\v5qLA_\214v\273"
#"\362\357\217\347\361\3625'\321\24 ."
#"\246\254\262\t\225\225\25\276\272\217Q\377"
#"\226\2424f\362\363S~\376\3\207#N\347\227\\Rp\247 \17\335\205\t("
#"?5\255\337;\261p.J^K\b-\222\302\2035\350\301H\301\\\27\223\377"
#"\325\345\307Y0\267\n.\35K\376\375\344\363l\374\\\205=\a\v\6\333pS"
#"\276gP\203gB\301\330\322\343H\276\27\220\24^O\372Lq\353\235SW\270"
#"\225\306\216\221\202*\323\0Em\330\375\247ca\361m\f\31\260\3\3777e:"
#"3\337\230\305\374\317k!\244\230Tv"
#"\37\305\21\23\17e\333\316\225HT\311"
#"\37\356[\300M\277\354\203H\a&\337"
#"\3712\213\336x\222\201k\37a\317\355"
#"\177\312]\3175\343\326i\3573\177\376|\26,\370\220\207/;\222\345"
#"\263\36\346\267\307\377\205\217p\241\262"
#"\240\245\262u%k>\277\213\307\326"
) 500
(
#"L\340\255\5\363\231\376\3324~\261}"
#"\2470J\213\21\237\262\342\20\212*6'\3034nx\246\222\ag~\304{\357"
#"\274\316\37\17\31MD\r\327\375r\2\347\\|\v\3&\337\357m\327\5\vY"
#"0\355V\266\331b\1\267\376\346L\356}\3653\177\275Q\21\225@Ey\23\322"
#"\342\e\24D16\202\372\3\233\2\r)\374\266\244\245;\r\"^`\304\342\260"
#"&C\2336\355\350\324\251M\210q\5\214\243S\247\343\231>}Kv\34\275/"
#"\277;\344PF\214|\216]\333\226\20\333\210f\255:\320,\251N\23*\313\20"
#"\\\274\220\0032\241\177\225wP\307\241T\250\30\377\230L^C\221OX\264&"
#"\24\345\260~b0\0YLH\220L\266\t\261w\276\231L\20\200Q\250\254\356"
#"0i^Y\276w\203\1b\343?\37%\327/E\371\242\25\316 \326\24,\220"
#"\330|b\251\5\e\233u\36\314\222\212"
#"\37c$\304\17\273\364\234\22\356o\214"
#"\361\275-\f8\343\303\24\205\214?\266"
#"5>\251\323\372k\262\30$jB\233\216\235\362\271r8\374Q\34\326\252\330R"
#"\224\306\216\317Mp &\314c b\260aB\3623H\4\361\347\334v\315\325"
#"\274\375i\26\260\30[\304\320\375\216gl\237\346a\36#?'\246\355'\\\230"
#"C\3756Y\2675E\300!\376\20I\316D\372\314\210Bn\5\200e\376[o"
#"\222k\332\221-\272\264\300\210/\311\214"
#"\r\371!\351|\30\3123\207\234\f\300\317oi>\206\244\307w&N\32c\20"
#"\233\360\254@0I~F\362Lp\21\330\344\221a\303\317\210\244\0Qr\354\264"
#"\232t\344\27\30\347<w\a\377x\354M\3668\352l\206u\316\260r\3164\256"
#"\276\365I\266\0323\221}\266\351\230\317%Q\224F\212\317M\27"
#"\214\263`\35\330bv?\376\32n/\333\212?\374\346\217\34\277"
) 500
(
#"\347P Ge\367\321L\334\177\30\25\315\272q\360qG\320\255\214\220\243UL"
#"\323\315\333\323\241\262\4C\r\255\332w"
#"\241]\333\226\324\315+e\207\223\316\341"
#"\330\235\217`\337!\235\261x\233\253\343"
#"I\0271\361\376\373\370\313\2549|Rm\351Z\16N\34.\273\6W\334\211\323"
#"N=\223\336\235*\240SGo)\6\2334L2X\261d\244\236\0341\23\217"
#"\277\214]\372Va\250\362s\214[E\273a{s\372\26gs\332i\343(O"
#"\346\260\216?\345\346\311\217\260\325!\267"
#"\363\321\247\3131fsr\222\303\2059"
#"E\371\372\350l\370\35\220\254\23\346E"
#"\203_I\310\346\374\252\237\v\211\207\22"
#"\22\e+\272\216\345\262\23\307\223\251\177"
#"\225\233\356x\3,D,\343\232\243\306"
#"0h\247\3\231\2714\251/\343X\361\371\aL>\260'U]\272\321\245\252+"
#"U]\266b\370ng3\375\213\265\276 Dx\276Z\21V~\3748\223F\367"
#"\243kUW\272l\321\215c\257{\233"
#"\225\257^\317\266\203\206p\346\215\257\341"
#"\5\207\27[\331\345\257s\341\241?\246"
#"KUg\272v\356N\377\21\307\362\304"
#"\302\25\2510\24`\361\314\177\262\307\326"
#"\3\370\345\235o\361\305\264\233\331u`"
#"\25\235\272u\244{\317\376\234s\363\f\352\235\277z_9'\313\a/\334\302^"
#"\203\273\320e\213nt\351\334\211-\273"
#"\17\344\347\347\335\303\342\232\230\244\37\227"
#"A\20\e\274\336^;\346+\353\0\276"
#"\242\240\303\270\271\234\276\307\2179\354\364"
#"\ax\372\316\343\351\325\271\212\356[\16"
#"\344\362g>\5\201\345\237\316\346\254}{\322\245sg:Wu\244K\227-\330"
#"a\357sy}\331\312t%\330|\361\22\a\f\32\314\1\347\336N\r\340\202\241"
#"`%\343\317M\356\277\360\327\241(\312\377\n\357\305I"
#"*~Q\340u\17b#\256\345\241K\17\240{\347^\34"
) 500
(
#"r\322\371\\\361\247+\271\342\262K\271"
#"\370\17\3470n\333-\31z\320\205\314"
#"\313\372\307\244\367\3\5\301S \236\222"
#"\252\247i\213\n\343\210\v\222\326\223b"
#"H\311\371\301\371c\t`\374Q\247\374\356G\f\335\355\4^[\341W\255%-"
#"P\226\v\213y\226`A\1\276\bQ:g\246\375tb\222^\2171\326/\307"
#"%\25\306\2040\367\31\304\344\302\276\341"
#"\232\254\301\304\241e\17`M\316'\325"
#"K\201\300s\241\200S\224\334C\341\303"
#"W\246p\371\345\227\362\322\202,\6\303"
#"\262\267\247\362\333\311\347\362\367\27>\16"
#"\367^\315\v\245qc\211\375B\210\r\v\"\6lI[\366?\366\22\236\2305"
#"\223\31o\274\302-\347\374\204\322\25\263"
#"\270\372\322\213\370\335o~\306\340\36\275"
#"9\342\212'\250\r\v>1P/\202\230\230\\\326\333^%\235Gq\316\371g"
#"\263\337\217\332\361\311\242\5,\370x\1"
#"\237\276q\27c\373\f\342\306\177\257\242i\263R2aq\336\232bL6G\246"
#"e[\372to\216\221\fi\365\354\244%\216x\eK\214#\216c\240\210\1\333"
#"\366\nv\251 6\306\230J\306L<\207\363\316\30O\335\307\vX\270h\36\v"
#"\26\274\303\225\307\356\301\250_\336\2075"
#"\25d\f@\206\214\1\363\35V\231\376\241\2403\342w@a\v]\21\t\341o"
#"\26\0276G\205=\272B\310\311\260\235w\245eFx\355\231\207Y*\2\344\230"
#"7{\6\257\277\362&_\370g!\237<s-\333\366\357\301\305\323\2322|\350"
#"0\206\17\37\312\366\275\2331\355\361\337"
#"\263\335v\373\362\330\207\265A\354\300g"
#"\317_\303\310\376\273p\343{\245\f\37"
#">\224\341\333m\315\324\23\a2\372\230"
#"+\231\361\372\277\231\277p5\340\305"
#"\341\362w\356c\237!\2039\343\256\17\330z\350\bF"
#"\f\eJ\346\303\177\260s\237\221\234\375\340\273$%E\353"
) 500
(
#"\327,a\346\254Y\334u\331Q\214\334\343L\212{\216d\304v\303iY\373\36"
#"\27\34:\232\203.\231B=\26\221:\236\272\350Pz\214:\2229M\3721|"
#"\350\20\206\214\30I\267\246K\270\346\234"
#"\3\30u\360\237\370\"\375rF\244U}l~A\326\204\320E\177\237,\270,"
#"\37\275\367\36\367]\365s\16\277\350Y"
#"\372\17\37N\317m\366`\247\1\233\361"
#"\361\213W1\250Oo.\237\321\202\341"
#"\303\2072l\304(\206\367j\316s\17"
#"\236\307\320\355\16\342\231\205u@\6\352"
#"\27\363\306\3533\2311o\1\16\337\r\336\230\fq\360\b\212:x\25\245Qc"
#"\360a\314^\224xOx\322\241\6\267\212\277\35\2713cO\271\203L\357\t\334"
#"\363\322\"\326\254Z\311\332\232j\352\227"
#"\316\341\222\203z\361\357;\316d\314A\227\360\361ZK\6\337\322#)\263Lh"
#"\6j\375IHB\313\r\226\2500\312/\234;\250\31\4\310\4\271\344=\364\216"
#"%\357\317\344\263\317\326R\\^\32\\"
#"i\311|\350\347(g\304\eu\306\370\352\265!\n\301\37#\224nN\27\256\234"
#"\367\216\221D<$\221\f&D-d $\265G\3118\"\n\2128e|\204"
#"@\250\200\6\26g\375k\1\277`&\226]O\275\211\352\352ZN\31Y\1b"
#"\260EeT\b4/\365\242\317\250=\2464r\3626\204\267\361\222\236\254b\34"
#"-\273\364g\353\1\2038\360\334;\370"
#"\364\213%\254^\273\212{.9\202\276"
#"\305\363\271\371\344\237r\356\335\357\3\20"
#"9\377]1\22\27678b\343\370d\306\335\34\275KO\252\252\266\240K\347\256"
#"t\332z?\226v\350CU\213\22\\\\\357\3675\6\241\236\330\24!V\210L"
#"RU\320\206\5\356\244/lb\245\272\320v(\242\211\213\303\2\273"
#"`\202\227\233e\357s\307\357\217\240k\347.t\352\324\225.\235\373q"
) 500
(
#"\356\343K\331\266OG\234d1\306\204kLJ\305)\337\4\2658\277%\"!"
#"&$\204\360\31c\32\344\6I\22\324"
#"\21D\230\30\277\356\27u\354N\277\315"
#"\340\305O?\340\3635\206\226M\241\250"
#"\244\224LY1\305Q\214\223U\334\364"
#"\267K\231\267f4\267\277\372\20?\251*\5\343p\30\366:s4\a\\\370\f"
#"O\2766\237]\266\350\5+\337\340\304"
#"CO\342\355\346\243\271m\312\2778\240o%\16\341\223'/d\334\201g\"\24"
#"Q\\j\300\31,\237p\311Q\207\363"
#"\320\342>\\\374\320\203\234\262S\27\357"
#"1\232{ \223\366\335\217\337\35v\2{~\370\30\33367\30#\224\t\314y"
#"}.'L}\231Sv\352J\4T/|\212\203F\377\230{\257\272\226\327\217"
#"\333\235!k\237\342\364\313\356d\253\355"
#"\317\344\341'\317\245s(\37J\374\36\a\215\34\306?\377u?3\226\376\222]"
#"7\367\341\213X\3\342\303l\214\365\327"
#"\224z\a\223\212:\326RV\261\226U"
#"\37\26s\364o\356\342\242\375\266\"\6\"\3679\27^q\31\213\262;q\317s"
#"\17\261W\373b\2601\270\f;\237<"
#"\224\211W>\311\343\323\347\263C\247\36"
#"@\21\25\b\331\342\22/\212%\2133\371\374\4\235.\24\245q\3430\30\233t"
#"D\f\2\314\a\1\361\326mgp\352\315/\322s\377\311\274\360\317\263\330,-"
#"\303\3540\315\272\361\253\277?EE\324\213c\256=\225\263v\32\301?~6\f"
#"l\214\4\21dr\265T\347\f\306\324\223\3114%\223qi\230\237X\220\270\226"
#"\272ZGQy\31\31\240\256\266\36G\214\21KQY\211\17\307\26\241\256n-"
#"q\246\24SdY\273v5u\331\f%E\211$\363sb\256\266\236z\227\303"
#"\230\"JKK\202\16\362\236\264H\240\276f-"
#"\266\244\234(\202\332\332z\\\234\305\24\227RZ\344"
) 500
(
#"\307\232\264\0301!\351\252\266\276\236L\223\0222@uu-H-Q\2469%"
#"%a\376\315\325\2606\206H\34N\"JJ\232`\243$l\321G!\344r9"
#"\352sY\232\24\225c#\301EAS\222\17\257W\224\306L*b\202\357\342\265"
#"\233\217\346\334\273\352\370\305\305\177bL"
#"\257f\20\302sq\202\265e\214\377\365"
#"5\354\261\313\266l=\340\30\356\270\343nN\331\37346/\362\213\eb\34q"
#"X\330\310\2753\205\3\367:\200\347\27"
#"\365\340\364kngx\2472\220\315\331etW~\261\307\26\314~\333`\214M"
#"\277g\222fp\3304\233\244`\2\361"
#"$\341\313\222\t\236\377(\211\223F\254"
#"A\262K\370\277S\367\342\304\353g3"
#"\354\260\337s\366\276}\311Y\350\262\365"
#"\316d\2368\226\207\236[\20l5\20\212i\330|Y\371:\250\207\353[\222\364"
#"J\310\273n\327\t/\f\253\36b\205\2448(\2\322\244\t\225\31\250\253wd"
#"\235\317\300J\272,\210\213\260\246)\277"
#"\274n&\325\253\236\342'\235K\221\340\311Z>\347M\\\324\234\214X\262q="
#"\340X\364\334-\3343\3370\351\364\313"
#"8\240o%\202\303\212\241\303Ngp"
#"\346\201\333cL\216\\\b\335\373\342\205"
#"[\371\373\213\253\30<\341L/\266\360"
#"+\233-\272\217\345\267??\234&+\236\342\332G?\b1\376\31\262\300\346{"
#"\237\301\311;v\r\361\272\216\262\16;\262\307\366-1\v?\344\303Ek\221V"
#"\273\362\364\207k\230\375\314yt6I\316A\216\267^\232KEe%\22\255\242"
#"\276N\202\367*B\342\34\210%\27\226"
#"@\255\30\237\347\25&\f\214\277\217qM5\305=\266c\337\37o\211\21\3108"
#"\300l\316I7\317b\315\362\307\331\253cI\20o\31\226|\360&R"
#"\322\322\337\357\\H\2107!\264\306\373\322q\266\230\214d1\221\315\367"
) 500
(
#"\347R\24\245\321b\311\327\370\2H#\371d)w\377\355:V5\355\317\331g"
#"\237@Kc\n<26,\312\0241\361\254\277p\344\36\273a\327.%k}"
#"\234\23750\347\245k\331\245G\e\312"
#"\313\312(/\253d\363\356c\270\356\251"
#"\267\310\206\325_#0\353\316\311ti"
#"\335\212\237\377\343e\236\375\343$\2327"
#"-\241\254\274\214\262\346m\231t\341#"
#",\256\3\263\372-\16\35\326\202\237\375"
#"\343\v\244\356U\16\31\334\226\366#\16"
#"\346\355\232\220\214\277\352#n\377\303$6/-\243\242\274)eee\354r\374"
#"\37y\365\303e~,\0\271\2679l`?F\37x9WM\36Iii)"
#"\25\315\266\344\252\227\226\222\30E\306\30"
#"\357\2043\6V=\303\236\355\373p\300"
#"I\327\361\207_\364\241iy\31\345\255\6s\307\2075\bkx\346\276k\31\335"
#"\255\234\246\245e\224\2277\245\242\274\224"
#"\276#\216e\312[\37\371\342\30\306\213"
#"\262g/\233\310\346-6\343\262i\253"
#"\375X\234_\357\317\205{\240\16.\245"
#"\361\343\362\36o\240\356\3437yx\312"
#"\215\334\371\314;~\16\t\266L\322\37K$\"\352?\202-#\250\255[MV"
#"H\254>\357%\16\352\350\371;\257\343"
#"\371\205\31~q\303\3\234\177\324>\214"
#"\331}\17\306\354\276\35E5\vX\374"
#"\361\32L&\362\313F\306\0\21\221\363"
#"\336\357\349\322u\16S\20\372\234\346"
#"\225\206f\313&\"\16\305\321\214\30\f9j>~\231\233o\234M\3131\277c"
#"\352\r\247\263\353\330=\31\273\307\236\364"
#"nW\302\234\267\336E\20\"\353\275\3659\23\243\353)\337\34\365p}G$b"
#"*\21Z\342\234\17\3720!\226\226\202"
#"\304f\3430+\227\263\260\26\"\353\223\237cgp!\334\316;\200\fM\312"
#"\212p_\274\312\231\277\276\222\17\263\200"
#"\254e\326\343\17\361\316\262,\320\224\310"
) 500
(
#"\24\23\3sf\315\202\242\315\350\335\267\23I\23<_w\"f\310.\203\341O"
#"/\".\2\343\230?\373#V \354\267\373p\322\2071\276!^\237\341#\350"
#"X\372W^{\340e\342\375\273S\214\305a\331\262\357V\24\25\204\227`\240Y"
#"\253N\230P\r\21\23QV\221a\3563\327s\356u\217\221u\6S\277\210)"
#"\367\274\310\32\34%\225UD!DE\4\2102`\205\310\231D\202\6\201\344\217"
#"o\34\30\23\23\307P\321\242\224\212R\237\263`\215`$\242Ii9\262\370\25"
#"N\377\365e|\224\315\200\254e\346c"
#"\0170{\271`i\232\17\341\301\340\254"
#"\1B\214\246\344\20\223\201\3481\24\256L)\212\322\370HW\200C\321!\23"
#"\f\237\232w\247\362\317\227\262\264\31\275"
#"=;\364h^P\347\")\204\341\177\313t\3721\327N\331\305\177.\344V\275"
#"\372\367I\354y\364\337)\32=\211\353"
#"\317\330\226\330\300\273\17\375\211\243w\32"
#"\305\277oz\234\277\36\274\215\257W\224"
#"\253\303TW\363\340\331\373\360x\363m\270\350/\327Rf-/\\{&\3778"
#"c\f\313\213\37\345\356\223\267\343\27\223"
#"o\240\342\222c\271\341\2256\34s\366\257\330~@_:\26y\261u\356A\243"
#"8o\312\347\34\370\333\253\31\335\331@"
#"\355\".=\363\24\206O\231\306\303O"
#"\337\312\217\253J\20S\217\315\324\363\372"
#"\375\347\260`\311\256\\s\335\265,]"
#"\321\224\375\a\267$m\200j|\236\211/5d\261Ekx\342\332_1k\364"
#"!\374\365o\277da]G&\364\254c\312Y\207\261\327\5\0172\350\3003\270"
#"vt\27\277\3605\377\t\216\275\340\32"
#"\366\34\275\210\227f\337\315\320\226\305\210"
#"\21\262\331\230\232\332z\352\304\273\266|\356\32\3304\312\303\337sEi"
#"\274\204\202`a\2\31z\350Y\f\271b\f\377<\377\4\366\335\351y"
) 500
(
#"\366\354a\3107\0006\30\21>{\364V\36w\260\323\240!\264)\362\v\302\276"
#"W\253\305\224\224\200d\210c!\"\242u\227\326i%D\2007\37\276\215'\346"
#"\2U\237\263|\225\2012 \24\260\220\330!6\343C\250m~\271\303\aa\205"
#"\220g\0S\217\210#2Q^\203\221"
#"!\347\352p\16\312\253\272\321\334$\315"
#"\223\35f\331+\\z\373\253\b\226\345\313k|H\264\30D\n\223i\224\257\203"
#"\316\206\337\1\336y\324\360O\317X\e"
#"\362\265\362\315u\223\a\266\21K\375\212"
#"/\370\244\6Z\266\330\214\312rGd"
#"\275\267\n v\336\367\373\376\243\227s"
#"\370\304S\231\266\250\224NU\255\261\342"
#"\30}\374M\\\331\376)v>\372F\2341Db\231?g5\316\26SYV"
#"\226z\210\374\27)\242\244\244%\21Q\32\313_\267\262\36\1ZT\224PX\312"
#"\323J\204q\206\214\201\270\276\232\234\261"
#"\210\365\202\252eEyX\255\211 \251"
#"\304\350|A\20c3\b\253\270\357\274\237r\310\271S\251-kM\373\315\233`"
#"\343v\\\372\3603,\374\373Q\374\356>\37o\354pD&\27\302\t]\310q"
#"\363\245R\375\375\361\241*b-&g}\305B\300\305\5\262\314d\231;\365\217"
#"\0340\361,\246\177VJU\247J0E\354x\312\235\\^\376\20\273\237x{"
#">Y[\300\272\330O\206a\16r\22al\214\30\37\\\244(J\343\305`\202"
#"\301\21\214\215 >>}\347\337|\34;\372\264\357My\6|\223\372LRg"
#"\260`\336\266X\343\202\327>\"\373\351"
#"S\234t\342\365\24\357\364K\236\276\357"
#"r\272\227\206C\36\261'\355\16\336\225"
#"S\216=\230\261#\336e\334\26\202\230"
#"\"j\211\250.\353\305\23\217\375\213"
#"\37\265\215\0\307\244\275\373\260v\233\241\334\375\347["
#"x\357\27;\362\243q\a\361\371\343\277\341\372\351\355\31"
) 500
(
#"7\351Xvk\353E\322k\367\\\300y\17}\302\t\267L\347\212\203\6\220\f"
#"\177\337\37\367c\247~\a\362\253\363\257"
#"e\332u\307Q\356\212\210\334*\326\306"
#"\233\363\207\337\375\225\243G4\17Wo"
#"\223\233\220\17)\f\336\267H\26\263\312"
#"n\313\r\227\377\231\275\273\e\20\213\254"
#"\375\200\247\337\230\317\300\235\177\313\275\267"
#"\236G\25\340\237I?\243i\315\\\16"
#"\275\354Uf|\270\232a\233\265\364\355"
#"8\214`\200\214\313G\v8\b\371k\371R\321\212\322xI\26m}\265\302\242"
#"\216\273s\345\305\3073\356\310\377c\334"
#"V\2358\370\354\3139y\257\336\210q"
#"X\"\336\270\377R&M\276\225\312\21"
#"\238\353\330\275\261\306{\310:t\356\213\310m<\377\340\24~\324t\30U#"
#"\266as\246\362\207_\377\202\201\177:"
#"\205\216e\216\17\356\237\314\244\337?\n"
#"\25%\230\265\213\251\256\16C0\301#o#2~\305\203$G3\t#L\304"
#"Q\22R\350\3\247\223\361\373\371\256\262"
#"U?\266\31P\304\337\376r\2\247m"
#"\323\216\3\266nN\366\323\31\374\346\350"
#"\243\230\266\242\34X\315\262U\253\275\35"
#"\353\3\207\377\253w\2721\2403\342w"
#"@>\216\267\240\352\235\213qa5\25"
#"\374\237\267\24\374>\363\261\307\370\274\26"
#"zn\275\3\355\"B\2\266\377\342\330"
#"\22\203\251}\217\337\237|&\323\252\267"
#"\341\352\227f\263`\336G\314[0\237\e\3169\200V\331% 9o\22\30h"
#"\325\241\24\233\253a\351\352\232p.\322"
#"\320\231\3325\213\211\215#r\26\310Q"
#"\336\242\f\v|\276\252\32\37\366\221T\305r\254Z\265\230UYh\336\265\3%"
#"@,>d\245\3169\214\211\20\374C\26|\325+\207P\\^\312\352Wn\344"
#"\347\347M\245\331\220\243ym\356g\314\2377\237\217\26L"
#"\343\250\335\372\220\253\375\302\207\f\32C\222\22\352\245W\6\e"
) 500
(
#"\22\314\2231\20\n\212\30 \266.\335"
#"[\222X\37\261\344V\316\346\334\223\316"
#"fF<\230k\247\315f\376\374\205\314"
#"\237?\227\eN\337\227\362\372\305\0\24\371\372=>\0314T=\364\263M\204!"
#"\27\274[\311\277\231\242(\215\26\3\241"
#"\eWH\20\a\4rN\210\200\310\27\205'Y\375\265~\322N\347t?\227\332"
#"0w\300\233\17\336\300K5M8\372\324\311t+MN\341\210\243v\234p\302"
#"O)\256~\217\177\336\373\nF,\"Y\352\211\351\267\317)Al\205\2\27-"
#"{3`\353f\260`\21\237\327\370\343W\327\1d\251Y\341\347e\3142\356\277"
#"\366\6\232\f:\216\337\36\324?\355\207"
#"h\4*{\356\313I\207\267\344\315{\37\344\215/\4\311X\2625u\224\366\354"
#"\307\250\376\233\205\5\247\374\243\335\371\206"
#"\32\371k\301RW\3\255\206\217`\310\26\221\17\3476\16S\261%\227>\370\6"
#"\323\37=\217NISG\262<w\323U<\372\326\32\0341\326\205b\32\222I"
#";\231I\262v%>'\304\351:\226\362CA,bB%\321\360\235\er\304"
#"\345<}\317\r\234<i\20\377\372\335\301\f\32<\210A\203\266a\353A\2039"
#"\374\342'8\354\224s\231r\367\35l"
#"\3276\37\356\333c\307\243\0303\250\rw_p(\3\373\214bZ\325\t\334u"
#"\365oi\377\366m\214\e>\230\301\3\as\300\365K9\377\252\177r\305Q\243"
#"\310-}\237g^\231\353\207\200\243\256"
#"\272\206\354\332\265\301\2u\251\35eL"
#"\201C\300\370\361\346j\327\2\265\344\222"
#"\205\21\361\25\261\251\354\316o\377r\17"
#"\207\r\315r\361\221\243\331z\320\326\f"
#"\335\343D\312\367\274\210G\356\271\234\36"
#"\300\243O\277\312\32\300H\35\253\r\324\324fIl\337\352\2651\325\325"
#"\265\244]\4U\217\255\207z\270\276\v\4\304\330 \36\374j\251l\250"
) 500
(
#"G\n\340\253\27~\306\255\367?K=\315\330k\374.\24\213E\214\3018/L"
#"2\0K\337c\326;\365lq\374)\34=\314\207\n\372\325\327\230\247_|\23"
#"CD.[\213\0\375\266\e\214\304\317"
#"2\353\315\271\310\366\225\30g\21\353W"
#"4\236\235\362\262\317+\313\324\3\226\256"
#"\375{\320\22x\371\236\247\211\367=\222"
#"\310\27\255\307`\231\375\312k,\316\302"
#"\360\36\35\274gI\4g\34\210\377\317\206r\312^\e\0310Ed\212jxo"
#"\306,\276\208\361\334\v\30\330\306\4"
#"\367\272\300\262\367\231\371\306*\\\261\303"
#"\271\202U\26W\4!A4dq\245\341\204\340\253pE\22\219K\214P\24"
#"\252&\212\201\352%o\363\346\3739\272"
#"\375\372,&\r\355\20n\277\305P\315"
#"\213/\314\302\340\250\315Uc\203\250\212"
#"\255`LQ\310\343\360\206\227\r\275\272\22N,}\377\0\0 \0IDAT"
#"o\240\242(\215\23'`\203\330H\202\20b\343h\325\246=%\30rRGN"
#"\304\317\337R\17\2668\364\315J\266A\322&\3b>\232\275\22K\35\377wh"
#"\177\376\2261\301cd\301\344p\325+\311\n|\362\336<`\250\227r\6z\365"
#"\364\363\267\257&\30\207\20\354\226\341sY0%\210d1D\304Is\341\354\207"
#"|\360~\206\272\332\e\31\334\365\336\274"
#"\2121\21P\307\322\317>\307\324\315\345"
#"\375\325\302\210V\206\330\304\224\226\226c"
#"3\371E\275Dt\255\333-\307\31o\226U4iB\221\225\324\3\350\333\225\255"
#"\345\355\a\257\346g\247\\\313\242\232\32"
#"\fYV.YI\235\304X\323\236\3308\357\r\fw\265\260\334\275\rM\347%"
#"\210\332\206\317=Ei|\304&T\241"
#"\316\233/\200\245\367\370\203\270d\237"
#"C9\376\2047X\226\23\254\365\213\351\305-\332\321\273"
#"\252]\222[\22\324\220\243d\213Q\334\375\304\253\274;"
) 500
(
#"\17796*\242uUK\332\0363\231"
#"\227v\376\t\237\254\2\211\204\362\326\275"
#"\330\242m1v\331\266ls\310b*\332\265\n9Xm9\375\237\317sD}"
#"1\335Z\370\n\242^h\371\236\253>"
#"\207+\366\23\240)f\314\31\177\347\365Ik\350\260\225\277\6?to\327u\32"
#"\262;\377xd\26'\315[\216s\16S\326\202\1=:\203\3111u\326\266\254"
#"\214*)\6h\273\v\217L\177\35Z"
#"\265\247\34\213\230^\374\371\371\231\254\215"
#"\232\321\255\211+\210\353R\nQ\301\365"
#"-\21\\A\362\240\305H\26q>\371"
#"\261\274\242\5\230\34^B\205\262\241\237"
#"M\343\222\311gs\345S\363\330v\302_9dD\5\340\35\300.\22b18"
#"\3\256yG:\265\201Y/=\310;+&\320\247\322bM-\317^\363+\316"
#"\276s\16b`\361\222\225 1\35w\232\310a[]\303MW\236\316\16Cn"
#"\342\260m\332\23\t\274u\367o\230|\337k@\206\"\361a#M\267\333\237\343"
#"v\375=g\336\177!g\3349\214\213"
#"&\364\302\30\370l\3325\374\352\342\333"
#"\211\333\357\303Y\373\17\362e\332\255\377"
#"L\24\226|\223F\313~\345\304\307\351"
#"e\245\204\366\235\332\320D\340\351\207\36"
#"\244z\327\303)5`\226\276\305%\247"
#"\376\206\251\v\263\330\212\217\370|\261@G\343W>\2147*\nK''\6\221"
#"\327]\21\261\21r\326?\326\353\254\177z\e\3e\25]\350\320\n\236x\356^"
#"\336_9\226\36\225`\250\346\251\253N"
#"\342\274\373\27\"\300\247K\352\22G\232"
#"\27mI\362\252\211|?\n1i\316\201vDW\224\306\213\357E\223\314+\211"
#"P\200\312\36\375h\323\4>\376\354\3"
#"\326\212\241\22\20S\214_R\362.\233dZ\237\375\302]\274\274\242\a\207"
#"\217\355\a\3659\304Et\352\267\35"
#"\335[\24\221\344|\211\304\270L\206\212"
) 500
(
#"\3222\6\356\262U\230_b,P\22\205\262\355$}\262\34\316\2710\377\24\245"
#")VH\316G\"\210\305\271\230\372\32G\311f\35\330f\273\336\24[\203H\4"
#"6\306H\6[\\Bi\246+}6\3\3428\314i\261\177\240\207\320l\37\345"
#" i8\223\t\5/\204\214\337\337\t"
#"\2710\257\3721\255\342\356\311\373p\310"
#"\371O\323\264\327\16\374xd[\f\305\214;\346lZ\274\370Kv?\343U2"
#"D\b\276\265F\342\341\202\234/w\37zy\345\210\v\362hu~U\32/\21"
#"9\37\242\2278\220\0#1\22<\342\235\373\r\244*H\232\324\303N\20C\22"
#"\276\373Xp\216\222\346\235\30\320\242S"
#"\301\"\217e\363n\375i\0054\370\36"
#"m\326\221\201\233u$_\230\246\t\255"
#"\273\367\2465\276\37^h\317\2121E\301\253-!B\311/\3064k\337\215\201"
#"\355\203\r$>7>i\325\23\233\fQ\263*\6\f\250\n'\313\371OI\21"
#"\335\372\365\r\333\34\0245\243\307\326\3"
#"C\376\232`l\21U\275\372\204\271\323"
#"\327\4\260\252\271\326C\5\327\267\304\210"
#"m\260z*\246\210z\21\234\373\234\313"
#"\216\334\236\373[\226\247\241\205\261u\254"
#"\374`:o\177R\313\210\3\316\343\226"
#"\e\216b\263\364H\216\354\3325\310\232"
#"\f\365u`\233\365\347\220I\343x\362\202[\0312\370m\6u('\256[\306"
#"\e\257~\312\36\a\215\347\341[\356c"
#"\326\207\v\375\3\274\274'\227\335~\25"
#"s\307\36\301\317v\30\302\r[oA\306\324\362\346k\0370`\370p\26>\371"
#"\26B(<\301\346\34\367\267\177\362\326"
#"\276;r\311\376\303y\346\317})\21\370x\346\213\314\333l$\227\335x\31}"
#"\232\1\22\21\327gY\215P]\353\277\220Io\27\214\243\276n-H"
#"\226\352\25Y:\374\350 ~6\3506\376\364\347#\31\370\342\265\264.w"
) 500
(
#"\254\375b.\vVV\261\317\256\203\271"
#"\367\321\351\274\267h1\fj\343\5T\315j\310\255&\347L\301\352K\4!\217"
#"B\360b\254vM-\253\213\326\340b\223\26%\211Z\16\340\210#\307\362\364E"
#"7\260\315\3407\30\330\276\2\252\2272"
#"\375\215\317\331\375\220=y\344\346)\274"
#"\373\321\2rlGd\263\254%\306\325"
#"d\211\361n\360\332\265u\254-\256\366"
#"\266\217z\270\24\245q\23\f\27cA"
#"\310\244\225\bM\353\301\354\273m\5\277{\3459\236}g-\a\364-\367o\304"
#"@\224/\202$5\257r\312\356\a0e\263C\331c\354\rX\223\5\312\331o"
#"\362m\2342$)\271\36\3665`\\h\354\16\210\313\244F\215?i\344\27\262"
#"L\342\321\367\271a>\352\321\237Q\254"
#"\363\253\346&\"\312\306\320u\f\267\375\363\"J\n\354-oD\3710A\4$"
#"\227\303\a|\vq0\356b,\221\t\262Q\360\368\"\254d\210\\\354\373\351"
#"\20\23A\332\327k\345\a\17\363\273\213"
#"\237\243r\304q<\365\300\25\364\335,"
#"\30i\0027\3379\a\210H\372\177e\310\21\21\205\376A\31?\277\32\277XX"
#"$\371\206\313:\277*\215\233\304\206py\317RR\3614)\2\26\322&\222&"
#"\342N\254\217\272)\\\224\260\376=\357"
#"\370\362\205m\214$\257]\203\343y\349,\231\220\3\357\205OQh\230\36z"
#"\16\246\221A\246`\16\nE:\300{\244Ca\fo\e\32\"\361\23`\362\275"
#"\307\204\26\30\304\20\32\270'\3169/0\223V\30!\3675\344\214\3314wv"
#"\223\335\370\357%\272\374\364m1\301\303"
#"%\311\203\v:\366\35\315\236c\307\260"
#"U\233\246>\276\27\277\302\309h\325"
#"\363\347\274\364\331*\236\273\355,:7q\351w\25J\3517z,\343"
#"\306\357A\233\22\1)b\337\337\375\213gn\371\25#:\227\373\a["
) 500
(
#"\333A<0{\21w]\177\t\247\34\270;]2\265\254\fk\34-\6\36\312"
#"s\37\276\311Yc\a\200\25bS\306"
#"\211w\277\311\275\277\31E\326\304T\264"
#"\253\fi\216\226\246\235Fq\353\264\205\\w\3328Jl\fQ1\375\367\271\202"
#"\5s\236\346\227;t\16\225l\34e"
#"m\2731n\354\356\354\320\2635\220\304"
#"\352{\3\246\363\200\335\30\263\347\256T"
#"\225\t\246\2627\227\277<\213\277\236\272"
#"\e\355\233\226`(\241\333\356g\363\376"
#"\307\257p\365\271'\360\2231\273\223Y"
#"\276 |A\213\3515bw\306\354\271\27\355\232%\367\320\177+E\n\362'\242"
#"2\266\e\267\27\373\3542\234\312\22\347\vh\304\16\223)e\337?<\31037"
#"\235\314\260N\225\200\303Tm\307\224\271"
#"\237q\317U\27s\362\376c\350 kX\r\230\222N\354<f,\273\17\351E"
#"1 l\306\360=\367f\374\256\333SYLZj_Q\224\306\213\t\371\246I"
#"X2\6L\324\226\243N\3735MW\315\344\202\v.cY\"|\242 \220L"
#"\f\344\270\347\3023\230\262\306\262\3671"
#"\373\321\32\313\260\335\266\5\273\202;\256"
#"\272>\315\227\b\245\17\211\27\277\305C"
#"\17=\304\253\357-['}\301\206\260m\207\230\320\254*m(,\371TR\23"
#"a3\31\237\37[\334\227\35\17hE\315\363\367r\305\277\277\0\bb\312\e_"
#"s_~\230\177=\3742_\344\4\223)!i\205l\343\3028\276\220#\"\21"
#"\276\325rp\365Y\361?C\310\2661"
#">\364q\325\347\37\263\274>\246\317~"
#"\223\350\263Y\2246\245G\336\346\301\247"
#"\346\0\365\254\251\255M\257IB\316-\326\204+t\276)j\310\345\322\371Ui"
#"\374$)\26\222z\225\323j\200!\252)\371\36%\341\267\326\344\302\302"
#"O\310\333\17\236*\377\2377\311chp\274$T1\311\345\24\21/\266"
) 500
(
#"\222\363'\21\203\344R\21g\202\275\6"
#"~\341\3057M\367!\3256=\277\217"
#"\374\361\3553|a\240\264\245q\362\375"
#"\25\3229\"\361\342\211\304\r\3478I"
#"\274j\316\247\224\340\nB\233\225\24Q"
#"\276\25\3169q\22\207_D\234\2108\251\17\357%\233\353\374\e\r\366)$\26"
#"\347\n\2669\277-\277\177\234ns\"\342\\.=\210\223X\346?\367\279\362"
#"\360#\344\306\247\27\371\317\25|\346\245"
#"\213\366\20C\239\347\241\371\342\234H.=V~\34.=g~\203s\371\201"
#"\346\326\35W\2031\371\355\261\344\322k"
#"\23\3116\270\272\\r-\r~\306\351\373\205\367#?\226p\374t\267p\355\22"
#"\373\261%\307\311\37F\262R_p\357\342\206\343op\337\v>\244(J\343\246"
#"\301\274\25^K,qv\211\374\345\320a\2Vz\376\370\27r\327\364O\322y"
#"\317\255\232-\227L\34%\26#\235\207"
#"\236$\263\226\2049m\355\307r\342N\233\v4\225\261g\336!k\234\237KV"
#"\314\236*\23\266j*\230b9\357\211"
#"\205\"\"\362\306\215'K9\310\304\233\336M\3475?\213\255\222?\36\334^`"
#"gyr\245\23\347\234\374\353\224\276bi/\227<\2750\235\v?}\341o\322"
#"\273\231\25\272\354$\377xv^\270\224zy\372\312_J;\220\362m\216\223\17"
#"kr\"n\226\354\337\251DZ\f\232"
#" \263\253E\342\r\314\323\351\274\352D\334\322get\5R5\356T\371$y"
#"\2568'\325\263\37\220\241\245H\324koynAV\304\211\324~\364\254\234>"
#"\266\237\230\20C~\332\375\237\204\3714"
#"'\217^\260\237\200\225\213\236]%\342r2o\352\371Ri\214\34r\365+\341"
#".\247O\16Ei\234\270\215\275\341\347\230\304fih\340\304\301B"
#"\212E$\333\300\266\363_\336\2;)\371\265\320&,8\267\177;'"
) 500
(
#"\353\332\\\251\205\224\216/^\307\316\313"
#"64\371\234+\30\257\177\225\337^p"
#"\\\227K\307\221\330\241\311\234\32'\203"
#"\335\240\215\253\210\210\250\207\353[b\214"
#"I\373$HX\2210\24\371\367\b^/)\306\231$\35\332\257\270\346=\255."
#"-&\341 \237t\234\254\216\30\357\254MKx\212\220\324\373KJ\314gV\317"
#"\347\372\233n\340\234\213\376\217/\\\322"
#"8\330\"\237\277\304%\267?\213\264\337"
#"\206]\267\255\362\241zi\201\212\0206"
#"\23\342\374\323\330b\343\220d\355\"\311"
#"\323NF\36\242S\32,\327\204\227V\242\324E\356$D\252\206e\233(\304\364"
#"&\327\353\227@\222?\275\\zO\0"
#"\2374\36\32k\246\325\257\360\353%\371"
#"\225\e\223_A\262au\311A\206\242p\355\351\300\3018\37\n\31V\260\323Q"
#"\257\273B\243(J\243C\n\376\303\370yFD\310a\261\231\26\34s\355c\374"
#"\343\224\335\250~\355\32&\fnOEYS\312+\232R\332\242'\277\371\373\353"
#"l3\341<\236|\362\22\372m\346\303\3i\322\221\337\337p\v\223F4g\312"
#"\5\373\323\262\254)\345\345\345\264\3505"
#"\206)+\3320\371\316\351\234\276S\a"
#"\300Q\237\255\241\306\300\312\272\3720\230"
#"\244\275\205\241f\305J2\254\242\326\345"
#"0\30z\375\350'4\317,\346\224\321\35\331l\300x^\370Xh;b\"\327"
#"_v<}\252\237\341\310Q\335(+kByy9\243O\374+m\307\36\301"
#"\303\17^J\327\222\b\342\34+WfY\276b5\365.Y#wa>\16\317"
#"\3\362+\360\306\324\261j\255e\325\312"
#"\325!\27\313b0\224n\261#\247\236|\4\233\275\377 ;T\225SZVN"
#"\313~{q\333Gm9\373\267\0231\300\v\323gaE\300D\254\255"
#"Y\t8\326f#0\206\\\335*VJ\304\352\332\272\264X\211\2424j"
) 500
(
#"\22\273I\304W\350\201\3246\361\337\253PT'T\375tF\300\371\254~\27\202"
#"s}\221\31\277\257\204\346\352\204c\200"
#"O\214\224\2445\5\24x\326\375|f"
#"\211\210\v\262\203$\34\331\21\207\236\256"
#"\5\355\211\22\333\317H\260\271\\\310\311"
#"\367\27b$\16\21Y\376wg\374\221\322*\251&o\273\231\244MP\352\3253"
#"\340\362E\3424\232p}4\207\353\333\222$B\n8\343\210L\"\224|l\253"
#"\21\37]o\211|\301\b\242P\331\6\222\312U\276)\235x1\24\342^\235\370"
#"\30[\23\342~}\201\366\f\256\340\263"
#"\311\303\264\375N\2238w\217{9\367"
#"\241\v\331\347\3005\214\352\326\24gs"
#"\274\361\340\337xdV)'\337y\25"
#"\303Z\322 \326X\214\303\206\34\246\244"
#"\313y\"\340\362\345\353Mx?yp\272\364}\222/b\230T|\222\204\177\317"
#"\206p\25\257C\375\27\332\212\305\31\207"
#"\225(\304\v'\361\310\2314&\30\201L(\257\232\317\211\313\2Ea\2H*"
#"\202\345\343\241\275\0\0230\222\306={"
#"\327\271K\335\360\3068_52\364\242I'\214t\f\212\2424VL\262\200\205"
#"\v\225\a#2\204\334\253\342\n\16\273"
#"\350\1\16\371\365\333\\u\325\335|\36"
#"\203\v\325\275\6\3564\211}GW\205"
#"\5(\227\212\266\262\216\273r\355\v\357"
#"2\376\232kx\361\343%\b\31l\223\266\354{\314/\30\320*\314+b\351\264"
#"\335\236\234\177Nkz\r\355\30\3468"
#"\23Zp\224\260\343\221\223\311n\333\232"
#"\336\245E \302Vc\317f\352\277\332"
#"\361\360\313\363\310\225w\241Yi=P\302\220\211W0s\314!\\v\325\277X"
#"\356\fF\262\24\r\330\223s\367\37\221"
#">{\304tf\342\344s\30U\336\233\366E&,:E\336\210\n\373\330"
#"d\202\265 e=9\361\374sX\326u$\233!D\301B\222\242r\306\237"
) 500
(
#"w==\267\357\317\255\317-C$\213"
#"\3550\230\223\177\376\23\232\257\232M\373L\aV\364hAl \343\204~\273N"
#"\342\334\3140v\356V\4X6\3573\226\337\237[\301V#\273\346\363C\24\245"
#"\21#\241/\2511\22l\f\361\366\210X\"\223\363y\243\251\275d\310OE\202"
#"5\306\333\202\342\322*\327A\346\220\357"
#"\241\227\264\2230\301\236\204L\20h\205\252\306\20#$}Rm\332w\17\274H"
#"\362\366P\201\355#E\304\246\240\260b"
#"\22\236h\360\366j\260C\243\220_o\310Wd\224\202\317\210\365er\f>\24"
#"Z\254\26\313\3712\214H\222M\247|\37\361\22.\vk\2271\365\226\337s\374"
#"i\327\363I}\226\"14\37\264\27W^r\tc\207u\242Hr\210\t\353"
#"*\232\320\254(\212\242(\212\242(\377"
#"\25Tp5\22|E\30\307\272\275\245\374jD\16\2374\235wr\351\2\204\242"
#"(\212\242(\212\242lz\324\354\376\276"
#"\223\24\262!\306\273\204C\214n\320\321F\34H&-%\f.\244\207i\5\31"
#"EQ\24EQ\24E\331\324\250\207\253Q\3200\247)\331\3460H\310\2K\362"
#"\227\222\336\b^\200I\232,\251(\212"
#"\242(\212\242(\312w\217\26\315\370\236"
#"\343\375Z6\37E\230$R\213\301\32\223o\320@^l\245E\t\v[\237+"
#"\212\242(\212\242(\212\362\235\243!\205"
#"\337s\242\244;9I\271\317\320\3443"
#"\355.\36*\323\230\244Z\227C\322\2"
#"\365\212\242(\212\242(\212\242lJ4"
#"\244\360{\216\260\216\243*\365p\205\20"
#"B\274\24\213B\251bG\201\227K\235[\212\242(\212\242(\212\262IQ\17\327"
#"\367\36W\20\25\350\362e\b\223\36\f"
#"B\332EK\20\214q\276\31_\262\277\242(\212\242(\212\242(\233\f"
#"\365p)\212\242(\212\242(\212\242l\"\324\303\245(\212\242(\212\242"
) 500
(
#"(\212\262\211P\301\245(\212\242(\212"
#"\242(\212\262\211P\301\245(\212\242("
#"\212\242(\212\262\211P\301\245(\212\242"
#"(\212\242(\212\262\211P\301\245(\212"
#"\242(\212\242(\212\262\211P\301\245("
#"\212\242(\212\242(\212\262\211P\301\245"
#"(\212\242(\212\242(\212\262\211P\301"
#"\245(\212\242(\212\242(\212\262\211P"
#"\301\245(\212\242(\212\242(\212\262\211"
#"P\301\245(\212\242(\212\242(\212\262"
#"\211P\301\245(\212\242(\212\242(\212"
#"\262\211P\301\245(\212\242(\212\242("
#"\212\262\211P\301\245(\212\242(\212\242"
#"(\212\262\211P\301\245(\212\242(\212"
#"\242(\212\262\211P\301\245(\212\242("
#"\212\242(\212\262\211P\301\2454@D\32\374T\24EQ\24EQ\24\345?G"
#"\5\227\322\0c\f\"\2021\246\301v"
#"\25`\212\242(\212\242(\212\362\315Q"
#"\301\2454`]\261\265|\371r\316?\377|V\254X\221\276\257(\212\242(\212"
#"\242(\312\327C\5\227\322\200B\261\365"
#"\331g\237\361\300\3\17\260d\311\22\36x\340\1\26-Z\264\236\347KQ\24E"
#"Q\24EQ\224\215\243\202K\331 \213"
#"\27/f\352\324\251\354\275\367\336\364\352"
#"\325\213\275\367\336\233\307\37\177\234\305\213"
#"\27\377\257\207\246(\212\242(\212\242(\337\eTp)@\303P\301O>\371\204"
#"G\37}\224}\366\331\207\312\312JV\257^Mee%\373\354\263\17S\246L"
#"\341\263\317>\373\37\216TQ\24EQ"
#"\24EQ\276?\250\340R\200\206\241\204"
#"\377\376\367\277\251\252\252\242y\363\346\r"
#"\336k\326\254\31\343\307\217g\352\324\251"
#"\352\351R\24EQ\24EQ\224\257\201\n.\245\1\257\275\366\32\326ZF\216\34"
#"\271\301\367[\264h\301\204\t\23\324\323"
#"\245(\212\242(\212\242(_\3\25\\\215\2354R\320\345\177"
#"u\2\270\364\255$\234\360\225W^a\336\274y\214\e7\216"
) 500
(
#"(\2126X\221PDh\332\264i\352\351Z\264h\321\6\367Q\24EQ\24E"
#"Q\24E\5\327\17\2\21\220\360Omp\2105 \26\23D\2301\206O>\371"
#"\204E\213\26\261\317>\373\204\317l\270"
#"\27W\322\247\253E\213\26\354\277\377\376"
#"\274\370\342\213\353\235O+\31*\212\242(\212\242(\212G\5W#G\f\210\21"
#"\214wm\1\326\2776.\25a\0\355\333\267g\374\370\361X\e\204Y\20M\e"
#"\362V%\357\225\225\2251a\302\204\365\317\251\36.EQ\24EQ\24E\1T"
#"p5z\f\16+\211\307\311\"\"^\204\1\311\326D \25z\246\326\335V\350"
#"\361*|oC\336,\365p)\212\242(\212\242(\212G\5\327\17\1\3b\34"
#"8\301\4\231e\260i~\327\227\205\16"
#"nH\214}\225\240R\17\227\242(\212\242(\212\242xTp5vrB}6"
#"\6,X\343\275[.G6\233\315\273\2706@\"\272\22\341\365e\373m\350s"
#"\212\242(\212\242(\212\242\250\340j\364"
#"\254y\347\1\316\235\374\177|P\343+\23\232x\25w]u\0367\275\360\371F"
#"\205T\241\320\22\2214\257kc\373n\354w\365t)\212\242(\212\242(?t"
#"Tp5r\312{mM\213\232\5\274\361\316\22\20K\315\307\257\363\306{5\364"
#"\335\272\343Wz\2426\344\341\372&\"J=]\212\242(\212\242(\312\17\35\25"
#"\\\215\34ST\305\260~\345\274=\343]0\216\217fMgu\233!\f\252\374"
#"\317<P*\242\24EQ\24EQ\24\345\353\243\202\353\a\300\240\235vF\346\315"
#"\340\223U\253\2305\363\3zm\277\r\31\4c4\344OQ\24EQ\24EQ"
#"6%*\270\32;\316P\326\266'\335"
#"\232\256d\352\223\2172g\355\226\354\270u\225\17\25\374_\217M"
#"Q\24EQ\24EQ\329*\270\329b\rR\324\234\301\275"
) 500
(
#"6\343\225\373\237\244I\317\301tof"
#"\301\205\322\360\212\242(\212\242(\212\242"
#"l2\324\342n\344\304\bF\212\3509b[Z\226\31\332\366\353\353C\t\255\373"
#"_\17MQ\24EQ\24EQ\32=*\270\329\31\4\f\254\235\367)\331\362"
#"-\31\332\273\245\337\206\325\220BEQ\24EQ\24E\331\304d\376\327\3P6"
#"-\3022\36\275\356n\36\237\3762\255"
#"F\235D\367&\200\330\320\364\330\241\232[Q\24EQ\24EQ6\35jm7"
#"z2\254\371\364ml\317\3359bB\37\277\311\200\0F\364\237_Q\24EQ"
#"\24EQ6%?\20\17W\241'\307!X\f\316{z\0\214C\304`\b="
#"\246\222VSR\360:\34\302\v\25p\306\37%A\4\214q\304X\"\302\361\376"
#"?\350Yeh\316\276g\375\231}\327"
#"\333\16\374\357\207\247(\212\242(\212\322"
#"\250\21\221\357\304&\374\262\343\254\373\336"
#"wu\316\r\235cc\307\336\24\347l,\374@\\\34\26/\264|\241\b#\340"
#"0\336\323c\274\2222\0300\316\213/"
#"\360\373\246\1773\271\206\342\3048/\266"
#"\322$(\207\1$\210\255\364|\377AcaEQ\24EQ\24\345\377\177\n\355"
#"\274\344\365\206l\277\257\22!\e:\316"
#"\206\336O\304N!\316\271\r\236\343\313"
#"\204\331\327\331\266!\276Llml|"
#"\212\247\321{\270\22\217\224\230\340\217\n"
#"^\253\304;\225\226F7^0\231\340\251J\274_b\300H\306\377\4\357\31K"
#"\4U\370{s\316b-y\257\231\1c\242\377\352u*\212\242(\212\242(\377"
#"=\22\341Q(B\276L\\mH\254"
#"\24n\333\330\353\344\347\373\357\277\317;\357\274Cqqq\2031XkY\266l"
#"\31eee\24\27\27\257'\320r\271\34\343\306\215\333\250X\372:^"
#"\251\344\263\e\23]\352\335\372r\32\275\340\2B\310\240\305\230\34b2"
) 500
(
#"\204\302}\344r5\270,\304i\1\t(.)\307\32\2131\200\253\243>[D"
#"qQA\270!\200\3048b\262\265`$F\214\301!PTJi\6D\342 "
#"\270r\374Pn\261\242(\212\242(\312"
#"\17\205/\23Y\337$\274\317\30\303\252"
#"U\253p\316a\255\3059\307\352\325\253"
#"\271\353\256\273\310d2\210\b\326Z\252"
#"\253\253\331r\313-i\321\242\5\231L"
#"\246\301\347\255\265\\|\361\305L\2300"
#"\201\276}\3736\3602%\2\351\352\253\257\246\256\256\16k-\"B\24E\34p"
#"\300\1\24\25\25\245\373Zki\332\264"
#"\351F\307\271\241\327\353n\373*/\330"
#"\17\225F\257\6\22\217\2245\0\31\214\213\21\e\1Yn<i8\223\256\232\5"
#"V\300E\230(G\367\21Gs\343\255\0273\254c3\346?\370\a\16\370S\r"
#"w?\371\a:$\271_b\21\3K\237\272\230>c\316\340\213Z \344\204\231"
#"n\343\270\357\256\277\260\347\300\168\1"
#"c\254\246I)\212\242(\212\24242"
#"6&\262\22\341\264\256 +\374\375\343\217?f\316\2349DQD\34\307\274\365"
#"\326[\200\17\17t\316\321\242E\v&"
#"N\234\270\336\361\2337o\276\321\361\364"
#"\354\331\223\341\303\207\323\277\177\377\r\216"
#"k\353\255\267&\227\313\245cp\316q\307\35w\244\",\216cJJJ\350\335"
#"\2737Q\24\221\315f\351\337\277?-[\266\374F\2R\305\326\206i\364\202\v"
#"\222(\302\320\350\327F>\337J\352Y"
#"\265\254\214\221\207\234\301\241\243:c\35"
#"8\251\343\341\277\235\316\336\207w\342\335"
#"'\316$\223\253\243\256\326\21\223\5)"
#"J=d\6\310\256\251\243Y\325\356\374\372\224}ha|W\253w\356=\213\237"
#"\35\376k\236}\371\237\364(\325\232"
#"\24\212\242(\212\242(\215\235B\221Q(\266\222\237\271"
#"\\\216\17?\374\220G\36y\4\347\34\355\332\265\243\244\244"
) 500
(
#"\204L&C\223&M8\356\270\343\276"
#"QX\337\206~\317\345r\324\327\327\257"
#"\367^2\216\212\212\212\365\216w\3141"
#"\307\254\267m\352\324\251\0\324\327\327\363"
#"\310#\217\260t\351R\254\265\214\37?\236\326\255[STT\364\245^,\25["
#"\e\246\321\v\256\244\226`aMA\301"
#"a\214\243\276\246\224\376\373\376\224\237\35"
#"\264\25I^\326\204~k\30\271\347\277"
#"x\2133\330\302F \16\210|\16\227\313`,\200\243\276>G\273.?\346\324"
#"\211\223pF|\356\327\220Z\356\333\353v\26-\27\266jb\b;+\212\242("
#"\212\242(\215\224\r\25\254X\272t)"
#"\v\26,`\341\302\205\274\362\312+\364"
#"\357\337\237=\367\334\23k-\355\332\265Ks\255\276I\316WaQ\212DLm"
#"h\277\302}\v\367\373\252\363\210\b{\354\261G\372\373\2325kX\262d\t\0"
#"\217?\3768\363\346\315\343G?\372\21"
#"\233o\2769\306\30\372\365\353\367\365o"
#"\322\17\234F/\270\22\222\320\302|~"
#"\25\210\215\221\34i\241\v\207\341\315\31"
#"3Y\330f\v:\307\206\b\203\261Y_X\303\1\326\3410X\261DM`\376"
#"\a\367\360\213\337.\241y(W\370\331\364\307\30x\360Y\fmo\n\274j*"
#"\272\24EQ\24EQ\32\23\e\23K\323\246Mc\326\254Y4k\326\214\225+"
#"W2l\3300\306\216\35\273\236W\350"
#"\353\204\336m\310\233\265\261P\306\377\244"
#":\342\272\373\255\373\263\242\242\"\365\214"
#"\35~\370\341\0\274\360\302\v\314\2301"
#"\203(\212x\363\3157\251\257\257g\357"
#"\275\367\376\322pG\345\a \270\362\225\t\275\3601&\2\0011Mh\326|)"
#"\267\374jG\3687C\344|\36\326"
#"\252\245Y\366\375\363\203t6\260\200\34\316\372\346[&i\26\214A\20J"
#"\212\212X\275\350Un\270|&\276b\241#S'\354\270Gk2\370\n\363"
) 500
(
#"\252\265\24EQ\224\215\"\244\325n\301"
#"W\324\5\322\252\270\311\373\342\34\326\330"
#"\260\257\313W\327U\24\345;\345\233\344"
#"\37\25\356W[[\313\374\371\363\271\347"
#"\236{\0302d\b\333m\267\35\335\273wO\vP\24z\2456\364\371oz\276"
#"\257\263}S1r\344HF\216\34\t\300\2349s\250\256\256\346\346\233o\246e"
#"\313\226\214\0301\202\316\235;\377W\307"
#"\363}\241\321\v./\222b\204\b\203oLl\r\30\352p\271\"Zu\355\307"
#"\266=Z\2023\30#l3\346\24~u\360 b@\234\301:\260\344\300X\f"
#"\371\270\334\352\352j\266\34\372+\356\177"
#"\346B\332\32\343\217=\373>\372\356v"
#"\bW\364z\226Sw\356\330\240o\262"
#"\242(\212\242\254\213I\36\24\2\210_"
#"\3353\241\302\255\204\355^l9\214\263~!O@L\16\363\37<\3025\241]"
#"Q<\e\3626}\323\357\306\2349s\2301c\6\271\\\2165k\326\360\353_"
#"\377:\315q\332\320y\276l\333\367\221"
#"\356\335\273#\"\364\351\323\207\367\337\177"
#"\237\373\356\273\217n\335\272\21\3071\343"
#"\306\215k\24\327\370]\321\350\5\227\1"
#"0&y\216aC\237-\21\303\232\325"
#"\255\330\363\304+\270\374\340\255B\343c"
#"\360\261\203\216\310\31\300b\243\22\312M"
#"\204\204\302\360&y:J1\222\211(#\377e\215z\216c\354\346?\347\235\271"
#"\213\340\307\35\21cTp)\212\242(\e&<s$\250(c\205\30C\332\305"
#"1\204\300\213\177\27c\362{\257\373\370"
#"\376\272U\303\324\0R\24\317\327\315q"
#"*\f\331\253\251\251\341\203\17>\340\321"
#"G\37\5\240[\267n4o\336\234\336"
#"\275{\323\241C\207\365\4\334W\365\325"
#"\372\276\223\\S\24E\364\352\325\213^"
#"\275z\361\322K/\221\315f\371\353_\377\312\312\225+\371"
#"\311O~B\247N\235())i\324\342\363\253h\364\202"
) 500
(
#"\313\377C&e\341C(\206X0\216\310\344XS\275\32g\222\a\\\16\221\310"
#"\377\303\e\210\"\303\352%\357r\357\324"
#"\207i%\316o\227\f=\206\214\246YQ\206\265\213\337\345\276\251Sh)`m"
#"\206\352\2317s\351[M\270zPW\3048\254\206}(\212\242(_\202\177F"
#"9\20\213\204g\221H&,\360E\20\207\210x#\b\6K\4f\375\260\302o"
#"R5\354\207b\340(\312W\361M<QO?\3754\357\275\367\36\255[\267\346"
#"\250\243\216\2\240Y\263fXk\e\354\237\34wC\5/6v\236\357#\e\273"
#"\216\341\303\207\0030x\360`\3428\346"
#"\356\273\357&\212\"\272t\351\302\16;"
#"\354\260\336\3477t\214\306r\217\ni"
#"\364\202\313\204\246\304\276Fa(\216!"
#"!\275*\256G\210\211\374\362!bm"
#"\376\37\3308\242R\370\374\335{\2308"
#"\366\36\214\200\220\1r\234\360\300r."
#"\251\3140\377\235;8|\354=\276\\"
#"\274\0l\316\3117\335\315!\333\265\306?\32\25EQ\24e#\344\226q\333\237"
#"/\342\361\231\237b\245\vG\236=\211"
#"\312\25s\311v\34\305\200\3269\314\362\331\234q\326e,^ch\262\325n\\"
#"x\332\376T~\311\341\276\312\240\313f"
#"\263\353\205;)\312\17\225\215\t\242\344\275d[}}=\17<\360\0Q\24q"
#"\330a\207QVV\266\301\317\257{\214"
#"\215}\37\e\313\367\357\253\346\233\212\212"
#"\nD\204\211\23'\262d\311\22\236\177"
#"\376y\376\364\247?\261\303\16;\320\247"
#"O\37\242(Z\317\23\270\241\\\267\306B\243\27\\\0V|\241\213\244p\2065"
#"\220\243\202c\256\277\233\\q\363\264\302"
#"\205q\26\261 \304X\211h;\352W"
#"\274\271\300\367(p\304\30\361\237o\332\2729E\366xf/8\b+\226"
#"z\201H,&SB\247\366\255 \255N\250\2253\24EQ\224\r\223\253"
) 500
(
#"\235\317\a\331V\34z\372\361l\265\354"
#"I\376\372\350St+Z\2125\203\270\367O\227s\302\256\315X\331s?&\217"
#"\357\313\v7^\305\214\305{3\272M\211_B\374\222$\341\r\31+3f\314"
#"\340\376\373\357g\362\344\311\233\366\242\24"
#"\345{\302W\205\340~\372\351\247\314\236"
#"=\233\347\237\177\236\203\16:\210n\335"
#"\272}\255\317\177\331y\32\223\347\346\253"
#"\3021\v\257\265e\313\226\214\37?\236"
#"\371\363\347\363\352\253\257\362\324SO\261"
#"\303\16;0p\340@`\375\352\210\215\351>%4~\301%1\20\302\4\5\4"
#"A\214!#\206\246-Z\3\0051\361"
#"\26\214\23\214\215\300\200i\322\214\216\35"
#"\233\345\37n\342\367\21\34\206ft\352P\21\ncxQ\345\225y>\302\236\202"
#"\336_\212\242(\212RH\224\251\240~"
#"\321L\356\270v\31\315\327.\241\365\350}(\317U\323\254U3FL<\234\263"
#"O;\224\271\305\375\371\333\347\323\370t"
#"\226\341\227g\24\373\b\r\343\276Q\237"
#"\307\227_~\231[o\275\225\213.\272"
#"h\323]\214\2424\"\376\361\217\177`"
#"\214\241M\2336\234}\366\331_\373s"
#"\e\23\n\377iQ\216\377\237\371\2620"
#"\346\215y\365:w\356L\347\316\235Y\273v-\267\337~;o\274\361\6=z"
#"\364H\303\20\327\335\2771\321\350\5Wl\"\0372HRj7\324\3315I\240"
#"\241\217\205OK\363Z\3018\203\330\340"
#"\235\22\37\32\30\eGd\bb\312\6\361f\326\373\203\22L~\345\321?\31\377"
#"\253\327\253(\212\242|?0\331:J"
#"\333l\301\220\336\243\350\\\331\234m\266"
#"\355\304\223\17\316%S$tS\234\252\257\0\0 \0IDAT\355\324\205\337"
#"\235\3643v;\372B\206\375\364\217\254n\372\b\217<\273\204\276\243Z\0"
#"\226\245K\227\263p\341\202\6\307\353\337"
#"\277\377z\206\312\264i\323\270\343\216;"
) 500
(
#"\270\340\202\v(++k\224+\307\212\362]\361\310#\2170s\346Lv\333m"
#"7z\365\352Eqq\3617\372\374\306\ne4\326<\312o\222\177U\270\275\274"
#"\274\234\211\23'2w\356\\\336\177\377}.\270\340\2&M\232D\2336m6"
#"\371\230\377W4z\301\25A\32v\341"
#"\177\330\360\302\246\2777\374\263\260a\227"
#"\260z\30\3768\242\360{\262\257\260\221"
#"\344\344\360?\21\3014\22\261%\"\215frP\24E\371\377\5\27\327a*;"
#"1z\327\35\351R\n\310jV\317\233\316\375\227\\\312\353]\3331v@\226\332"
#"\26]\270\344\342\313\371\311\370\235\350["
#"\325\2$\303\345W\\\311\302\217?b"
#"\351\262\25\377\217\275\363\216\217\252X\e"
#"\360sv7\275B !\201@\350=\24\23\212\364\336\213\200QT\204\353\265+"
#"5 ]>D\20\274\242W\20\333E\212\nRE\0045\324\e\20A\345*U"
#"!\204\216\224\204@\32)\233\354\356\371"
#"\376\b{\334\335\354\246\220\262\311\356<"
#"\277\237.9g\316\231w\346L{g\336y\307\254m\256Q\243\6\255[\267\346"
#"\361\307\37\a\340\350\321\243\254_\277\236"
#"w\336y\a777\3001g\216\5\202\222\22\37\37\317/\277\374B\355\332\265"
#"\211\216\216F\243y\360\341qQ\366k9r=,N\232\353\325\253G\375\372\365"
#"\351\334\2713;v\354\300\303\303\203a"
#"\303\206\2319\"q\24\34^\341*\n"
#"\226\312DZZ\32\276\276\276\5\206\261"
#"\264\311\225e\231\234\234\34\334\335\335\35"
#"N9q\264ep\201@ \250\b\250\274\e\360\324\340@\2\324\306\311:\37z"
#"\ry\6\315\311\v\350\324U\221B\233"
#"\361\351\f_\22\357\351X\360\237\37\370"
#"\351\225\34\226\276\363o\f\32\25\23&N\244N\235\272\312\273dY\346"
#"\300\201\3\349r\2041c\3060z\364h~\374\361G\26.\\\250("
) 500
(
#"[\2\201\263c9>\313\316\316&>>\236\223'O\322\270qc\"##\355"
#"(\235\363a\374\26>>>\214\0301"
#"\202C\207\16\261y\363f\372\365\353\207"
#"\277\277\177\221M\26+\3B\341\262\302"
#"\277\377\375o\36~\370az\367\356\255\\+\310V577\227\2313g\362\310"
#"#\217\320\251S\247JW\b\4\2\201@`\a4~\324\251\355kb\202.S"
#"\253\305\303<\331\342\341\373\375\215\232\206"
#"aa\30\200\376\375\a\342\351\352\305W"
#"\e6\360X\324cV\367\aw\357\336\235\356\335\273\263o\337>>\375\364Sf"
#"\317\236\215\257\257o\245\34\234\b\4\245"
#"\205\255\363\257\222\223\223\331\274y3\256"
#"\256\256<\375\364\323\16\271\252R\0310"
#"~\37wwwz\367\356\315\365\353\327"
#"\371\350\243\217\350\330\261\243\231\ey\323"
#"\260\225\261=s\372\322e\255#\2323g\16\273w\357\346\207\37~P\256\351t"
#":rrr\320j\265h\265Z\263\360s\347\316e\330\260at\356\334\331\314\255"
#"\245@ \20\b\4\266\320!#I2\222AFVI\310\250\220\345\274_\343\201"
#"\307\222\234g\32\377\376\207\313X\375\351"
#"J\216\375v\234\344\273w\363\275\313\330"
#"\217\35:t\210]\273v\361\374\363\317\363\321G\37\345s\267l\371+\208:"
#"\326\6\347\2337of\343\306\215\f\0312\204q\343\306\345S\266D\375(?,"
#"\307\3155k\326d\346\314\231h4\32"
#"\336{\357=\342\343\343\201\312\271\252e"
#"\212\323\257pY[\271R\251T,X\260\200\327_\177\035777\2326m\312"
#"\324\251SIKKS\302\16\36<\230\250\250(\226,YB\267n\335\350\332\265"
#"\253\331;\5\2\201@ (\b\215\321\365\255\4\22\6eU\353\276\373\333\274U"
#",Y\346VB\2\277\377v\222\215\233\346\20\37w"
#"\221y\263g\361\372\233oR=\240\232\331\373~\377"
) 500
(
#"\375w\266n\335\312\202\5\v\360\366\366"
#"f\333\266m\349r\204\207\37~\330l\206\277\262\17\\\4\202\a\305h>X"
#"\243F\r\372\366\355\213\237\337\337'\333"
#"Y\236\t%(?\254\345w\347\316\235\251U\253\26\277\376\372+III\264j"
#"\325\252R;\376\21+\\6>\234\233\233\eK\226,\341\227_~a\311\222%"
#"\274\373\356\273|\373\355\267\354\334\271\223"
#"\35;v\20\24\24Dtt4\203\6\rb\340\300\201\312\273L\337+\20\b\4"
#"\2\201MdU^_a\364\232+\251\363L\v%\323 \22K\26/\342\231g"
#"\236EFO\243\306\365x\376\225\t\314"
#"\2369\203\333\267o+}\315/\277\374"
#"\302\252U\253X\264h\21\336\336\336\0"
#"\f\37>\234\275{\367\222\233\233k\26me\34\254\b\4\17\202q\217=\344M"
#"H\354\333\267\217\260\2600\272t\351b"
#"\246lA\376\263\240\4\366',,\214"
#"\250\250(\316\237?\317\326\255[\271w"
#"\357^\245\375>N\257p\25\364\341n\336\274\211\301` ((\210S\247N)"
#"3\37999\234;w\216\246M\233\22\37\37\257\230\30:\342I\342\340Xi"
#"\21\b\4\202\n\203D\236\315 \243"
#"\277\177MB\217\341\376\265\274 \256\36"
#"\356\344js\24\237\272-Z4a\366\354y\314\235;\227\344\344d~\371\345\27"
#"\326\255[\307\342\305\213qww\317{V\226\351\335\2737?\376\370#999"
#"\345\2340\201\300\376\230\356\367\371\371\347"
#"\237\271x\361\"/\276\370\"m\333\266"
#"-\360\31\201}((\357\307\214\31C\237>}\330\262e\v\31\31\31\345(U"
#"\351\341\364\n\227)\226\37{\372\364\351DEE1s\346L\16\35:\304\317?"
#"\377\214$I,\\\270\220\366\355\3333m\3324\216\37?\316\361\343\307"
#"\35\272\222\n\205K \20\b\312\2C\336\271\220\250P\311y{\266\220"
) 500
(
#"\f\250dU\336=#\262\6T\262\362"
#"\214\4\324\251\35\312\344\311\223Y\267n"
#"\35G\217\36\345\235w\336\301\333\333;"
#"\337,\275\207\207\207\325\230\35\271\317\22"
#"\b \257\16\334\271s\207\315\2337\223"
#"\220\220\300\250Q\243\n5G\23\343\35"
#"\373QX\336\327\250Q\203^\275z\261"
#"q\343F\322\322\322\312I\252\322\243T"
#"\367p\231\26\344]\273vq\342\304\t"
#"e\266\255\262\341\342\342\302\2313gX"
#"\275z5\301\301\301T\253V\215\327^{\r\275^O\223&M\210\213\213\343\317"
#"?\377\344\304\211\23H\222\304\257\277\376"
#"\n8f'v\341\302\5\226/_\216\301`@\245R\231-\321;R\343d,"
#"\277\336\336\336\34?~\34www\352"
#"\326\255\233\317\34\307\26\306\25P\275^"
#"\217\233\233\e:\235\256\214%.\34\313"
#"\316%33\223\250\250(\352\325\253gG\251\4\2A\36*\224\352i\334\263\245"
#"\\\373\373\214H\343\376.P\375]\247%\250V\255\32;w\356\244u\353\3266"
#"\317\r2u\222\341\250V\30\2\347\306\226\22u\373\366mbbb\b\r\rU"
#"\274\335\211r_\271\t\r\re\300\200\1|\375\365\327<\366\330cf\23J\25"
#"}oW\251*\\\246\233\r\343\343\343\31<x05k\326,\315(\312\4K"
#"\17)\262,\243R\2518p\340\0\303"
#"\207\17\247I\223&\310\262\314\315\2337"
#"\371\357\177\377\313\2301c\350\330\261#"
#"Z\255\226\223'O\322\277\177\177:u\352\204^\257G\245R!I\22\6\203\241"
#"B\177\370\342\360\361\307\0373f\314\30T*\25\6C\336\254\253Q\361r\24L"
#"\335\222\376\370\343\217\314\2313\207~\375"
#"\3721}\372t\253\3\31[\233keY\346\363\317?'$$\204\36=z\224"
#"g\22\254b)gLL\f\327\256]\243^\275z\25"
#"\276q\22\b\4\3711\326\331\343\307\2173}\372t\262"
) 500
(
#"\262\2628}\3724#G\216\344\323O?\245Z\265jJ\30\243\t\274i\177$"
#"\352\275\300\321\260V\236\23\23\23\331\271"
#"s'QQQ\312\236F\201c\20\34\34L\337\276}\331\260a\3#F\214\300"
#"\327\327\267\330\256\342\355\321\16\226\272\227"
#"Bc\0024\32\r\376\376\376\3716%VT\254\r\234\325j5\336\336\336\370\372"
#"\372\362\3143\317\320\260aC\16\37>"
#"\314\324\251S\321\351t\364\356\335\eI"
#"\222\360\362\3622;(\331\321:4\27\27\27\253\a\3209Z:eY\346\340\301"
#"\203\354\334\271\223\267\337~\233\0313f"
#"\240\321h\360\363\363+V\332\275\274\274"
#"\370\372\353\257\31>|xy\211^ \246\262\372\371\371\t/L\2A%B\226"
#"e\f\6\2032\361#\3132\207\17\37"
#"\346\253\257\276b\304\210\21\334\275{\227"
#"\6\r\32p\362\344I\336~\373mf\316\234I\325\252U\1\330\266m\e\275{"
#"\3676\233\5\26\212\227\300\321Y\275z"
#"5\6\203\201\21#F\340\355\355-\274\17Vbl\215\275BBB\350\333\267/"
#"\353\327\257'00\220\221#GZ\roy\315\236\347x\225\331\36\256\312v\36"
#"\225\245\274\222$\261t\351R\266m\333"
#"\306\277\376\365/\372\367\357Opp0"
#"\0#G\216\344\237\377\374'\37}\364"
#"\21m\333\266\245}\373\366\371\336\345HX3\37t\244\206\3134};w\356\244"
#"}\373\366xzzb0\30puu\265\232V\323\312k\372k\374w\375\372\365"
#"\313I\372\3021\225\325h\26Z\331\352"
#"\247@\340\254H\222\304\2349sX\272"
#"t)g\316\234\341\364\351\323\304\304\304"
#"\320\261cG\242\242\242\310\314\314\244J"
#"\225*\f\36<\230\310\310H\26-Z\304\235;w\0\330\261c\a=z\364@"
#"\255V[}\257@P\231\261\354\303t:\35\353\326"
#"\255\243E\213\26DEEQ\245J\225|\312\226\350\367"
) 500
(
#"*\27\266\306^\220w^WTT\24\325\252Uc\333\266mV\303[S\266\354"
#"\205p\232q\37\313\217\2y\e\364T"
#"*\25\267n\335\342\354\331\263\264k\327"
#"\16\200\300\300@\f\6\3\257\274\362\n"
#"m\333\266\305\325\325\325\354=\216V\241"
#"\255\25PGj\270\214\351[\272t)5j\324`\310\220!$$$\320\261c"
#"Ge\217\36XW\256\254\271\221U\251T<\367\334s\345%~\2211M\207\275"
#"\e\36\201@Pt|}}\0315j\24\237|\362\t\333\267og\322\244I\250"
#"T*\274\274\274\24s\301\340\340`\334\334\334x\345\225WX\270p!S\246L"
#"\341\361\307\37'\"\"\302\252\331\274@"
#"P\331\261\354\3036n\334H\353\326\255"
#"\211\210\210\300\307\307G\tc\332\337\211"
#"~\257\362b\255\335\n\b\b\240k\327"
#"\256\204\204\204\260}\373\366|\341*\212"
#"\262\5\245\250pU\366\6\334\264C\222"
#"$\211\234\234\34\246O\237N\373\366\355\231:u*G\217\36e\336\274y\f\31"
#"2\204\25+V\260e\313\26\276\374\362"
#"K\372\364\351\303\221#G\314\336c\357"
#"\217Z\332\330\352\250\35!\235\306\364,"
#"^\274\230\234\234\34\236~\372i\322\322"
#"\322\320j\265\212\302e\304\362\340\320\202"
#"\312\274\361\250\0{c)\243\230\351\23\b*'}\372\364!$$\204\244\244$"
#"\16\348@\243F\215puuE\243\321\340\346\346F\355\332\265\321\353\365xy"
#"y\221\222\222\302\246M\233\350\331\263'"
#" \34f\b\34\27Y\226\321\351tl\330\260\201\326\255[\323\274ys\253\26K"
#"\200\262\a]P9\261\325nI\222D\373\366\355\t\r\re\376\374\371\2349s"
#"\306\352\330\307\336\224\332\36\256\312<\220"
#"\263\264\3514\30\f\314\235;\227\356\335\273+\35V\267n\335x\365\325W"
#"\221$\t\27\27\27T*\225bJ\330\251S'~\375\365W\"##\315"
) 500
(
#"\336\347\2108\232\35\264$I,_\276\34I\222x\366\331gIMM\305\313\313"
#"\vI\222\310\316\3166\333\233g\371\\"
#"e\300\322\f\324\364ZeI\203@\340\354\34=z\2245k\326\260b\305\nV"
#"\254X\301\246M\233\210\214\214$66"
#"\226\203\a\17r\375\372u\216\349\202"
#"F\243a\365\352\325L\237>\235E\213"
#"\26\361\352\253\257\262`\301\2\2\3\3"
#"\355\235\4\201\240L\220e\231\r\e6"
#"\320\262eK\2327o\256\\\267\266\262\241R\251\362]\238\6\262,\323\266m"
#"[Z\266l\3117\337|\203^\257\247e\313\226\371\3028\204I\241\345\222me"
#"R\272,\345}\363\3157\351\323\247\17"
#"\3\6\f\0`\377\376\375\264k\327\16"
#"www\334\334\334\314<\364=\361\304"
#"\23\254]\273\226\201\3\ar\346\314\31\345}\216\204\255U\22G 77\227M"
#"\23361n\3348\222\223\223\225}N"
#"F\305\272S\247N\374\367\277\377\265\267"
#"\230%\306X?\35\311{\246@\340\f\374\362\313/\254]\273\226E\213\26a0"
#"\30h\325\252\25\317>\373,\325\253W\247z\365\352xyy\341\357\357OPP"
#"\20\1\1\1L\2300\1///j\324\250\301\224)S\230?\177>)))"
#"\200u\263h\201\240\262b0\30\330\270q#\17=\364\20\255Z\265\262j\215c"
#"kK\204\240rb\255\3552\325?\\\\\\\0305j\24\177\376\371'\247N\235"
#"\312w,\206=\333\276R]\341*\350"
#"\357\212\214\245\326;i\322$\263\225\215"
#"\313\227/\323\265kW\263gLWz\372\364\351C\337\276}\363y\263\263\2676"
#"]Z8j\203\225\222\222\302k\257\275"
#"\306\377\375\337\377\221\225\225\225o\302\300"
#"\350\t\307x\306Ze\246\262N\206\b\4\316\200-/j\307\217\37g"
#"\375\372\365\274\367\336{h4\32bcc\311\310\310`\320\240AJ\270\v"
) 500
(
#"\27.\320\253W/\263>j\371\362\345\324\250Q\203\306\215\e3~\374xf\316"
#"\234\311\353\257\277\2568~r\204\366["
#"\340\334\344\344\344\260y\363fZ\265jE\323\246M\1\363r-\312\270cR\224"
#"\361\250$I<\366\330c,Y\262\204"
#"\372\365\353\343\341\341\221\317\n\317\241\274"
#"\24V&,3\336\327\327\327lP\252\321h\320\353\365\371f\a\215\317\5\a\a"
#"3}\372t\26.\\\310\275{\367\2240\242\302W\\222\2301c\6#"
#"F\214\240Y\263ff\337\327\24\275^o\346\341K(+\2\201\240\264\261\34\4"
#"\30\f\6\16\37>\314\312\225+Y\264"
#"h\21\32\215\206\254\254,\256\\\271\222"
#"\317\t\206V\253U\372\35#\375\372\365"
#"\343\340\301\203\310\262L\223&M\2300a\2\363\347\317'!!A\264a\202J"
#"\211\351\276iY\226\331\274y3m\333"
#"\266\245E\213\26v\226LPQ\351\325"
#"\253\27\373\367\357\257\20\312\26\b\205\313"
#"*\246\37\344\317?\377\304\315\315\215\372"
#"\365\353\347\333\373b\332q\205\207\207\363"
#"\342\213/2s\346LRRR\212\364AE\307g\37RSS\2312e\n\203"
#"\6\r\242M\2336\334\273w\317\352\331\f\271\271\271T\255Z\025777N\237"
#">\r\24\315a\206@ \20\24\5[\336\264233\371\346\233oX\274x1"
#"\236\236\236H\222\304\245K\227pss"
#"\243F\215\32f\341-\237\5h\324\250\21III\244\244\244 \3132M\2336"
#"%::\232O?\375TL\4\n*\35\226\203\344\344\344d\356\336\275\253\254l"
#"\211\376X`\r\343\344\324\336\275{\355\256l\201P\270\254b9\3506=t\322"
#"V8\200\226-[\362\3143\3170o\336<RSS\225\353\216\354\345\257\242c"
#"\331\20\247\245\2451s\346L\206\17\37Ndd"
#"$\351\351\351f\25\321\324\213\221,\313\250T*\364"
) 500
(
#"z=999\3125G\364D)\20\b\312\37kGNH\222\204\267\2677o"
#"\277\3756\336\336\336J\230\355\333\267\363"
#"\330c\217\231\2057\305r0\321\247O"
#"\37\266m\333\246\\k\330\260!s\346\314)\323\364\b\4e\201i\37}\353\326"
#"-\266m\333\306\323O?\235\357\276@"
#"`\212,\313\264i\323\206\277\376\372K\31\353\331\23\241pa{vD\226e\262"
#"\263\263\225\223\312\213\362\\\333\266m\321"
#"j\265\34?~\334jx{\177pg\3032\277O\235:\305\335\273w\351\334\271"
#"3\351\351\351f\n\224\255\357\343\343\343"
#"\203V\253\25\337O \20\224\t\5y"
#"\16\225e\231\335\273w\323\241C\a\305"
#"\313ZQ\3661\324\251S\a\215F\303\305\213\27m\206\21\b*\v\222$q\367"
#"\356]bbb\309r$~~~\371\356\v\4\246\30\367\341\367\357\337\237\257"
#"\277\376\232\214\214\f\273*\346B\341\302"
#"\272\211 \344\255n\35:t\210!C"
#"\206\344{\306\332A\311\306\177\177\360\301"
#"\al\331\262\205\243G\217\332<pO"
#"\314\306\224?\307\216\35\343\263\317>\343"
#"\2157\336 !!\1I\222P\251T\371<\367Y6\334C\206\f\341\360\341\303"
#"\312*\227@ \20\224\5\226\375\202,"
#"\313\244\247\247s\353\326-\0325jT"
#"\254~\303\315\315\215\246M\233\346;\223"
#"F\364=\202\312\210,\313\254[\267\216"
#"\336\275{\343\357\357_`8\323_\201s#\31325j\324\240g\317\236l\330"
#"\260A\231h\267\aB\3412\301r\240\255V\253\321\351tV\357\231.a[\16"
#"\3265\32\ro\276\371&k\327\256\315"
#"\347\341\256 W\245\202\322\307\230\337G"
#"\217\36e\331\262e\274\366\332k\270\271"
#"\271\345\333@i\272/\313\232\353t"
#"\235N\247\230\225\212\206\\ \20\224\5\226\223x\222$q"
#"\341\302\5\324j5\265j\325\262:iWP{\24\31\31"
) 500
(
#"\311\37\177\374a\346TC\364=\202\312"
#"\310\257\277\376Jhh(\325\253W\267\31\246\"8F\20T,\214\345 44"
#"\224\201\3\a\362\365\327_\223\235\235m"
#"\227q\234P\270\n\340\322\245K\324\251"
#"S\307\346\207\261\2652\6\340\347\347\307"
#"\322\245KY\277~\275\231y\241h\4\312\27I\2228u\352\24\37~\370!\323"
#"\247O\307\303\303\203\234\234\34\253\n\263"
#"\245\2fJ\235:u\270|\371r\2058\313A \208.\246\203\305k\327\256"
#"\21\27\27\307\343\217?\236/\\Q\217"
#"z\0307n\34\333\267o\347\316\235;"
#"\312\373\5\202\312\304\211\23'\270q\343"
#"\6\303\206\r\303\315\315\315f8\241l\t\n\"88\230\276}\373\262u\353V"
#"\222\223\223\313=~\241p\25\300\316\235"
#";\351\325\253W\241\35\232\255\312\355\346"
#"\346\306\302\205\v\371\370\343\217\315\224."
#"\321\341\225.\326\314e\214\277'O\236d\361\342\305\314\2325\vwwwe\305"
#"\322\326\363\266\276e\337\276}\331\261c"
#"G\201{-\4\2\201\2404\371\356\273"
#"\357\350\334\271\263\331\321\24\326(\250="
#"\n\f\f$00\220c\307\216\25\32V \260\27\5\355\223\377\356\273\357\0302"
#"dH\221\312\256(\337\202\202\b\t\t"
#"\241j\325\252\374\366\333o\345\36\267\323+\\\5)?\32\215FYz|\320J"
#"\354\355\355MDD\4\273w\357V\342\23\rB\351bi\322i\372M\367\354\331"
#"C\263f\315\b\b\b 77W\361<X\\\262\263\263\205I\241@ (S"
#"LW\320\377\370\343\17\374\374\374\0247"
#"\360\246a\212K\327\256]\371\343\217?"
#"\310\312\312z\340w\b\4e\2115\213!\235N\307w\337}G\277~\375\n\235"
#"t\20\b,\261\325\316\365\354\331\223"
#"\273w\357r\351\322%\233\341\313\242\215tz\205\313\326"
#"\352\325\345\313\227\251V\255\32\376\376\376%6!{\366\331"
) 500
(
#"gqwwg\345\312\225%\21UPD\214^\a\327\256]Krr2\317>"
#"\373,III\212\242e\352\372\275\250\370\371\371Q\255Z5.]\272$\24f"
#"\201@P\352\230*[\6\203\201S\247N\321\246M\233|G\222\24\267\375\221e"
#"\31www\332\266m\313\317?\377,&\375\4\25\16[V&\177\375\365\27W"
#"\256\\\341\241\207\36\22eVPl,\313\214\261\234\271\273\2733h\320 6n"
#"\334h3|Y\2247\247W\270\254u>\262,\23\37\37O\265j\325\360\361\361"
#"\1J\226\371\262,3a\302\4\322\323"
#"\323\371\370\343\217K$\257\240h|\370"
#"\341\207\304\305\3051~\374x\263\263\266"
#"\340\301\276\245\247\247'~~~\371fD\4\2\201\240$X\333Kz\373\366m"
#"\356\334\271C\223&M\n|\246(\30\337\333\261cGN\2348Avvv\t"
#"%\26\bJ\27k\253[\31\31\31\34>|X9{N (\t\226\373\357="
#"<<\350\324\251\23\373\367\357G\257\327"
#"\347\v[\268\275\302eM\331\222$\t\17\17\17\245c*I\346\233~\344\311"
#"\223'\223\223\223\303\252U\253J$\263"
#"\240`\276\374\362Kn\336\274\311\204\t\23\310\314\314|`3BS$I\242v"
#"\355\332\244\246\246\242\325j\1a\226#"
#"\20\bJ\206\255\343E\326\257_o6\320\264lk\2123id|V\243\321\20"
#"\21\21\301\236={J\"\262@P\252X\256n\31\377\336\260a\3\341\341\341T"
#"\255Z\325jX\201\240(X\232\t\32\333N\265ZM\227.]8u\352\24\211"
#"\211\211\312\375\262t\214\346\364\n\227%"
#"\222$\221\236\236\316\371\363\347i\337\276"
#"\275r\r\36\254\262[:Y\2308q\"\267n\335\342\313/\277,%\211\5\246"
#"\337E\257\327\263r\345J\306\216\35\313\275{"
#"\367\320\353\365\312Y[\226\24w\320\322\254Y3"
) 500
(
#"\256^\275\252\270X\26&\16\2\201\240"
#"$X\333\177\372\277\377\375\217\306\215\e"
#"\343\353\353k5\\I\342h\336\2749"
#"\351\351\351\334\270q\343\201\337'\20\224"
#"&\326\216B8w\356\34\276\276\276\324\255[\267\304\326)\2\347\306t\fnm"
#",?|\370p\16\348\200N\2473\v#L\n\313\20\323\17\220\223\223CJ"
#"J\n\325\253W/\222\a\273\342\306\323"
#"\277\177\177\16\36<\250l`\26\224\f"
#"\343w\311\316\316f\312\224)\214\37?\36WWW\345\276\301`@\245R\3453"
#"\37-\256Y\216$I\344\346\346\342\356\356^z\302\v\4\2\1y\355QZZ"
#"\32\a\17\36d\320\240AfmXI\337k\244J\225*\214\349\222\317?\377"
#"\274T\336-\20\224\6\226}\363\326\255"
#"[\319r$\336\336\336\312\271\230buKPR\254)\356u\352\324\241^\275"
#"zl\335\272\325,LY \24.\362Wv\225J\245x\304\261\245d=\350G"
#"\221$\211\266m\3332v\354Xf\317\236\375@\357\20Xg\306\214\31t\354\330"
#"\221\316\235;+f\177`n\246P\322\312\324\273wobccE\343/\20\b"
#"J\25I\222\330\273w/}\372\364\261\31\246$V\26FL\35h\b\4\25\1"
#"\3232\272w\357^\272v\355\252l\3\2606Y*\20<\b\266\24\367F\215\32"
#"\221\233\233\313_\177\375U\246\345L(\\\344\377\b[\266l!**\252\320g"
#"JB\247N\235\0302d\b\321\321\321b\245\253\230XV\230\234\234\34&O\236"
#"L\273v\355\350\331\263'iiiV"
#"\277OiT\244\346\315\233\363\307\37\177\224\370=\2\201@`Jjj*7o"
#"\336\244e\313\2266\303\224\326`\240y"
#"\363\346\2349s\306f\337#&\224\4\366\340\310\221#\334\271s\207"
#"N\235:\231]\27\312\226\240\264\260V\226\374\375\375\0311b\4_"
) 500
(
#"}\365U\231\306-\24.\362\257p\245"
#"\247\247+\336\tK\343\335\266\256\367\350"
#"\321\203\301\203\a3g\316\34\263=F"
#"\245\265\32\343\250\230*\310z\275\236Y\263f\321\276}{z\365\352Ejjj"
#"\211\35d\230b\271\341R\253\325\212\363"
#"\270\4\2A\251\263s\347\316|\3\315\262\"$$\4WWW\342\343\343\363\335"
#"\23\253\t\202\362\302\264\17\315\315\315%>>\236\210\210\b;J$pV<<"
#"<h\321\242\5\277\376\372k\231\305!"
#"\24\256\373\30\275\223dee\341\351\351"
#"Yj\203i[\35\227\361z\367\356\335\318p \23'N\314wOtz\266"
#"1*]W\256\\\341\317?\377\244_\277~\212\262e\264\371.\255x\340\357A"
#"\210\247\247'\341\341\341\304\306\306\212\357"
#"#\20\bJ\214,\313\\\277~\35\255VK\223&M\312t\302\315\364\235\203\6"
#"\r\342\340\301\203\371\256\213vMP^"
#"\230\366\257\253W\257\246[\267n\324\253W\317\316R\t\234\t\323}]\35:t"
#"\340\350\321\243f[RJ\23\247W\270\214\3i\343\177111\264j\325\n/"
#"/\257R\215\303\364\327\24I\222\210\210\210 ;;\233\263g\317Z}N`\375"
#"\4\360\363\347\3173\177\376|\336z\353"
#"-\222\223\223Q\253\325f\0162J+\377Lg|U*\25>>>\334\271s"
#"\247T\336-\20\b\234\eI\2228}\3724M\2336\305\303\303\243\314&\334,"
#"W\256\374\375\375\t\16\16\346\324\251S"
#"B\311\22\330\rY\226\271v\355\32nnn\204\206\206\226\310+\264@P\\L"
#"\313[\225*U\b\v\v\343\350\321\243"
#"f\345\317\232\227\353\a\301\351\25.\313"
#"\375[*\225*\337!h\245\21\207\265"
#"\270\214\370\371\371\361\306\eo\260l\33123\23\17\321\t\376\215\345J"
#"\323\305\213\27y\363\3157\2318q\"\1\1\1J\2050\346qi\234"
) 500
(
#"\275e\32\237\351\337\246\362\b\4\2A"
#"Q\261\326\376\347\344\344p\374\370q:t\350`3Li`\255\377\351\336\275;"
#"\273w\357\316\27\257\30\354\n\312\223\303"
#"\207\17\323\252U\253|\375\274@P^"
#"\30\313\233\213\213\v:\235\16\370\273\35"
#",\255m*N\257p\301\337\31\235\231\231Ivv6\325\253W/\3658\n\e"
#"\250\a\a\a\263h\321\"\226.]\312\371\363\347K=~GA\222$\342\342\342"
#"x\353\255\267\2304i\22\325\253WW6~\333:@\261\244\361Y\276722"
#"\222\324\324T._\276\\\342\367\v\4\2\347\301\262\375OIIa\313\226-\214"
#"\0313\246\\L\311\215\355\2311\216\252"
#"U\253\322\275{w\276\373\356;e\220"
#"Q\3262\b\4\246\334\274y\223\344\344d3\205K\224?Aybj\205\326\253"
#"W/~\377\375wrrr\362\215\377J\272\322%\24.\23\22\23\23III"
#"\241q\343\306\245\372^\323\16\256 '"
#"\32\376\376\376\212\211\334\245K\227JU"
#"\6G\342\343\217?&22\222\220\220\20\264Z\255b\16j\231\267\245un\232"
#"5\245\313x\240\262@ \20<\b\262,s\346\314\31\334\335\335\t\t\t\311w"
#"\257\254\260\\Ex\350\241\2078w\356"
#"\34\351\351\351e\26\247@`\rY\226"
#"\371\361\307\37\351\325\253\227P\262\4v"
#"\303t\"J\255V\323\245K\27\366\354\331cv\17J\276\322%F\214&\244\244"
#"\244\20\24\24T\252\357\264\\\32\267\245"
#"x\31\257\a\5\5Q\277~}\376\373\337\377\226\252\34\216\302\266m\333puu"
#"\245_\277~\334\273wO\271n-\237"
#"Kk\205\313\364\327\370\357\300\300@\356"
#"\336\275[\342\367\v\4\2\347C\226e\f\6\3G\216\34a\300\200\1e2Y"
#"TX\374\246q\214\36=\232\r\e6\224i\234\2"
#"\201%)))\334\276}\233F\215\32\331[\24\201"
) 500
(
#"\223b\315\372\254u\353\326\\\276|\231"
#"\324\324T\345^i\214'\205\302e\302\256]\273\0306l\30Pz3\214\205y"
#")\264\346Pc\326\254Y\\\277~\235"
#"\257\277\376\272Td\250L\24\224\357\333"
#"\267og\377\376\375L\2348\21\235N"
#"W`\330\322\236!\266|\337\260a\303\330\265kW\251\306!\20\b\234\3I\222"
#"8|\3700-[\2664s\224Q\236\361\233\22\20\20@@@\0\347\316\235+"
#"W9\4\316\205\345xg\313\226-\364"
#"\355\333\327j\30\201\240<\260\266G\337"
#"\305\305\205\360\360p\366\357\337o\26\256"
#"\244eS(\\&\330\3035\2565\207\32\262,3w\356\\N\2348\301W_"
#"}\345T\r\220\255|\337\274y3\373\366\355c\306\214\31dgg\227{\236X"
#"\312e\352\5\321\226\367Ig\372n\2\201\240\350h\265Z~\377\375w:v\354"
#"hv\335^\216+4\32\rM\2336\345\330\261c\350\365z\321v\t\312\4S"
#"\323\255\234\234\34\\]]\363\231i\t\323B\201=\260\\\365o\333\266-\t\t"
#"\tf\226L%-\233B\341\272\317\371"
#"\363\347\251W\257\236\335:\32\323\217m"
#"\374\235?\177>\347\316\235c\347\316\235"
#"v\221\251\274(,\317cbb\370\351\247\237\2309s&Z\255\266T]\276\227"
#"\204\272u\353r\376\374\371|\312\262\321"
#"\\Ht\34\2\201\300\32\a\17\36\244y\363\346x{{[\235\350+//m"
#"\246\3464\341\341\341\334\276}\233\e7n\210\t#A\251a\315\\V\226e\316"
#"\236=\213\213\213\v\r\0324\260\223d\2\301\337X\256ty{{\323\244I\23"
#"N\236<i\26\256$\355\242P\270\356\23\e\eKDD\204\335\34!X\333\333"
#"%\3132\363\346\315\343\300\201\3|\377\375\367\16\333\1Z\eX\230"
#"\246u\331\262e\214\36=\232\254\254,E\241\261\2272c\32\177dd"
) 500
(
#"$\261\261\261\200\371\314\235$I\312Y"
#"`\2\201@`\332\26\244\247\247s\371"
#"\362e\332\264i\3Xo\373\313\333\302"
#"\302\30\367\340\301\203\0253\0321a$"
#"()\266\372jI\222\370\365\327_\351\321\243\207\325~R\364\235\2{aZf"
#"\273w\357\316/\277\374bvTTI"
#"\316\211\23\n\327}\334\334\334\24\367\342"
#"\345Ma3\234\275{\367f\317\236=\16} \240\255M\343\263f\315b\324\250"
#"Q\324\254Y\23\203\301`\367s\260\214\n\25@VV\26nnn\200\365\363\272"
#"\304\200E \20\200\271\211\361\351\323\247\t\f\f$ _\30{a\224/"
#",,\214\234\234\34\256]\273f7Y\4\216\203\265\3751\262,s\376\374y<"
#"<<\b\16\16.3\17\303\2AQ\260\334\32bY\366\6\f\30\300\226-["
#"\362=\363 eT(\\\300\325\253W\321h4\324\252U\v(\177\205\306\332\376"
#" \323F\250\177\377\376\364\351\323\207\271"
#"s\347Z\r\357\bXk\230\347\316\235KXX\30C\206\f!;;\333\314\344"
#"\262\264N\376..\246e\243V\255Zh4\32\256\\\271R\350*\235@ p"
#"NL;\362\337~\373\215\e7n(\316\231\254\205\263\374wyal\303\236|"
#"\362Iv\357\336\315\215\e7\312]\6\201\343aZ\376\215c\233\235;w2`"
#"\300\0%\214#\216i\4\225\3k~\24LQ\253\325\371\16B~P\223k\241"
#"p\1III\250\325j\374\374\374\0"
#"\373;<\260\346\212|\340\300\201\264n"
#"\335\232\271s\347:\374\246fI\222\230"
#"3g\16\301\301\301<\362\310#\244\244\244(\246|\246&}\345\231\a\326f?"
#"\374\374\374\320\353\3656\335\303\213ND"
#" \20\30\333\201\354\354l\316\236=Kxxx\201\341\354\275:\356"
#"\351\351Ihh(\361\361\361v\223A\3408X\226\353#G\216\320\260"
) 500
(
#"aC\374\375\375\2250\59\240\22\b\312\32\313\361\235i9l\324\250\2199"
#"9\234;w\316l\334)V\270\36\20WWWrrr\224\277\355\335\341\331b"
#"\304\210\21DFF2\177\376|\273+\205e\311\233o\276I\315\2325y\364\321"
#"GIMM5;\330\330\364\273\224\327~\273\202\312C\2336m\270|\371\262\231"
#"\215\257@ \20\230\"\3132\327\256]###\203\206\r\e*\327\254\205\253\b"
#"}O\337\276}\371\351\247\237\354-\206\300\1\260\\\313\245qs\0\0 \0I"
#"DAT\25\320j\265\250\325j\263\376"
#"\333\332$\263@P^\24\264\35\304\305"
#"\305\205\210\210\bN\235:U\342\311~\247W\270rrr8|\3700\203\a\17"
#"V\256U\324J/I\22C\207\16\245Y\263f\212\322\345\b\230\26\336\344\344d"
#"\376\373\337\3772|\370pRRR\314\302Y3\275,\17\n\312\347\346\315\233s"
#"\356\334\271|\n\273@ \20\30\221$\211={\3660r\344H\263k\326\302\225"
#"7\266\332\253!C\206\260q\343F\321"
#"\236\tJ\rY\226\311\315\315\305\303\303"
#"\243X\317\b\4\345\205\2656\270e\313"
#"\226\334\270qC9\b\371Aq\32\205"
#"\313V\245\225e\231\324\324T\263\345\355"
#"\212N\227.]\270r\345\n\327\257_\267z\277\2625P\306\31\203\2337o2"
#"y\362d\336x\343\r\264Zm\245Q(eY\306\303\303\303\356\16=\4\2\201"
#"\375(\250\335=w\356\234r\270pEj\237\255\255\250\31\345\v\v\v#++"
#"\213\204\204\4\253\317\t\4E\301tE@\253\325r\341\302\5\272u\353V\3442"
#"$\372SAYR\330\231\252\306\353c"
#"\307\216e\353\326\255\200\330\303U \5"
#"\231i\350t:\305\323\234\3453\25\r\243L5k\326d\326\254Y"
#",\\\270\220;w\356\230\335\3\373\357A\263\205\255M\341F\245w"
) 500
(
#"\366\354\331<\373\354\263\204\205\205U*"
#"\23\275\276}\373:\374Yi\2\201\240"
#"`ly\2215\30\f\354\333\267\217\316"
#"\235;\233\205\253\bX\236!h\274\6"
#"\340\343\343C\315\23259y\362d\276\263\17+R\32\4\25\37c9\2336m"
#"\32\a\17\36$!!\201\264\2644\240pg1\25q,#p\34lmY1"
#"r\347\316\35\22\23\23\2318q\"\247N\235R\34\266=H\e\250)\261\264\225"
#"\200\2022f\335\272u\f\37>\0340\357p*J\207bZ\bL\vE\203\6"
#"\r\230:u*\263g\317f\366\354\331"
#"\204\206\206\232=WP\1\262\a\226\262"
#"\230\376\373\332\265k\274\365\326[<\375"
#"\364\323\324\255[\327n\356\371\37\224\332"
#"\265k\363\343\217?V\230\274\26\b\4"
#"\345\207\255\266\315x\375\344\311\223\370\373"
#"\373S\263fM{\211X \326\372\27"
#"\310\223\277g\317\236,[\266\214\316\235"
#";\343\351\351\251\\\27m\235\2408\30"
#"\313LXX\30\375\372\365\343\325W_\245J\225*t\356\334\31___\206\17"
#"\37.\312\225\240\314(\250l\231\236\237"
#"j\312\372\365\353\321\351t\354\335\273\227"
#"\354\354lf\317\236\315\365\353\327\371\371"
#"\347\237y\370\341\207\37H\16\247P\270l\231MH\222Dnn\256rHmE"
#"\254\354\226\235\240igX\257^=\242\243\243Y\270p!\v\26,\240z\365\352"
#"\371\236\255(\24\244\0n\331\262\205\240"
#"\240 \302\303\303\271s\347N\205S\26\vB\226e\364z=...\371\256\v"
#"\4\2\307\307\326\221\20\222$\221\223\223"
#"\303\351\323\247\351\322\245K\276{\25\21"
#"\323\266W\222$\324j5\335\273wg"
#"\377\376\375\f\36<\270B\313.\250\270"
#"\230\226\253~\375\3721x\360`\322\323"
#"\323\371\364\323O\371\353\257\277\330\276};\36\36\36,]"
#"\272\24\225JefuT\231\306\3\202\212IAe\307X"
) 500
(
#"\276rrrHMMe\332\264ih4\32\2324i\202$I|\376\371\347\300"
#"\337\216\217Jr$\221S(\\\266\224"
#"\255{\367\356\341\341\341\201\253\253k\205"
#"q\311k\215\202\316\351j\330\260!\323"
#"\247O\347\345\227_f\363\346\315v\222"
#"\260hX\313\327\330\330X.]\272\304\244I\223\24'\31\262,+JpEG"
#"\222$\2\2\2\250S\247\16G\216\34\241c\307\216\312u\201@\340<X\263F"
#"X\263f\r=z\364\240N\235:J\270\212\3306X\233\3243\322\246M\en"
#"\336\274\311\336\275{\351\335\273\267=\304"
#"\238\0\351\351\351\370\370\370\240\323\351"
#"puu\305\327\327\227\251S\247\"\3132'O\236$;;\233\307\37\177\34\203"
#"\301\300\v/\274\200\207\207\a\275z\365"
#"\2\314\225.\203\301Pn\36\212\5\216\211\261,\351t:\16\36<Hbb\""
#"\353\327\257\307\333\333\233\351\323\247\243R"
#"\251h\331\262\245\3313\222$\341\347\347Gff&z\275\36\265Z]\354x\235"
#"B\341\2s%\305\330\241\374\362\313/"
#"\204\206\206\22\30\30h6\253g\254\320"
#"\25M\371\262f\272\"\3132u\352\324"
#"\241~\375\372\354\333\267Oi\240*\32"
#"\226\262\313\262Lll,\353\327\257g"
#"\326\254Y\310\262\214\301`P\302\230\376"
#"\273\242\243\321hP\253\325h\265Z@"
#"\254n\t\4\316\210\345\244\335\245K\227"
#"\360\366\366\246V\255Zv\226\254p\njkeY\246u\353\326\354\333\267O\31"
#"4\e\257W\2266Z`\177v\355\332E\333\266m\363\231\246J\222Dxx8"
#"\222$\361\3157\337 I\22\363\346\315###\203\37~\370\1Y\226\2318q"
#"\"\265k\327V&c\5\202\242b\331N\31\f\6N\236<\311\227_~\251\\"
#"\253Y\263&\333\267o/\324\354\260K\227.\274\363"
#"\316;t\350\320\1__\337b\313\342\24\n\227\245\262"
) 500
(
#"e\374uuu%555\237\335zET\266\300\372\322\272\261\301z\343\2157"
#"\230={6\6\203\201>}\372\0\25\253C\264\224\303\250l\315\2313G1\313"
#"+(|E\306\350\2450''Gt\b\2\201\23b\271B\244\327\3539y\362"
#"$\r\e6T<\230V\3446\255 \371$I\"$$\4I\222\270v\355\32"
#"\315\2325S\256\v\4EA\247\323\241"
#"R\251\320h\362\206\234\266\366=\32\177"
#"\347\317\237\17\300\321\243GIKK\343"
#"\255\267\336\342\372\365\353\310\262\314\254Y"
#"\263\360\364\364\244U\253V\345\234\nA"
#"eD\222$\222\222\222\270~\375:\261"
#"\261\261\354\333\267\217\246M\2332`\300"
#"\0\202\202\202h\321\242E\241\355\263\351"
#"\275*U\252\220\236\236.\24.[XVfI\222\320j\265$%%\321\260a"
#"\303\2+~E\303\226\\\256\256\256\374"
#"\353_\377b\352\324\251xxx\320\271"
#"s\347\n\223\6\313\302\374\323O?\261q\343Ff\315\232\205\301`\260i\23["
#"\321\a)F$I\242[\267n,_\276\234\356\335\273W\n\231\5\2A\351a"
#"Y\347SSS\271|\371\262\342\220\251"
#"\242\267\tE\221\357\211'\236`\311\222"
#"%4k\326\254\322\264\315\202\212\301\265"
#"k\327HMM\245u\353\326@\321\353Cdd$\0\335\273wG\257\327c0"
#"\30\2306m\32\351\351\3514j\324\bWWW\376\371\317\177R\245J\225B\337"
#"U\3242+\312v\305\242 \37\f\205"
#"\261c\307\16\342\342\342\270q\343\6w"
#"\357\336e\300\200\1l\336\274\331l\e\21\24\257}~\364\321GY\275z5\23"
#"'N,z\"\356\343\24\n\2275\356\335\273\307\225+Wx\344\221G\314\256W"
#"\366\312\266`\301\2&M\232\204\253"
#"\253+\355\332\265\3\254\233\363A\371\r\2,\343y\377"
#"\375\367\0313f\fj\265\232\334\334\\\233&x\225\355"
) 500
(
#";\344\346\346\342\342\342b\325|U \208\36\266\6\003111\f\36<\330"
#"NR\225\35\355\332\265c\377\376\375\364"
#"\354\331\323\354\272h\353\4\5\341\352\352"
#"\252\364\365\17RN\324j5*\225\nI\222X\276|9\2207\230\276{\367."
#"\263f\315\"))\211\261c\307\22\31"
#"\31I\265j\325\254\356\257)j\274\242"
#"\34\227/\226\26f\226\371o\355{X\273\246\325jIIIa\327\256]\354\330"
#"\261\3\310k\257j\324\250\301\343\217?"
#"^j\246\335\5-\22\24\206\323)\\"
#"\306\17\352\356\356n\365\254'k\246\207"
#"\225\t\17\17\17z\364\350ALL\214"
#"\242p\25\245\0\227\25\226\312\335\333o"
#"\277M\247N\235h\333\266-\231\231\231"
#"\225.\177\v\242~\375\372\\\272t\t"
#"\265Z]\251\366\240\t\4\202\a\303\262"
#"\237\220e\231\204\204\004222h\320\240\201\235\245+]T*\25M\2336e"
#"\367\356\335\244\245\245\231\231\324\30\363\301"
#"\364\337\242\375\23@^\235\270z\365*"
#"\365\352\325{ \347d\266\334v\17\31"
#"2\4\200\341\303\207\243\325jY\263f"
#"\rk\327\256\245y\363\346\324\253W\217"
#"\326\255[\23\36\36nu\302\271\260\275"
#":\242\374\226\37E]i\262\245\230\35"
#">|\230\363\347\317s\342\304\t\256]"
#"\273F\337\276}\371\340\203\17\0\b\n\n*\325o)\3132...T\251R"
#"\205\204\204\4\202\202\202\212\365\274\323m"
#"61V\246\330\330Xz\364\350a3\214\351oe\343\361\307\37',,\214w"
#"\337}\327\354\272=\2349\2306\224Fy\236x\342\t\253\312Ve\315oc\276"
#"\16\348\220\37~\370\1\215FSi"
#"\323\"\20\b\212\207\345\200a\367\356\335"
#"\264o\337\336\341\234\347\310\262LHH"
#"\bnnn\304\305\305\345\273g\332\326\213\366O`D\222"
#"$\16\348@\237>}\36\310\272\306\232u\216)~~~"
) 500
(
#"\4\6\0062m\33246o\336L\377\376\375IHH`\303\206\r\214\35;\226"
#"\25+V\220\235\235\255L\260\27\266WG([\25\23\343\267\311\315\315%77"
#"\227y\363\3461n\3348v\355\332Ebb\"/\276\370\"\e6l\340\331g"
#"\237%((HQ\206JS\331\222$\t///\0325j\304\241C\207\362\335"
#"/\254\315w\272\25.\310\373\0\247O"
#"\237\246_\277~\200\271\266\\\231]\216"
#"\232\246\343\351\247\237\346\223O>a\311"
#"\222%L\237>\35(\377\306\304\30\227V\253e\325\252Udff\362\302\v/"
#"\220\232\232j&\217i\370\312\206i~fgg\243V\253qww\257\224i\21"
#"\b\4%\343\367\337\177\247J\225*\312"
#"\31.\216\310\260a\303\370\346\233o\250"
#"]\273\266\331\240F\fT\5\3260\256"
#"\n\224\304\373\263\245B_\320\252U\207"
#"\16\35\350\320\241\3\31\31\31\\\270p"
#"\201\223'O\362\350\243\217\22\22\22B"
#"TT\24\276\276\276DDD\330\334\27\364 \253p\202\262E\226e\16\36<\210"
#"^\257g\345\312\225\244\247\247\363\322K/1b\304\bZ\266l\231o\314^\230"
#"\231bA\327m\305o\332\306\231\236\275"
#"jk\5\326\32N\251p\311\262\214\253"
#"\253+\231\231\231\370\372\372\232edE"
#"\365PX\24,e~\341\205\27\370\342\213/x\367\335w\2312eJ\271\245\313"
#"\262\0\336\272u\213M\2336\261}\373"
#"v\22\23\23\315\316\323\250\214\371l\212i\331qss#,,\214\330\330X:"
#"t\350`o\321\4\2A\31c\331\21"
#"\177\377\375\367\314\2313\307\336b\225:"
#"\246}\207\321l}\343\306\215L\2300A\t#\224.\2015$)\357\274\243\222"
#"\254~\26\264\325\303V\231\363\362\362\"<<\234\360\360p\236z\352)"
#"n\336\274\311\322\245K\1\330\264i\23\356\356\356,X\260\240Hq\b\312"
) 500
(
#"\216\202\362Z\253\3252{\366l\263p"
#"+W\256\304\303\303\243@G\32\326\314"
#"\24-\277\355\203\256\262\2\350\365\372\a*'N\251p\358p\200\226-[\342"
#"\355\355\255\\+\252\35iec\314\230"
#"1\274\367\336{|\364\321G\274\364\322"
#"K\345\22\247i\1\317\310\310`\361\342"
#"\305\314\2301\203\273w\357\232\335w\224"
#"|6\246\303\325\325\225\332\265k\363\333"
#"o\277\341\352\352jg\251\4\2AYc\332\351~\363\3157\f\0300\300\341\a"
#"k\222$Q\255Z5\202\203\2039v\354\30m\332\264\1\2126\253,p>v"
#"\354\330A\317\236=K\274\317\317t\334"
#"`kp]\20\301\301\301\274\363\316;"
#"\0\354\335\273\227\234\234\34\206\16\35\252"
#"\270\2327*h\242\354\226\37\326\362\372"
#"\304\211\23$&&\262l\3312\274\274\274x\356\271\347\220$Iq\324ST\257"
#"\205\226\346\253\226\277\17\342\265\322\370\e"
#"\21\21\301\226-[\224}\\E-/\16\257pY\233\rINN&$$\304"
#"l\31\322\221+Y\237>}x\377\375\367\363mt.\vLg\021222\210"
#"\216\216f\310\220!\264j\325\212\364\364"
#"tef\301\270\272U\224\r\254\225\t\255V[\351d\26\b\4\17\216$\345\235"
#"\363\222\222\222B\267n\335\34r\206\3342-...4m\332\224\263g\317\322"
#"\274ys\305\315\362\203\314\36\v\34\233"
#"\244\244$\2324i\242\374]\32\365\243"
#"\244c\206\336\275{#\3132\275z\3652s5\337\270q\343b\271\232\27\224\f"
#"cY\270x\361\"\333\266m\343\336\275"
#"{\\\276|\231\220\220\20\266l\331\202$If\223\327\266\276\2575%\25203"
#"\302\242\226?k\341\274\275\275\311\311\311"
#")p\274gMV\207W\270\254e\206\321\275ha\341\34\205\26-Z0"
#"~\374x\346\316\235\313\222%Kpww/\325\367[[\206\327\351tL"
) 500
(
#"\2336\215\301\203\a\23\31\31IZZZ\276\31.\323_kT\306oR\277~"
#"}\272v\355JVV\226\303\r\272\4\2g\245\260\325\233\270\2708\2\2\2\224"
#"A\2323\324\373\26-Z\20\e\eKJJ\n\201\201\201\200s\244[P<4"
#"\32\r:\235\16({\353\226\342\256\230\271\271\271\1(^\355v\354\330Arr"
#"23g\316\344\316\235;\250T*\226,Y\202\207\207G\261=\322YR\26\343"
#"\1\313v\251\274\342-N\34\326\356e"
#"gg\223\232\232\312\356\335\273\371\366\333"
#"o\t\r\r\245u\353\326DDD\320\275{w\233\361\24\226\216\222\336/\16\5"
#"\275\313V~8\274\302e\311\345\313\227"
#"\271}\3736C\207\16\265\267(\345Jxx8c\306\214!::\232\5\v\26"
#"P\265jU\345^I7\25Z6\242"
#"\267n\335b\361\342\305\364\357\337\237\210"
#"\210\bRSS\255*\271\216\206,\313x{{S\247N\35\324j\265\303\247W"
#" p\6\254)[\246\327\364z=\207\16\35b\332\264i6\3038*O=\365"
#"\24k\326\254a\322\244I\366\26EP"
#"\201\261\254\17\25\261n\310\262\254\270\232"
#"\0376l\230\342\331p\306\214\31de"
#"e\321\243G\17\274\275\275y\364\321G"
#"\361\360\360\260\372<\330\36\210\227V\233"
#"`\253}\261\\Y\266\224\247$\316J\212+\217\255\225$\243\v\367S\247Nq"
#"\371\362e\372\366\355\313\212\25+\360\361"
#"\3611\313\323\212R>l\355\0274\346"
#"\255-\237\17\266dw:\205K\243\321\220\233\233ko1\354BDD\4\32\215"
#"\206\327_\177\235\245K\227*\263;\266"
#"\6\23E-\360\226\5n\377\376\375J\3\225\230\230\250\230n\232z)rD\214"
#"y\240\325j\371\366\333oy\361\305\27\355,\221@ ()\326\332D"
#"\323\366n\357\336\275t\351\322Ei\347\234E\331\202<\323\232\260\2600"
) 500
(
#"N\2348Axxx\205\36P\v\354\203i}\250\310&\247\246e\327\317\317\17"
#"???\0>\377\374s\0\326\254YCbb\"S\247N%##\203\347\236"
#"{\216\210\210\b\305\234\266\240\262o\232"
#"\356\a\235\220\261\366\16\313{\306\3y\vS\2\212;\231^\320s\226m\242i"
#"\372t:\35\6\203\201\305\213\27s\351"
#"\322%BCC\361\363\363\343\371\347\237"
#"\247a\303\206E\222\325\236X\346\265\351"
#"\2571\257\255\311j\313\333\271\323)\\III\4\6\6V\230\17Z\36\230V"
#"\200\326\255[\363\344\223O\362\312+\257"
#"\260r\345J\263\373\17\262\334oYY\376\370\343\17bcc\2314i\22w\356"
#"\334\311WX\35U\331\262\344\350\321\243"
#"B\341\22\b\34\4[\203\225\314\314L\376\374\363O^x\341\5\247Z\3312\242"
#"\321hh\330\260!\377\373\337\377h\325"
#"\252\225r\335Y\322/(\230\323\247O"
#"\343\342\342\242\f\256\37d\320_\36\24"
#"eo\317\330\261c\221$\211\253W\257"
#"\222\234\234\314\306\215\eY\274x1]"
#"\273v\245m\333\2664j\324\210\320\320"
#"P\253\317\0276iS\34\371\n{\326\226Rf\353]\305\241(\357\225$\211\330"
#"\330X\f\6\3\253V\255\"55\225\227_~\231\341\303\207\233M\312\330JK"
#"E,\27\326d\32=z4\353\326\255S\234\321\231\206\261u\264\224\323)\\1"
#"11\314\2349\263B}\324\262\306rV\245y\363\346x{{s\364\350Q\263"
#"\363(\36$OL\337\375\373\357\277\363"
#"\376\373\3573s\346L\334\335\335\321\351tf+Z\262,;\364\n\227)\32\215"
#"\323U-\201\300\241\261\364\260\226\225\225"
#"\305\226-[\0301b\204\231\233bg\351W\2144o\336\234\314\314Lv\356\334"
#"\311\340\301\203\355-\216\240\2\221\223\223\203,\313J"
#"\177\370 N\v\312\232\242\230:\232\216\237j\327\256"
) 500
(
#"M\355\332\265\225\t\206\357\277\377\236\230"
#"\230\30~\370\341\a$I\242U\253V<\371\344\223\5*\227\305\31k%%%"
#"\261\177\377~\36}\364\321\2\315\25!o\240o\272\362bk\365(55\225\357"
#"\277\377\236\321\243G\27I\6\323\266\317V:rrr\2305k\226\231<\37}"
#"\364\21>>>E\212\303\362}\25\201\202L%}||\270w\357^\276\353\5"
#"\341T\243B\343\271[z\275\36\265Zmoq\354\202$I\370\372\3722\177\376"
#"|\345\274\230\310\310H\345\336\203\276\363"
#"\344\311\223,_\276\234\0313f\340\345"
#"\345ENN\16`\276\221\323\330\30\30\177+R\305*)\246\r\262\253\253+\275"
#"z\365\"&&\206\376\375\373\333[4\201@P\2,g\246\215\177\337\270q\3"
#"\275^O\235:u\314&\225\34\251]+*\21\21\21\274\367\336{dff\342"
#"\351\351ioq\4\25\b\313\325\235\212ZG\212\263\"dzm\340\300\201\f\34"
#"8\220\244\244$N\2348A||<"
#"C\207\16\245n\335\272\374\363\237\377\304"
#"\323\323SY\3413R\234\364{xxp\361\342E>\375\364S^x\341\205\2"
#"e\267\266\22f\271\357\350\336\275{\314"
#"\2313\207\261c\307\26)\376\202\276\327"
#"\311\223'\363\271p\a\350\325\253W\221"
#"\337aJE4I\266\266\262(\313\262\231\331`Q\345v\n\205\313\230\t[\266"
#"l\241w\357\336N\247lY+\4~~~,Y\262\204i\323\246\241\321h\254"
#"\236\245RT\216\35;\306\207\37~\310\264i\323\360\364\364$;;\333j\3\5"
#"\1777\0j\265Z9<\316\21\260\234\265\363\367\367'!!\301\236\"\t\4\202"
#"R\300\26235\376\275e\313\226|\a\312W\344\1eYaLo\237>}\330"
#"\274y3c\307\216u\272<\20\24NE\335"
#"\277U\330\212\233\265\301\264\265\260\325\252U\243g"
) 500
(
#"\317\236\364\352\325\213g\236y\2063g"
#"\316\360\336{\357\341\346\346F\303\206\r"
#"\361\366\366\346\205\27^(v\372\275\274"
#"\274\2301c\6\357\275\367\36k\327\256\315\247(Y\312emE\313\30&99"
#"\231\331\263g3n\3348\"\"\"\212\24\277\345V\220\253W\257\262i\323&2"
#"22\314\\\270\3\212_\0[\357\260\325>\26\244(VDl\225\203\302\344\265"
#"nh\350`\230f\216^\257\267\2634\345\217\345\22\260\21OOO\26-Z\304"
#"g\237}\306\251S\247\362-\235\26\225U\253V\321\256];\252V\255jv\242"
#"\274-\31$I\262\271\251\320Q05\243\20\b\4\225\37\323\201\307O?\375D"
#"\353\326\255\321h4\305\356t\35\rc\276\204\205\205!Iy{\\\234-\17\4"
#"\3261N\256VDE\2538\24w\205\306\305\305\205V\255Z\261f\315\32>\371"
#"\344\23\2\3\3\321h4DEE\21\25\25\305\345\313\227\213=!;y\362d"
#"n\335\272\305g\237}\246\310\4\220\230\230HBB\2\211\211\211dffr\347"
#"\316\35\22\22\22HHH0;\236&;;\233\271s\347\362\322K/\321\256]"
#"\273\"\307{\353\326-n\337\276\315\27_|ATT\24\357\275\367\36AAA"
#"t\357\336\2355k\326\260h\321\"\334\334\334l*[\246yc\271\332fz\317"
#"4M\246\327\354MAcaS\313\206\242\3404#\302\264\2644\324ju\231\37"
#"\374[\352\334\377\216\262\224\213\204\v\0"
#"z\f\250d\tI\222AV\201\224\27L\222A\226\362\236\221$\0032*\362\212"
#"\254\1\f\22\262JBBB\306\200\204"
#"\n\31\3\276\276\276\274\373\356\273\f\32"
#"4\210={\366(\321\26\265\260\257Z"
#"\265\212j\325\2521p\340\300\"\333\263\26\267\220V\6L\323\234"
#"\233\233K\353\326\2559t\350\20\247N\235\242e\313\226v\226N "
) 500
(
#"\20\224\24c\35\277w\357\36\227.]\242S\247N\16=iT\34$I\302\307"
#"\307\207\272u\353r\356\3349\233\316\3"
#"*\362\254\265\240t\321j\265\374\370\343"
#"\217L\2300\301\336\242\224\230\a\331\333"
#"n\312\2301c\220$\211!C\206\344s5\357\343\343CTTT\241\n\v\300"
#"\364\351\323Y\272t)\253V\255\342\231"
#"g\236\341\373\357\277\347?\377\371\2172"
#"\271\373\333o\277q\343\306\r\252V\255"
#"\212,\313T\257^\2357\337|\23\17"
#"\17\17\242\243\243y\376\371\347\v\34\217\30\353gbb\"111\334\276}\233"
#"\237\177\376\31\200~\375\372\361\301\a\37"
#"\340\355\355\215\227\227W\261\362\3032_"
#"\n[M\254H\24\266\32g\fS\224"
#"\266\315i\24\256\363\347\317\243V\253\251"
#"U\253\226\275E)\26\262\224\247\34I"
#"\270(\212\222\372\276\222\5\22\6I\217"
#"\n\365\375\260:$T\200\nd\25\222d\324\327TH*\3\0222\262\244B\222"
#"U\310\22H\367\337\343\342\342\302\360\341"
#"\303Y\263f\r\343\306\215+X\36\223B\265n\335:\342\342\342\2302e\n\251"
#"\251\251\250\325j\207w\375n\v\313\ng\314\vY\226\305 C p\0\214u"
#"\374\352\325\253h\265Z\352\326\255ko"
#"\221*\34]\272ta\361\342\305t\357\336\275B;J\20\224\17\242\3573\317\3"
#"\343\341\311FW\363k\327\256\345\326\255"
#"[L\236<\231\314\314L\236{\3569\36z\350!T*\25...V\315\31"
#"\243\243\243Y\271r%\243G\217\246c"
#"\307\216l\333\266M\211k\302\204\t\274"
#"\362\312+4j\324\bI\222\270p\341"
#"\2\321\321\321\344\344\3440g\316\34\232"
#"4ibS\316\354\354lv\355\332\305\327_\177M\225*U\b\r\r\245~\375"
#"\372DGG\347K\2133\177\327\242(\213\266\362\307i"
#"\24.www\264Z\255\275\305x\0T\367W\257\364H"
) 500
(
#"\250\363\24-\311@\236R\5*I\r\30\220d@\272\3779%\35y\2376O"
#"A\303 #\253TH\6\31I\305}e-\27\244\274\0253I\222\309r$"
#"M\2336\5\260\251t\31\v\221^\257"
#"\347\333o\277e\327\256]\370\373\373\223"
#"\225\225ev\0\234\263)[\220\277\202\31\f\6\252T\251BZZ\232\3150\316"
#"\334h\t\4\225\21I\222\330\265k\27\317?\377\274\275E\2510X\266c\217<"
#"\362\b\353\327\257\347\351\247\237.\222\a"
#"8\201\343\"\276\177\301\253\37\306\375X\227/_&55Uq5/\3132\343"
#"\306\215\243J\225*f\16(\214c\253f\315\232\261`\301\2F\215\32e\366>"
#"\255VKZZ\232\22WHH\b7o\336$##\203Z\265j\345\373\26g"
#"\317\236\345\372\365\353\304\306\306r\374\370q\272u\353Ftt4AAA\212r"
#"h\231\226\302\322$p\362\203\217\365z"
#"=\361\361\361<\364\320C\366\26\245\330HF\335ERc@FBB\322e\263"
#"\177\353\a\304\236JG/\e\362L\v\r\22-\372=KT\327\272H\222\6\356"
#"\375\311\207o\357\345\241\347_\240C-"
#"7\220\365\310\252\\\366\255^Aj\323"
#"\307\31\321\241\246Y<AAA\304\304\304\320\251S'4\32\rO=\365\224r"
#"\3178Si,D*\225\212\350\350h\372\364\351\303\270q\343\234\336C\2275E"
#"\352\336\275{\364\356\335\233\177\375\353_"
#"\264k\327N9\34\3214\2743\346\225"
#"@P\231\371\375\367\337i\320\240\301\3"
#"\233\3248\"\226\355ZHH\b\0\177\375\365\227bQ\"\6\336\2g\376\346\205"
#"9\215\b\v\v\0030;\313\356\355\267\337&11Qq7?n\3348\2327"
#"o\16\300\334\271s\271r\345\nK\227.\345\213/\276`\314\2301"
#"\200y\335JKKc\306\214\31,[\266\f\177\177\177\346\314\231\303"
) 500
(
#"\2349s\250^\275:\37}\364\21\27/^T\342\0325j\24\v\26,(v"
#"\232\234\235\342\372\204p\n\205\313`0"
#"p\366\354Y\206\16\35\nT\262\6\377\376j\226,\203J\222\221e@J\345\333"
#"\217\26\262\354@\16\36\356j\364\222\36"
#"\225\254C\267\3543N|~\220\267F"
#"\324\303\340V\215\224\343+\0301!\235"
#"\270-\263\361Q\251\271\272\353M^^|\220w\277\275?;k\220A\365w\3"
#"\320\276}{~\377\375w\36~\370aBCCqww\347\3157\337\344\342\305"
#"\213\354\333\267\17www\226.]\312"
#"\354\331\263\361\360\360`\374\370\361\370\373"
#"\373\223\235\235\235'je\311\323R\306"
#"r a\272\257C\257\327\343\352\352\252\374mjr\351\254\371%\20T\26L\353"
#"\351\331\263g9q\342\4\377\370\307?"
#"\354,U\305\303t0\351\343\343\303\210"
#"\21#X\271r%/\276\370\"\356\356"
#"\356\371\332H\321\3769/\342\333\347\307"
#"Z\275x\355\265\327\08~\3748w"
#"\356\334\341\263\317>\343\312\225+\334\272"
#"u\213\261c\307\222\234\234Ltt4\37|\360\1\37\177\3741/\276\370\"\220"
#"g\315\225\236\236\316\254Y\263x\375\365"
#"\327\t\n\n\">>\236\204\204\4F\214\30\201\277\277?QQQ\f\348\220"
#"\207\37~\30www\2332\bl#I\22\336\336\336fGa\b\267\360\344\355"
#"Q2\236\373T\331\n\223\321\361\205\342"
#"\4C2\200A\a\264a\316\17\253x\243\177\30y\316&\323\371\360\305^\314["
#"\370\21\23G\274G\r\227jL\370\367bvF\376\2239\337?\317\373=o\23"
#"=k##\336\372\206\301\215\357\37D"
#"\247\312oW\37\36\36\316\256]\273\330"
#"\264i\23\r\0324`\313\226-\374"
#"\373\337\377f\342\304\211\310\262\214\247\247'\21\21\21\354"
#"\334\271\23\225JEff\246\242d\230\272~\267\226\337\216"
) 500
(
#"lnh\332X\311\262\254(]\215\e76s\234!\224-\201\240\362`\254\247"
#"z\275\236\270\2708\345\370\f\2019\226"
#"{\264\274\275\275i\320\240\1'N\234"
#"\240]\273v\302\24I\240\340\254\337\276"
#"\240\262_\320\275\326\255[\3\320\263g"
#"O\316\236=\313\207\37~\310\321\243G9w\356\34!!!\264i\323\206\e7"
#"np\360\340A\252W\257Nff&\357\277\377>\343\307\217g\363\346\315h\265"
#"Z.^\274\310\361\343\307\331\264i\23"
#"\215\e7\266\352\240C\324\315\342!I"
#"\22\335\272u\343\233o\276\341\211'\236"
#"(\3223N\241p}\377\375\367\364\351\323\307l\260_Y\nV\336\336\254<\305"
#"+oy+\317)\206lP\341\352\346\5\262\212\27450\37\6\17\350\310\277\367"
#"'\220\202L\240\254\302\273\336\20>X"
#"\34\305\23o\377\203\331\337\270\222\336n"
#"\n\263F4\272\357H\303\200\204\1\320"
#"\344S\26\262\262\262\360\366\366&''"
#"\a\265Z\215\217\217\17\356\356\356\214\35"
#";\226\316\235;\363\320C\17\221\231\231"
#"\211\207\207\207\242X\330\312[\243\351\234"
#"\361\364sG\303\322<\320\322\275i\227.]\370\362\313/\315<\3U\206r'"
#"\20\b\376&++\213\270\2708\245\37\21u\270`dY\246O\237>,_\276"
#"\234\210\210\b\263\263/\305\300N\340\254"
#"\24T\346m\231\35\232\2161\216\35;FPP\20s\346\314\341\362\345\313\34<"
#"x\220#G\216\20\37\37\317\356\335\273"
#"qqqa\303\206\r\270\273\273\363\327"
#"_\177\321\251S'\0\246N\235\312\244"
#"I\223\320j\265\270\271\271\25z\26\226"
#"\330o\236\37kg\205YR\230\331\264S(\\\347\317\237'\"\"\242r\332\220"
#"\e=\r\3122\222$\347\355\342\222\fh\\S8}`;;3j\345"
#"\355\341\222o\263b\366:<F\374\207"
#"&\30\323\246\341\241\347\336\345\271\355\201"
) 500
(
#"L\333\331\223\337\317>\213/F\207\e"
#"\252<\217\205\230W\364\253W\257\362\311"
#"'\237\260q\343F\16\348\300\314\231"
#"3\251^\275:c\307\216\345\330\261c"
#"\34:t\210\305\213\27\363\343\217?\362"
#"\350\243\217\242\325j\v]\2712\30\fh\265Ze\325\313\221(,=YYY"
#"Nw\320\266@\340H\310\262\314W_}E\217\36=X\276|9\255[\267\246"
#"Y\263f\204\206\206\332[\264\n\213$"
#"I\270\272\272\22\31\31\311\256]\273\30"
#"8p`\276\373\2\201 \17[\23\267\226\377vuuU\274\37\207\205\205){"
#"\277\22\22\22\30=z4\317>\373,\201\201\201\34>|\230\344\344d\252U\253"
#"\246<\237\225\225eub\270\2608\215\177\233Z0\tlS\220~\341\260\n\227"
#"i\242\335\334\334\310\315\315U\356U\266"
#"\0316I9d+\317\325;\222\27\336\3367\3308\377%6b@\222@\226U"
#"D\f\235\313\226\351\203\0\35\262\244\311"
#"S\273\262\256r\341\226;d\234\344\330"
#"\37I\264\351T\r\356\237\327e\232z\323\274pqqA\245R\321\243G\17\374"
#"\375\375y\342\211'pss#**\212U\253VQ\275zuv\356\334Iv"
#"v6:\235Ny\316tv\306h:g0\30\360\364\364d\320\240AN\351\\"
#"\243Z\265j\4\a\a\23\27\27G\343"
#"\306\215\225\353\316\224\a\2Ae\346\314"
#"\2313\370\372\372\322\252U+\"##\331\275{7?\376\370#iii\274\370"
#"\342\213E\252\313\316X\337%I\242i"
#"\323\246|\367\335w\244\246\246\342\347\347"
#"go\221\4e\2143\226\363\322\240\250"
#"yfK\351\t\n\n\342\377\376\357\377\2309s&_|\361\205\342%\3242\16"
#"[\a\16\227\246\214\216\212\265\364\253\325jt:\235\331wq\370=\\"
#"\5-\177\369r\204\340\340`j\324\250av\257\262(]\6dT\322"
) 500
(
#"\375\23\270\214\242\312\31\244\247\2051q"
#"\365\26\246\365\nC\207\1\225\n\374k"
#"\204\342\243\226\220\363\234\26\242F\307\226"
#"yS8\323a6\237\367\211e\322c\323\b\217\377\214\b\17U\336\233e\31I"
#"R\233\345\203\321\251\203\221\257\276\372\212"
#"\270\2708\6\r\32\304\310\221#\271{\367.\0\337~\373-]\272tQ\34f"
#"XC\226e\274\274\274\330\260a\0037n\334 $$\4\235N\207J\245r\232"
#"\363\272\334\335\335\361\367\367\347\332\265k"
#"\212\302U\31\312\235@\340,\330\332,n\374\373\330\261c4l\330Pq~\323"
#"\267o_\264Z-qqq|\365\325W\264h\321\202\26-Z\330\354S\234\271"
#"\276\a\6\6\342\355\355M\\\\\34\355"
#"\332\265\263\2678\2022\306\262\376\330\302"
#"\231\353DI\0302d\b;v\354\340\374\371\3634h\320\0Y\226\321\351t\f"
#"\348P\331\366\321\262eK\206\17\37"
#"\216Z\255\346\311'\237T\236\265\34\333"
#"\tJ\206,\313\244\244\244\20\30\30Xd\3539\207\310}\313}3\246\232|v"
#"v6\32\215F1\353\252l\216\eT"
#"\310\310\262\n\25\322}\323\302\274\377\31"
#"tn\370\205\324\243fh\buBk\23\32R\vo\265\204\36\220$P\313\6"
#"\22v\275\303\253\233r\230\367\177\223\0303\362Tp\247\0\0 \0IDAT"
#"\377=\272\5\255g\374\254/\321\312z"
#"$\203\224w\256\27\346y\"\313\262\242"
#"D=\367\334s\254X\261\202\372\365\353"
#"s\363\346M\246O\237N\353\326\255\371"
#"\345\227_\350\321\243\a\301\301\301\204\204"
#"\204\20\22\22Bpp05k\326T\256\5\a\aS\267n]\262\262\262\270~"
#"\375:111\270\271\271\345s\250\341\350H\222Dvv\266\231\247BgI\273"
#"@P\31\260fRc\374;&&\206\272u\353\346"
#"S\26\334\334\334\b\17\17\247S\247N\374\357\177\377c"
) 500
(
#"\315\2325\304\307\307\27Y\331r\246\372"
#"\377\350\243\217r\365\352UN\2348aoQ\4\25\4\241l=\30nnn\214"
#"\0325\212\255[\267\2y\316|\6\17"
#"\36\214\253\253+\373\367\357\307\323\323\223"
#"\316\235;\263c\307\16\376\361\217\177\260"
#"a\303\6\245\255\321\353\365\212E\2223"
#"\265?e\205,\313\348p\200\376\375\373+\177[\352\"\2268\204\302e\2111"
#"\341\6\203\1\235Ng\325#\vT\216Jo\364R\by&\200\6I\17\262L"
#"\306\275\02423\323\356;\323\0\244\274"
#"\203\215\325\350\220\201\224\2531\374\363\231"
#"w\3503\345MzT\223\220]C\371"
#"\317\177\336\342\366\362\311\314\213\271\220\347"
#"\241P2wd!\3132\265j\325b\320\240A|\376\371\347\374\364\323O\f\35"
#":\224\200\200\0\266n\335\312\365\353\327\2310a\2'O\236d\330\260adg"
#"g\243\327\353\321\353\365\30\f\6rss1\30\f\350\365z\245\300]\270p\201"
#"\264\2644\2\2\2\24\307\31\3166\313\322\255[7\316\235;Gjj\252r\255"
#"2\224=\201\300\321)h\340\221\225\225"
#"\305\237\177\376\311\303\17?l3L\355"
#"\332\265\0317n\34\355\333\267\347\177\377"
#"\373\37\37|\360\201\331\3716\316>\271bL{DD\4G\217\03653\355\27"
#"86\226\23\271\306_g\256\17%E"
#"\222$\206\16\35\312\257\277\376\312\265k"
#"\327x\367\335w\361\362\362\342\245\227^2\v\327\261cG\236~\372ibcc"
#"\331\265k\27?\374\360\3M\2324Q\234w9{\273T\32\310\262\254\234Q["
#"\24\207\32\340 \n\227\245]\253\3617%%\2053g\316\320\253W/\263\302U"
#"\231\n\333}\247\304\310\334WVP\203"
#"\332\227\36\217=E\307zU\357\207\322\347-|\251$dY\215$\303"
#"\325\243G\b{f6K^mG\236GB\27\2\332\214g\305\a\317c"
) 500
(
#"\270y\v\356_\5\363\302\342\352\352\312"
#"\300\201\3Y\271r%z\275\236\264\2644t:\0355k\326d\314\2301\254^"
#"\275\232\314\314L\202\203\203\377\226\321\212"
#"W\35\343JY\367\356\335\211\214\214\244"
#"o\337\276\312\312\231\263m\276\364\361\361!99Y8\317\20\b*\30\326f$"
#"\215\377\376\356\273\357\350\334\271s\241}"
#"\205$I4k\326\214\321\243G\363\330"
#"c\217\361\355\267\337\362\335w\337\345\213"
#"\303\364\335\316\322\366\31\323Y\247N\35"
#"\334\335\3359w\356\234\235%\22\224'\326<\3579K\331/K\336~\373m\352"
#"\324\251\303\371\363\347\0317n\34\203\6"
#"\r\312\27f\351\322\2454n\334\230\361"
#"\343\307\23\35\35\315\264i\323\360\364\364"
#"T\306g\342;\224\36E\325)\34B\341\262Up\\\\\\\224\223\240\255\231\213"
#"T\26dI\215$\253\220e}\336j\226\252\nOL\217fD\313\300<\327\356"
#"\222\32\371\276\322eLW\313Q\363\371`\301dB$\0252\206<\205Lr\241"
#"\337\vo\261\344\231\256@\236\271\"\230"
#"+\252III\214\36=\32\177\177\177BCC\271t\351\22\227.]b\324\250"
#"Q$%%\261y\363fN\237>\315K/\275\204\213\213\v\32\215&\237\367A"
#"K\305\313\370ok\3466\316\200,\313"
#"\f\35:\224\37~\370\301\336\242\b\4\2+X\332\340'&&\222\226\226F\223"
#"&M\254v\246\266\332\256\352\325\2533i\322$BBBx\353\255\2678y\362"
#"$YYY\371\342q6$I\242G\217\36\374\374\363\317\366\26EP\216\350t"
#":\247-\363eEvv6[\266l\341\231g\236\341?\377\371\17\177\375\365\27"
#"\267o\337\6\376n\227\364z=w\356\334a\333\266m\f\35:\224\331\263g\363"
#"\331g\237\1\205;v\20\24\17k\n\254\255\376"
#"\301!\234f\200u\307\31\227/_\246^\275z\371"
) 500
(
#"\366vU\246\302&\313\334\367L\b\22\367\35\\ \335w\246\201\3119\\\352<"
#"\27\362\367\335\307K\262*\317\23\241\f"
#"\22\32\344\373\356\345%\311\370R\343\231^\177s\363\346M\236z\352)<<<"
#"\250R\245\n\1\1\1\4\4\4\0000w\356\\\2\2\2\360\366\366f\323\246M"
#"<\374\360\303,[\266\214\227_~\31\265Zmv\316\226\251\227BS\234\305Q"
#"\2065\302\302\302\330\261c\207\275\305\20"
#"\b\00460\355\e\316\236=K\355\332"
#"\265\361\365\365\5\212?a\327\246M\e"
#"\352\326\255\313\356\335\2739|\3700\r\e6\244W\257^V\343r\26j\326\254"
#"\211\233\233\e\27/^\244^\275z\366"
#"\26GP\306\250\325j\202\202\202\24\207Y\225q\374UQ0\216\231RRR\230"
#"7o\36\23&L`\325\252U\374\366\333o$%%\361\362\313/3`\300\0"
#"\305m|||<g\316\234a\333\266m|\361\305\27\324\252U\213\270\2708V"
#"\257^\315?\376\361\17;\247\306\261("
#"\314\305\276)\16\261\302\5\326;\304\37"
#"~\370\201\201\3\a\232i\364\225\311\234"
#"\20\362L\neY\17\367M\n\363\322a@%\253\363\314\f\245\274\355XH\206"
#"\373\0163$\214\2375O\0373`\0$\331\220\347Y\36\303\337aL\262!9"
#"9\231^\275z\221\235\235MPP\20z\275\236\334\334\\T*\25...\324"
#"\250Q\3\235NGJJ\n\36\36\36L\235:\225\273w\357\262b\305\n\263="
#"Y\246\36 \315\322aq\2752}\203\222\"I\22999\270\270\270\330[\24"
#"\201@`\3\323\216\363\247\237~\242w"
#"\357\336\312\337\17\202\277\277?QQQ"
#"<\375\364\323\244\245\245\361\365\327_+"
#"{\230\234u\320\331\257_?v\356\334io1\4\345\200F\243\241"
#"M\2336\354\333\267O\271\346\254\345\276$\30\a\362YYY\314\236="
) 500
(
#"\233\361\343\307\263f\315\32\6\r\32D\333\266m\351\333\267/\2337o&++"
#"\213\204\204\4\222\222\222\30<x0[\267n% \200I\223&\261{\367n"
#"\2326mJNN\16\253W\257\266w\222\34\216\242N$8\214\302e\255ST"
#"\253\325dgg\347\263\317\257T\225^\2IRc\376\251T\367W\274\314\257\251"
#"-\236\313\373Q\335W\310T\344\35\233"
#"\254\312\27\6\340\320\241Cddd\320\260aCrrr\314E\220$3\3576"
#"*\225\212g\236y\206\200\200\0\274\274"
#"\274\360\362\362*T\221*\311\371\17\225"
#"\31c\272\275\275\275i\325\252\25{\366"
#"\354\261\263D\2\201\300\22\323\366i\343"
#"\306\215\364\353\327O\371\273\244m\225\247"
#"\247'\217<\362\b-Z\264`\321\242E\34<x\220[\267n\345\213\2678\223"
#"Q\326\302T\206\311\254\252U\253R\263fM~\373\3557{\213\"(\at:"
#"\235\331Dce(\243\25\211\274\255 \22)))L{m\26\343\307O\304\317"
#"\317\207\370\370x:=\334I\t#I2\257\276\372\"S\247N%:z2\35"
#":t\370\373y\f\364\357\333\217\365\e"
#"\326\361\374\v/\220\230x\213U\237\375"
#"\307\270\321\304<>\361]\36\210\242z"
#"\242u\b\205\313\232\22\25\27\27G\355"
#"\332\265\25W\344F\234e\240oIA\212\346\236={\230={6\335\273wW"
#"\24+\323\260\246\3477\30\225/\255V"
#"\313\344\311\223IMM\345\353\257\277\306"
#"\337\337_\211\3074Ng\3074\37\335"
#"\335\335\311\314\314\264\2434\2\201\300\32"
#"\306zz\353\326-\262\263\263\315L\321K\213\206\r\e2o\336<222\210"
#"\211\211a\355\332\265f\253\376\246&W"
#"\31\31\31|\376\371\347V\337ck\277@a&[\6\203\201\265k\327"
#"\226j\232\212\212QF\225JExx8g\317\236\265\351\261P\364\e\216"
) 500
(
#"\205\245\5L\245\233\364\266#\222\fw"
#"\356\336a\326\254\31\214\373\307\23\270\273"
#"\2732o\326\377\261b\305r\364\367\275LKy\36\323\220\321`\251C\345YH"
#"\251\350\322\265+\375\373\16`\321\302\205"
#"L\2376\223\304\324d\276X\373\245\325"
#"\305\bQ\377\212\216\255rl\253\214;"
#"\204\302e\255\220\234:u\212\260\2600"
#"\263\363\217\234\31[\16+v\355\332\305\224)Sh\331\262\245\331>,SG\30"
#"\306\6\323\262c\317\314\314d\332\264i"
#"\234:u\212\355\333\267\v\345\266\0$"
#"IR\34\214\230\272\315\27\b\4\25\3"
#"Y\226\371\352\253\257x\344\221G\360\363"
#"\363+\365\366\313\370\276\376\375\3733z"
#"\364h\302\303\303Y\262d\t{\367\356U\3427\206qss###\203w\336"
#"y\307\346{\214\233\265-\a\264\306{\246dee1u\352T\352\324\251S\252"
#"i*\n\226{\e\0326lHdd\244M\205R\364\e\216\203N\247\263i\335"
#"\"\372\300\" \201\247\273\aS\247L'\362\241vL\211\236\306\202E\v\250V"
#"\255\32jT\200\1Y\2\320\335\337\233"
#"\237w\224\220q\v\n\30\220$\220\3213t\3300j\324\b\344\255%o1c"
#"r4\355##\254\216\327D\375\313\217-\v:\255Vk5\254-\305\325!\24"
#".\310\357z\327\315\315MqC.0\307X \366\354\331\303k\257\275Fxx"
#"8j\265\332\314\333\212J\245R\224."
#"\243\"f\231\307F\327\357\257\277\376:"
#"\237}\366\31\367\356\335\313\347\6V\360"
#"7\21\21\21$%%q\345\312\25\321\250\t\4\25\214\23'NP\267n\3352"
#"Q\266\300|\302\312\325\325\2256m\332"
#"\20\35\35\215\213\213\v\353\326\255\343\302"
#"\205\vJ\30\215F\303K/\275\204\277\277?\313\226-\263\372>\343\276X"
#"WWW\274\274\274\314\3421m\177\265Z-\263f\315b\320\240At\357"
) 500
(
#"\336=\237<e\211\265\343B\0\352\326"
#"\255\213\213\213\vW\257^\25\375\204\3"
#"c\334\17nz\6\245\21\321\a\26\216,\313xzzR\257~]\276\375f;"
#"mZ\267\240Z`\0\372\373{\360eTH\262\36d\215I~\346\215\327\214\265"
#"*\317,1o\303I\257\36\275\211\217"
#"\217'\361\316]\2324kZ\336\311\251"
#"\264X+\253g\316\234\241Q\243F\312"
#"\337\266\216\2472\305a\24.#\262,\223\230\230Hrr2-Z\264\260\2678"
#"v\307Zgf,\bK\227.%((HQ\256\200\377g\357\274\303\243\250\276"
#"\6\374\316\356\246\27B \t\322\"\204\226\0\22\20\20D:\322;\204&\240("
#"\b\374\244\210\322\"\275Jo\2\212\200\237 \240t\21\244iD\1\245#%t"
#"\4\215\224\20 \4\322\263e\276?6\263n\r\1\222\354n2\357\363h\330\231"
#";3w\346\266s\356=\347\\C\24Ai\346\324VdAi@\27E\221\324"
#"\324T\6\f\30\300\212\25+\360\360\360"
#"\260\32*^F\217Z\255\266\271\21\267"
#"\214\214\214}\320\351t\348p\300\20"
#"I0\247\225\0s\23\23\351\337*\225"
#"\212F\215\32\21\22\22\302\311\223'Y"
#"\262d\211\211p\332\277\177\177\\]]"
#"\371\354\263\317L\356\25\27\27\307\322\245"
#"K\211\210\210`\343\306\215\214\e7\216"
#"n\335\272\261o\337>\22\23\23\r\317"
#"\323h4\214\35;\226\210\210\b\213w"
#"\313\213\376\331<\202\227\364\333\305\305\205"
#"\260\2600\216\35;f\362^\306\177e"
#"\234\237\340\340`\264Z-\377\376\373\257"
#"\275\263\342\224\b\202^\306\332\376\303\367"
#"\34?}\222\211\23'b\360\327\177t"
#"\236\261\377\353ED\217\236t\355>\223"
#"\277b\257\362\303\276\3\334M\22\364\301\321\200S\337-$\242[\27z\f\36"
#"\303\311;j^.S\206\310\310HF\216\30f\305\203K&+\314\373\245\250"
) 500
(
#"\250(^\177\375u\3039c\231\330\26"
#"\371N\341\22\4\201\244\244$\322\322\322\f~E\5\31[{\310L\2300\201\344"
#"\344d\212\27/nP\266\314+\213q%\262\26\345Q\32@\325j5\355\332\265"
#"#44\224O?\375\324\302\264P\346"
#"\277\306Z\266lY\376\371\347\37Y\250\220\221q\20DQ\344\320\241CT\250P"
#"\1ooo g\225\221\247\371\254\210\242H\235:u\350\336\275;=z\364`"
#"\305\212\25\206\215\223EQd\320\240A"
#"\270\270\270\30\314\v\177\377\375w\372\365"
#"\353\207\277\277?K\227.\345\3157\337"
#"d\360\340\301|\366\331g\374\366\333o"
#"\f\e6\214o\276\371\206\270\2708F"
#"\215\32E\307\216\35\251[\267\256E^"
#"\362j\205\v\254\233\221\275\372\352\253\334"
#"\273w\217\270\2708C\32\331\277'\177"
#"\342\342\342\"\217y\317\201\16\201\273w"
#"\357\361\177\253\277f\372\224i\210(2"
#"\203]h\20\37\377Ej\225\bV\257\377\226U#\203X\277\355wn\304\334 "
#">\3\20U\304G\357`\333\261b,\374l9\221\355*q\366\307\203\244\t:"
#"\312\225/O\21\377 \16\37\226\367\304"
#"\313\16\266\2\24\271\271\271\231D\235\315"
#"N\337\225\357\24.Q\24Q*\365\313\247r\307\255\307\374;L\2336\215={"
#"\366P\276|y\223\215\t\215}\1\314\2575\236}\264\26\336=!!\201\216\35"
#";R\271re\346\316\235\213\207\207G\256\275\2173\323\262eK\16\36<(\233"
#"\\\312\3108\b\251\251\251\334\270q\203"
#"\352\325\253\333e\3140~fPP\20\243G\217\246D\211\22,X\260\200\263g"
#"\317\242\321h\0304h\20\345\312\225\243"
#"g\317\236\34:t\210\37\177\374\221^"
#"\275z\21\24\24\204\217\217\17\376\376\376\4\5\0051s\346L\26/^L"
#"\\\\\34\221\221\221\364\352\325\213\206\r\eZ5s\311\313\25.k\277\5"
) 500
(
#"A\240I\223&\34:t\310\344\330\323"
#"f\211e\234\v\311-A\226\307\236\35\205(\360\325\352\25\f\0312\bD\21A"
#"\324\37\23Q\201\233\17\267\177\376\212a"
#"\3\336g\330\247\247\251V\255\24(\25"
#"\250\4\1\4\210\275r\232\342}\272R"
#"2(\210\360\326\375\350\337\277)\356\231"
#"\"\377\334y\263\331\276\355;\16\37>"
#"\234e\304S\31Se\312\330\275\306\226obV\365<\337)\\\202 \260{\367"
#"nz\364\350a\357\2548\34\351\351\351"
#"\314\2301\203\355\333\267S\265jU\213"
#"\360\357\326\"\f\32w\224\306\347\255\r\244O\236<\241[\267nxyy\261|"
#"\371r\303\246\3112\377}/\255VkqLFF\306~\334\270q\3\27\27\27"
#"\212\27/\236+\367\317\356\376\203\306\375"
#"A\265j\325\210\210\210\340\257\277\376b"
#"\331\262e\234?\177\236\262e\313r\372\364i\n\27.lr\235N\2473\271\257"
#"\247\247'\n\205\202J\225*q\360\340"
#"\301\34~\233\234%,,\214\273w\357"
#"\362\350\321#\3031\311rB\26\372\362"
#"\a\251\251\251\270\271\271\311\345\371\34\314"
#"_0\37\377\200@\336l\336\22\24\"Z\201\314-\201t\bj5%_m\307"
#"\300\17\2072z\306'\264\257\32\210V"
#"\360\244\220\237\210\0\370\372{q\367\374M\4t\360\370\37~=|\224x\364Q"
#"\rU.nL\237>\235Y\263f\361\370\361c\233\312\203\214\36\251?2v\257"
#"\21E\321\304:,;\344\v\205\313\\QHJJ\302\307\307\307\2169rL\376"
#"\376\373o\26-ZD\315\2325m\206\344\225\260eBh\r\343\357\237\224\224D"
#"\213\26-\270q\343\6\177\377\375\267\315"
#"(\221\5\265\363U(\24T\251R\205s\347\316\331;+222\300\216\35;"
#"\350\326\255[\256>\343Y#\200\t\202@\251R\245"
#"\350\322\245\v\375\373\367\347\342\305\213t\350\320\201\357\276"
) 500
(
#"\373\16???\226/_nqo\320O\350\214\36=\232Z\265j1`\300\0"
#"\376\376\373o\376\372\353\257\234}\231\34"
#"\246i\323\246|\377\375\367@\326\223z"
#"2\316I\355\332\265\271p\341\202\\\236"
#"\317\310\335\273w\371\353\257\277h\326\264"
#"9\2:\264(P\212\322\204\255\2\2356\25e`0\265\253\205S%\264\4\242"
#"\253\212\330\343\233\309t\24cf\257"
#"A\254\324\201\22\277\317a\320\310\321\f"
#"\0377\236\263\267RpA\177\275\26\r"
#"\236\236\336t\355\332\225o\276\371F."
#"\233l`\334\207\307\304\304\340\353\353k"
#"\230\374\312\356\4Q\276P\270\214_6%%\5///\223\225\204\374Nvf"
#"OSRR\0303f\fu\352\324\311"
#"\361\350\215\306&\211\351\351\351\204\204\204"
#"0t\350Pf\315\232E||<\36\36\36\26&\211\5\265\201\v\202@XX"
#"\30'N\234\260wVdd\n\4\326|XA\37\262z\377\376\3754m\332\24"
#"\225Jeq\336Q&\205\274\274\274HIIa\372\364\351\334\273w\217\320\320P"
#"RSS\371\362\313/\1}>]]]IOOg\364\350\321t\353\326\215\372"
#"\365\353\343\347\347G\211\22%8~\374"
#"\270U\353\5G\241l\331\262\370\371\371"
#"q\356\334\271\2;.\344g\252U\253Ftt\264\303\325;G&>>\236\231"
#"3g\362I\344\30\312\225/\vbf\240\f\224 \202\16\21E\211\306\214\351R"
#"\27D}hx\205ky\206\17\eO\377N\255i\326\240\6\205\213U\344\275\271"
#"\223\351\331\252%]\336\211dH\317&x\241@\24@)\352\373\273w\336y\207"
#"\224\224\24V\256\\i\362|\271\254\262"
#"\346\257\277\376\302\307\307\207B\205\n\1"
#"O\367\323\225\310\27\n\227\361\313n\335\272\225f\315\232\241R\251\nL"
#"\245\261\345\260'\275\377\343\307\217\351"
#"\336\275;III\370\373\373\233\\\227"
) 500
(
#"\223H\313\253)))\4\a\a\363\301\a\0370{\366l\376\375\367_Cd>"
#"[a\346\v\22\251\251\251\362\312\237\214"
#"L\36an\22-\365\227\267n\335\342"
#"\372\365\353\324\251S\307\"\232\236\243\5"
#"o8\177\376<\205\v\27\246e\313\226"
#"\304\304\304P\272ti\366\356\335\313\272"
#"u\353\360\367\367G\243\3210c\306\fZ\265je\b\220\0010v\354X\326\257"
#"_Ojj\252\35s\2375nnnt\352\324\211\235;w\2r\37\230\37q"
#"qq\261\330VF\346?\314\277\307\310"
#"\221#\351\334\2713%K\5\243\300\350"
#"\273\t\200\240C\201\210\350\346G\220\277"
#"/\b\n\275\331\240\340B\311\320\3524n\322\204&u\253\342-\350p\361-A"
#"\303\246Mx\243f(J\364\376_\2"
#"\350\367\353\22\365\373\201\266h\321\202S"
#"\247N\221\224\224d\310\213l\322k\211"
#"\361\367P\251T\206E\35\343\261\302x/[k8\275\302e\\9\264Z\255\325"
#"M \v\2\326\336U\212 \330\267o_\324j5\245J\225B\247\323\345\250\3"
#"\253y\304B\311\306555\225r\345"
#"\312\361\336{\357\221\236\236NZZ\232"
#"\205YMAi\320\346\357\31\34\34\214"
#"J\245\342\346\315\233\26i\vR\235\225"
#"\221\311\v\254\231D\v\202\300\257\277\376"
#"J\373\366\355M\316=\253\351_^\341"
#"\346\346f\330D\266]\273v\264k\327"
#"\216\321\243Gs\340\300\1\326\256]\313"
#"\334\271sy\353\255\267h\326\254\231\305"
#"\265\346\333z8\322\273\31\v+o\276"
#"\371&\273v\355r\250\374\311\344\f*"
#"\225\312\304\215A.cS\214e\242\375"
#"\373\367S\242D\t\302\303\3033C\267"
#"\353\370O\347\322\241A\0\24\b\242^\226\323K\274\nt\2026s\317-\235~"
#"5L\24\21P\"\212\n\24\350C\305\213\2\350P\3537"
#"\347\22\224\b\202@xx8\203\6\rb\302\204\tddd"
) 500
(
#"8l\37h/\314'\352@o\272--\352\30\177'k\201\347\214qz\205\313"
#"x6\362\322\245K\270\270\270\230lFV\32006\207\271}\3736=z\364 "
#"%%\205b\305\212\241V\253M\366\325\312\t\205\307Z\24C\251\322%%%\21"
#"\32\32\212F\243a\324\250Q\4\6\6"
#"\26\30%\313\30\363\216\313\333\333\e\205BA||\274\341XA\374.22y"
#"\201\265\331Zi\303\335\222%K\2\216"
#"\337\376\314'\311\334\335\335\251S\247\16"
#"\235:u\242n\335\272\324\252U\313\302"
#"\241\333\226)\245#a\374N\241\241\241"
#"\304\306\306\22\37\37\357\220y\225y~"
#"\332\266m\313\206\r\e\354\235\r\207F\24E\216\349\302\201\3\a\2302e\n"
#"\205\v\27\316\324\263\24\200N\257w\211"
#"\nT\b\231\236X\n\24\n}\20\f\320\241@\211\211\244!(\21\5\32071"
#"\35\210\372\2652\205\350\2\202\316$mxx8\r\e6\344\223O>1\344E"
#"F\217y\34\203'O\236\20\35\35M"
#"\313\226-\263\275\262%\341\364\n\27\230"
#"\n\375\306a\316\v\"\306\263\23{\366"
#"\354\341\354\331\263\4\a\a\243\321h\f"
#"\307s\2431\231\357\357\")^\251\251\251\224*U\212\22%J\260s\347\316\2"
#"\2757\232\2710d\2747IA\256\26322\271\215y\373\332\265k\27\215\e7"
#"\266Sn\236\35\343\320\332\2225\307\352"
#"\325\253i\337\276=C\207\16\245l\331"
#"\262\324\254Y\223S\247N\31\322Ii\215\373~p\\a\312\307\307\207\22%J"
#"p\366\354Y\331\244)\237\241P(\f\365\20\34\267\16\332\23A\20\230>}:"
#"#F\2140\351\257t\322\247R`X\351R\240\3114\v\24\365f\206(\376\333"
#"\310X\24\221~\30\253\1\202\240? \nz\345K4$\327\377\353\365"
#"\327_G\253\325\32\332\237\214u\353\b\225JEzz\272a\373)x"
) 500
(
#"\372\312\226!]\316f\317~\350t:\36?~L@@\200\3039=\347\25\306"
#"\357\373\347\237\177\262j\325*j\325\252"
#"Ezz\272M\377\256\234\302|\377\24"
#"\343\347\271\271\2711z\364h~\371\345\27\242\242\242\nl\4Ice\270}\373"
#"\366\34>|\330`&$##\223\363X\v\26q\341\302\5\374\375\375)Q\242"
#"\204\341\234\271\200\357HmR\24ERRR(T\250\20iii\354\337\277\237"
#"6m\3320r\344HN\237>\315+\257\274\302\200\1\3X\260`\201\341xT"
#"T\24\0\367\356\335\243X\261b\26\346"
#"\224\216\364~\3064n\334\230\263g\317\222\232\232*\v}\371\bWWWT*"
#"\225\301\227\320\221\353\240\275\2305k\26"
#"\275z\3652\333NG\207q3\0203\377'd\256z\t\202\22\21I\301\322d"
#"\232\24*3\22502\3m\350@\247\327\266D\5zG\260\314\320\362\360_Y"
#"\4\6\0062y\362dy\225\313\bk\223T\261\261\261\4\5\5=\327\375\362\205"
#"\302%\315\370\359r\204\346\315\233\27"
#"\330\216Zz\357\343\307\217\323\257_?"
#"J\227.m\2603\315\253}\26\254\335W2e\2340a\2?\375\364\23\a\17"
#"\36\304\327\3277W\236\357,xzz\362\344\311\23\224Je\201\255\25722\271"
#"\215\271\242\241\325j\211\216\216&<<"
#"\34\27\27\227,\323:\n\202 \320\265"
#"kWv\355\332\305\264i\323\370\355\267"
#"\337\b\r\re\367\356\335\204\207\207\e"
#"\322\275\367\336{,Y\262\4\200\250\250"
#"(6l\330\300\242E\213\350\335\2737"
#"\236\236\236\26\367t4DQ\304\335\335"
#"\235\360\360p\216\349b\357\354\310\344"
#" %K\226\304\307\307\307d;\24G"
#"\254\203\366b\361\342\305\224,Y\222\336\275{\243P(L\373\"#\321"
#"M\20\321\257l\241@Z\325R d\232\b\252\20t`X\3272\\\247"
) 500
(
#"@T\b\210(\20\304\314\357\256\323_"
#"\t\246\326I\205\n\25\242y\363\346\254"
#"[\267N.\37#\214\277\305\266m\333\350\324\251\323s\335'_(\\\202 \230"
#"D\r1>\236_1\237\215\225~\37"
#"?~\234\367\337\177\237\212\25+\342\356"
#"\356\3560\263\24\222\215\353\304\211\23\331"
#"\273w/\207\16\0352\t\305,\341h"
#"\321\301\236\206h\324\271\31\226\350\205\314"
#"hB&\237^\207\324\21J\263T\355\332u`\363\346\215\206\24Z@\213.3"
#"\201\245M\260\16\21\311\226\333\370\236\372"
#"2\326\231\345%{6\30522\5\211\a\17\36\20\27\27G\245J\225\354\226\207"
#"\247\365\311\326\316_\276|\231\215\e7\22\37\37Ohh(\335\273w\247N\235"
#":\26\351\272w\357Nhh(\265k"
#"\327\306\325\325\225\250\250(\22\22\22,"
#"\356\355(\343\2021R\277_\267n]N\237>Mzz\272\235s$\223\223x"
#"zz\222\221\221\341\220u/\267\310N{KLLd\377\376\375\364\356\335\e0"
#"\227[\25\231f\204\231\242\272`\362\307\310\17Ka\364Ga\210D\210Q:\223"
#"c\n\3332\326\360\341\303\271}\3736"
#"\337~\373m\201\332^\311\26\306e\230"
#"\226\226\206\227\227W\266}\266\314\311\27"
#"\n\27\300\245K\227\250X\261\242\275\263"
#"\221g\230;\362I\215\264\177\377\376\204"
#"\204\204\340\352\352\372\334\225\"\247\221\24"
#"Bi\245k\354\330\261\314\2325\313\260"
#"\373\274\261\222\345l\246\6\2\n\203b\225\351>\211B\324e\316:e&\22A"
#"'\3767#%\315R\25)R\210{\367\36JIP\212:\224\206w\327\247\25"
#"E\f\n\230\"\323N@4\264Z\205~\326\n!\363`\246s-z\347Z\347"
#"\371\21222\271\317\235;w\330\267o\37\375\372\365\263k>\236\245\217;"
#"x\360 \37~\370!\36\36\36\334\274y\223\"E\212\360\367\337\177\233\204"
) 500
(
#"\2627\247\177\377\376l\333\266\215\367\336"
#"{\217\23'Np\345\312\25f\316\234\311\355\333\267\35.\344\2755\353\v77"
#"7:w\356\314\366\355\333INN\266S\316dr\232\226-[r\342\304\211\2"
#"U\246\346\355\315\274\256\307\305\3051e"
#"\312\24f\316\234i\217\354\1\226\v\23\242(2z\364h\326\254Yc2Yc"
#"\2163\311i/\202\261l\372\363\317?S\265j\325\347v\213\3117\n\327\317?"
#"\377L\375\372\365\355\235\215<\301\332>V\242(\262|\371r|}}\35je"
#"K\352l\214\243\271\250T*z\365\352"
#"\305\262e\313(T\250\20*\225\312\344"
#"\235\34I x::\303\336\30\322\252"
#"\222\200\v:\235\321\2\227\0\nA\363"
#"\237\367\253\240_\231\322\352\24\270\272*"
#"\364\357.j\321\b\n@\211\250M&%%\211\264\324T4\202\370\237\223\253\0"
#"\351\351\351d\244iIMM'-5\231\364\264\24R\3224 \350\203\305\352\20"
#"3W\330L\243\20\311\310\24dDQ"
#"\344\364\351\323\4\a\a\343\355\355m\227"
#"\347\e\377\333\226O\255t.))\211]\273v\261c\307\16\2325kF\357\336"
#"\275\211\214\214\244{\367\356\234={\226"
#"\301\203\a\23\27\27G\\\\\34\261\261"
#"\261\334\273w\217{\367\356q\347\316\35\"\"\"x\345\225WX\264h\21K\226"
#",!22\222\322\245K3o\336<.\\\270`S\370\263\327\230aM\1-"
#"[\266,\311\311\311\304\306\306\332%O"
#"2\271\203F\243\301\325\325\325a\344\223\274\300|\217?cN\237>MFF\6"
#"\325\252U3\244\261'\306\362Zdd$\v\27.t\230\211{{\"\225\213J"
#"\2452\t\376\362\254\344\e\205K\245R"
#"\221\226\226f\357l\344:\306a\327\215\e\347\322\245KY\261b\5!"
#"!!&\n\216\2751\36L\245\331L\235NG\237>}\360\366\366f"
) 500
(
#"\321\242Exxx\230\4\335\260\366~"
#"\316\200\220\271\364\244!\3\5\242!\\"
#"\253A\363\22\4t\350 \323\376\272D"
#"\261 \202\313\224\345\367C\207\21P\242"
#"\22\325\\\331\365\25\365^\366\301\333\333"
#"\27O/OJ5\31\314\221\353\211h\5\35B\352m\246\364\250\200\273\207\nO"
#"/w<<\275\361\364\360\301\313\263\n"
#"\263~\270\201\26P\210J@g\310\213"
#"\214\214\214~\363\367k\327\256\31&\345"
#"\362\272o1\267H0F\22r\244\277"
#"\267o\337f\360\340\301\354\333\267\2179"
#"s\346\320\266m[F\214\30A\253V\255\250R\245\n\337|\363\r=z\364\340"
#"\203\17>\340\203\17>`\350\320\241\f"
#"\35:\224\17>\370\200\217>\372\210\371"
#"\363\3473r\344H\372\365\353\207\253\253"
#"+K\226,\241w\357\336L\2324\211\t\23&0i\322$\253\302\237=\306\214"
#"\254&\330z\367\356\315\266m\333\f\277"
#"\235m<\220\261\344\345\227_\346\257\277"
#"\376r\30\371$/1\177\3473g\316"
#"\260w\357^\346\317\237\17\330\307\235\302"
#"\226o\277(\2124h\320\200\327_\177"
#"\235I\223&\361\370\361\343\247N\32\345g\4A --\215\344\344d\2\2\2"
#"\236\373>\226N4N\310\225+W\b\b\b\300\337\337\337p,?U\bs\223"
#";\363c_|\361\5\253V\255\242F\215\32\206\315\5srs\343\27\305|P"
#"\325\351t<z\364\210w\337}\227\325\253W\263h\321\">\374\360CRRR"
#"\320\351t&\212\227\343\17\262\212L\23"
#"A\311\\P\277\311 \n\1\235\240E\201>\212\220 \2522\203\3Ie\242C"
#"T(\20u\2\nQ\201NP\223z\351;:\367\371\200\252\203\227\323\257\254\v"
#"\202 rm\347T\352\267\371\207c\207\366P\243H\6\t\367\v\321y\324"
#"PZ\227\367GT\n\210:\201{\307V0\355\335\267\b=\376\a\355\313\272"
) 500
(
#"\360\237\335\267\244\334\311\310\24l~\371"
#"\345\27\0327n\234\355\360\275\271\201\255"
#"U-\251\177T\253\325L\2348\221\270\2708&O\236LHH\b\0\37\177\374"
#"1\335\273w\247n\335\272\0xxx\320\260aC\0326lh\363YR\177;"
#"h\320 V\254X\301\222%K\0306l\30\333\266m\343\300\201\3t\356\334\231"
#"\256]\273\322\255[7T*\225\205\265\204=\4?\363g\272\271\271Q\245J\25"
#"\216\35;F\355\332\265\263\\)\220q\16Z\264h\301\312\225+\t\r\r\265w"
#"V\362\34\343z{\346\314\31\276\370\342"
#"\v\346\314\231c\b\336c\257\t\17k"
#"y\224\216\267n\335\232\255[\267\22\35"
#"\35M\275z\365l^\227\237\221\276IBB\2w\356\334\241K\227.\317\335\a"
#"\345\vi,&&\6\37\37\37\223HL\371\251BX3\1\21\4\1\215F\303"
#"\262e\313X\276|9\325\253W7\331"
#"\311\335\321\224\25\363\301R\20\4\22\23"
#"\23\0310`\0>>>\254^\275\32\205Ba\20\210\234\305\227K\332\331]\24"
#"\305\314\350A\"\202\316\r\225BI\374"
#"\205m\324\253\350\213\267\227\37}\247o"
#"'E\204\244\343_\320\264i\37\376H"
#"\320\207e-V\274\20\e\246\276\303\320M1$\234>H|`\vf\315\34\304"
#"\200\1\357\321\277\177\177foXO\327"
#"\222\256\\\215KC\241\24IW\27\247"
#"\325\373\243y\257\177\177\372\277\373\36\375"
#"\373\277\303\370\3453\251\353\23\313\345\177"
#"\223A\324\352u-Q\212d$#S\260\221\6Jc\263\35{\365/\346}\270"
#"\324/\356\336\275\233.]\272\360\332k\2571s\346LBBBHMM\345\343"
#"\217?\246m\333\266\324\255[7[a"
#"\353\255\255\242\r\348\20\245R\311\302\205\v\1}\350\365Y\263f\21"
#"\e\eK\353\326\255\271q\343\206\305\265y\365m\214\307\3k\1\6*W"
) 500
(
#"\256\314\305\213\27\r\326+\262\262\345\334"
#"\350t:\374\374\374HLL\264wV"
#"\362\34c\31h\377\376\375\274\372\352\253"
#"\370\372\372Z\324\373\274\16lcn\316lT>/I\0\0 \0IDAT"
#"\376\334\271s\347\262y\363fn\337\276"
#"\235'\371q$\214\373\233\207\17\37\32\302\301?o\37\224/V\270\\]]y"
#"\374\370\261\275\263\221k\230\317:H\244"
#"\244\2440u\352T\332\266mk\21\321\311\221W\270\4A0\330\5'$$0"
#"t\350P:t\350@\203\6\r(U\252\224\205?\227##\240C\213\2\245\264"
#"\242$\0nJ\264\17N\360~\267\356<\251\362?>\354\224\316\3473\372Q\254"
#"V=\3464\256O\321{\363\330\361\353M^\357\30B\365\200d.\334\272O\267"
#"*\301\24\363jM\360\203wx\247\317"
#"G\274\36\354\205K\351\252\f\e\330\225\215?\327\a\1t)\2\236\36\267Y?"
#"e0\177\a\27AD\201\253\n\356\36"
#"\377\216\303)e\30\35\342\211\200\336\244"
#"\20QZ\345\222\221)\330\354\335\273\227"
#"7\336x\303\244\37\312K\301=+\v\205\230\230\30\26/^\314K/\275\304\316"
#"\235;\r\347RRR\0307n\34\355\333\267\247Q\243F&\327\232\377\333\370~"
#"\266\336\351\203\17>`\345\312\225,^"
#"\274\230\341\303\207S\261bE*T\250"
#"\300{\357\275\307\264i\323\20\4\201y"
#"\363\346Y\3447\26717\2654/\237"
#"\322\245K\243P(\270v\355\32\257\274"
#"\362\212\23\372\370\312H\210\242H\341\302"
#"\205\251P\241\2\a\17\36\244M\2336"
#"\366\316R\236`^_\327\255[\207\273"
#"\273;\3\6\f\0\260\350\e\314\377\346"
#"6\346\1\313\314\237\353\347\347G\227.]\2304i\22\253V\255*P\355O\222"
#"U\25\n\5\337\177\377=\343\306\215{\241\3739\375\24"
#"\270d\233\337\250Q#\207\27\316\237\27ss\17\320\357"
) 500
(
#"m5t\350Pj\324\250a5\324\252#5\bs\363@\251\2K\277\343\343\343"
#"\211\214\214d\325\252U\250\325j\\]]\r\3279<\242\2%:}<\f\235"
#"\2769\251\24:n\236\330\305_\36\235"
#"\371f\303R\246\317Z\311\371\v\a\351"
#"\37\356\6nU\350\321\246<\277n\333"
#"\217\b\\\371\355\a.\374\343A\2170"
#"\25\312\340\16\374\260w\3\376\321+X\264p.S\a\365\244\334K\225\3502i"
#"#i:\35\n\245\e*\327x\376\330\274\206\5\v\26\260h\306t&O\231\301"
#"\327O\32\360\313\201\0354/\351\212V"
#"\n!\253\370ocC\31\231\202\312\235;wHLL\244B\205\n@\336\v3"
#"\346\317\222\3724\255V\313\341\303\207Y"
#"\270p!\255[\267f\344\310\221&\351]\\\\\308p \215\e7~j^"
#"\263\n\302a\314\200\1\3h\322\244\211"
#"\311s\374\374\374\2302e\n\365\352\325c\314\2301\234={6\317\307\16cE"
#"\321Z\371t\350\320\201\337~\373\r\220W\270\234\31\251\334222\fc|A"
#"\300\270\276n\333\266\215\213\27/2l"
#"\3300\2234\326\242u\346%\346\321\242"
#"\215Q(\24T\257^\235\262e\313\262"
#"e\313\26\247\230\b\317)$\331u\317"
#"\236=\274\361\306\e/\374\336N\243p\331zQ\255VKjj*>>>\371"
#"\262#\266\246Hi4\32\336}\367]"
#"n\336\274I\261b\305\354\224\263g\303"
#"\334\224\306\270qgdd\360\312+\257\320\265kW\246N\235JZZ\32J\245"
#"\322\342\36\216\330\320E\1\320\t(\4\35:\205\26\320\233E\246$< \260\\"
#"E\212{\352\20\320Q\242\354+T("
#"\246\17%\332\374\335\267q\277\362#\321"
#"\361\311\374\2743\212\302o\366\340\337\253W@T\20P\273\25\333\376L"
#"&%%\215\v\273\26\323\266q\b'\26\216f\316\376XD75\311\211"
) 500
(
#"!L\376\351/\222\223SH\276\261\237"
#"\246\325\312\322\254^kj\207\371\2:"
#"\224R\30y\21\234\250y\313\310\3448\242(r\346\314\31BCC\r\346\346\366"
#"\26l\244>l\362\344\311\254\\\271\222"
#"i\323\246\31\224 \343|\271\270\270d"
#"{\2570k\343\236\255\261\260j\325\252"
#"\26\307\274\275\275\351\324\251\23={\366"
#"d\376\374\371\254^\275:[\317\315\212"
#"\234\374\306~~~\24+V\214\350\350\350|9\306\0274J\225*EBB\2"
#")))Y\246s\264\261\376i<\315\314W\255Vs\350\320!Z\265je\221"
#"\306\336\201\316\236\366|ooo>\371"
#"\344\23\316\237?\317\376\375\373\363];"
#"\264\25\261U\20\4\36=z\304\375\373"
#"\367)_\276\374\v\277\267\323Hd\266"
#"\204m\255Vk\342\364\233\327\366\257\271"
#"\215y\1\253\325j\336\177\377}bb"
#"b(W\256\34\32\215\346\251\346$\216"
#"\216B\241\340\311\223'\324\252U\213n"
#"\335\2721s\346L\264Z\255\211\203\273"
#"\361\322\256#\275\247\200\16\24\2Z\235\"3B \210:\0017WWbc\357"
#"\220\254\323\357\225\205NCrr*\0"
#"^!\r\251\31\364\204\257\326\177\315\301"
#"K\201\214\237\365)\177\376\262\211m\237"
#"\16\245\357\202}\206\20\363a\255\207\260"
#"v\303\36z\225O\347r\364\277\b\242\e\n\\\20\265\"\202\240AW\246);"
#"\277\32\307\305\305o\361\321\2677\r\241"
#"\343EA\203V@\336\207K\246\300a\334\377GEE\341\352\352\312\eo\274a"
#"8o\356/\224\233y0\377\375\360\341C\276\371\346\eZ\264hA\307\216\35Y"
#"\263f\r^^^vYu\263\226\327\360\360p\326\256]\213\253\253+\21\21\21"
#"\34=z\224\264\264\264\347\372V9\375\215#\"\"8}\3724\227.]\312"
#"\261{\312\344\r\3462Y\305\212\25y\360\340\1\361\361\361Y^\347H\343|"
) 500
(
#"v\260\225_\351\370\250Q\243h\337\276=\r\0324\310\313l\345\30\242(2x"
#"\360`>\373\3543\233\347\263\372\355\310"
#"\230\227\235\361\357\273w\357\"\212\"/"
#"\275\364\222\341\330\363\276\233\323(\\`"
#"\275Bo\334\270\221\267\336z\v\260n"
#"+\357\354\230wVS\246L\341\304\211"
#"\23\204\204\204\220\221\221a\262G\2023"
#"Ups\224J%\211\211\211\324\251S\207\372\365\3533}\372t\212\26-j\341"
#"\320)\375\333\261\320\241P\200\210\26\21"
#"P\353\264\224\253\327\226\340[[\0301"
#"a5\273w\375@\237Z\345\3511\373\20\242\250\5eq:7y\231\357\247}"
#"\312\343\260n4\256\344A\272\340K\345"
#"rnl\30\331\232N\223\326\263\373\307"
#"=\354\372q\27;\346\f`\356\245\3024hP\26QH\aA\203R\324\242\313"
#"\334\\\331\275F_>\37Z\237/\206\217\342\350\243\314M\225Q\351W\272dd"
#"\3629\266L\251\23\22\22\210\211\211\341"
#"\225W^\261z]N\217\17\326V\360\215\177\237={\226>}\372\360\350\321#"
#"\326\257_O\315\2325M\362a\257>\315\232b\324\273wo\226.]\312\2325"
#"k\30:t(qqq\206sO\313\247\371{\347$\225+W\346\352\325\253/"
#"\264\17\216L\336cM&{\373\355\267"
#"\371\366\333o-\322:\336\330\376|\230"
#"\277\307\365\353\327y\370\360a\226\221E"
#"\35\35A\20\b\n\n\342\275\367\336c"
#"\356\334\271\26\3330e\245\2648+\242"
#"(r\357\336=\202\203\203-\374o\237"
#"\a\247R\270\254\221\221\221\341t\221\355"
#"\236\5c\363\273+W\256p\360\340A*T\250`\210H\350\314+[\306H\357"
#"\230\234\234L\355\332\265Q(\24\34>|\30ooo\213\3509\216U\306\n\275"
#"\357\226\250\325\227\5 \2525\270\224l\316\302\257&q"
#"dN\177\332\266\353\300\357E[0gxK\375{\b"
) 500
(
#"P\247\307[\24wK\247\370\233\365("
#"\245\322P\354\245\0202\302\273\21\365\315"
#"B\256/~\233\266m\333\322\276];:M>\311\302\315\e\350W\273(B\272"
#"\206t\255\16\r\2\202\240\267\201\27P\320\"r:\315|v0l\302j\36\223"
#"\31+C\212V(#\223\217\261\325/\\\276|\31___\2\3\3M\322\347"
#"V\337ak\354Q\253\325\364\355\333\227"
#"o\276\371\206m\333\2661t\350P\2\2\2,\362l\257>\334\332D\226$X"
#"}\376\371\347|\364\321G\214\349\222\311\223'gk\322+7\307\340W_}"
#"\225\353\327\257\223\224\224\224+\367\227\311"
#";\334\334\334\250X\261\"\247N\2352"
#"9\356l\262\214y\344P\363\366,\212\"7o\336d\316\2349\314\2337\317\256"
#"\333R\274\b\306\357\325\261cG\16\37"
#">\314\335\273w\255\246qL9\355\371\320\351t\34;v\314$F\304\213\324Q"
#"\247,}\351\305\37?~\214\267\267\267"
#"\205\351Y~C\20\4n\335\272\305\333o\277M@@\0>>>&\215;?"
#"Tli0W\253\325\370\371\3711z\364h\326\255[Gtt4\336\336\336&"
#"\2016\34M\261\26\25 \210JD\24\210:P\241%]\235A\3317Gr\351"
#"\326m\376\375'\206\323?~N\305\"z\37/\1\20\342bI\363\250J\304\233"
#"UAT\361R\361 \256G\307\321\350"
#"\255a\34\277\37271\377\334\344\357\230"
#"[\304\374\363;\303\332T\307\r\21\235"
#"\333\313,\331\261\203!\365J\200(\202"
#"\bZ@\364\257\315\256\243\377\262e\\"
#"[<\244\357\242\310\214V(#\223\217"
#"\261\25\1\360\310\221#\26Q\320r;"
#"\340\202y\24\301\250\250(\306\216\35K\337\276}\231:u*nnn\26\376\253"
#"\366\36\257\314\243\4\202\351x\22\32\32\312\247\237~"
#"J\351\322\245\231:u*\307\217\37\177\352w\314\255"
) 500
(
#"w\322\351t\364\354\331\223\215\e7\346"
#"\312\375er\ak\246fJ\245\222\260\2600.]\272d\210\260lo\377\312\347"
#"\301|\325\303\332*\317\260a\303\230={\266!\244\2703b\376^\213\26-b"
#"\301\202\5\334\277\177\337\"M~\211$"
#"*\212\"\337~\373-\355\332\265\3r\306\32\301\341\25.kZ\263\364\342QQ"
#"QT\257^\35\17\17\17\233\327\345\a._\276L\227.](^\2748\236\236"
#"\236&~[\371\1c%J\20\4\322\323\323\361\360\360`\342\304\211|\365\325W"
#"\2349s\306\240d:\212\240b\212\16\24\231\312\215B\207VT\202N@)\202"
#"\177PqJ\226.\205\237\213\210\2%\210q|?w\6\335\336\235\210\252N\37"
#"\32\225\0\4P\247\246\243r\321\327Y"
#"\367\300\322\224*]\232\22\245JP*\3003s\311J\201\2%>AE\361u"
#"\311\364C\21\364A2\4@\b(A\351\342A\270*2\353}\376\251\37622"
#"6\2616\b\36>|\230\252U\253Z\214\v\346\023599F\230\337w\331\262"
#"e\354\330\261\203\1\3\6\320\254Y3<==-\4\22G!+S Q\24"
#")Y\262$\375\372\365#,,\214\345"
#"\313\227\363\343\217?\232\244\317\253wQ"
#"(\24\4\4\4\340\353\353\313\265k\327"
#"\362\344\2312/\216\371*\264T\277\312\225+Gzz:7o\3364\244\263\267"
#"\211\355\363bK\36\371\341\207\37x\355"
#"\265\327(\\\270p\36\347(\3471.\2232e\3120p\340@&O\236\314\275"
#"{\367,\322:\226|\366|\334\272u\vQ\24)]\272\264\325\372\373<8\274"
#"\302ekFP\24E\\]]IMM\265\30 \214\3239;\31\31\31\364\350"
#"\321\203\222%K\32\224\216\374\2065AH\255V\343\351\351\311\244"
#"I\223\330\260a\3\347\317\237G\251T:`\371\352\20t\2\"\n"
) 500
(
#"\0044\200\2Q\320!\n\31\372\0\26\220\0315P\201\b\350\4\35\347v.\341"
#"\200{=\226/x\eO\21@C\265\352\341<|\370\220;w\356\350W\257P"
#"\2305N\35:\264\0\b\202\0162\25-c\273A}p\302\314\253\244\360\3602"
#"2\371\30\363\376 --\2153g\316P\267n]\2134\346\203eN\365!\306"
#"\367=t\350\20\35:t \200\305\213\27\233D\32\314M\377\246\27%+"
#"\23A\351oDD\4_\177\3755\247O\237\246e\313\226\6\337\256\274T U"
#"*\25\225*U\342\364\351\323h\265\332"
#"<y\246\314\213ck\242\324\327\327\327\302\27\310Z:g\300\270\r\350t:v"
#"\354\330\301\211\23'^x\357&G\300"
#"\274\357\24E\221*U\252\340\345\345\305\321\243G\1L\342\t8+R\31\352t"
#":.^\274H\361\342\305\r\21\320sb\221\303\341%2[v\343\311\311\311$"
#"''S\274xq\223\364\316\330P\263b\307\216\35h\265Z|}}\r\3L"
#"~Z\335\222\260&\b\245\247\247\343\356"
#"\356\316\210\21#\230:u*\205\v\27v83J\21\5(D\4\21DT\372"
#"\325&\21\4Q\245\377\213>\230\206V"
#"\0A'\242\240\30\23\16\336\343\341\301"
#"\r\274ZD\332\234X\205\227\2677\351"
#"\351\351\244\246g\37478a\34\20E"
#"\2417F\24\340\277M\215\25 \202\310"
#"\177\n\230\376J]\3465\262@\"\223"
#"\2771\357\a\177\377\375w\312\225+\207"
#"\267\267\267E\32k\23s9\225\207\307\217\0373o\336<~\376\371g6m\332"
#"DDD\204S9\221?K\336&L\230\300\362\345\313\231>}:\363\347\317\177"
#"\346\353_\4A\20\b\17\17\347\301\203\a&\301<d\34\227\254\332ZDD\204"
#"\305\212\251\263b\334\6\264Z-\213\27/6l"
#"*\356\314\21\374\300\366*\370\2349s8r\344"
) 500
(
#"\bG\216\34qZ\3774c\214e\317s\347\316\321\264iS \347dn\247\372"
#"B\306/\374\340\301\3\22\22\22(W"
#"\256\234\35s\224\263\2307\302\357\276\373"
#"\216\251S\247R\275zuC\220\214\254"
#"\322\3477\4A\277\347\230\277\277?\315"
#"\2325c\345\312\225\370\371\371=\265\3\313K\301F\377$\275\2$=U\24L"
#"N\"\bJ\224\0\n\341\277\303\n\375"
#"?\f3\364\350\367\336\21\265\222\262$"
#"b\334<\5\343\25+\343\327\23\364\2013L_Y\n\"c\271\227\231\214L~"
#"CjC\17\36<\340\356\335\273\324\252"
#"U\353\251\327\330\352#\314\375H\262\323"
#"\307\216\37?\236!C\206\20\30\30\310\224)Spww\317f\316\235\23A\20"
#"(S\246\f\237|\362\t\205\v\27\246c\307\216l\336\274\331$Mn\215M\222"
#"\340\323\246M\e~\373\3557\233\253\\\371}lt&\2366\0367j\324\210\375"
#"\373\367\3\316]nR\3365\32\r\v\26,`\324\250Q\206s\3164\371\362\254"
#"DDD\260|\371\362\247\246s\246\262\335\265k\227\311~i9U^\16\257p"
#"\331zQwww\253J\2103b\315Ln\323\246ML\237>\235\352\325\253\e"
#"\216I\347\215\203G\24\4DQd\320"
#"\240A\304\307\307\263j\325*\213M\256"
#"\255-w;\v\306\312c\357\336\275\331"
#"\265k\227\305q\31\231\202NV\16\365"
#"R\333\377\352\253\257h\327\256\235\311v"
#"\22\331\271\257\371\275\314\3I\330\272\327"
#"\236={\30=z4U\253Ve\351"
#"\322\245\364\351\323\307\344>\371\265\375J"
#"\375mPP\20\357\276\373.+V\254 &&\206\0313f\30\366\311z\332\330"
#"\364\274\337F\272opp0e\313\226e\313\226-V\357\227\237\277\177~\243R"
#"\245J\334\272u\213G\217\369m\271\31\373\241\257"
#"[\267\16\265Zmu\203\343\374H\365\352\325i\332\264"
) 500
(
#")\213\27/6\34\2636!\356\250\376y\346\371\211\213\213#!!\201\212\25+"
#"\346\370\263\34^\341\262\265\222\361\307\37"
#"\177\320\254Y3{d)\3071\257\210\2336mb\352\324\251\324\250Q\3\235N"
#"g\260\215\225\376\212\242\230/\226o\263"
#"\213F\243\341\311\223'\f\37>\234\344"
#"\344d\276\376\372k\n\25*d\325\257\317\31\225P\251\243vqq1\3541\343"
#"\254\357\"#\223\323\330\212\0f\314\251"
#"S\247\b\v\v\263\272\215DV\230\337"
#"\323\332\344\227y\232\214\214\f6n\334"
#"\310\336\275{i\322\244\t\335\273w7"
#"\351\217\214\363\234\0371\367g\b\n\n"
#"\342\343\217?\306\307\307\207\245K\227r"
#"\362\344I\253\327\275H\24:k\nU\371\362\345IOO\347\356\335\273V\3131"
#"\277~\377\374\206\277\277?\205\v\27\346"
#"\362\345\313\317\324v\35\5\343<\307\306"
#"\306r\372\364i\272v\355j\357l\345\31\n\205\202\267\337~\e777\226-"
#"[\6X_\321\313\316$\226=0\317\353\321\243G\251T\251\22...9\376"
#",\247\221\332\315\a\302+W\256\2308$;;R\243=w\356\34#G\216\344"
#"\325W_\265\250\240\306J\226N\247+0\3\212$l\245\244\2440d\310\20\342"
#"\343\343\331\270q#*\225\312$\235\264"
#"\362\347H\2159\273H\357\330\254Y3\266n\335j\357\354\310\31084\306m<"
#"##\203K\227.Q\251R%\24\n\3053;8\233\a\325\310\252\377\370\373\357"
#"\277\351\320\241\3W\257^e\361\342\305"
#"\264l\331\322\342\36\220\277L\206\214\311"
#"\352\375\206\r\e\306\314\2313\231;w.C\207\16%99\331\344:c\245\371"
#"E\277\217(\212\24.\\\230\200\200\0"
#"n\336\274i\341\260\237_\277\177~D\20\4Z\266li\b\276 \35"
#"s\6\214\373\231{\367\3561k\326,F\214\30\221+\253#\216\214 \b"
) 500
(
#"t\350\320\201\3\a\16\220\230\230hr.;\223X\216\202Z\255F\24E\274\274"
#"\274rE\216tx\205\313\326\340\251P"
#"(\362ET\24\t\351\375\376\357\377\376"
#"\2172e\312\230\f\374\306\202\200\361\300"
#"\345\214\212\305\363\"\212\":\235\216\344"
#"\344dF\215\32\305\332\265kIMME\251T\32\276\235T\37\34\2651g\205"
#"T\226\36\36\36$%%9\345;\310"
#"\310\344\6\326\314\205\215\217\305\304\304\220"
#"\226\226F\271r\345\236+\232Tv\225"
#"\200Q\243F\261`\301\2\326\254Y\303"
#"\204\t\23\262\274G~\351\233\263R$"
#"\255\371\272\25*T\210\215\e7\322\243"
#"G\17\206\f\31\302g\237}fq\335\363`>\336I\367k\325\252\25\a\16\34"
#"0L\266\3118'\356\356\356T\251R\205\303\207\17\333;+\317\204q{\2377"
#"o\36\215\e7\346\345\227_.\220\343"
#"\367K/\275\304\330\261c\2318q\242"
#"\311d\213\255>\321\221\332\253\224\227\207"
#"\17\37\22\23\23C\365\352\325s\245\f"
#"\35^\341\2\313\316z\327\256]4j\324\310>\231\311%DQ\344\243\217>\342"
#"\217?\376 $$\304\340\237fn\373\232\337\24\315\354b\\\a\236<y\302\350"
#"\321\243\231?\177>\202 \30\224.c\241\307\221\32sv\220\362\256T*Q*"
#"\225\371\306?QF&'\2616x\357\337\277\237\316\235;\277\320\352RVAw"
#"\326\254YC\273v\355\250W\257\36\223'O&000\333\371\314/X\353S"
#"\2632\345\256W\257\36\37\177\3741\356"
#"\356\356\264i\323\206\323\247O?\327s"
#"m\225\213\361\3616m\332\310\233!;"
#"9\202 \360\346\233or\373\366m\216\35;f\357\354<\23\242(\362\363\317?"
#"\343\345\345E\343\306\215M&\307\v\0325k\326$!!\201\213\27/Z"
#"\234s\6\223\353\357\277\377\336j\204\331\234\302)\24.s\36<x\200\227"
) 500
(
#"\227W\276\362c\222\224\255\260\26002"
#"22L\224\ac\363A\343\212\352\210\0256\267\21E\21\255VK\203\6\rh"
#"\320\240\1\323\247O7\354\317%ut\316lnY\256\\9\\\\\\\270p\341"
#"\202\275\263\"#\343P\230\257\370\3\\"
#"\275z\25???\374\375\375_\250\315"
#"[\273\366\374\371\363\214\0325\212\224\224"
#"\24\266l\331B\207\16\35\360\367\367\177"
#"\356g8#\346\276\27Y\2451\0270+W\256L\377\376\375\331\274y3\2337"
#"of\356\334\271$%%=\223 j\355\231\346\302Z\2312ex\362\344\t\17"
#"\37>\314\366}e\34\v\251N\204\207\207s\345\312\25\203/\2633p\364\350Q"
#"\242\242\242\2302e\n\205\n\25\312\226"
#"\317i~f\331\262e|\375\365\327\234"
#"={\326\342\234\243\232\\\v\202\300\365"
#"\353\327\361\364\364$(((\327\236\343"
#"\24\32\213q\a}\363\346M\334\334\334"
#"\b\16\16\266c\216r\226\321\243Gs"
#"\370\360a\302\302\302\254\256lX\363\341"
#"r\306U\234\27\301\274\201>~\374\230"
#"\346\315\233\323\244I\23\246L\231\202\253"
#"\253\253a\245K\372N\316\366}\244\374"
#"\252\325\352\\q\330\224\221qf\314'"
#"\232n\334\270\301\301\203\a\211\210\210\310"
#"\321\347\244\247\247s\370\360aV\257^"
#"M\265j\325\30<x0\256\256\256\317\354\23\226_x\332XcM\3004>\346"
#"\351\351\311\264i\323(V\254\30\23'"
#"N\344\316\235;/\364\215\314\363S\250P!:u\352\304\246M\233d\313\0'"
#"E\252;\225*U\342\265\327^\343\273"
#"\357\276\263s\216\262\317\222%K\350\325"
#"\253\227\341\267\243)\23y\215\247\247'"
#"S\246La\336\274y\304\304\304\230\234"
#"s\324os\347\316\35\16\348@\327\256]s5\217N\241p\31\177\200G"
#"\217\36\241P(\360\361\361\261c\216\236"
#"\17\343\31Z\351\337w\356\334!**\212"
) 500
(
#"2e\312\220\221\221a8okf\317\332\277\v\2\326\314Y\22\23\23i\326\254"
#"\31\215\e7f\336\274yddd\230"
#"\330\362?\255\3418\3327\224\362\373\362"
#"\313/\23\e\ek5\177\216\226g\31"
#"\231\334\306\334\217\b\364\e\213^\276|"
#"\231\320\320\320\247NN\330j3\326\216?y\362\204\21#F\360\305\27_0{"
#"\366lz\367\356\r<\233\240\340\250B\305\213\220\325;Y;g~L\251T\322"
#"\247O\37F\214\30\301\360\341\303Y\264"
#"h\221\3055\317\342\343a~\377\242E\213\22\20\20\300\225+Wl^#\367\235"
#"\316A\305\212\25IJJ\"66\326f\32{\225\245\361s5\32\rK\227."
#"\245u\353\326T\251R\305f\272\202\204"
#"\364\336E\213\26\245v\355\332\354\333\267"
#"/\313ty\215\255\347\236={\226\362"
#"\345\313\343\351\351\231\253\317w\n\205\313"
#"\30\363\310t\316\204\261C\267 \b\304"
#"\306\306\322\253W/J\224(\201\207\207\207a\20Q(\24h\265\332|9p\347"
#"4\217\37?\246C\207\16\334\275{\227?\377\374\23OOO\223\340\"\266p\224"
#"\320\372\326:\2007\336x\203S\247Ne\271\332YP;t\231\202\207\265v\234"
#"\221\221Att4\365\352\325\2638g>1em\205\306\33476==\235y"
#"\363\3461p\340@\336\177\377}\326\255"
#"[\207\233\233[\16\277I\301\303<\322n\251R\245\330\262e\v!!!t\351"
#"\322\205}\373\366\31\314\307\262\362\3610"
#"\356\363l\365}m\333\266e\317\236="
#"6\323\310}\247\363\320\263gOv\356"
#"\334\311\375\373\367\35&\330\202y\235|"
#"\362\344\t?\374\360\3}\372\364\261\350"
#"\243\n\232\5\222\204\361w\30:t(\217\36=\342\333o\2775IcO\377-"
#"k\317\375\365\327_Q\251T&q!r\253\354\354"
#"/q>\3\32\215\206\303\207\17\323\256];{g\345"
) 500
(
#"\271\221\n\374\376\375\373\274\365\326[x"
#"zz\342\357\357\217F\2431\31P\224"
#"Je\201\f\216\361<\304\305\305\21\31"
#"\31\311\316\235;\371\353\257\277\360\362\362"
#"\0020\371~\216\332!Zs\4\27E\21\215F\203\253\253\253IZc\341EV"
#"\306e\n\22\346\203\364\206\r\e,L"
#"\tm\205\37\2666\300\e\267\377\343\307\217\323\261cG\2\3\3\2319s&\341"
#"\341\341\271\365\32\5\16[>`\355\332"
#"\265c\362\344\311\34:t\210\210\210\bn\335\272\5X*h\346A3\314\25e"
#"c\334\334\334\250V\255\32?\377\374s"
#"\226J\266\334w:&\306\343_\241B"
#"\205\b\f\f\344\342\305\213V\333\256="
#"\312\320\370\231\t\t\tL\2312\205E"
#"\213\26\331\254\223\5\265\236\31\177\203\321"
#"\243G\363\323O?q\344\310\21\273\372o\331\222\3652228w\356\0345k"
#"\32649.\a\315@\377\21\222\223\223s}\331/\267\220\6\220\330\330X\"\""
#"\"pww' \0\215FcQ\300\216\32\305\305\321\220\202\212\4\4\4\360"
#"\321G\37\261d\311\22n\336\274iQG\2147\215v$\314\3\1H\177k\326"
#"\254\311\361\343\307M\322\310\365A\246\240"
#"b\\\367o\336\274\211\273\273;\305\213"
#"\0277\34\263\265\222e\214\371\271\304\304"
#"DF\216\34\311\356\335\273\331\275{7}\373\366\245L\2312\16\327G8;\266"
#"L\16\253V\255\312\264i\323X\274x13g\316d\314\2301\26\301\241\314\225"
#",seZB\262X\250T\251\22w\357\336%11\321B\b\266\25\345P\306"
#"\276\230+\331\322\337\16\35:\360\350\321"
#"#\376\374\363O\213\264y]~\306\317MLLd\312\224)\274\365\326[\204\206"
#"\206Z\235T(\310\365\313\374\e\364\352\325\213]\273v\331M~\261%"
#"K\253\325j\266l\331B\213\26-(\\\270p\236\344\305\251\24\256'O"
) 500
(
#"\2368\245\357\26\230\16 \335\272u\303"
#"\307\307\207\300\300@\213h<\262\242\365"
#"\354H&A\201\201\201DFF\262|\371rn\335\272\205R\2514\244\221|\273"
#"\34\301\214\320\30[3\3605j\324\340\310\221#\2064P\260}\370dd@?"
#"q\22\35\35M\331\262eML\376l\255~\330\22\326\317\235;\307\244I\223h"
#"\335\2725\23'N\264)\310\313\344\34\326\204eA\20(]\2724\23&L "
#"44\224\211\23'r\376\374y\253\345"
#"\221\35a\273t\351\322(\24\n\203\263"
#"\376\323\352\204\214\375\2616Q\"\225O\335\272u9|\3700Z\255\326\344x^"
#"\227\237q\377\22\35\35Mbb\"\265"
#"k\327\266\232\37\271~\351\221\276A\263"
#"f\315\250U\253\26\243F\215\262[>\254\365\31w\357\336%!!!O7\251"
#"v,\351\363)l\332\264\211\366\355\333"
#";\235\260i\334\0\177\373\3557\342\343"
#"\343)R\244\bj\265\332\352r\2713"
#"o\340k\17\244\357\224\226\226F\321\242E\351\335\2737\223'O& \300P"
#"W\264Z\255\303n\216i>\253\v\220\232\232jbRh>\203/\327\r\231\202"
#"Hbb\"W\257^\245n\335\272\206c\326f\227m\tf\242(2g\316\34"
#"\26,X\300\310\221#i\334\270\261\311"
#"\304\214L\356\221U\231\274\364\322K\274"
#"\363\316;4l\330\220\351\323\247\263m"
#"\333\266\247\336\307\330\344\320\370\236={"
#"\366\344\207\37~\2608.\367\231\216\207"
#"\265\325-c\202\202\202\250W\257\36\273"
#"w\357\266{\250xA\20\370\363\317?Y\277~=\313\226-\3132]A\342i"
#"2\225(\212\324\257_\237\370\370xn"
#"\334\270\221G\2712}\276y\231\374\373"
#"\357\277\374\366\333o\274\363\316;y\232\27\247R\270t:\235S\356\261$"
#"u&QQQ\f\35:\224\360\360p\23e\313\334&Y^\226~v\244"
) 500
(
#"o\234\236\236N\371\362\345\251\\\2712"
#"\353\327\257\247P\241B\b\202\340\260\312"
#"\226\204y\247\20\20\20@`` \347\317\237\26707\224\221)H\30O\232\374"
#"\364\323O\264o\337\336\344\270\265\331e"
#"km}\317\236=t\352\324\211j\325"
#"\252\361\365\327_S\242D\t\213\264\216"
#"\334G\344W\214\313\257I\223&l\334"
#"\270\221\333\267o\23\21\21a\"\240\231"
#"\227\225-_\36A\20x\375\365\327\371"
#"\365\327_\r+#\362\352\226c\222\35"
#"\205\270F\215\32\\\275z\225\344\344d"
#"\273\6=\271q\343\6\v\27.d\352\324\251&\253\353\5\275\317x\232)\267 "
#"\b\24)R\204)S\2460w\356\\"
#"\356\336\275\233\207\2713\315\237\364\367\350"
#"\321\243&Q\t\315\317\27\370\240\31\17"
#"\37>\304\313\313\v\17\17\17\3031g\252\350QQQ|\370\341\207T\255Z\25"
#"\205BaR\tt:\235\325A\337\231\336\317^\230\317jK\1G>\372\350#"
#".\\\270\300\366\355\333\361\361\361\261\230Is$\254\t\1nnnxyyq"
#"\357\336=\213\231aG\313\277\214Ln\"\265\331\235;wR\244H\21\312\227/"
#"o8n-\255\371\271\2337o2{\366l\316\236=\313\212\25+h\321\242\205"
#"\325k\214\237%\223\267\230+\317C\207"
#"\16e\361\342\305,_\276\234\265k\327"
#"Z\215d\230\25\r\e6\344\352\325\253"
#"\334\274y\323\344:Y\331r\16\314\333`\277~\375\330\272u+\217\36=\262["
#"\31\356\333\267\217:u\352Xl~."
#"\327\251\354}\203\222%K\22\31\31\311"
#"\377\376\367\277<\310\221)\306\355\377\310"
#"\221#xyy\361\332k\257Y=\237\233\2232N\241p\211\242\310\2313g\b"
#"\f\f\244H\221\"\206\343\316R\321\243\242\242\30>|8\325\252U\263j"
#"2h\315\254\320\332q\31K\254\tG"
#"\32\215\206\324\324T>\371\344\23\242\243"
) 500
(
#"\243\331\276}\273\301)\322\21g8m"
#"\t\216Z\255\326\352\36C\216\226\177\31"
#"\231\334\346\341\303\207<~\374\230\252U"
#"\253>\323u\377\373\337\377X\260`\1"
#"\256\256\256\214\35;\226\240\240\240\247*"
#"Tr\373\312{\254}\363\342\305\2133"
#"e\312\24\342\342\342\350\327\257\37K\227"
#".\265z\255-\377\237\246M\233r\354"
#"\330\261\234\317\254L\256c^\37\374\375\375i\335\2725[\267n%999O"
#"\363\"\212\"\353\327\257'--\315.\312B~\"((\210\2325k\262{\367"
#"n\303\261\274\234\340:r\344\bqqq\264j\325\312f?\237\233\375\277\303+"
#"\\\222\200\354\342\342Bzz\272S\316"
#">J\253,\306\302\263\261\342%\223\263H\3376--\215\261c\307r\376\374y"
#"v\357\336m\342\23\345\fBU\323\246M\271|\3712\t\t\tNY\357ed"
#"\214\261\26\246;\273\365\372\306\215\e\24"
#"*T\210\242E\213f+\375/\277\374\302\330\261ci\326\254\31\223'Of\304"
#"\210\21\206s\362*\226\363\340\345\345\305"
#"\307\37\177\314\304\211\23\321h4\314\235"
#";\227\350\350h\v\323Bk\345Y\266lY\22\23\23M6\221\227\313\335y)"
#"V\254\30^^^\\\277~\335\342\\"
#"n\231\32\212\242\310/\277\374\302\257\277"
#"\376j\322\207\310<\37nnn\214\31"
#"3\206\325\253Ws\375\372u\213\t\360"
#"\334,\307?\376\370\203\330\330X\332\265kg7\371\317\341\25.A\20HMM"
#"%66\226\312\225+;\244Y\2255ABb\372\364\351\34;v\214\260\2600"
#"222\f\203\203#\256\264\344'\244\25\242\264\2644F\215\32\305g\237}f"
#"\22\2410+_\217\274$\253\347\273\273\273\223\226\226\68\207\202(#c\vk"
#"\321\342\254\371\340\330\352K\177\372\351':v\354h"
#"\365\276\346\254[\267\216u\353\326\321\252U+:u\352"
) 500
(
#"db\25!!\267'\347@\2527\345"
#"\313\227g\370\360\341\370\372\3722\177\376"
#"|\16\35:d\222\316\226\225@\333\266"
#"m\331\274y\263l5\222O\350\325\253\27\27/^$::\332\344\370\213\224k"
#"V\356\34\202 \260w\357^\336z\353"
#"\255\347\276\177A\306Z\177\256R\251\350"
#"\335\2737\337~\373m\236Ew<y\362$\367\357\337\247S\247Nv\215T\355"
#"\360\n\27@rr2\261\261\261\204\204"
#"\204\30\2169R\307i\253\322L\2336"
#"\215\255[\267R\245J\25\322\323\323-\354C\355-\354\27\24DQd\320\240A"
#"\314\236=\e///\207\372\376\326\224"
#">\343\337\276\276\276$&&Z\34\227\221q\26f\317\236\315\211\23'\f\277m"
#"\365\335\326\6\\A\20\330\261c\a\315"
#"\23253\34\223V\256\357\337\277o\222"
#"\376\322\245K\264n\335\232\304\304DV\257^M\303\206\r\35bRE\346\3711"
#"\367\321\358p \313\226\260i\265K\0\0 \0IDAT-c\353\326\255"
#"t\353\326\215\204\204\4\303y\343\277\22"
#"AAA\4\5\5q\356\3349\271\36\344\23\272v\355\312\271s\347\270r\345\212"
#"\311\361\347\225\t\263\212n:b\304\bZ\264hA\243F\215\262\34\247e\254c"
#"\36\260B\372\256\35;v\244B\205\n\314\235;\327bR9\247e\373\350\350h"
#".^\274H\207\16\35r\364\276\317\203S(\\\36\36\36VC\250;\"R\36"
#"\247O\237\316\366\355\333\r\21\t\245s"
#"\346\246\02029\207\265\357)\212\"Z"
#"\255\226v\355\332\21\32\32\312\254Y\263"
#"\fJ\227\361\177\366\304\232\220)\325\223"
#"n\335\272\261u\353V\223trG/\343L\f\0324\210o\276\371\206\323\247O"
#"[=o-\254\273\304\303\207\17y\364\350\21\345\312\225\3\364\376\231\23"
#"&L\240q\343\306\206m\37\264Z-\363\346\315\343\377\376\357\377X\277~"
) 500
(
#"=\203\a\0176iCY)x2\316\205(\212xzz\262x\361b\"##"
#"\31?~<K\226,\261pz\227P\251T\204\205\205q\375\372u4\32\215\34"
#"\221\322\211\221\312\313\305\305\205^\275z"
#"\261e\313\26\233i\236\a\363\211\363k"
#"\327\256\31\366\333\222\316\333\332\212@\306"
#"6\326\202~\t\202~?\332\e7np\370\360\341\0343\371\265v\375\205\v\27"
#"\b\17\17\317\221\373\277(N\241p\355"
#"\336\275\233\266m\333\332\375c=\r)"
#"\177\363\347\317g\363\346\315\204\207\207\223"
#"\221\221\1\344~\364\23\31\333\215I\24E\36?~L\327\256]\251P\241\2\263"
#"f\315\302\323\323\323\260\264\354\b\365\312"
#"\232)\203\364[\251T\232\354A\"\327!\31gA\24E\n\25*\304\264i\323"
#"\370\352\253\2578u\352\224\341\270\204T"
#"\237\343\343\343M\242r\202~\260\364\363"
#"\3633\354[8~\374x\332\264iC\363\346\315\1X\262d\t\335\273w'0"
#"0\220\251S\247R\270p\341l\tDr_\354<\30\233\177\e\227Y\365\352\325"
#"\0316l\30\242(\322\255[7\16\348`\221F\20\4\252T\251BLL\214"
#"E\204;\271\374\235\v\363\362j\324\250"
#"\21{\366\354\261\332\227<\353\230n>\376\336\276}\233\5\v\0260u\352T|"
#"}}\263\314\207L\3661o\313\303\207"
#"\17g\367\356\335\244\246\246\346H\237l"
#"~\375\246M\233(_\276<\325\252Us\210>\337)\24\256\230\230\30^~\371"
#"e\213\31\bG\301x\200\177\374\3701\273v\355\"88\30\215Fc\367\2."
#"\310\230\17\256O\236<\241[\267n\224"
#"+W\216%K\226\240\323\351\254\356\317"
#"e\217\272eK!\367\362\362\242F\215"
#"\32\354\333\267\317\241\352\274\214Lv"
#"\220\352\265\237\237\37\v\26,`\315\2325\2349s\306"
#"p\376\330\261c\254]\273\226\265k\327\362\321G\0371"
) 500
(
#"t\350P\346\317\237\317\332\265k\371\371"
#"\347\237\321h4\264k\327\216\264\2644"
#"\306\214\31C\223&Mh\330\260!G\216\34a\334\270qxzz\262b\305\n"
#"\372\366\355\213\273\273\273\341\231\306X\233"
#"=\225\373e\347!\253\311J\311\267k\311\222%\34>|\230\317>\373\214;w"
#"\356\230\244\21E\221\367\336{\217\375\373"
#"\367s\357\336\275\274\312\266L\16a\313"
#"\307\252^\275zxyy\261k\327.\213\363\317bJl\315\224p\360\340\301L"
#"\2300\201\342\305\213[\334\327<O2"
#"\317O\245J\225\210\210\210`\310\220!9\376m\37<x\300\203\a\17\b\v\v"
#"\3\34\243\317w\n\205K\241P\30\314\362\34q9Wj\334iii\364\355\333"
#"\027777\212\24)\"G!\2643\326\32nBB\2o\277\3756'N\234"
#"\340\306\215\e\270\270\2708\214\251\247-\307o\320o\372\352Hu^F&;\30"
#"\v3\256\256\256L\237>\235U\253V"
#"q\355\3325\216\35;\306\372\365\353\211"
#"\213\213#..\216U\253V\261q\343F\312\224)\303\375\373\367Y\263f\r\307"
#"\216\35C\251T2a\302\4z\364\350"
#"A\363\346\315\371\351\247\237\330\260a\3"
#"U\252Ta\300\200\1&A1\254\265y\331\272\300\371\2615\331*\35\17\n\n"
#"b\302\204\th4\32>\375\364S\256]\273f\222\306\333\333\2332e\312p\364"
#"\350\321\274\313\264L\216`n\212f\374\267A\203\6\24.\\\330\20f\374yV"
#"0\315\323}\367\335w\324\253W\217\200"
#"\200\0\233id\337\320\347\303\232\237V"
#"\345\312\225\t\f\f$**\312\342\334"
#"\363\22\27\27\307\17?\374@\267n\335"
#"\f\23q\216\200\312\336\31x\32?\375"
#"\364\0235j\3240\354\b\355\250\203fbb\"\357\274\363\16III"
#"\224*U\312\240 \312\200 \252p\367\366\301[\251\343I\252\32\320\241P"
) 500
(
#"z\340\345\355FZr\22j\215\6P\200B@\241\3\235\2\204\\\350\313\244\272"
#"\23\27\27\307\244I\223\370\342\213/\0303f\f\376\376\376\6\307Mp<s#"
#"\37\37\37\356\335\273GFF\6\256\256"
#"\256\16\227?\31\31[\230\v\312\276\276"
#"\276,Y\262\204\210\210\b\202\203\203i"
#"\335\2725-[\2664\271\246s\347\316"
#"\\\275z\225\2325k\242V\253\361\364"
#"\364\344\344\311\223\4\a\a\323\243G\17"
#"\2\3\3\r{ke\365\274\354\34\227"
#"q>\262\232\230\372\350\243\217\f\373v"
#"\275\372\352\253L\235:\325p\376\325W"
#"_e\365\352\325<x\360\200\"E\212"
#"\310u\302\3110\27\326\245\277o\274\361"
#"\6QQQ\354\334\271\223v\355\332\275"
#"\3203\366\354\331\303\345\313\227\31?~<*U\326\342\261\\\177r\6___"
#"&M\232\304\370\361\343\361\363\363\243F"
#"\215\32\317\375mu:\35;v\354\340"
#"\372\365\353\f\348\320\302\34\324\3368"
#"\374\nWJJ\n\256\256\256\26\241\34\3555\273`\315\374,!!\201>}\372"
#"\220\230\230H\311\222%\321j\265\362\354"
#"G&\202 \240\24\22\371u\303\347l9\3627\nW\17T*w\304'7X"
#"\263z\r\327\342u\270\253\214V\231\4\35\210\252\34U\270\314M\212DQ$$"
#"$\204A\203\0061s\346L\36=zd\"\274Y33\264'\257\274\362\n\17"
#"\36<\340\337\177\377\5\344\3315\31\347"
#"\301<B\225(\212\349r\204\322\245"
#"K\243\325jy\351\245\227,\322\247\245"
#"\245q\362\344I\302\302\302\210\216\216f"
#"\314\2301|\373\355\267L\2300\201\311"
#"\223'\263x\361b\253\312\226\214\f@`` ?\376\370#u\353\326\245o\337"
#"\276|\373\355\267\200~\17\240\2325kr\354\3301YX\316G\210\242H\323"
#"\246M)\\\2700?\376\370\243\341\330\3630k\326,&M\232\364TeK"
) 500
(
#"&gqwwg\322\244I\214\35;\366\205\332\346\346\315\233)S\246\f\243F"
#"\215r8e\v\34\\\341\322j\265\350t:\2333\231y-t\32\v\r\306\371"
#"8\177\376<\247N\235\242L\2312\6"
#"e\313\321\204v{!\242\300\305\303\235"
#"\270\350\35\314]\261\227\24Q\205\213\213"
#"\v\177\355_\312\234o\17\"xx\2z\323K\5Jt\242\210 \202\2106g"
#"\236o\305>\e ))\211r\345\312\361\301\a\0370c\306\f\22\22\22pw"
#"wG\24E\2074\5U\253\325&K\343\262\300 \343\f\230G\217S\253\325l"
#"\337\276\235\316\235;3s\346LV\255Ze\0212>..\16\205B\301\246M"
#"\233(T\250\20\245K\227\346\321\243G\250\325j*U\252d\257W\221q@\254"
#"M\246I\264j\325\212!C\206p\375"
#"\372u\276\374\362Kn\335\272E\355\332"
#"\265\271~\375:)))\362\370\234\17"
#"0\36\337\353\325\253\207\217\217\17\273v"
#"\355\262\352\307\231Uy\247\246\2462{"
#"\366l\306\214\31#Oh\332\1A\20"
#"\360\362\362\242w\357\336,\\\270\320j"
#"\32ke\"\35\323h4l\332\264\211\212\25+\32\"\22:\"\16\241p\331\252"
#"\334\267o\337\346\301\203\a\324\250Q\303"
#"\352\371\274\26:\255\371\2\234={\226"
#"\17?\374\220\6\r\32\220\222\222bbol\317\r\326\34\5A\247E\203\27M"
#"\333v\301\355\306/\234\214}\202\213\362\t\373~8C\365&\21T\bR\241\21"
#"uF\35\242\2A\241\5A\2313\3177*+I\221\222\"\377%%%\31V"
#"\272\26,X\300\275{\367pqqq(eY\312G\325\252U\271z\365\252\235"
#"s##\363\374\b\202\300\251S\247HLL\244~\375\372xyy1{\366l"
#"\326\254Yc\0222~\357\336\275l\334\270\221\35"
#";vp\354\3301\202\202\202\2306m\32..."
) 500
(
#"\334\274yS\26\210d\fX333\256\e\265k\327f\302\204\t\334\277\177\237"
#"\311\223'\263p\341B\0326l\310\316\235;\345I\253|\206 \b\324\257_\37"
#"\37\37\37\366\354\331c8.\311l\266"
#"\2022\210\242\310\257\277\376\312\355\333\267"
#"i\335\272\265\341^2y\213B\241\340"
#"\355\267\337\306\303\303\203/\277\374\322\342"
#"|V\246\304\337\177\377=e\312\224!<<\334\241\307\6\207\320\bl\r\240*"
#"\225\312a\366\337\262\26\254\343\304\211\23"
#"\274\373\356\273\224-[\26\225Je1"
#"\213\342\310\5\237\227\244\247\253)\372j"
#"3\232\226H\"\352h,\256\267~c\357\277\"M\232\326\305=%\1\255\216\314"
#"\16Q\257\244\346\306\n\223\261\2,=C\20\4\222\223\223\251Q\243\6>>>"
#"\374\374\363\317\370\372\372:T\200\n)"
#"\37\r\0324\220\35\276e\234\26\251o4\357\353===\2311c\6_}\365"
#"\25\347\317\237\347\332\265k|\372\351\247"
#"\304\307\3073l\3300\276\370\342\vZ"
#"\267n\215\237\237\37\276\276\276\206\3250"
#"Gi\2372\366\305\332xkM\236\0307n\34+V\254\240X\261bl\335\272"
#"\225\214\214\f\342\342\342\3624\25729\217\271\217\250 \b4h\320\0www"
#"\253\2014\254\375\216\217\217g\357\336\275"
#"\f\0312\304p\37\231\274G*\227A"
#"\203\6\261i\323&\303\226J\346\230\267"
#"\371-[\266\20\22\22B\255Z\265L"
#"\356\343\210\345\350\260\206\252\242(r\353"
#"\326-\312\226-k\357\254\0\226\215\364"
#"\334\271s\274\377\376\373\224/_\36\17"
#"\17\17\264Z\255\311\312\210\34\330@\217"
#"N\241C\245IC\355\26B\233\226U\31\177\364\0{S.\243\n|\203\306\341"
#"\236\244\247\246\203B\377\315thQ\352\2249\372\335\214\25-ke#\b"
#"\2\17\36<`\304\210\21\314\236=\233\250\250(Z\265j\3450\215U\312\253"
) 500
(
#"\354\27(\343\314H\355M\232\350\220\220"
#"\366\351Z\260`\1\313\227/\307\305\305"
#"\5Q\24\2318q\"\1\1\1\374\376"
#"\373\357\206\276\365\361\343\307\374\373\357\277"
#"\34:tH^\345\2221`m\254\25\4\301\242\256\271\270\270P\271re\36>"
#"|\310\324\251S)R\244\210aEC\30691\37\313\245\337\215\e7\346\327_"
#"\1775\4\322\260%\217\375\363\317?,\\\270\220!C\206P\276|yYn\263"
#"\23\346\21(\347\317\237\317\204\t\23\30"
#"9r\244a\203{k\253\330\2336m\242\\\271rT\257^\335\342\236\216X\216"
#"\16\243pY\233\251\210\212\212\"22\322\344\230\371,V^}T\343g\2359"
#"s\206\267\337~\233J\225*\341\352\352jb\252f\355}\n4\242\nQ\251B"
#"\223\234Jh\223\26\370o\235\317\322\313\0014\3503\232`A EP\201N\3"
#"\nQ\357\303\205\210\200i\30\330\27A\252'R\331X3\27\324j\265(\225J"
#"\"##\231<y2^^^\370\372\372\222\224\224\364B\317\316\t\244\374+\24"
#"\nj\327\256\315\221#G\250[\267\256"
#"\275\263%#\363\\\30O~\30\233\371"
#"\270\270\270\340\351\351\311\251S\247\30:"
#"t(\202 p\373\366m\303^y:\235\16\255V\213F\243!11Q\366\223"
#"\2251\301\\ \223\224-k\212W\305\212\25Y\275z\265C\372\352\312<\e\346"
#"!\343\215\313\271Q\243F\34?~\234"
#"\371\363\347\323\276}{\312\227/oq"
#"\375\306\215\e\t\r\r\245\\\271r&"
#"\367\223\311\e\314\313M\372[\255Z5"
#"\326\257_\317\241C\207\350\334\271\263E\271h4\32v\354\330AXX\30U\253"
#"V\315\362\336\216\204\303(\\\306\30\177"
#"$iv\323\232\202\225\227\37\323\370Y{\366\354A\20\364{{\244\247"
#"\247\233\244s\304B\266'\2:t\250\21t\32\\J5\340\315\227\307"
) 500
(
#"2\361P\0\37\326+\207F\243AT\244\"\210* SxR\0Z\21\24\2"
#"\202\240D\n\250\361\302\371\310b\231Y"
#"\32\224\225J%\223'Of\376\374\371\244\247\247;\334\352j\2312e8p\340"
#"\200\254p\3118-\222\220k\334G\246\247\2473~\374xZ\264hA\257^\275"
#"\2301c\6\301\301\301\204\204\204\230\\"
#"{\362\344I\312\226-+\257J\310<7\362\370\234?\261V\246\242(R\253V"
#"-\202\202\2028v\354\30\367\356\335\243"
#"Z\265j\370\370\370\0p\360\340A\236"
#"<y\302\377\376\367?\271N\330\211\254"
#"\276\373\270q\343\2304i\22U\252T"
#"\241B\205\n\206\343\247O\237f\327\256"
#"]t\351\322\205\312\225+[\\gM\371v\24\34\302\207\313\32\347\317\237',"
#",\f\245Ri\241\375\346\26\331\231-]\271r%\e7n$<<\334B\331"
#"\2y\206\304\32\n\334\20\225\"n.\36\224,\eNH\355:\204\4y#j"
#"\325\231\312\26\200\16A\320G(D!\30\216\345%\32\215\6Q\24\0316l\30"
#"+W\2564t\314`=\nV^\223\236\236n\210\244(#\343,\30\267\35\235"
#"Nga\203/)[\315\2325\303\333"
#"\333\233\361\343\307\263`\301\2\223\350\205"
#"w\356\334\341\361\343\307V\aX\31\231"
#"\354\"\217\317\5\aI\350\16\16\16\246"
#"[\267n\304\304\304\260}\373v\324j5G\217\36e\347\316\235L\2336\ro"
#"oo{gU\306\n\205\n\25b\362\344\311,Y\262\2043g\316\0p\374\370"
#"q\376\375\367_&L\230`s,p\3446\356p\n\2274\30\37=z\224\260"
#"\260\260<}\346\323\316\177\366\331g,"
#"]\272\224\360\360p4\32M^d\315"
#"\351\21\5\0\r\352\344D\376\272\274\237\25_]\240n\3637)\346\241"
#"E#:\3067\224fD$\263%www>\371\344\23._\276l"
) 500
(
#"H\223\327&\254\326\b\t\tA\245Rq\375\372u\273\345AF\346Y1\2360"
#"\v\17\17\307\327\327\227\243G\217\242V"
#"\253\0315j\224A\331\2}[\364\362\362\342\323O?e\315\2325\34?~\34"
#"\320\317j\272\273\273\347\331\230 ##"
#"\223\177\20E\221^\275z\321\272uk"
#"V\256\\I\307\216\35\351\332\265\253\354"
#"\v\352\200\30O\320\371\371\371Q\277~"
#"}~\370\341\a\26-Z\304\203\a\17\350\320\241\203C+UY\341\20\n\2275"
#"\337'wwwRRR\362\344\371\306\302\264\255\250G+V\254`\325\252UT"
#"\257^\35\255Vk\222W\31\333\b\242\16w\37\17b~\373\2027\32\277\313\225"
#"\360\326\274\323\274*\332\2644t8\306"
#"\346\245\346\312\224\213\213\v\25+V\344"
#"\320\241Cl\330\260\301$\35\330o\225"
#"\313\315\315\r\205B\341\20\276e22"
#"\317\203\267\2677\215\0325b\377\376\375"
#"\314\2301\203\226-[\32\224-\370\257"
#"\215\371\370\3700o\336<\276\373\356;"
#"\242\243\243\371\374\363\317\2319s\246,"
#"\34\311\310\310<3R\277R\264hQ\332\264iC\227.]\270{\367.g\316"
#"\234\261i\216(\2237\230\177ks\2136)(]\217\36=L\314\311\235\261\214"
#"\34B\3412Wtn\336\274\211J\245\312S\37\32s\241\333\\\1[\270p!"
#"U\252TA\255V;\204y\231\263 \212J2\222\265\224\256\333\223\377\373r%"
#"\353\346\214\242\234g\"ij\5\n\321"
#"1\235\226EQ\344\341\303\207\364\357\337"
#"\37\225J\305\222%KL\316K\253ay\225\27c\214\367v\223\353\237\214\263`"
#"\\W\333\266mkp\210\226B\371\232"
#"\247\223\332X\263f\315\350\324\251\23\375"
#"\372\3653\34\267vO\31\31\31\231\354\20\34\34\314\262e\313(S\246\f"
#"\227.]\342\350\321\243\244\246\246\232"
#"\244\221'\323\363\206\254\254\206\22\22\22"
) 500
(
#"\330\264i\23\36\36\36\214\e7\216b"
#"\305\212e\353:G\306\356\n\227\265\375"
#"\255\222\222\222\320h4&>4y\221\ac\244\374\250\325j\372\364\351Cpp"
#"\260!x\207\3143 \b\240Q\243\362\17\246E\333N\204\25U\222\242\26A\241"
#"Eg\367\332g\e)\fu\267n\335puu\345\213/\2760\254l\346\345\246"
#"\326\346\365\255c\307\216\374\366\333o\16"
#"\263?\235\214Lv\220\352jZZ\32"
#"\37\177\3741\353\326\255c\306\214\31\364"
#"\357\337\237\245K\227r\343\306\rC:Q\24Y\273v-\37~\370!\373\366\355"
#"\343\304\211\23\234<y\222\363\347\317["
#"\275\247\214\214\214Lv\221\344\275j\325"
#"\252\321\263gOn\335\272\305\227_~"
#"\311\275{\367,\322\310\344.\326&\320"
#"DQ\344\217?\376\340\363\317?\247v"
#"\355\332\274\371\346\233\270\270\270X\\\347"
#"\214ed\367(\205\346+K\32\215\206\v\27.\360\306\eo\344i\36\214\377\32"
#"3p\340@bbb\b\t\t!==\35\245R)\207\223}\6\0044h\20"
#"\21\264\32\222\22\37e\372t\351\20D\5\350D\243\0\31\366\305ZxR\251A"
#"\17\0324\210f\315\232\321\273wo\274"
#"\275\275\355*\350I\233\201+\225J\273\345AF\346y\31?~<\35:t0"
#"\254lm\336\274\231\371\363\347\263t\351"
#"R\342\343\343\1P*\225T\254X\221\211\23'R\262dI\0>\371\344\23\306"
#"\216\35K\337\276}y\355\265\327deKFF&\333\230\357\363d,sv\355"
#"\332\225\304\304D\266l\331\202 \b\274"
#"\363\316;r\377b\a\4A\340\237\177"
#"\376a\353\326\255\324\250Q\303\260%\224"
#"t\316\30g]\341\262\273\302e\376\341"
#"DQ\344\357\277\377\246G\217\36v{\276 \b\250\325j\6\f\30\300\325"
#"\253W\t\r\r%==\35i\3Zg,h{\"\b\2\242\240C\24"
) 500
(
#"\24\350\225-\25:\324(\224\256\210\242"
#"\326\336\331\3\376\333\237KR\262\314\367"
#"nY\270p!\343\306\215c\372\364\351"
#"vW\272\212\24)\302\375\373\367\t\n\n\262[\36dd\236\5)\364{\363\346"
#"\315i\320\240\201\311\271\217?\376\230\370"
#"\370xn\335\272\205N\247\303\325\325\225"
#"\260\2600\223\31L___f\317\236Mdd$^^^6\367^\221\221\221"
#"\2211\307|R\335|\374\366\361\361\241{\367\356DGG\363\335w\337Q\255Z"
#"5BCC\363<\237\5\225\324\324T\316\237?\317\215\e7\350\334\2713/\277"
#"\374\262\341\234\255\215\315\235\21\273\eu"
#"\231/\r\272\270\270\344\231\271\226\364|"
#"\363\337\31\31\31\274\377\376\373\334\274y"
#"\223\212\25+\232\204\177w\326\202\266\37"
#"*\4\21\24(\21\5\35\240\0\205\26Apq\30e\v\254\233\20\30\257dV"
#"\255Z\225\236={\22\31\31IZZZ^f\315\2026m\332\260i\323&\273"
#"\346AF&\273h4\32C\350\367\346\315\233[\4&\22E\21\177\177\177\252V"
#"\255Jxx\270!\22\2415\241h\366\354\331|\361\305\27&!\343eddd"
#"\262\213\371X/\375\366\364\364\244v\355"
#"\332\204\207\207s\360\340A\376\370\343\17"
#"{d\257\300\221\222\222\302\326\255[\271"
#"t\351\22=z\3640Q\266 \177\311\334vW\270\300\364\203n\336\274\2316m"
#"\332\344\350\375m\331z\32\257h\30\247"
#"\213\211\211\341\247\237~\242B\205\n\250"
#"\325\352\34\315K\301C\207(d\316R"
#"\210\231\277E\201\274\336c\353Y\261\266"
#"q^\235:ux\367\335w\211\214\214\3142R`^\4Uqww\267\272\17"
#"\234\214\214\275\220&P\f\265>\363\37"
#"\363\346\315\241e\313\3264m\326\4"
#"\21\20D\243\215\355\5\20\20\364\307\21\221\372\205\254\204"
#"\242\2313g\262~\375z\342\342\342r\357eddd\362"
) 500
(
#"%O[-\251T\251\22\3\a\16$%%\205\0313fp\355\3325\213\2616"
#"\273[\t\31\377\333\31}\216\262\303\363"
#"\276\327\355\333\267\331\273w/K\226\374"
#"\177{w\36\37Uu\377\177\374u\356\314$!\e\310\26vd\225*\312\"\250"
#"\270!(Xw\251\212\v*\325\326\326\5\327\252U\334\0\27\276\324\2u\371b"
#"\321o\333\237\266\356\240\210\326\245\212\270"
#"\340\6ZQ\334\25\5\4A\21\2!\tYf\356\371\375q\357L&\223\t$"
#"d\22&\360~>\0360\231\233;w\356\314\27539\237\3739\347s\356f\364"
#"\350\321\214\37?\276\332\366v\305\367k"
#"\247w)L\364\323O?q\330a\207\245l{\311\372\354\3266\23\2651\206\257"
#"\277\376\232_\377\372\327\34|\360\3015"
#"*\327\210\f\0324\210\222\222\22&O\236\314u\327]G\2336mj\254\223\352"
#"\211\272\23\317\341\366\355\333\323\245K\27"
#"\336z\353-F\216\34Yc=\221\235\301\30o\\\241w\6\272X,\20\340\332"
#"k\257\363\272\354\2&\2\4\374\340\314"
#"\4\b\370k\e\0\343\257\203\213\301\301"
#"\372\267\336\266\253\316\377\226-[2s"
#"\346\314]\362\17\262\210\244\207\243\216:"
#"\212\303\17?\234\277\377\375\357\344\346\346"
#"\322\261cG\216<\362H\200\32m\311D\361\337W\251n\0174\265m\265+\222"
#"\265\257\267\247\270\270\230W^y\2055"
#"k\3260`\300\0\256\276\372j\202\301`\265\367kWm\313\244E\206+~\334"
#"L(\24JiQ\212d\a\257\266\3\371\355\267\337r\366\331gSPP@V"
#"VV\312\366Av\r\321q]\207\35v\30%%%\261\331\317\343\245\372\213\""
#"~{\361\267\25\25\25\265V\356QCTv\6/\303\25\375\356v0\4p\313"
#"K\331\364\363z~\\\267\201\362p\4\2.\221"
#"\210\305\20\300\340\22))d\375\206\265\374\370\343\217"
) 500
(
#"l,-\367\303/\a\213\365\n\353\304Il\3444e\327s\21\331\365%\376\355"
#"\314\310\310\340\302\v/\344\210#\216\240"
#"\242\242\202\251S\247\362\305\27_P^^^\343\"~\342vv\225),\342\207"
#"\375$\2333\253.m\236\322\322R\n\v\vy\362\311'y\370\341\207i\331\262"
#"%\227\\r\t\207\36zh\265`+Y\325\362]\311N\317p\305\277\321\357\274"
#"\363\16\235:u\242c\307\216)}\216"
#"m\35\274\350\363\177\371\345\227\234w\336"
#"yt\352\324\211\274\274<U\"\224\32"
#"\242\2055\0\376\362\227\277p\3155\327"
#"\320\241C\a\366\331g\237\330:\265U"
#"B\332Q\265m\257s\347\316\254]\273"
#"\226\312\312J\202\301`\235.(\2104"
#"\246h\206\313\343\202\251\340\231\273/\345"
#"/\257m\246cV\230\36\243'0f\257\345\274c\306p\305\360\366`\327p\307"
#"\345\327\362\376\372J23\203\34p\366\r\\s\302\276\321\215y\333HrMP"
#"\347\267\2104\206d\177\267\255\265t\351"
#"\322\205.]\2720l\3300\236}\366Y\336z\353-z\365\352\305\360\341\303k"
#"\355-\225\354bit{\315\355;,\261zs}\332\e\v\26,`\305\212\25"
#"\254[\267\216\343\217?\236\275\366\332+"
#"\226\320h\216\357EC\354\364\200+\261A\331T\a 1}y\317=\367\340\272"
#".\371\371\371D\"\221\330\\K\315\371"
#"\312\204\244V\374\271\231\221\221\301\244I"
#"\223\270\376\372\353\371\315o~\303\320\241"
#"C\353\375ETW\311\272\304\16\0312"
#"\204\273\356\272\213\242\242\242j\335\32w"
#"\345t\2744'\16\326Vb:\16\340\232\373&pB\267o\2319\373U\276Z"
#"^\n\275\2557\276\313\335Ld\337\343\371\333o\307\321.\233h_D\374^\207"
#"D\203-\235\317\"\322Tj\e\343e\255\245U\253"
#"V\234}\366\331\24\26\26\362\306\eop\357\275\367r"
) 500
(
#"\360\301\a\263\337~\373\305z\234\3246"
#"d\245\266\3557\27\333\313>\305\177OWVV\262h\321\"\276\370\342\v\n\n"
#"\n\0307n\\\265 +j[\201\351\256h\247\a\\@\254\334zII\t{"
#"\354\261G\312\267\277\255\262\222\326Z\236"
#"z\352)\26/^L\277~\375\b\207"
#"\303\261\256*\211\245\301e\367\226\330\245"
#"i\217=\366\340O\177\372\23\23'N$;;;\226\3512\306\244,C\232x"
#"a ~?\302\341p\322\256\257:g\245\351E\263Q\361Y)\a\367\373w\271"
#"m\374\313\314\316\rr\330\31\3273\240"
#"\323b\376\23\266D\f\4\234\\\354\373"
#"\217s\346\v\217\220\27\352\305\25\177\275"
#"\235\341\235s\bX\307\17\276\274m\325"
#"6\6W\201\230\210\244\202\353\272\265v"
#"QN6\26\253u\353\326\234|\362\311"
#"\254Z\265\212\245K\227\362\324SO\261"
#"\377\376\373\323\253W/\2141\364\353\327"
#"\217\214\214\214\244\333i\256\337_\333\353"
#")\266j\325*\212\212\212\0x\356\271\347\0302d\b'\235t\22\235:u\252"
#"\261\235\335)\310\212\227\26\1\27\300\246"
#"M\233\370\374\363\317\271\342\212+\200\324"
#"^\325L\226\316\215\336>\375\364\323\334"
#"r\313-\f\36<\270\306\272\273\323\211"
#" \265K\326\330\213\312\317\317\347\216;"
#"\356\340\206\en\3407\277\371\r\3\6\f\210eGSa[\203s\17<\360@"
#"\226,Y\302\21G\34\261\335\375\24i\\N\302-\270v+\266\323 &\376\337"
#"5\234\330+\214\261A>\372\367k\220"
#"\233E\0\260\246\30;\360\f\36\271\340t\332\345\307uG4.\26\ak\235\330"
#"\274\350\311\276\227u~\213HCm\357"
#"\357\365\2662:\335\272u\243[\267n"
#"\234p\302\t|\375\365\327,Z\264\b\307q\370\344\223O\330\262e\v#F"
#"\214\240O\237>I\213A4\227\357\257\355\265%\236y\346\0316n\334Hf"
) 500
(
#"f&\225\225\225deeU\233\2648\231\355\275\366]\265\375\2226\1WVV"
#"\26\341p8v?Uovm\335\274\2141<\366\330c\334~\373\355\f\0324"
#"h\233\223\336\312\356m{Ax^^\36C\207\16e\376\374\371\f\348\20H"
#"\375 \331d\317{\340\201\a2s\346L\2168\342\210F\353\316(R7\t\31"
#".\v\1B\344\345\266\305\265\345\0302"
#"\1\310\241\234\307\247\234\301\233\177n\311"
#"Q\27\376\226n\355r\t\207]p\3\30'\372}\355`\334\355\377\301\335U\377"
#"(\213H\323\331\321\357\220\304\277\267}"
#"\373\366\245o\337\276\0\254[\267\216\265"
#"k\327\262l\3312\36|\360A\16<\360@\372\367\357O\353\326\255i\325\252U"
#"J\366\273\251\304\277\316\365\353\327S\\"
#"\\\314\273\357\276\313w\337}G0\30"
#"d\304\210\21\354\271\347\236\f\0300\0\250[\311\374m%A\22\237sW\2226"
#"\1\327\247\237~J\377\376\375S\276\335"
#"\332\16\334\274y\363\270\343\216;\2226"
#"\220w\325\203-\215\303\30\303\271\347\236"
#"\313\214\0313\230?\177~\215/\324\306h\30Zk)//'\20\b(\263%"
#"i !\303e\0\323\222\321\277\372u"
#"\325\371h\240\367\3617\361\366\321\225\270"
#"\256K \20 \30\254\376'(\266\256"
#"\263\375sX\347\271\210\244\243\16\35:"
#"\320\241C\a\6\r\32\304\211'\236\310'\237|\302\2349s\350\330\261#yy"
#"y\0\f\35:\224\316\235;\327k\273"
#";\332\35\261\276\245\335\343\177\376\352\253"
#"\257\370\354\263\317p\34\207\r\e6\260q\343FN:\351$N=\365T\200z"
#"\27\355\252mx\317\356\360}\2366\1"
#"\327\302\205\v\271\374\362\313c\367\e\253"
#"\221\32\335\346\235w\336I\257^\275b\313E\32\302Z\313UW]\305="
#"\367\334\303+\257\274\302\350\321\243c\313k\253P\324\220s\334\30Cff"
) 500
(
#"&{\357\2757K\226,a\350\320\241\333\34\250+\2623$;\37C\241\220."
#"\f\210\310n!\24\n1h\320 \6\16\34Hqq1\357\277\377>\0o\274"
#"\361\6\337\177\377=\231\231\231\264h\321"
#"\202\323O?\35\250>\6<77\267\332E\251mU\v\334\226m\5[%%"
#"%\204\303\341\330:\345\345\345<\366\330"
#"c\0l\335\272\225>}\372\320\272u"
#"k\254\265\34{\354\261\325\366G\27{\353'm\2\256P(DYYY\254\b"
#"@ct)\214\336^y\345\225\204B\241XEB\221\35\225\370%3a\302\4"
#"\\\327\345\205\27^\340\264\323N\333f"
#"\261\226\35=\307\243\217\r\205B\264i"
#"\323\206\325\253Ws\300\1\a\354\370\213"
#"\20ib\315q\320\270\210H}\305\27"
#"\335\310\313\313c\304\210\21\200W\364\252"
#"\270\270\30c\f\345\345\345<\364\320C"
#"@\325\220\226\262\2622\272u\353FAAA,\310\t\207\303\354\267\337~\264i"
#"\323\246\316\337\235\361\337\263\37|\360\1"
#"%%%@\325w\360\262e\313b\1\227\353\272dgg3~\374\370\330c["
#"\266lY\353Ec\rc\250\237\264\b\270\226.]J\237>}\310\316\316\256\266"
#"<U\363\30\305\273\374\362\313y\357\275"
#"\367\370\305/~Aeee\203\266-\222\354\212S~~>\227_~9\247\235"
#"vZ\265u\e\243\217r$\22!\20\b\324\330\276H\272\323\271*\"\273\262m"
#"\375M\16\6\203\325\202\231\t\23&\324"
#"X\367\373\357\277\347\203\17>\210U<"
#",//\347\245\227^\342\347\237\177&##\243N\337\241\321@\312u]\272t"
#"\351\2021&6\24!\30\fr\311%\2274\350\365\250\335Qwi\21p-_"
#"\276\234\256]\273\326(\243\231\312\203XZZ\312\244I\223x\373\355\267"
#"\351\337\277?\341pX'\212\244Db\331\330`0\30+\27?y\362"
) 500
(
#"\344\330\374\34\251\272\252\37\377\370\375\367"
#"\337\237\177\375\353_\254^\275\232.]"
#"\2724h\273\"MA\337\273\"\262;"
#"\250\255G\313\266\246{\211_\247k\327"
#"\256t\355\332\265\332\362-[\266\260a"
#"\303\206X\320\264=\361\317\335\255[\267"
#"\32\277\333\221\327\263\275e\222\\Z\4"
#"\\\241P\210\212\212\212\330\375T\376A"
#"\216n\353\243\217>\342\241\207\36\342\244"
#"\223N\242\244\244D\23\eKJ$\353\303\\YY\311\2301c(((\340\306"
#"\eod\332\264i\261\365S\375\345\224\221\221Aee\245\316ci6\364\aZ"
#"Dv'\333\252\302\267\275\212}\211\362"
#"\362\362\310\313\313\333\241vr\342\366\353"
#";\304A\27\313\32&5\223\0055\300\332\265k\331\260a\3\203\6\r\2R\177"
#"@\2151l\336\274\231[o\275\225C\169\204\322\322\322\330r5R\245\241j"
#"\273B\265i\323&F\215\32\305\310\221"
#"#\371\343\37\377\30\273\240\260#\347\334"
#"\366\36\223\233\233\e\353\227-\"\"\""
#"\351\241\266\fV\262\365\2665\344 \261"
#"\35P\2371\\\361\217I\326\306\336V{X\25\274Sg\247\a\\\25\25\25T"
#"TT\220\223\223\3\244\376\200\256[\267\216SO=\25km\354\252\200H*m"
#"\353\234=\372\350\243\0311b\4\267\337"
#"~;\245\245\245;\24\350o\3573q\326Yg\361\334s\317\325k\233\"\"\""
#"\322\270R\2259J\314\204\325\347\371\267\0254m/ T\220\225:M\22pE"
#"\17h\262\223$\22\211\304\306\270\244:"
#"\30*,,\344\354\263\317&##\203\202\202\202X%\26\5]\322\224~\371\313"
#"_\362\331g\237\261j\325\252m\236{"
#";z^\272\256\233\264\332\246\316s\21\21\221\364V\366\b\0355\0\0 \0I"
#"DAT\337\240&\225\353+\240j:\215\36pm\257"
#"O\352\374\371\363\0317n\34P}\200\341\216<O\374"
) 500
(
#"\355\212\25+8\363\3143\311\314\314\244"
#"]\273v\204\303\341\330\357\35\307\331\341"
#"\347\21\251/k-\263g\317\346\256\273"
#"\356b\305\212\25\265v\27h\310\27_\247N\235X\263fM\265e\372\"\25\21"
#"\21\21\331\371\32=\340J,\233\235\250"
#"\254\254,V\235\260\256}]\353\362<O<\361\4?\374\360\3\5\5\5D\""
#"\221\32\305\r\200X\340%\322\230\2141"
#"\264n\335\232\211\23'2u\352T\226/_\236t\235\35\25\b\4\0302d\b"
#"/\274\360BCvSDDDD\32A\223d\270\242\22\e\225\205\205\205\261\31"
#"\254\223\5D;j\341\302\205\314\235;\227\375\366\333/V\301-Y\226M\31."
#"iJ]\273v\345\326[oe\372\364"
#"\351\325\262Q\361\347a}\317\311\350\372"
#"\31\31\31dee\305\212\302\210\210\210\210Hzh\262\fW2O?\3754\303"
#"\207\17\307q\234\32e2\353\332\360L"
#"\\\357\325W_\345\212+\256\240g\317"
#"\236I\267\23\235\305[\244)$\236\177"
#"\5\5\5L\2348\221\333n\273\215o"
#"\277\375\26h\330l\355\321\365{\365\352"
#"E(\24\342\313/\277l\340\36\213\210\210\210H*5i\206+\361\347P(D"
#"yyy,\303\25?\16\253\256\r\317"
#"\370\365\26.\\\310\345\227_\316~\373"
#"\355G0\30\304u\335\32\3538\216\243\240K\232L\262\212@]\272t\241{\367"
#"\356\274\372\352\2535~\267\243\254\265T"
#"TT\220\231\231\331\340m\211\210\210\210H\3524i\206+\276\313`aa!\306"
#"\30\332\266m\e\233\200m{\23\276m"
#"\317\357\177\377{\366\335w\337\32\23\273"
#"\305\217\r\213\357^(\322T\22\307'"
#"^w\335u\254Z\265\212\347\237\177\276"
#"\306\371\271#\3336\306\260\327^{\261r\345J\"\221\210.(\210\210\210"
#"\210\244\211\235R5\302\30\303w\337}G(\24\242S\247N@\303\nf\0"
) 500
(
#"\334y\347\235\264o\337\236@ \2204\253f\214QfKv\232d\301\324\244I"
#"\223X\264h\21\363\346\315\253\266\336\216"
#"n\373\200\3\16\340\343\217?\256\226-"
#"\26\21\21\21\221\235\253\311\2\256\304\6"
#"`\213\26-\250\250\250\210\335\337\221\206"
#"ft\233\223'O\346\221G\36\241w\357\336\26566\225\331\222\235-\361\34w"
#"\34\207\333o\277\235\17?\374\260\316\23"
#"\27\327v\376F\267\355\272.\301`P\27\26DDDD\322D\223\215\341\212\17"
#"v\"\221\b\37\177\3741\207\34rH"
#"\235\37\237\2141\206i\323\2461\177\376|\6\17\36Leeely\374\255H"
#"\2722\3060e\312\24\336z\353-\236\177\376\371:\255\17\311\307FZk9\374"
#"\360\303Y\270pa\343\354\254\210\210\210"
#"\210\324[\223\217\341\262\326\22\b\4\370"
#"\362\313/\351\331\263g\235\36_[\306"
#"\352\321G\37\345\201\a\36`\300\200\1"
#"\224\225\225\325\230WK\331,i.F"
#"\215\32U\247\200+*>\360\212\277\300\320\247O\37\226-[\326(\373(\"\""
#"\"\"\365\327$]\n\343\273\371\31cX\274x1\a\37|p\235\3\242h\320"
#"\25\177%\277\274\274\234\271s\347\322\247"
#"O\237X\221\200\304n\203\312pIs1r\344HF\214\30\301\224)S\352\374"
#"\230d\5f***jL$.\"\"\"\";O\223\4\\\211\325\2\337~"
#"\373m\6\17\36\\\257\200(\272\r\200\262\2622\306\215\eGaa!\35:t"
#" \22\211\304\326IV\235P\24498"
#"\345\224S\350\327\257\37\223'O\256\323"
#"\271\233\354\363SPP@\307\216\35\371\340\203\17t\301ADDD$\r4i"
#"\225\302h\0030++\213\322\322\322z"
#"?\336Z\313\226-[8\353\254\263\330\264i\23]\273v\245\262\262\262"
#"F\6\f\210\315\301%\322\234\214\35;\226>}\3720c\306\214\3309\\"
) 500
(
#"\237\v\a\241P\210\214\214\f\212\213\213"
#"\ek\27EDDD\244\36\232\274J\341\247\237~J\333\266mi\327\256]\275"
#"\267QYY\311\371\347\237OQQ\21\335\272u#\34\16\3\304\312\275'\233\363"
#"K$\335%\26\3008\353\254\263x\371"
#"\345\227\331\262e\v\260\375\371\271\342\273"
#"\332\202W\375P\245\341EDDD\322"
#"C\223\5\\\321\0h\375\372\365\344\346"
#"\346\222\225\225U\357m\\u\325U\254"
#"\\\271\222\356\335\273\307*\22F\267\255"
#".\204\322\\%\273P0k\326,\256\277\376z\326\255[\267\335\311\300\23'\f"
#"\0375j\24\237|\362\t\2336mj\334\35\27\21\21\21\221\355j\262\242\31Q"
#"\241P\b\327u\353t\305>\336\342\305\213Y\272t)=z\364\250\26lm\353"
#"1\"\315E\342\371\333\263gO&L\230\300\244I\223\330\270qc\255\225:\223"
#"\25\210q\34\207\362\362r\202\301`\322"
#"m\353\263\"\"\"\"\322t\232\254h\6\300\246M\233\370\370\343\217\319rd"
#"\265\6bb\227\252\304l\325\247\237~"
#"\312\205\27^H\347\316\235\311\312\312R"
#"\203Qv9\3112\264{\357\2757\177"
#"\370\303\37\270\351\246\233\330\270q#P"
#"\275\373`b7\332x\5\5\5\254_\277>\266\355(km\215\351\23DDD"
#"D\244\3614\351\30.\307q\330\272u"
#"k\265\356\204\265\225r\217\336~\370\341"
#"\207\234s\3169\364\356\335\233\314\314\314"
#"XEB\221]Im\335\6\373\364\351"
#"\303%\227\\\302\3157\337\314\272u\353"
#"\222N\352\235\354\2\304\257~\365+\236z\352\251\244\343\273TPFDDD\244"
#"\3514\351\30\256\242\242\"\362\363\363k"
#",\257-cUXX\310\270q\343\350\323\247\17YYY;T\265M$\235%"
#"^hHvn\357\263\317>ddd\360\336{\357\325"
#"X\247\266@\255\242\242\242Z\6,z\353\272n,\303"
) 500
(
#"\245\317\221\210\210\210H\343k\322\276E"
#"s\346\314a\354\330\261\325\226m\253k\324SO=E(\24\"''\247\332\270"
#"/u\211\222]E\342y_[\3405c\306\f\26-Z\304\333o\277\235\264\310"
#"Fb&+33\223\216\35;\262r\345\312\32\333\217\216\375R%O\21\21\21"
#"\221\306\327\244\221\213\353\2725\2723\325"
#"\326\350\233={6w\335u\27\203\6\r\242\242\242\"\326%QW\345eW\227"
#"l\34\2431\206)S\246\360\370\343\217"
#"\363\372\353\257W[7^\364\363\324\242"
#"E\vz\366\354\311\373\357\277\237t]\5[\"\"\"\"M\243\311\2\256u\353"
#"\326\321\246M\eB\241P\322\337\307_"
#"\241\377\353_\377\312\275\367\336\313\240A"
#"\203\210D\"5\n\5h\f\212\354\312\222\215\323\2/\210\232>}:\317<\363"
#"\f\213\27/\256\261nb\226\253U\253V\270\256\e\233d<>\223\254\v\27\""
#"\"\"\"M\243\311\2\256\267\337~\233"
#"\275\367\336\233\234\234\234j\313\23\307\260"
#"\374\277\377\367\377\2305k\26C\206\f"
#"\211\25\310\320\244\306\262\273\330^ \24\b\4\230:u*\17>\370 \213\26-"
#"\252\366\273\304@\255_\277~l\334\270"
#"\221\237~\372\251\306\366\365\31\22\21\21"
#"\21i\32\215\32p\3057\352222(++\213\335O\326\360{\363\3157\271"
#"\371\346\233\31<xpl\256-]\211\227\335\311\366\2!c\f\231\231\231\34|"
#"\360\301\274\370\342\2135~\237XP\243"
#"\242\242\202\26-Z\324\370\275>W\"\"\"\"M#%\1Wm\215\267\350\362"
#"\315\2337\263e\313\26\366\334s\317\330"
#"\362d\r\313\207\36z\210\276}\373j@\277\3106Xk\0317n\34={\366"
#"\344\336{\357\255\266<1\23<l\3300\226.]ZmY\374\255\210"
#"\210\210\2104\256\224\4\\\2655\336\242\1Waa!EEEt\355"
) 500
(
#"\3325\351\372\341p\230\363\316;\217\317"
#">\373\214\356\335\273W\253H(\"\236"
#"\304\254\360\371\347\237\217\3438\314\2349"
#"\263\326\307\f\0312\244Z\341\214d\333"
#"\23\21\21\21\221\306\323$]\n\263\262"
#"\262j\355\"\350\272.\277\373\335\357\370"
#"\372\353\257\331k\257\275b\25\t\2675"
#"?\227\310\356\"\261\262`\342g\342\342"
#"\213/\246E\213\26\314\2325+\351\205\217H$B \20H\272me\271DD"
#"DD\32_\243\a\\\326Z\26,X\300\361\307\37\37[\26e\255\345\342\213/"
#"\346\253\257\276\242o\337\276TTTT"
#"\373\235\32\204\262\273K\254*\230,\350"
#"\272\360\302\v\331\272u+\367\337\177\177"
#"\2151\\\216\343p\320A\a\261p\341"
#"\302\32\333\24\21\21\21\221\306\227\3621"
#"\\\361?G\313\267\257^\275:6~+~\275\357\276\373\216E\213\26\321\255["
#"7*++kd\266\224\341\22\361\324V\2453\372\319\356\270\343x\353\255\267"
#"(..\256\266\2361\206\216\35;\262"
#"b\305\212\330\272\321\317\245>_\"\""
#"\"\"\215/\345c\270\342\257\310;\216\2031\206@ Pc>\255\345\313\227s"
#"\326Yg\321\267o_\202\301`l}"
#"\327u5\260_\244\16\342\263\300\375\372"
#"\365\343\262\313.\343\206\en \34\16"
#"W[\257\262\262\222@ \20\273\230\21\177+\"\"\"\"\215+e]\n\23\257"
#"\226;\216CNN\16\317>\373,#G\216\214\5_\0k\327\256\345\334s\317"
#"\245C\207\16\344\347\347W\273\342\256F"
#"\240Hu\326\332\244\331\250\304\317\312\376"
#"\373\357\317\231g\236\311\325W_\315\226-[b\313\367\332k/233Y\261"
#"b\5\31\31\31I\37+\"\"\"\"\215#e\1Wb\3\316ZK \20\240"
#"\270\270\230\254\254\254\330\357\277\373\356;N;\3554\332"
#"\265kG~~~\215\253\361\322\374$;\366\265\255\267\273"
) 500
(
#"\4\325\251|\215\211\23\177\307K|\257"
#"\207\r\e\306\251\247\236\312\244I\223())\301ZK0\30\304u\335\330D\342"
#"\265=\2669Pwc\21\21\21in\352\24p\325\326\270\2319s&\357\274\363"
#"N\255W\337KKK1\306\20\f\6c\313\207\17\37Nyy9\355\333\267\217"
#"e\266\244yK\f\242\34\307\211-\217"
#"\347\272.\216\343\354\362\215ecL\223"
#"\235\333\211c\36\255\265\34z\350\241\254"
#"_\277\236\317?\377<\26\254\345\346\346"
#"\262u\353\326\32\217MG?\377\3743O>\371d\215\0\21v\257\240]DD"
#"Dv\ru\n\270jk\334\\t\321E<\372\350\243,Y\262\244F#\272U"
#"\253V|\376\371\347\4\203A\372\366\355"
#"\v\300\274y\363h\331\262%\373\356\273o,\30\223\364V\327\340(\261pJt"
#"L^\274\335!\330\202\246\357\32\e?"
#"\3461\372\363\377\376\357\377\362\217\177\374"
#"\203e\313\226a\255\345\204\23N\340\315"
#"7\337\244\264\264\264\311\366kG\265i"
#"\323\206\36=z0g\316\234j\313\23\347!\23\21\21\21i\16\352\334\2450Y"
#"%\302\254\254,n\273\3556\376\371\317"
#"\177\362\336{\357\21\16\207\2314i\22"
#"\247\236z*\323\247Og\322\244I|\374\361\307Xk\231;w.\267\334r\v"
#"\3\6\f\240\262\262R\363l5\23;"
#"\332\270Mv|\243Y\237\335\241\301\334"
#"\324\2571\361\363\231\227\227\307\344\311\223"
#"\271\357\276\373\370\364\323O\1o\202\361"
#"P(\224V\237\273\332\262\343C\206\f"
#"\241_\277~\314\2313G\201\226\210\210"
#"\2104ku\16\270\342\e\320\361\r\237"
#"\374\374|\246O\237\316\353\257\277\316-"
#"\267\334\302A\a\35\304\254Y\263\30;"
#"v,\347\236{.\205\205\205L\237>\235i\323\246\261\337~\373ms<\212"
#"4/\333k\270[k\t\205B\4\203\301X\261\206\272<.]\354\350~\32"
) 500
(
#"c\310\314\314L\361\336l\3779\241z"
#"v\255m\333\266\374\371\317\177\346\257\177"
#"\375+\237~\372)\375\373\367\347\233o\276I\253\240k[c\323\6\f\30@\317"
#"\236=y\346\231gjt\207\24\21\21\21i.\352\225\341J\314ZD\177\316\310"
#"\310 \30\f\262u\353VZ\265jE"
#"\373\366\355\311\314\314\344\273\357\276\343\364"
#"\323Og\366\354\331\204B!\2\201\0@\265\322\357\322|m\257\220CVV\26"
#"\37}\364\21_|\361\5\213\27/\216\5!\351\322\330O&~\337v\364\34\215"
#"D\"\314\237?\177\247\274\316\304\317hvv6\223&M\342\336{\357\245}\373"
#"\366,X\260\200\26-Z\244\355\347/"
#"\361\242\316\340\301\203Y\263f\rk\327"
#"\256\335\231\273%\"\"\"\262\303\266\e"
#"p%6\32\223]I\377\341\207\37\370\360\303\17\2312e\n\217?\3768\237|"
#"\362\t]\272ta\301\202\5\34}\364"
#"\321\354\275\367\336\224\224\224\260j\325\252"
#"\32\363\1I\363\262\275\200$\261xFQQ\21\e6l\340\263\317>\213\25O"
#"I\347\343\236\212}s\34\207\327^{\255I_gm\307\305ZK\333\266m\331"
#"g\237}x\362\311'\311\311\311I\353\2007\331{v\3169\347\360\346\233oR"
#"XX\270\23\366HDDD\244a\202\333[\241\266I\210\343\357O\235:\225\337"
#"\375\356w\344\346\3462m\3324\356\274"
#"\363N>\374\360C\226,Y\302\360\341"
#"\303\351\330\261#\253V\255\242\254\254\f"
#"\250*\252\220\316\ro\361D\e\347\201@ \226\241\214\252m\34^ \20\300Z"
#"Kyy9\303\207\17\347\243\217>b"
#"\350\320\241\0\204B\241\306\337\351\35\20"
#"\177>F\263\261\3659?\343\37o\214"
#"\341\344\223On\224\375\334\326s'\373LE\357O\2300\201\351\323\247"
#"\363\337\377\376\227\254\254\254&\333\267"
#"T\310\317\317\347\344\223O\346\331g\237"
) 500
(
#"\345\230c\216\241M\2336;{\227DDDD\352l\273\1W2\325\32v\326"
#"\353B\25\b\204\300BFF\220\336={1i\312-X\27\312\312*x\347\235"
#"w\370\351\247udddSZZ\212\265\6k\\\214\5c\35\254q\261\6\34"
#"\27\\\343\340X\357>\270\244p\2520\331\1\326ZJJJx\370\341\207wh"
#"\316\264P(\304\222%K\370\350\243\217\2305kV#\354ajE\307\30\376\364"
#"\323Ot\357\336\235\273\357\276\233p8"
#"\\\247n\260\321)\20\336x\343\r\6"
#"\f\30\300\214\0313\322&\233\24-\244"
#"\321\241C\a\356\273\357>z\365\352\225\26s\340m+X\214\27\n\205X\276|"
#"9\253V\255\342\372\353\257\327\305\32\21"
#"\21\21i6\214m`\2130\f\314{\362q\326\254Y\303\245W\\\311\223O\314"
#"\245p\343\317\344\347\3450\357\351\347\370"
#"\3035Ws\340\201\3733u\352T:"
#"w\354\3029\343\307\373\217\264\30\v\256"
#"\343\342X\300:Xc\260\306\202k0&=\32\252\0023f\314\340\212+\256\210"
#"\335\257O\205\311h\3038\276q\237\316"
#"\331\315h9\373\367\337\177\237\37~\370"
#"\201\23O<q\273\373\233\370~\4\203\301\264\bf\229\216C \20\210\355["
#":\5\203\3112s\321Lx \20`\363\346\315<\375\364\323\214\36=\232\256]"
#"\273\356\244=\25\21\21\21\251\277ze"
#"\270\2225\214\202\300\251\247\214e\334\271"
#"\343y\344\221\177\361\303\352\265\\}\355"
#"5\374\375\357\177g\372\314?q\377\377"
#"=\300\312\225+\251\254\214p\324\350\243"
#"1\321\314\225u\300\1\307u\260\216\301"
#"\0\306\270\30o\241\277ue\267\322Ebw\302\372JV\2450\235\202\256\370s"
#"\333ZK0\30\304q\34\202\301`\275\3673Z\2351\335D\337\367\370"
#"\211\310\323U\374\361\330\272u+\317<\363\f\307\34s\f\235:u\332\311"
) 500
(
#"{&\"\"\"R?u.\232Q\333U~\213\v\306p\3541G\363\342\213\377"
#"\341\202\363~\215\203!`\34\272v\355"
#"\316\351\247\215\345\211\307\36g\364\321\307"
#"\320\251S{o{\0260.^b\313b\360\3,\327P\325\215P\301\326\256*"
#"\35\247\6\210\337\237\332\246@\330\221m"
#"\245\203\3041\223\351\222\331\252M|7"
#"\303\242\242\"\36{\3541F\217\36M"
#"\207\16\35v\366\256\211\210\210\210\324["
#"\275\213f$\6^\306:<\365\314\323"
#"\224\26\227s\363\244)\334z\307\255\224"
#"\225TPRV\302\253\v_\247\240\240"
#"#\323g\376\211\273\357\276\233\312\2122"
#"\16;\3540\2545`#`\300\270\16"
#"\326\t\203q0\30\254\337\325\320\222\276"
#"\335\316vw\256\353\3428\273N@\234\316]\34\e*>x\211\376\\\333g9"
#"]\304g\266\346\316\235\313\350\321\243\351"
#"\324\251S\332\357\267\210\210\210H2\365"
#"\356[\224\330\320\231\375\267\ay\365\245"
#"\1773\361\206\353p\303\25\34y\324h"
#"\312\234V|\371\331R\206\16\374\5\a"
#"\354\323\213\302\262\26L\274\3656n\275"
#"n\"\231\231\231\34p\300\1\200\301\226"
#"\374\314\227\337\255\2414\342\215\333\n\30"
#"p\211\20\314\356D\357\276\355\311\304\353j(;Ob6$:\306\251>\217O"
#"l(\247S\203y[\373R\337*\205"
#"\321\307\244\323\353\213\277`R\333\24\17"
#"\351\250\250\250\210\247\237~\232\243\217>"
#"\272Z7\302t\317\316\211\210\210\210$"
#"\252S\300\225\330\200\2146z\236z\352)\346\334u1\257|R\306\23s\346b"
#"p\261&@V\207!\2344f\30\177"
#"\274b\2\346\303\3739\364\254\327\370\327"
#"\227\2170}\332\237\270\362\272\353(\331"
#"Z\312\21\303\217\240\374\323'\30y\350"
#"\245\254\255t!\340\340D\\\"@v\217K\371j\371\335t"
#"6\252R\270\263\325V\314\240\256\215\365\370\365\343\177N\227\240d"
) 500
(
#"[\345\324\353\322\270O\314\32mk\233\351$\35\367/\272O\e7nd\336\274"
#"y\34y\344\221\261`+\331\373\234\216\257ADDD$Q\235\2\256\304\6d"
#"\364v\237}\366\3417\207\35@\331\320"
#"\23\271\367\322\21X\3\306\302k\3777\201\a\26\274\310jg\6\35\2A2s"
#"\2631\306\20\310\nq\373\35\267\262\361"
#"\347B\260\21*\302\226\202\276\307q\327"
#"\277\246\320\313o79.\4r:\320"
#"\336\200\305Q\206+\r\325\267\221\233\30"
#"\214\354\3106\32S\322\261\211\365\254\302"
#"X\327\345;S\262\343\220N\242\373\224"
#"\235\235\315\361\307\37O\373\366\355k\374"
#".\331\372\"\"\"\"\351\254\316]\n"
#"\2235n\372\365\353\307\22\323\222v\235~\301\200A\373a\255w\5z\337ko"
#"b\375\372\313XVf\350h\275\306\253W\26\303!7'\227\274\234\\,\200\e"
#"!+\243;\207\f\30@\ac \226\375\360\0027\253\366\224H\363f\1\343\337"
#"\370\305r\274\254\265K\4\207\0^\341"
#"\35\203\2037\311D\220\214\314,\332\265\317\212>TDDD\244Ykp}h"
#"k\312(\333\272\205\255\245\245`\2\270"
#"\326\360\306\334\ay\345\e\313\204\f\257"
#"i\25\260a\34\"X\23\360\272\35\342`\334\b\301\254l6\375\370$\307\17_"
#"F\266\255\304q\202D\330\227??="
#"\235\203\366\310\304\270\26\0345\271D\232+k\\?hr\374\350)\332E\330!"
#"\340\a`&\256\333\260%\372\221w\375(M]\212EDD\244ykp\300\325"
#"\272u\5/\3346\226\354\231\336Uk\254CFn\177\216<\366(\366\210\270D"
#"\254\1'\223\210\rxW\270\35\300z"
#"\201\2247b\313c\214\1\327\22\300\301\305x\335\23\325eH\244Y3~6\313"
#"Xb\237\373\b\20\300\365\0020\353\340\232\210\327y"
#"\330z_G^\205R\307\373\16\330\211\373.\"\""
) 500
(
#"\"\222\n\r\16\270\212\213\35\366\375\345e\\6f\20\2300\0\235\177q\24k"
#"V\277\301\346-e\2642\26\327\226c\f\376\30/\ac \202\205\212J\362\n"
#"~\305\23\257\317\242\273\251\352Z\24\355"
#"\200(\"\315\234\5p\260\370\331j\e!@\200X\306\313\2041\4\361g\373\363"
#"\246\2060F\335\tEDDd\227\321\340\200\253bk&\275\207\34\317o/\30"
#"El\\\206\205\331\263\237'b\\,.!\223Mk\300\330J0\1\260\16\1"
#"\343\340\272.DJ\331h\\\272\340\20p\235\252\236G\204\301\r\252H\241Hs"
#"\346\217\337\212\6S\304\262\326\321\261\\"
#"A,\26\307\0320\21 \350O\204\356\240\250KDDDv\5\r\16\270p\303"
#"\224\225\226\304\262S\1\360\273\n\5\275"
#"\315\233 \233~z\213\233o\272\201\316.\340g\257\6\237r-\307f\30**"
#"\275n\205\1\210\5W\336\226\24l\211"
#"4w\26\27\254\301\30\257k\241\265\16\246\344{^|\353#\372\35t<{\266"
#"\204\215\313^\343\335\255\359\366\200\275"
#"\252\177\344\25l\211\210\210\310.\240\301"
#"\1Wn\333\216\24\344\344T-\210V"
#"\27\f\272\340V\220\321\2425\355\363\327"
#"\361\324\364\277\0206\16\326\255\300\4\340"
#"\234\275/\340\224Am\350\332\265=!"
#"\300\e\330\21\306\342\340X\377\352\266\2"
#".\221f\315Xo,\226\227\264\362\247"
#"y\310\310a\335\242\177\363\336\232\266\334"
#"\370\353~<\376\320\343\4\217\273\6\254\361+\223:\t\25\rEDDD\232\257"
#"\6\a\\\277\272\375\357\374\312\357\376c"
#"\343z\f\5\"\21\334\362-\320\357\4^\373l}U7!\274\261\363\6\260\246"
#"'\363_<\313[\26\0C0V\16\336\304\215\351\22\221f*Z\370\302q\301"
#"\3572\34\311h\3059\277?\207\311w\315\343\356\351"
#"\231l\351}\n\177\30\336\3c\250\376=\241y\370"
) 500
(
#"DDDd\27\220\202h\306\337\204\301\213\244\374\37#&\350\377\34m4U="
#"\225\27LYo\271\251zx\364\a\23\373Q\301\326\316T\327\311\177EjS\275"
#"\0N\4\v\4pp\272\34\314\230a-x\363\365B\2169}\24\231\306\377\236"
#"p\243_\ba/\313%\"\"\"\322\314\2454\242\251O\31w\225|O?\211"
#"\1\2267\tu\362V\257\2021\251\v\23\313j\e\177\202-/\0003\266\230u"
#"?F\310\330\243\204U+6V\245\332"
#"\375\n\205\336\370\317\246\337_\21\21\21"
#"\221TKI\300\25m|\253\21\336\274\305\a\301\321c\231,0\266\326n3\30"
#"\23\211\361\23\\\261\363\310\32,.?"
#"\2747\237\205\353\272q\371\205\307\361\376"
#"3\217\261f\213\353wKvc\231r\235_\"\"\"\262+HI\300\25m|"
#"\327'k\245\306TzK<\226\361A\365\216\34o\331M9q]\n\255\2031"
#"\6w\363r\36z\3705z\16\37\315\260CN`\337\3602\3761\177)\25\326"
#"\357\202l\242\301~\244\226\215\212\210\210"
#"\2104\37)\353RX\327\214\307\2662'\262\363l\353\330\31cb\307+\376V"
#"A\263l\237C\4\27\327\37\277\5P\272\245\224}\1779\2161\207w\3B\234"
#"\360\333\363\351\263G9\345\321\363\311:"
#"\340ZR1k\205\210\210\210\310\316\226"
#"\322\26M\262.i\361\367\343\e\356\222\36\352r\\j\v\254t,\245.\34\274"
#"9\270\214\1\353B^\227}9\266K$6D+\247\373`N\357\36\360\357\271"
#"^9\35\307b47\204\210\210\210\354"
#"\2R\336\232\261\326b\255\305q\34Z\264h\21[\246\214Hz\252-h\212?"
#"V\31\31\31M\265;\262\v2\256_"
#"\377\302\217\237,\16\306\6\210\246"
#"\274\34\252~\266\256\327\355\320\270\6\253`KDD"
#"Dv\1)\357\263\23\337\200\2375k\26\31\31\31"
) 500
(
#"TTT\220\237\237\37[\256\361?\351"
#"\313\30\203\353\272\224\226\226\342\272.\331"
#"\331\331\274\374\362\313\\z\351\245\261u"
#"t\374\244^\242q\223\361\346\325\263\326bM\302\34[^Mx\214\343W5t"
#",\306\32U*\24\21\21\221f/%\1W\262\6\270\265\226\263\317>\233\257\276"
#"\372\212\17>\370\200\361\343\307\3072_"
#"i\227\351\262A\254S\201\211x\245\253"
#"\243\3318k\\\214\rb\b\343\32\a\307\365&e\0060\326!\267e\36T\224"
#"R\\\36\306%B(\230Kv0LqY9\204\262\310\313\312\362\347's)"
#"*\332\214%\b\204\361\266\30\360\267\277"
#"3_xU\200\225x\374\346\317\237OQQ\21g\237}6\35:t\250\361\30"
#"\5]R?\361\363\360\325v\336\304\255\203\243`KDDDv\t)\t\270\22"
#"\307nE\357\207B!F\217\36\315\350"
#"\321\243\223\376>=\270~\27\247\234\330"
#"U\366X\303\317\17\206\"&L\200`U\267'\343b\330\304?\247M\304\34v"
#"!g\37\334\5\254C\361W\2570\363\343\226\\v\332P6.\235\313\325\377\363"
#"\24\305N\204NCOd\342\225g\261G\354\31#U\335\250\322\351\255\210s\316"
#"9\347\304~>\363\3143\201\352\307."
#"\275\216\241\210\210\210\210HzJ\371 "
#"\211\370\206xm\363:\245[\206\313\304"
#"\2\237\370`\313%b\274\345\1\202^\254e\374`\313:`KX\360\317\277\361"
#"\237\245\e\274\261&\6\26<r\ao"
#"|\17\225\237\374\235C\216\32\317\274E"
#"\213x\363\3557\271\367\372s9\341\222"
#"\177\262\325\2\26\34\e\360c\267\312\235"
#"\360jwL\372\5\312\"\"\"\"\"\351\257QG\245\307\aV\321\306z\272\25"
#"\320\260q]\227\\\274IY\277\374"
#"\317\337\271\361\206\233\270\345\306\233ymU%X0\270"
#"~B\312\177\313\214\245E\376\36\344dF\274\200\255l"
) 500
(
#"\31\317-\310\346\267c{\361\267)S\311\e1\231\257V\257d\325\2125\274:"
#"\375l>}\340\37\274_\352uItM\4\203\v&\264\263^vR\265\35\223"
#"t;f\"\"\"\"\"\315E\223Ot\223n]\322\fa\360\273\v:\306\362"
#"\365\277\377\302\257/\232\3067\305\245\224"
#"\226\26s\337\23\357\361\360K\377\346\227"
#"=\202\30\353g\270\fX,a\307%\350\17\362\257\374j\t\313\367:\230\203:"
#"\3440p\312\277\31\323\2717-\375\356"
#"\212\3\6\356\315\236\a\224\321:\303\e\4fL\264;a\\Fm'J,\r"
#"\237\230\315J6>/]\216\237\210\210"
#"\210\210H:\333\371\255\375\235\316\2179"
#"\215\v6\314\342\27\347\361m\373Q<"
#"\371\361\6J\312\2660\355\214a\24\227\24\1^mk\213\1\353`0\340\6\211"
#"\330\0\326\300\342\5o\321\251cWZ"
#"\0053\351\322\257/\235\362\0\34\214\273"
#"\201\273\36x\211CN\275\230\276A\a"
#"c\254\227\335\262x\23\274\246\201h\341"
#"\214\370\373\311\262Y*\226!\"\"\"\"R?M\322\342\217o\274G\177N\253"
#"\356i\256W:\303\232 \a\216\32I\316g\0173b\360 \16?\354$>\356"
#"x$c\372\267\342\3639\2239\374\360"
#"\3039\342\360\3038\342\234\253X\2666"
#"@n\226\213c\202\30\312xwE\220"
#"\376\303\16%\210\27\270\30\v\224\377\310"
#"\203\223\256\344\207\241\3272\365\262\303\t"
#"\32\257\v\243\265\216\367\316\247Q\334\342"
#"8\325O\205dAU|\260\225V\307ODDDD$M5I\300\225\254\253"
#"Z\272dI\254\5\2340\306\00608\364<\361&\276]\371\26\277\e\330\36L"
#"9\317N\34\301\31\223^`kn\246\377\b\377-\vX\234\210\203\23p\261\245"
#"\313XQX\304\341\a\366\0\327`\201\322Uos"
#"\345y\27\361\323>\227s\317%G\223\347\2041\270\30"
) 500
(
#"\e\361\273$\2\270\311v)m\305g"
#"\276\322\345\370\211\210\210\210\210\244\263&"
#"\35\303\225\216\215tc\\ \350M\227E)/\334w\v\257\2658\215\331/."
#"\304:\360\330o\273q\313\347_\321\357"
#"\226\353x\343\227\23\2616\2\306`\354\17l\tCf \300\217\357,dy\311"
#" \366j\3\326\30\314\212\327\271\360\322"
#"\273\331\377\232\273\270\354\260N\3763\5"
#"\343\312\300G\307n\245G\227\302\372H\307c(\"\"\"\"\222\256\232_\213?"
#"\305l\254\352\240\213\261Ytl\235\311"
#"\334\213\17%'/\217\354\234,.z\241#\277>k\24\331x\0236\e\2\376"
#"\244\254.%\2337RZ\266\225w?\370\220v'\34Ok\3&\274\211\231\227"
#"_\310\277\236{\212\e\307\f$;;"
#"\227\354\354l\366\3504\236\377\206\243\31-\a\b\323\3342\\\"\"\"\"\"R"
#"?M^\2450\335\304\347k,\206\1\247\337\306\177Z\365\340\37o\254\300PA"
#"\267_N\340\202C\273`\215\267\266\305"
#"\305\270\16\326\311\347\214?\334Lhh"
#"k\362W\214\342\242\376=\275mE\312\351x\374y\3344p\v\221J\27\327\1"
#"\\K(k\20\355\215?\311\262\v\306"
#"q\274\242\31J\30\211\210\210\210\210\354"
#"\262\214m\244\352\a\263g\317\346\370\343"
#"\217\247s\347\316\215\261\371\324\361\273\371"
#"\271D\260\4\b\340b\255\361\272\r\2"
#"\370\245\335\243qQ\265\302\21T\202\r"
#"z\367]\260\216\213\261\26L\240\352q"
#"\321\362\357\326\2021\200S\325\263P\322"
#"\326\342\305\213Y\263f\rc\306\214\331"
#"\331\273\"\"\"\"\"\315\330n\337\245"
#"\320\v\206\300!@\0\257\213\2411\306"
#"\233s\v \0324\371\377\252\315OE\310\273o\375\n\357\326\200\t`\1\327:"
#"\376\344\306^\220fM\200\b\216?\211r\363,\232!"
#"\"\"\"\"\"\365\263\333\a\\\21\377-\260\270\340zs"
) 500
(
#"dY\210\25\267\210\340z\335\t\215\v\306\255*k\37\373\17\\c1D\2031"
#"\27\23MfY\213K\304\237\350\330\22"
#"p\375\a\330\210\27\214\351\355\27\21\21"
#"\21\21\331\245\355\366-\376\0a0x\2050\34oRc/\246\nc\254C\300"
#":D\273\aZ\300\370\251//0\263~v\314x\325\v\1\360\306e\31\353U"
#",tl\240\252\e\242\343\ak&\200\336z\21\21\21\21\221]\337n\337\352\267"
#"~\335\220\330@6\23-\25\357\5N\326\200\261^\267B\343:^UC\277\233"
#" \306\372\3054\3005\201\330F\254\337"
#"\225\320D\203/c\360\252\22:\336\366p\361\6}5\351K\25\21\21\21\21\221"
#"&\326h\1Ws\231\257\311$\334z?W\315\221e\242\377y\365.\252\3267"
#"^y\370\350\375@\334FL\322\2675\30\367<N\325\306lU\334\25\213\277,"
#"\354\370\370\256\270\307E\3\300h7H"
#"\377\326\215\v\364\342k\2464R\375\24"
#"\21\21\21\21\221\335V\243\5\\j\310"
#"\327\221\361\343.\eK\217\371\31\264\35"
#"\rX\275C\352b\261\376\2303cL\265\240\313\211\e\213V\255\bH3\t\222"
#"S)\331\271\251\363UDDDDR%\345\1Wb6%\261\301/5\271X"
#"\242E\350-\336X0cv\354\375\212"
#"\276\317\216\237\222\213\25\3620\6c\374c\341/O<V\211\333\330\35$\v2"
#"\243\313v\307\0TDDDDR+\245\1W\374\34U\265\335JM\6\3\306"
#"\255\252th\275\362\364u\343\372\377\333"
#"jE=\360\206\230\371\34\177=\177\233"
#"\t\331\255\304c\263\273\a\310\265\5\242"
#"\"\"\"\"\"\365\225\322\200+\276\241n\214!\30\fRQQA8\34N\272"
#"\276\32\264\236\350\270.k\375\t\275L}&Fv\374\377M\334\370"
#"0\252\312\330\373k\305\ap\321\254\3276\367i7\n\220\343\317\303\350"
) 500
(
#"\371\232\225\225\205\343\354\3665eDD"
#"DD\244\201\202\251\332P4\273\25m"
#"\250G\"\21\346\314\231\303\353\257\277N"
#"AA\1c\307\216\215\255k\214\301u"
#"]\34\307\331\355\203.\343\315\324E\310"
#"\32*\34\207\20\21\"\256\2031\21\352"
#"\24\17\233\0\326\r\307\272\20Z\343U@t1`2ql\205_\0251:\1"
#"s\b\3278\4l8\266,YpU\333\362]\2251\206\255[\267\362\330c\217"
#"a\255\245O\237>\264o\337~g\357\226\210\210\210\2104s)\v\270\22\e\347"
#"#G\216\344\233o\276\241\244\244\204\217?\376\1\3529\254\0\0\t\274IDA"
#"T\230-[\266\0~\321\6\5ZUl\204\214\314\34*l\204\312\260\213k\303"
#"\4\260\3368+\v\333\253\235a\215\213"
#"C\0\334\350$\313\6\27C\300\4\311\fE0!\210X\203\e\251\244\274\"\214"
#"k\3130\270\4C\231dexe\356]\327\365\263\223\206\262\2622\\7yF"
#"rWf\255\245\274\274\234\215\e7r\362\311'\23\n\205\330g\237}v\366n"
#"\211\210\210\210H3gl\n\"\237\370"
#"\302\30\361\267\0\341p\230\242\242\"Z"
#"\267n\275\315\365vW\26\330Z\270\226\"\323\226\16-!bB8\200q+\301"
#"\t\325a\vUc\263,a\"\4\bZ\3\266\222\262\242U|\377\263\301!L"
#"\250m\17\272\266\nal%\226 e\e\327\260\272\320\313~y\307!\2001\206"
#"^\275z4\342\253M\177\353\327\257\247]\273v;{7DDDDd\27\221"
#"\222A*\333*\220\21\f\6i\335\272\365v\327k\266\254?\321qL\374\204\306"
#".\326F\300B\330/j\21\277\236\5"
#"\214\215\360\300EG1\346\217\217\202\t"
#"\20\260\376\370-'\24+~A\302\343\242\217\3658U\317o\203\4"
#"\255\301\232J\336\375\327_8\260{\37\372\366\351E\357\276{\261g\217"
) 500
(
#"\375\231\374\330\22 \4\246\234Y\23\206"
#"\321\267o/\372\364\355\303^}\373z"
#"\353\365\356\311\310\v\376\301\206h\321\210"
#"\324\274C\315\212\202-\21\21\21\21I"
#"\245\224u)\334m\3711\243\27<\271"
#"\270\306`\242E/\"\345\374\360\303\6"
#"\302\26\366\350\334\231|\207\270j\30~"
#"\345@c\t\265\310%\253\205\3\326\211u!\214`\t\232\b\226 n\345F\326"
#"\256\335J(;\237\366m\3630\26\214[\314\352\0377\323\276SgB\326!\\"
#"\276\201\237\n]:th\207\273\3749.\271f\22\373O}\231\207\17nK\245"
#"\251d\355\253\177\346\270qG\261G\227\25\\vH\220py\17N\2354\203\e"
#"N\354\345=\237\tR\372\331\\\306\377"
#"\376J\3569\343X&\215,\300\230\270\312\206\"\"\"\"\"RojM\247\200"
#"\261\216W\230\302x\371&\254%R\272\232Y\27\34I\327n]\331s\317\256\34"
#"z\372D\276\334\24\361\37\341\202\e\301"
#"\340\0\16N\304\217\262\214W\334\335X\bZC\204 [W-\346\367\307\r\246"
#"\333\236]\351\330{$\17\177\360=\326"
#"\200[\362\3\327\2149\220\313g\177\2111.\217\\z\fcn\177\226\bP\372"
#"\323J\266\4\2722\346\254#\351?p\0\203\6\f\341\330+\357\343\376\353/!"
#"\313)\305\30CEe\210\36\373\16c"
#"\340\300\301\f\348\230\375\367\335\217\303"
#"\306\236\304\301=\262\370\371\207-~\361"
#"\r\235\36\"\"\"\"\"\r\241\fW\3\331h\27@\277\234;\2001\360\315\363"
#"\323\231\366J\200{\347\275\304\276m*"
#"\370\333U\327\362?s\307\363\217\337\366"
#"\303\305`\242Sb\21!\342\200\23\t\340bp\2547'\2788\326\362\364\35"
#"\0272g\305\276<\374\354_Y;\367\6\256\231t?\243\236\276\225\202"
#"\374\336\334>\361\\\216\273q\"O\267\e\316\3K\v\270}\376\331\4\215"
) 500
(
#"K\316\200c9\256\317\275\\0t("
#"}:\346\20h\333\217\233\246\315\344\202"
#"\333\356\360\237\263\230\226-7p\337\365"
#"cx\367\256l\260\16y\331-(\376\341\v\226\254\356\313\23Gu\363\203A\5"
#"]\"\"\"\"\"\r\241\200\253\201\374y\212\275\342\23~eA\fd\344\264\241"
#"\370\373E\334\371\344b\36\272\360\20\316"
#"\2319\217\303\16\351M\345\217_\363\332"
#"\177\277\246\"\354bCy\364?d\30\301@\4B\1*\nW\262\350\335eT"
#"D\202\204C\331\f\336\277-\257/\335"
#"\312ew\316\346\214\343:\301\261\243\370}Y9-\f`\35z\236t#\27\377"
#"{\0g\236\262\200+\237_\312Q\5!,\206@v_f\276\270\230\2767\234"
#"\314\243\357\207\331\374\337G\30\325\367\1"
#"\332\36r1/?\363g\6\264\t\22\tX\0347\202\211X\334\222\357x\376\215"
#"\225\264\31q\25\357\275\364'\372w\360"
#"\"G\353\27\233\27\21\21\21\21\221\35"
#"\243\200\253\201\2740\313\372\23\v\273`"
#"\34,\320\343\350\253yi\236\313\371\343"
#"nb\370\303A\310\354\312\37\357~\230"
#"\337\365}\221\321\307\336\346?\246\5w}\360=mBALV.\233\226=\310"
#"\250c'\371\305Dr\271\367\245\177\223\227\23\244Sgo>(c\f9-\262"
#"\275B\35\6\214\315f\300~C\b\3632=\272w\2\307b\254\361\2724\266h"
#"\315E3\336\340\"\200\237?\341\341\371"
#"o\360\370m\223\271a\346I\314\277\365"
#"0J6\267\345\224\333\357\347\256\323z"
#"\200-d\306\204\261\314\3724\202\315\210"
#"\20=-\242\301\243\210\210\210\210\210\354"
#"\30\365\27k \307\32p\215?\271\260"
#"\367v\32\\\212\326\256f\217C\256\344"
#"\243\302rJJ\213x\356\252\226\374\357\214\333\330<\370jV\177\377\35+"
#"W\177\313\312\357\277\346\374}s(*\267Tn\335D\373a\327\260j\325*"
) 500
(
#"V\255X\311\212\325_3\376\320.\224"
#"n)e\331\262o\260D\260\224\361\331"
#"\342\317\3701\34\301\0\221\365\2571\363"
#"\3215\234z\316~<6\363\0366Y\27\327T\362\237i\343\350w\314\365|\277"
#"\325\237\360\270m\177\316:\377B\16\332"
#"\247\5\e\327\374\2001!Bn%\341\342b\260\16\21\323\206\253\3764\213A?"
#"\336\313\370\313\237\300X\377\264P\260%\"\"\"\"\322 \312p5X\4\353\4"
#"0\30?#\344\59\337\277y\17\303.}\221_\377~,mBAV\177\20"
#"\246g\377Q\364\310\313\245e~\36\326"
#"_\327\5\"\25\225\270\225.N(\213"
#"\256]\273B\\\231\371s\307\16\340\360"
#"\253N!\264|\f\346\233\5<\264\244+/}\370(\5\241b\36\272\366&\276"
#"\377\305\5\274\365\327\243\371\355\300\301L"
#"{|\fS\317\350\311\376'\237H\350"
#"\3263\31\372\313\265\374\346\320\316\200\203"
#"\273\341C\376\274 \223\333\237?\2\354V\302\21C8\342\25\3610D \247\17"
#"3\247\336H\377_\375\221\377\271\370("
#"\3768\254=\250K\241\210\210\210\210H"
#"\203(\340j\260\0.\20\260\21\254\t"
#"`\360\306>\355}\372\377\360\364\252M"
#"\214\2334\235-\26\362F_\306\353\367"
#"\375\236\226\204\261\4\0\203\261\16\216q"
#"\311+\350L\307\226\331\261\302\e\21 "
#"\0\200\303\260\313\377\306\214\225\247s\303"
#"\214\351\4\273\r\341\377^\274\237!\371"
#"\0016\177>\2379\237X\256~\344L2\203\1\256\275\3464\316x\350~.>"
#"\341\177\350\362\2133x\375\243\336L\371"
#"\335Q\314\230Q\356uQl;\214\177"
#"\375\347E\306\36\332\r\313&\362:\266\247m~\26\0\206\0X\350r\342UL"
#"9\357\337\374\355\317\3239\343\221;\3313SE3DDDDD\32\302X"
#"kw\307\371mS\310/\226\221P\321\317\233\227\v\374\b\fk\\\257\362\237"
) 500
(
#"\277\314\372+\31\377\367@\254\v\237\353"
#"/\367\356\206\361\342\342h\326\313{\16"
#"\327uq\214\23\313\250y\313\303\340\6"
#"\301\211_\346b\255\23+\356\341M\314"
#"\354`L\30l\320\237\367\313\5k1"
#"\306\v\363\254\e\306\232 \216J\303\213"
#"\210\210\210\2104\210Z\323\re\235XV\313\v\212\\/`\302\215\0053.\336"
#"\\]\304\205\266\6\374y\267<\221\330\317.N,\330r\201 \326\17\346l\334"
#"\341r\34p\215\365\262bxA\232\265\301\350]o\22\345Xp\345\306\305t\321"
#"\375\r\202\361&k68`\2\261\3477\216\343\277\32u(\24\21\21\21\21i"
#"\b\5\\\r\345\aU\306V\5]\336\233\352\225\210w1^\26\313\377g\243\31"
#"-\353\a;~\306+\2007\247\227\247*C\345e\312\374b\34\26?\370r\301"
#"\365\347\354\302\353\202\350\0300\306\215\225"
#"\247\307\340\aR\336v\260\326\317\302\21\e;\26}\16lt,\27\261\0\316B"
#"l\373\"\"\"\"\"\262c\24p\245\204\27\30\271\370\231#\2375^\331\tc"
#"\1[\351w#\214@4\373e\242]\372\302`\35\34S\265\275Ht\ex3"
#"+[k\261\6,\306\v\212\34\343\335\217=\306\365\203%'.;\346g\266\\"
#"\213\301\20\v\344\254\203\203\353\27\356\0"
#"\214\251\n\366\242\1\232\t\247\362\r\22\21\21\21\21\331-)\340j0\27k#"
#"\30\343\342\370\231\242h\20\24\313(Y\2135!\f.\306\4\b\233h\267>\27"
#"C8\226\221\362\302#\357\220\4\374\307"
#":X\\\177@\230\301\317:\371]\4"
#"\215\267\230\0\216\327\205\320\270\336x\261"
#"h\240e\275\214[\304\217\344\254\215Nh\34\361\262f\246* sbc\311\374"
#"\f\32A\"\246*\17&\"\"\"\"\"\365\247\242\31\r\24-\216"
#"a\261\376\204\305.\326Z0~\365\302\370\225]\274\202\26~\367Cc"
) 181
(
#"\342\266\21\e\377\25\364B.\223\370$U\267\326z\335\a\243\3050\274U\\?"
#"\210\362\262a\306\230\252\207\306M`\34}l\264\"b4\31438\270\226\252,"
#"\233\215\200\251\266\367\"\"\"\"\"RO\n\270\32*\276\2a\3342\252\0055"
#"\20\37\315\304z\357\331\252*\2006\256"
#"PF\365\252\207n\\\261\f\327_\36\364\203*\353g\266\374\240/\226Y\3\b"
#"c\t\372\301 \376\230\256\370}\216\213"
#"\341b\225\23\303\30\315\24 \"\"\"\"\2222\n\270DDDDDD\32\211"
#"\306p\211\210\210\210\210\2104\222\377\17\316\241\324\201"
#"\273\310\247\r\0\0\0\0IEND\256B`\202"
) 0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 17 #";general function"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 11 #"radial-rail"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #" "
0 0 17 3 12 #";x-rail name"
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 17 3 19 #";point in front leg"
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 1 #" "
0 0 17 3 18 #";point in back leg"
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 3 #"PLC"
0 0 24 3 1 #" "
0 0 17 3 20 #";point in centre leg"
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 1 #"n"
0 0 24 3 2 #") "
0 0 17 3 24 #";number of star-vertices"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 17 3 23 #";DIAGONAL-RAIL (4 legs)"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 17 3 65
(
#"; (when (and name lf lb (not (or (= lf-\316\224w 100) (= lb-\316\224"
#"w 100))))"
) 0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 17 3 31 #"; (let ((PX ;crossing point"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 17 3 93
(
#"; (+xy (loc-from-o-vx-vy (xyz 0 (cy PLF) (cz PLF)) (vx 1)"
#" (p-p PLB PLF))) ;new ucs"
) 0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 17 3 33 #"; 0 ;x-coordinate"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 17 3 73
(
#"; (+ (/ (* (- (cy PLB) (cy PLF)) (- (/ s-l 2) (cx PL"
#"F))) "
) 0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 17 3 50 #"; (- s-l (cx PLB) (cx PLF)))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 17 3 47 #"; (cy PLF))))) ;y-coordinate"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 17 3 27 #"; (line PLF PX PLB))"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 17 3 21 #";CENTER-RAIL (3 legs)"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 2 #" ("
0 0 14 3 12 #"circumcenter"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 2 #" ("
0 0 14 3 12 #"circumcenter"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLF"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLB"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 17 3 18 #";STAR-RAIL (1 leg)"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lc"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 6 #"radius"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 15 3 4 #"cond"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 12 #" (("
0 0 14 3 6 #"equal?"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #" "
0 0 14 3 2 #"sr"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 2 #">="
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" (("
0 0 14 3 6 #"equal?"
0 0 24 3 1 #" "
0 0 14 3 4 #"name"
0 0 24 3 1 #" "
0 0 14 3 3 #"lbr"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 2 #">="
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 5 #"lba-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 5 #"lba-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 4 #")) ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 5 #"lba-w"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 5 #"lba-d"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 4 #"dphi"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 3 #"2pi"
0 0 24 3 1 #" "
0 0 14 3 1 #"n"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 9 #"star-rail"
0 0 24 3 1 #" "
0 0 14 3 1 #"C"
0 0 24 3 1 #" "
0 0 14 3 6 #"radius"
0 0 24 3 1 #" "
0 0 14 3 1 #"n"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 1 #"="
0 0 24 3 1 #" "
0 0 14 3 1 #"n"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 12 #" "
0 0 21 3 2 #"#t"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" ("
0 0 15 3 5 #"begin"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" ("
0 0 14 3 4 #"line"
0 0 24 3 1 #" "
0 0 14 3 1 #"C"
0 0 24 3 2 #" ("
0 0 14 3 4 #"+pol"
0 0 24 3 1 #" "
0 0 14 3 1 #"C"
0 0 24 3 1 #" "
0 0 14 3 6 #"radius"
0 0 24 3 2 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 4 #"pi/2"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 4 #"dphi"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 1 #" "
0 0 14 3 1 #"n"
0 0 24 3 1 #" "
0 0 21 3 1 #"1"
0 0 24 3 6 #"))))) "
0 0 17 3 15 #";starts in pi/2"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" ("
0 0 14 3 9 #"star-rail"
0 0 24 3 1 #" "
0 0 14 3 1 #"C"
0 0 24 3 1 #" "
0 0 14 3 6 #"radius"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 1 #" "
0 0 14 3 1 #"n"
0 0 24 3 1 #" "
0 0 21 3 1 #"1"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 9 #"star-rail"
0 0 24 3 1 #" "
0 0 14 3 3 #"PLC"
0 0 24 3 1 #" "
0 0 14 3 6 #"radius"
0 0 24 3 1 #" "
0 0 14 3 1 #"n"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" )"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 12 #";seat-radial"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 11 #"seat-radial"
0 0 24 3 2 #" ("
0 0 14 3 11 #"radial-rail"
0 0 24 3 1 #" "
0 0 14 3 2 #"sr"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 1 #" "
0 0 14 3 3 #"LCS"
0 0 24 3 1 #" "
0 0 14 3 4 #"sr-n"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 16 #";leg-base-radial"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 15 #"leg-base-radial"
0 0 24 3 2 #" ("
0 0 14 3 11 #"radial-rail"
0 0 24 3 1 #" "
0 0 14 3 3 #"lbr"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LCB"
0 0 24 3 1 #" "
0 0 14 3 5 #"lbr-n"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 22 #";leg-stretchers-radial"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 20 #"leg-stretcher-radial"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 4 #"when"
0 0 24 3 2 #" ("
0 0 14 3 3 #"and"
0 0 24 3 1 #" "
0 0 14 3 2 #"lf"
0 0 24 3 1 #" "
0 0 14 3 2 #"lb"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 15 3 3 #"let"
0 0 24 3 3 #" (("
0 0 14 3 3 #"LSF"
0 0 24 3 2 #" ("
0 0 14 3 13 #"point-in-line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LFS"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsr-h"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" ("
0 0 14 3 3 #"LSB"
0 0 24 3 2 #" ("
0 0 14 3 13 #"point-in-line"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBB"
0 0 24 3 1 #" "
0 0 14 3 3 #"LBS"
0 0 24 3 1 #" "
0 0 24 29 1 #"\n"
0 0 24 3 33 #" ("
0 0 14 3 2 #"if"
0 0 24 3 2 #" ("
0 0 14 3 2 #">="
0 0 24 3 1 #" "
0 0 14 3 7 #"lsa-\316\261r"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 33 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsr-h"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 2 #" ("
0 0 14 3 1 #"-"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsr-h"
0 0 24 3 3 #") ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 7 #"lsa-\316\261r"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 33 #" ("
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsr-h"
0 0 24 3 2 #" ("
0 0 14 3 1 #"*"
0 0 24 3 1 #" "
0 0 14 3 5 #"lsr-h"
0 0 24 3 2 #" ("
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 0 14 3 7 #"lsa-\316\261r"
0 0 24 3 1 #" "
0 0 21 3 3 #"100"
0 0 24 3 7 #")))))))"
0 0 24 29 1 #"\n"
0 0 24 3 9 #" ("
0 0 14 3 11 #"radial-rail"
0 0 24 3 1 #" "
0 0 14 3 3 #"lsr"
0 0 24 3 1 #" "
0 0 14 3 3 #"LSF"
0 0 24 3 1 #" "
0 0 14 3 3 #"LSB"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 2 #"#|"
0 0 17 29 1 #"\n"
0 0 17 3 33 #" ;----------SEAT-RAILS----------"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" ;SEAT-FRONT"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define sf "
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (if (and sf? lf?)"
0 0 17 29 1 #"\n"
0 0 17 3 48 #" (line LF1 (xyz (/ s-l 2) (cy LF1) (cz LF1)))"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 12 #" ;SEAT-REAR"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define sr "
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (if (and sr? lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 48 #" (line LR1 (xyz (/ s-l 2) (cy LR1) (cz LR1)))"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 12 #" ;SEAT-SIDE"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 50 #" ;reverse-cantilever case (cantilever SSR is LR1)"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define SSF"
0 0 17 29 1 #"\n"
0 0 17 3 31 #" (if (and ss? (not lf?) lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 52 #" (+xy origin-seat (cx LR1) (- (cy LR1) ss-w))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define ss "
0 0 17 29 1 #"\n"
0 0 17 3 10 #" (cond "
0 0 17 29 1 #"\n"
0 0 17 3 24 #" ((and ss? lf? lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (line LF1 LR1))"
0 0 17 29 1 #"\n"
0 0 17 3 30 #" ((and ss? lf? (not lr?))"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (line LF1 LR1))"
0 0 17 29 1 #"\n"
0 0 17 3 30 #" ((and ss? (not lf?) lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (line SSF LR1))"
0 0 17 29 1 #"\n"
0 0 17 3 17 #" (else #f)))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 9 #" ;SEAT-X"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (define sx (x-rail sx? origin-seat LF1 LR1)) "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" ;SEAT-X-BOX"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define sbx"
0 0 17 29 1 #"\n"
0 0 17 3 30 #" (if (and sxb? sb? lf? lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (list"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (line SF LF1)"
0 0 17 29 1 #"\n"
0 0 17 3 45 #" (line SR LR1)) ;;como avaliar os 2?!"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 14 #" ;SEAT-CROSS "
0 0 17 29 1 #"\n"
0 0 17 3 12 #" (define sc"
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (if (and sc? ss?)"
0 0 17 29 1 #"\n"
0 0 17 3 50 #" (let* ((SC (point-in-line LF1 LR1 sc-\316\224y))"
0 0 17 29 1 #"\n"
0 0 17 3 53 #" (SCm (xyz (/ s-l 2) (cy SC) (cz SC))))"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (line SC SCm))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 18 #" ;SEAT-LENGTHWISE"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (define SLF "
0 0 17 29 1 #"\n"
0 0 17 3 11 #" (if lf?"
0 0 17 29 1 #"\n"
0 0 17 3 66
(
#" (point-in-line LF1 (xyz (/ s-l 2) (cy LF1) (cz LF1)) sl-\316\224"
#"x-f)"
) 0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (define SLR "
0 0 17 29 1 #"\n"
0 0 17 3 11 #" (if lr?"
0 0 17 29 1 #"\n"
0 0 17 3 66
(
#" (point-in-line LR1 (xyz (/ s-l 2) (cy LR1) (cz LR1)) sl-\316\224"
#"x-r)"
) 0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 12 #" (define sl"
0 0 17 29 1 #"\n"
0 0 17 3 9 #" (cond"
0 0 17 29 1 #"\n"
0 0 17 3 46 #" ((and sl? lr? sf? (not sr?)) ;seat-LR-SF"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (line SLF LR1))"
0 0 17 29 1 #"\n"
0 0 17 3 46 #" ((and sl? lf? sr? (not sf?)) ;seat-LF-SR"
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (line SLR LF1))"
0 0 17 29 1 #"\n"
0 0 17 3 41 #" ((and sl? sf? sr?) ;seat-lenhthwise"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (line SLF SLR))"
0 0 17 29 1 #"\n"
0 0 17 3 17 #" (else #f)))"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" ;aqui juntaram-se 3 regras"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 1 #" "
0 0 17 29 1 #"\n"
0 0 17 3 37 #" ;----------LEG-STRETCHERS----------"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 22 #" ;LEG-STRETCHER-FRONT"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define lsf"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (if (and lsf? lf?)"
0 0 17 29 1 #"\n"
0 0 17 3 49 #" (let* ((LSF (point-in-line LF LF1 lsf-h))"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (LSFm (xyz (/ s-l 2) (cy LSF) (cz LSF))))"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (line LSF LSFm))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 6 #" "
0 0 17 29 1 #"\n"
0 0 17 3 21 #" ;LEG-STRETCHER-REAR"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define lsr"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (if (and lsr? lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 49 #" (let* ((LSR (point-in-line LR LR1 lsr-h))"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (LSRm (xyz (/ s-l 2) (cy LSR) (cz LSR))))"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (line LSR LSRm))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 21 #" ;LEG-STRETCHER-SIDE"
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (define LSSf "
0 0 17 29 1 #"\n"
0 0 17 3 11 #" (if lf?"
0 0 17 29 1 #"\n"
0 0 17 3 32 #" (point-in-line LF LF1 lss-h)"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (define LSSr "
0 0 17 29 1 #"\n"
0 0 17 3 11 #" (if lr?"
0 0 17 29 1 #"\n"
0 0 17 3 32 #" (point-in-line LR LR1 lss-h)"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define lss"
0 0 17 29 1 #"\n"
0 0 17 3 32 #" (if (and lss? lf? lr?) "
0 0 17 29 1 #"\n"
0 0 17 3 24 #" (line LSSf LSSr)"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 18 #" ;LEG-STRETCHER-X"
0 0 17 29 1 #"\n"
0 0 17 29 1 #"\n"
0 0 17 3 16 #"#; (define lsx "
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (if (and lsx? lf? lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 46 #" (let* ((LSXf (point-in-line LF LF1 lsx-h))"
0 0 17 29 1 #"\n"
0 0 17 3 46 #" (LSXr (point-in-line LR LR1 lsx-h))"
0 0 17 29 1 #"\n"
0 0 17 3 47 #" (origin-stretchers (xyz 0 0 lsx-h)))"
0 0 17 29 1 #"\n"
0 0 17 3 46 #" (x-rail lsx? origin-stretchers LSXf LSXr))"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 7 #" ;ERRO"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (define lsx "
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (if (and lsx? lf? lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 50 #" (let* ((LSXf (point-in-line LF LF1 lsx-h))"
0 0 17 29 1 #"\n"
0 0 17 3 50 #" (LSXr (point-in-line LR LR1 lsx-h))"
0 0 17 29 1 #"\n"
0 0 17 3 20 #" (LSXm"
0 0 17 29 1 #"\n"
0 0 17 3 20 #" (xyz"
0 0 17 29 1 #"\n"
0 0 17 3 27 #" (/ s-l 2) "
0 0 17 29 1 #"\n"
0 0 17 3 75
(
#" (+ (/ (* (- (cy LSXr) (cy LSXf)) (- (/ s-l 2) (cx L"
#"SXf))) "
) 0 0 17 29 1 #"\n"
0 0 17 3 51 #" (- s-l (cx LSXr) (cx LSXf)))"
0 0 17 29 1 #"\n"
0 0 17 3 30 #" (cy LSXf))"
0 0 17 29 1 #"\n"
0 0 17 3 29 #" (cz LSXf))))"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (join-curves"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" (line LSXr LSXm) "
0 0 17 29 1 #"\n"
0 0 17 3 29 #" (line LSXf LSXm)))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 22 #" ;LEG-STRETCHER-CROSS"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define lsc"
0 0 17 29 1 #"\n"
0 0 17 3 23 #" (if (and lsc? lss?)"
0 0 17 29 1 #"\n"
0 0 17 3 54
#" (let* ((LSC (point-in-line LSSf LSSr lsc-\316\224y))"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (LSCm (xyz (/ s-l 2) (cy LSC) (cz LSC))))"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (line LSC LSCm))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 31 #" ;----------LEG-BASE----------"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 17 #" ;LEG-BASE-FRONT"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (define lbf "
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (if (and lbf? lf?)"
0 0 17 29 1 #"\n"
0 0 17 3 45 #" (line LF (xyz (/ s-l 2) (cy LF) (cz LF)))"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 16 #" ;LEG-BASE-REAR"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (define lbr "
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (if (and lbr? lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 45 #" (line LR (xyz (/ s-l 2) (cy LR) (cz LR)))"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 16 #" ;LEG-BASE-SIDE"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (define lbs "
0 0 17 29 1 #"\n"
0 0 17 3 10 #" (cond "
0 0 17 29 1 #"\n"
0 0 17 3 25 #" ((and lbs? lf? lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 20 #" (line LF LR))"
0 0 17 29 1 #"\n"
0 0 17 3 31 #" ((and lbs? lf? (not lr?))"
0 0 17 29 1 #"\n"
0 0 17 3 31 #" (line LF (+y LF lbs-w)))"
0 0 17 29 1 #"\n"
0 0 17 3 29 #" ((and lbs? (not lf?) lr?)"
0 0 17 29 1 #"\n"
0 0 17 3 33 #" (line LR (+y LR (- lbs-w))))"
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (else #f)))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" ;LEG-BASE-X"
0 0 17 29 1 #"\n"
0 0 17 3 27 #" (define origin-base (u0))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 46 #" (define lbx (x-rail lbx? origin-base LF LR))"
0 0 17 29 1 #"\n"
0 0 17 3 3 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 18 #" ;LEG-BASE-CROSS "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define lbc"
0 0 17 29 1 #"\n"
0 0 17 3 23 #" (if (and lbc? lbs?)"
0 0 17 29 1 #"\n"
0 0 17 3 50 #" (let* ((LBC (point-in-line LF LR lbc-\316\224y))"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (LBCm (xyz (/ s-l 2) (cy LBC) (cz LBC))))"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (line LBC LBCm))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 27 #" ;----------ARMS----------"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 12 #" ;ARMCHAIR?"
0 0 17 29 1 #"\n"
0 0 17 3 18 #" (define armchair"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (if (and armchair? i?)"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" (with-current-layer "
0 0 17 29 1 #"\n"
0 0 17 3 24 #" \"initial-shape\""
0 0 17 29 1 #"\n"
0 0 17 3 16 #" (polygon"
0 0 17 29 1 #"\n"
0 0 17 3 11 #" P1"
0 0 17 29 1 #"\n"
0 0 17 3 20 #" (+z P1 a-h)"
0 0 17 29 1 #"\n"
0 0 17 3 83
(
#" (intersection-lines (+z P1 a-h) (+z P2 a-h) P2 P3) ;this wo"
#"n't work!!!!!!!"
) 0 0 17 29 1 #"\n"
0 0 17 3 13 #" P2))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 17 #" ;ARM-SUPPORT-SS"
0 0 17 29 1 #"\n"
0 0 17 3 63
(
#" (define AS1 (if as-ss? (point-in-line LR1 LF1 as-ss-\316\224y) #f)"
#")"
) 0 0 17 29 1 #"\n"
0 0 17 3 42 #" (define AS2 (if as-ss? (+z AS1 a-h) #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 16 #" (define as-ss "
0 0 17 29 1 #"\n"
0 0 17 3 24 #" (if (and as-ss? ss?)"
0 0 17 29 1 #"\n"
0 0 17 3 18 #" (line AS1 AS2)"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 17 #" ;ARM-SUPPORT-LF"
0 0 17 29 1 #"\n"
0 0 17 3 17 #" ;(see below LF)"
0 0 17 29 1 #"\n"
0 0 17 3 58
#" ;this component doesn't exist, it's a redefinition of LF"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 17 #" ;ARM-SUPPORT-LR"
0 0 17 29 1 #"\n"
0 0 17 3 17 #" ;(see below LR)"
0 0 17 29 1 #"\n"
0 0 17 3 58
#" ;this component doesn't exist, it's a redefinition of LR"
0 0 17 29 1 #"\n"
0 0 17 3 5 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 10 #" ;ARMREST"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" (define ar"
0 0 17 29 1 #"\n"
0 0 17 3 9 #" (cond"
0 0 17 29 1 #"\n"
0 0 17 3 43 #" ((and ar? as-lf? as-lr? (not as-ss?))"
0 0 17 29 1 #"\n"
0 0 17 3 24 #" (line AS2F AS2R))"
0 0 17 29 1 #"\n"
0 0 17 3 49 #" ((and ar? as-lf? (not as-lr?) (not as-ss?))"
0 0 17 29 1 #"\n"
0 0 17 3 38 #" (line AS2F (+y AS2F ar-\316\224y-r)))"
0 0 17 29 1 #"\n"
0 0 17 3 49 #" ((and ar? (not as-lf?) as-lr? (not as-ss?))"
0 0 17 29 1 #"\n"
0 0 17 3 42 #" (line AS2R (+y AS2R (- ar-\316\224y-f))))"
0 0 17 29 1 #"\n"
0 0 17 3 49 #" ((and ar? (not as-lf?) (not as-lr?) as-ss?)"
0 0 17 29 1 #"\n"
0 0 17 3 54
#" (line (+y AS2 (- ar-\316\224y-f)) (+y AS2 ar-\316\224y-r)))"
0 0 17 29 1 #"\n"
0 0 17 3 17 #" (else #f)))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 35 #" ;----------BACK-RAILS----------"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 15 #" ;BACK-UPRIGHT"
0 0 17 29 1 #"\n"
0 0 17 3 36 #" ;can be one of the next (2 rules):"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 18 #" ;back-upright-lr"
0 0 17 29 1 #"\n"
0 0 17 3 17 #" ;(see below LR)"
0 0 17 29 1 #"\n"
0 0 17 3 58
#" ;this component doesn't exist, it's a redefinition of LR"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 18 #" ;back-upright-ss"
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (define bu-ss"
0 0 17 29 1 #"\n"
0 0 17 3 31 #" (if (and bu? ss? (not lr?))"
0 0 17 29 1 #"\n"
0 0 17 3 18 #" (line LR1 LR3)"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 18 #" ;BACK-UPRIGHT-AR"
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (define bu-ar"
0 0 17 29 1 #"\n"
0 0 17 3 24 #" (if (and bu-ar? ar?)"
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (line ("
0 0 17 3 18 #"curve-end-location"
0 0 17 3 9 #" ar) LR3)"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 29 1 #"\n"
0 0 17 3 11 #" ;BACK-TOP"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define bt "
0 0 17 29 1 #"\n"
0 0 17 3 33 #" (if (and bt? (or bu? bu-ar?))"
0 0 17 29 1 #"\n"
0 0 17 3 52 #" (line LR3 (xyz (/ s-l 2) (cy LR3) (cz LR3)))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" ;BACK-CROSS"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" (define bc"
0 0 17 29 1 #"\n"
0 0 17 3 37 #" (cond ((and bc? bu? (not bu-ar?))"
0 0 17 29 1 #"\n"
0 0 17 3 53
#" (let ((BC (point-in-line LR1 LR3 bc-\316\224h)))"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (line BC (xyz (/ s-l 2) (cy BC) (cz BC)))))"
0 0 17 29 1 #"\n"
0 0 17 3 60
#" ((and bc? (not bu?) bu-ar?) ;depends on bu-ar "
0 0 17 29 1 #"\n"
0 0 17 3 57 #" (let ((BC (point-in-line (curve-start-location"
0 0 17 3 27 #" bu-ar) (curve-end-location"
0 0 17 3 17 #" bu-ar) bc-\316\224h)))"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (line BC (xyz (/ s-l 2) (cy BC) (cz BC)))))"
0 0 17 29 1 #"\n"
0 0 17 3 16 #" (else "
0 0 17 29 1 #"\n"
0 0 17 3 17 #" #f)))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 16 #" ;BACK-CROSS-AR"
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (define bc-ar"
0 0 17 29 1 #"\n"
0 0 17 3 24 #" (if (and bc-ar? ar?)"
0 0 17 29 1 #"\n"
0 0 17 3 39 #" (let ((BCAR (curve-end-location"
0 0 17 3 7 #" ar))) "
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (line BCAR (xyz (/ s-l 2) (cy BCAR) (cz BCAR))))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" ;BACK-SPLAT"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" (define bs"
0 0 17 29 1 #"\n"
0 0 17 3 38 #" (cond ((and bs? bt? (not bc?) sr?)"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (let ((BST (point-in-line (curve-end-location"
0 0 17 3 26 #" bt) (curve-start-location"
0 0 17 3 13 #" bt) bs-\316\224x))"
0 0 17 29 1 #"\n"
0 0 17 3 55 #" (BS (point-in-line (curve-end-location"
0 0 17 3 26 #" sr) (curve-start-location"
0 0 17 3 14 #" sr) bs-\316\224x)))"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" (line BST BS)))"
0 0 17 29 1 #"\n"
0 0 17 3 41 #" ((and bs? bt? bc? (not bc-ar?))"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (let ((BST (point-in-line (curve-end-location"
0 0 17 3 26 #" bt) (curve-start-location"
0 0 17 3 13 #" bt) bs-\316\224x))"
0 0 17 29 1 #"\n"
0 0 17 3 55 #" (BS (point-in-line (curve-end-location"
0 0 17 3 26 #" bc) (curve-start-location"
0 0 17 3 14 #" bc) bs-\316\224x)))"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" (line BST BS)))"
0 0 17 29 1 #"\n"
0 0 17 3 51 #" ((and bs? (not bt?) (not bc?) sr? bc-ar?)"
0 0 17 29 1 #"\n"
0 0 17 3 56 #" (let ((BST (point-in-line (curve-end-location"
0 0 17 3 29 #" bc-ar) (curve-start-location"
0 0 17 3 16 #" bc-ar) bs-\316\224x))"
0 0 17 29 1 #"\n"
0 0 17 3 55 #" (BS (point-in-line (curve-end-location"
0 0 17 3 26 #" sr) (curve-start-location"
0 0 17 3 14 #" sr) bs-\316\224x)))"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" (line BST BS)))"
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (else #f)))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 9 #" ;BACK-X"
0 0 17 29 1 #"\n"
0 0 17 3 13 #"#; (define bx"
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (if (and bx? bu?)"
0 0 17 29 1 #"\n"
0 0 17 3 82
(
#" (let ((LR1r (xyz (+ (cx LR1) s-l) (cy LR1) (cz LR1))) ;can't"
#" mirror points"
) 0 0 17 29 1 #"\n"
0 0 17 3 62
#" (LR3r (xyz (+ (cx LR3) s-l) (cy LR3) (cz LR3))))"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (join-curves"
0 0 17 29 1 #"\n"
0 0 17 3 27 #" (line LR3 LR1r))"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (line LR1 LR3r))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 41 #" ;this draws also the right-side = ERROR"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 16 #" #; (define bx "
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (if (and bx? bu?)"
0 0 17 29 1 #"\n"
0 0 17 3 61
#" (let* ((origin-back (loc-from-o-vx-vy LR1 (vx 1) (p-p"
0 0 17 3 16 #" LR3 LR1))) "
0 0 17 29 1 #"\n"
0 0 17 3 47 #" (BXm (PXm origin-back LR1 LR3)))"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (join-curves"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (line LR1 BXm) "
0 0 17 29 1 #"\n"
0 0 17 3 27 #" (line LR3 BXm)))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" ;ERROR"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 14 #" "
0 0 17 29 1 #"\n"
0 0 17 3 39 #" ;-----------SEAT SURFACES---------- "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 7 #" ;SEAT"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" (define s "
0 0 17 29 1 #"\n"
0 0 17 3 10 #" (if s?"
0 0 17 29 1 #"\n"
0 0 17 3 20 #" (surface-polygon"
0 0 17 29 1 #"\n"
0 0 17 3 18 #" P1"
0 0 17 29 1 #"\n"
0 0 17 3 33 #" (+x P1 (/ s-l 2))"
0 0 17 29 1 #"\n"
0 0 17 3 33 #" (+x P2 (/ s-l 2))"
0 0 17 29 1 #"\n"
0 0 17 3 19 #" P2)"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 10 #" ;SEAT-SB"
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (define s-sb "
0 0 17 29 1 #"\n"
0 0 17 3 23 #" (if (and sb? s-sb?)"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (surface sb)"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 14 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 10 #" ;SEAT-SS"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (define s-ss"
0 0 17 29 1 #"\n"
0 0 17 3 23 #" (if (and s-ss? ss?)"
0 0 17 29 1 #"\n"
0 0 17 3 35 #" (let ((SSF (point-in-line ("
0 0 17 3 20 #"curve-start-location"
0 0 17 3 24 #" ss) (curve-end-location"
0 0 17 3 17 #" ss) s-ss-\316\224y-f))"
0 0 17 29 1 #"\n"
0 0 17 3 55 #" (SSR (point-in-line (curve-start-location"
0 0 17 3 24 #" ss) (curve-end-location"
0 0 17 3 18 #" ss) s-ss-\316\224y-r)))"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (surface-polygon"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" SSF"
0 0 17 29 1 #"\n"
0 0 17 3 44 #" (xyz (/ s-l 2) (cy SSF) (cz SSF))"
0 0 17 29 1 #"\n"
0 0 17 3 44 #" (xyz (/ s-l 2) (cy SSR) (cz SSR))"
0 0 17 29 1 #"\n"
0 0 17 3 16 #" SSR))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 9 #" "
0 0 17 29 1 #"\n"
0 0 17 29 1 #"\n"
0 0 17 3 39 #" ;-----------BACK SURFACES---------- "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 7 #" ;BACK"
0 0 17 29 1 #"\n"
0 0 17 3 11 #" (define b"
0 0 17 29 1 #"\n"
0 0 17 3 10 #" (if b?"
0 0 17 29 1 #"\n"
0 0 17 3 24 #" (surface-polygon"
0 0 17 29 1 #"\n"
0 0 17 3 11 #" P2"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (+x P2 (/ s-l 2))"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" (+x P3 (/ s-l 2))"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" P3)"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 9 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 10 #" ;BACK-BU"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (define b-bu"
0 0 17 29 1 #"\n"
0 0 17 3 39 #" (cond ((and b-bu? bu? (not bu-ar?))"
0 0 17 29 1 #"\n"
0 0 17 3 52
#" (let ((LB (point-in-line LR1 LR3 b-\316\224h)))"
0 0 17 29 1 #"\n"
0 0 17 3 30 #" (surface-polygon "
0 0 17 29 1 #"\n"
0 0 17 3 18 #" LR3 "
0 0 17 29 1 #"\n"
0 0 17 3 48 #" (xyz (/ s-l 2) (cy LR3) (cz LR3)) "
0 0 17 29 1 #"\n"
0 0 17 3 46 #" (xyz (/ s-l 2) (cy LB) (cz LB)) "
0 0 17 29 1 #"\n"
0 0 17 3 19 #" LB)))"
0 0 17 29 1 #"\n"
0 0 17 3 39 #" ((and b-bu? (not bu?) bu-ar?)"
0 0 17 29 1 #"\n"
0 0 17 3 57 #" (let ((LB (point-in-line (curve-start-location"
0 0 17 3 43 #" bu-ar) (curve-end-location bu-ar) b-\316\224h)))"
0 0 17 29 1 #"\n"
0 0 17 3 30 #" (surface-polygon "
0 0 17 29 1 #"\n"
0 0 17 3 18 #" LR3 "
0 0 17 29 1 #"\n"
0 0 17 3 48 #" (xyz (/ s-l 2) (cy LR3) (cz LR3)) "
0 0 17 29 1 #"\n"
0 0 17 3 46 #" (xyz (/ s-l 2) (cy LB) (cz LB)) "
0 0 17 29 1 #"\n"
0 0 17 3 19 #" LB)))"
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (else #f)))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 10 #" ;BACK-BC"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 8 #" ;SHELL"
0 0 17 29 1 #"\n"
0 0 17 3 9 #" ;malha "
0 0 17 29 1 #"\n"
0 0 17 3 16 #" ;solid or mesh"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 28 #" ;back-curve-profile-lumbar"
0 0 17 29 1 #"\n"
0 0 17 3 30 #" ;back-curve-profile-thoracic"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" ;back-curve-profile-border"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" ;back-curve-cross-lumbar"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 30 #" ;seat-curve-profile-buttocks"
0 0 17 29 1 #"\n"
0 0 17 3 26 #" ;seat-curve-profile-hips"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" ;seat-curve-profile-border"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" ;seat-curve-cross-buttocks"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 29 1 #"\n"
0 0 17 3 43 #" ;----------DEPENDENT VARIABLES-----------"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 57 #" ;(define l (bbox-length-x (bounding-box (all-shapes))))"
0 0 17 29 1 #"\n"
0 0 17 3 57 #" ;(define w (bbox-length-y (bounding-box (all-shapes))))"
0 0 17 29 1 #"\n"
0 0 17 3 58
#" ;(define h (bbox-length-z (bounding-box (all-shapes)))) "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 28 #" ;----------SOLID----------"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 12 #" (set! sb"
0 0 17 29 1 #"\n"
0 0 17 3 44 #" (if (and (or so-fr? so-fs?) s-sb?)"
0 0 17 29 1 #"\n"
0 0 17 3 28 #" (join-curves-new"
0 0 17 29 1 #"\n"
0 0 17 3 18 #" (list"
0 0 17 29 1 #"\n"
0 0 17 3 32 #" (line-new SFM SFF)"
0 0 17 29 1 #"\n"
0 0 17 3 96
(
#" (arc-new SFC sb-rf-mm (/ (* 3 pi) 2) (- (* 2 (- pi/2 ("
#"/ (- pi/2 sb-\316\261t-rad) 2)))))"
) 0 0 17 29 1 #"\n"
0 0 17 3 32 #" (line-new SFR SRF)"
0 0 17 29 1 #"\n"
0 0 17 3 82
(
#" (arc-new SRC sb-rr-mm pi/2 (* 2 (- pi/2 (/ (+ pi/2 sb-"
#"\316\261t-rad) 2))))"
) 0 0 17 29 1 #"\n"
0 0 17 3 34 #" (line-new SRR SRM)))"
0 0 17 29 1 #"\n"
0 0 17 3 16 #" sb))"
0 0 17 29 1 #"\n"
0 0 17 3 40 #" ;;;superficie apaga linha para o sweep"
0 0 17 29 1 #"\n"
0 0 17 3 38 #" ;;;sweep apaga linha para superficie"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 8 #" ;FRAME"
0 0 17 29 1 #"\n"
0 0 17 3 18 #" (define frame "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (append "
0 0 17 29 1 #"\n"
0 0 17 3 11 #" (list "
0 0 17 29 1 #"\n"
0 0 17 3 12 #" lf lr "
0 0 17 29 1 #"\n"
0 0 17 3 26 #" sb sf sr ss sx sc sl"
0 0 17 29 1 #"\n"
0 0 17 3 25 #" lsf lsr lss lsx lsc"
0 0 17 29 1 #"\n"
0 0 17 3 25 #" lbf lbr lbs lbx lbc"
0 0 17 29 1 #"\n"
0 0 17 3 36 #" bu-ss bu-ar bt bc bc-ar bs ;bx"
0 0 17 29 1 #"\n"
0 0 17 3 15 #" as-ss ar)"
0 0 17 29 1 #"\n"
0 0 17 3 48 #" (if sbx sbx (list))) ;pq o sbx \303\251 uma lista"
0 0 17 29 1 #"\n"
0 0 17 3 5 #" )"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 15 #" ;FRAME-ROUND "
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (define so-fr"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (if so-fr?"
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (for ((el frame))"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (when el"
0 0 17 29 1 #"\n"
0 0 17 3 51 #" (sweep el (surface-circle (u0) so-fr-r))))"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 6 #" "
0 0 17 29 1 #"\n"
0 0 17 3 3 #" "
0 0 17 29 1 #"\n"
0 0 17 3 15 #" ;FRAME-SQUARE"
0 0 17 29 1 #"\n"
0 0 17 3 15 #" (define so-sf"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (if so-fs?"
0 0 17 29 1 #"\n"
0 0 17 3 67
#" ;(displayln frame) mostra o que acontece aos elementos da lista"
0 0 17 29 1 #"\n"
0 0 17 3 21 #" (for ((el frame))"
0 0 17 29 1 #"\n"
0 0 17 3 14 #" (when el"
0 0 17 29 1 #"\n"
0 0 17 3 65
#" (sweep el (surface-rectangle (xy 0 0) so-fs-l so-fs-w))))"
0 0 17 29 1 #"\n"
0 0 17 3 8 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 10 #" ;SUPPORT"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (define support (list"
0 0 17 29 1 #"\n"
0 0 17 3 30 #" s s-sb s-ss"
0 0 17 29 1 #"\n"
0 0 17 3 27 #" b b-bu))"
0 0 17 29 1 #"\n"
0 0 17 3 2 #" "
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (define so-s"
0 0 17 29 1 #"\n"
0 0 17 3 12 #" (if so-s?"
0 0 17 29 1 #"\n"
0 0 17 3 22 #" (for ((el support))"
0 0 17 29 1 #"\n"
0 0 17 3 13 #" (when el"
0 0 17 29 1 #"\n"
0 0 17 3 31 #" (extrusion el (z so-s-t))))"
0 0 17 29 1 #"\n"
0 0 17 3 7 #" #f))"
0 0 17 29 1 #"\n"
0 0 17 3 4 #" |#"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 27 #";----------MIRROR----------"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 10 #"half-chair"
0 0 24 3 2 #" ("
0 0 14 3 5 #"union"
0 0 24 3 2 #" ("
0 0 14 3 10 #"all-shapes"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 6 #"mirror"
0 0 24 3 1 #" "
0 0 14 3 10 #"half-chair"
0 0 24 3 2 #" ("
0 0 14 3 1 #"x"
0 0 24 3 1 #" "
0 0 21 3 1 #"0"
0 0 24 3 3 #") ("
0 0 14 3 2 #"vx"
0 0 24 3 1 #" "
0 0 14 3 4 #"sa-w"
0 0 24 3 2 #") "
0 0 21 3 2 #"#t"
0 0 24 3 2 #") "
0 0 17 3 21 #";draws the right side"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 17 3 33 #";-----------close chair----------"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" )"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 14 3 7 #"provide"
0 0 24 3 1 #" "
0 0 14 3 16 #"delay-new-chair?"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 16 #"delay-new-chair?"
0 0 24 3 2 #" ("
0 0 14 3 14 #"make-parameter"
0 0 24 3 1 #" "
0 0 21 3 2 #"#f"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 60
#";To not make copies & for image not jump whem moving sliders"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 9 #"new-chair"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 6 #"unless"
0 0 24 3 2 #" ("
0 0 14 3 16 #"delay-new-chair?"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 14 #"disable-update"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 17 #"delete-all-shapes"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"chair"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 13 #"enable-update"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 17 3 1 #"#"
0 0 17 3 1 #"|"
0 0 17 29 1 #"\n"
0 0 17 3 1 #"("
0 0 17 3 12 #"select-chair"
0 0 17 3 1 #" "
0 0 17 3 1 #"'"
0 0 17 3 3 #"t14"
0 0 17 3 1 #")"
0 0 17 29 1 #"\n"
0 0 17 3 2 #";("
0 0 17 3 12 #"select-chair"
0 0 17 3 1 #" "
0 0 17 3 1 #"'"
0 0 17 3 11 #"t14-special"
0 0 17 3 1 #")"
0 0 17 29 1 #"\n"
0 0 17 3 1 #"("
0 0 17 3 9 #"new-chair"
0 0 17 3 1 #")"
0 0 17 29 1 #"\n"
0 0 17 3 1 #"("
0 0 17 3 4 #"set!"
0 0 17 3 1 #" "
0 0 17 3 20 #"leg-front-angle-rake"
0 0 17 3 1 #" "
0 0 17 3 2 #"45"
0 0 17 3 1 #")"
0 0 17 29 1 #"\n"
0 0 17 3 1 #"("
0 0 17 3 9 #"new-chair"
0 0 17 3 1 #")"
0 0 17 29 1 #"\n"
0 0 17 3 1 #"("
0 0 17 3 11 #"reset-chair"
0 0 17 3 1 #")"
0 0 17 29 1 #"\n"
0 0 17 3 1 #"("
0 0 17 3 10 #"new-chair)"
0 0 17 29 1 #"\n"
0 0 17 3 2 #"|#"
0 0
| true |
dc4db37a93aaeef3f993d120bc97ce7ceba370fe | 3e2d1001690f73656c532f78874875d753fa287f | /ui.rkt | ef21184b7eca80bae6f7bc3ee60d49e7b32a8765 | [
"BSD-2-Clause"
]
| permissive | gregr/racket-misc | c51efce71c71e470dae1235d8fae1e313669fd3c | 0a5c9d4875288795e209d06982b82848c989d08b | refs/heads/master | 2020-12-13T15:05:28.463597 | 2017-10-26T19:20:44 | 2017-10-26T19:20:44 | 19,898,155 | 10 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 7,922 | rkt | ui.rkt | #lang racket/base
(provide
display-view-thread
event-keypress
event-terminate
event-tick
keypress-thread
sleep-remaining
timer-new
timer-now
)
(require
"generator.rkt"
"record.rkt"
"sugar.rkt"
"terminal.rkt"
racket/function
)
(module+ test
(require rackunit))
(module+ main
(require
"dict.rkt"
"either.rkt"
"markout.rkt"
"maybe.rkt"
"monad.rkt"
racket/dict
racket/list
racket/match
))
(records base-event
(event-terminate)
(event-tick dt)
(event-keypress char))
(define ((timer-new start))
(lets
next = (current-milliseconds)
dt = (- next start)
(gen-susp dt (timer-new next))))
(define (timer-now) (timer-new (current-milliseconds)))
(def (sleep-remaining total timer)
(gen-susp overhead _) = (timer)
sleep-duration = (/ (max 0 (- (* total 1000) overhead)) 1000)
(sleep sleep-duration))
(define (keypress-thread chan)
(define (loop)
(channel-put chan (event-keypress (read-char)))
(loop))
(thread loop))
(define (display-view-thread latency chan)
(define fetch-chan (make-channel))
(def (display-view view)
view-str = (view)
_ = (screen-clear)
(display view-str))
(define (display-loop timer)
(display-view (channel-get fetch-chan))
(sleep-remaining latency timer)
(display-loop (gen-susp-k (timer))))
(def (fetch-loop view)
evt = (sync chan (channel-put-evt fetch-chan view))
(if (channel-put-evt? evt)
(fetch-loop (channel-get chan))
(fetch-loop evt)))
(define fetch-thread (thread (thunk (fetch-loop (channel-get chan)))))
(define display-thread (thread (thunk (display-loop (timer-now)))))
(thread (thunk (thread-wait fetch-thread) (kill-thread display-thread)))
fetch-thread)
(module+ main
(define latency-default 0.1)
(record event-keycount char count)
(define keycount-controller
((lambda ()
(define (digits->count digits)
(if (empty? digits) 1 (string->number (list->string (reverse digits)))))
(define (new digits)
(fn (event)
(list digits mevent) =
(match event
((event-keypress char)
(if (char-numeric? char)
(lets
digits = (list* char digits)
(list digits (left (digits->count digits))))
(list '() (right (event-keycount char (digits->count digits))))))
(_ (list digits (right event))))
(gen-susp mevent (new digits))))
(new '()))))
(define ((keycount->events keymap) event)
(match event
((event-keycount char count)
(match (dict-get keymap char)
((just action) (action count))
((nothing) (list event))))
(_ (list event))))
(record note-view view)
(define ((sources->source sources) dt)
(append* (map (lambda (source) (source dt)) sources)))
(define (tick-event-source dt) (list (event-tick dt)))
(define (keypress-event-source dt) (map event-keypress (read-chars-ready)))
(define terminal-event-source
(sources->source (list keypress-event-source tick-event-source)))
(define (tick-thread duration chan)
(def (loop timer)
_ = (sleep-remaining duration timer)
(gen-susp dt timer) = (timer)
_ = (channel-put chan (event-tick dt))
(loop timer))
(thread (thunk (loop (timer-now)))))
(define (start-terminal-event-threads latency)
(define chan (make-channel))
(define ts (list (keypress-thread chan) (tick-thread latency chan)))
(list chan (thunk (map kill-thread ts))))
(define (model-control-loop ctrl model) (gen-coloop ctrl model))
(define (dispatch-events ctrl events)
(model-control-loop ctrl
(gn yield () (forl event <- events
(yield event)))))
(define (decorate-controller dec ctrl)
(define dctrl (dec ctrl))
(fn (event)
(gen-susp result ctrl) = (dctrl event)
(gen-susp result (decorate-controller dec ctrl))))
(def (doc->str doc)
sz = (screen-size)
ctx = (sizing-context-new-default)
block = (doc->styled-block ctx style-empty sz doc)
(styled-block->string block))
(def (markout-view-model latency doc submodel)
chan-display = (make-channel)
display-thread = (display-view-thread latency chan-display)
_ = (channel-put chan-display (thunk (doc->str doc)))
(gn yield (note)
result = (letn loop (list submodel note) = (list submodel note)
(match note
((note-view next-doc)
(channel-put chan-display
(thunk (doc->str next-doc)))
(loop (list submodel (yield (nothing)))))
(_ (match (submodel note)
((gen-susp v k) (loop (list k (yield v))))
(r r)))))
_ = (kill-thread display-thread)
result))
(def (dispatch-notes yield model notes)
(match (dispatch-events model notes)
((right (gen-susp mevents model))
(lets
events = (maybe-filter mevents)
(if (empty? events) (right model)
(forf
emodel = (right model)
event <- events
#:break (left? emodel)
(right model) = emodel
notes = (yield event)
(dispatch-notes yield model notes)))))
((left (gen-susp r _)) (left r))))
(def (event-source-model source submodel)
(gn yield (notes)
(letn loop (list submodel notes) = (list submodel notes)
(match (dispatch-notes yield submodel notes)
((left result) result)
((right submodel)
(loop (list submodel (yield (source)))))))))
(def (terminal-event-model latency submodel)
(list chan-events kill-threads) = (start-terminal-event-threads latency)
model = (event-source-model (thunk (channel-get chan-events)) submodel)
(gn yield (notes)
result = (gen-delegate yield model notes)
_ = (kill-threads)
result))
(def (markout-model latency doc)
view = (markout-view-model latency doc (const-gen (nothing)))
terminal = (terminal-event-model latency view)
(thunk (terminal '())))
(define (markout-model-control-loop doc ctrl)
(with-cursor-hidden
(with-stty-direct
(with-screen-fresh
(model-control-loop ctrl (markout-model latency-default doc))))))
(define (doc-str str) (doc-atom style-empty str))
(define (doc-append . docs) (vertical-list style-empty docs))
(define ((ctrl doc) event)
(def (note-doc-append doc-tail)
new-doc = (doc-append doc doc-tail)
(gen-susp (list (note-view new-doc)) (ctrl new-doc)))
(match event
((event-terminate) (gen-result 'quitting))
((event-tick dt)
(note-doc-append (doc-str (format "time-delta: ~ams" dt))))
((event-keycount char count)
(note-doc-append (doc-str (format "keycount: ~v,~a" char count))))
(_ (gen-susp '() (ctrl doc)))))
(define keymap
(hash
#\q (fn (_) (list (event-terminate)))
))
(lets
sty = (style 'yellow 'blue #f #f #f #f)
doc = (doc-preformatted (styled-block-fill sty #\x (size 10 20)))
doc = (doc-append doc (doc-str "Press 'q' to quit this test."))
ctrl = (gen-compose*
(fn->gen (curry either-from '()))
(either-gen
(gen-compose*
(ctrl doc)
(fn->gen (lambda (events) (first events)))
(fn->gen (keycount->events keymap))))
keycount-controller)
(markout-model-control-loop doc ctrl)
))
| false |
9cbe7f42ec2c76623501d79507f78f983ac2ecef | 5f83eb0c32f15aeed5993a3ad5ededb6f31fe7aa | /racket/test/x86_32/verify-jmp-call.rkt | b35bd4ebaa7b7a28a1bf54bb3dafb2101444e3b0 | []
| no_license | uw-unsat/jitterbug | 45b54979b156c0f5330012313052f8594abd6f14 | 78d1e75ad506498b585fbac66985ff9d9d05952d | refs/heads/master | 2023-07-11T09:15:21.433725 | 2023-06-18T04:10:48 | 2023-07-03T20:12:41 | 244,440,882 | 46 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 260 | rkt | verify-jmp-call.rkt | #lang racket/base
(require
"../../lib/tests.rkt"
(only-in "../../x86/x86_32/spec.rkt" check-jit))
(module+ test
(time (verify-jmp-call "x86_32-jmp-call tests" check-jit
#:selector (verify-only-in (list 'BPF_CALL 'BPF_EXIT)))))
| false |
eade2f61ec53f8c69e7c3baf5a7000da1cd30801 | 49d98910cccef2fe5125f400fa4177dbdf599598 | /advent-of-code-2022/day13/day13.rkt | 5df15dc5c2f2ec59198cb458792c0a249cc51849 | []
| no_license | lojic/LearningRacket | 0767fc1c35a2b4b9db513d1de7486357f0cfac31 | a74c3e5fc1a159eca9b2519954530a172e6f2186 | refs/heads/master | 2023-01-11T02:59:31.414847 | 2023-01-07T01:31:42 | 2023-01-07T01:31:42 | 52,466,000 | 30 | 4 | null | null | null | null | UTF-8 | Racket | false | false | 1,444 | rkt | day13.rkt | #lang racket
(require "../advent.rkt")
(define in (for/list ([ str (parse-aoc 13 #:sep "\n\n") ])
(read (~> (string-replace str #px"[,\\s]" " ")
(string-append "[" _ "]")
(open-input-string _)))))
(define (compare left right)
(define (compare* l r)
(cond [ (and (number? l) (number? r))
(cond [ (< l r) 'l ]
[ (< r l) 'r ]
[ else (compare (cdr left) (cdr right)) ]) ]
[ (and (list? l) (list? r))
(let ([ c (compare l r) ])
(if (eq? c 'n)
(compare (cdr left) (cdr right))
c)) ]
[ (list? l) (compare left (cons (list r) (cdr right))) ]
[ (list? r) (compare (cons (list l) (cdr left)) right) ]))
(cond [ (and (null? left) (null? right)) 'n ]
[ (null? left) 'l ]
[ (null? right) 'r ]
[ else (compare* (car left) (car right)) ]))
(define (part1 in)
(~> (map (curry apply compare) in)
enumerate
(filter (compose (curry eq? 'l) car) _)
(map (compose add1 cdr) _)
list-sum))
(define (part2 in)
(define (pred? n) (compose (curry eq? 'r) (curry compare (list (list n)))))
(let ([ in (apply append in) ])
(* (+ 1 (count (pred? 2) in))
(+ 2 (count (pred? 6) in)))))
(check-equal? (part1 in) 6484)
(check-equal? (part2 in) 19305)
| false |
7cc4fc752e89b17a9e5474d1ef86b80d6f379219 | fc90b5a3938850c61bdd83719a1d90270752c0bb | /web-server-lib/web-server/dispatchers/dispatch-logresp.rkt | 6803544c791eb4fb67ab05b8051e2c1d8c82179c | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/web-server | cccdf9b26d7b908701d7d05568dc6ed3ae9e705b | e321f8425e539d22412d4f7763532b3f3a65c95e | refs/heads/master | 2023-08-21T18:55:50.892735 | 2023-07-11T02:53:24 | 2023-07-11T02:53:24 | 27,431,252 | 91 | 42 | NOASSERTION | 2023-09-02T15:19:40 | 2014-12-02T12:20:26 | Racket | UTF-8 | Racket | false | false | 2,598 | rkt | dispatch-logresp.rkt | #lang racket/base
(require racket/contract
web-server/dispatchers/dispatch
web-server/http
web-server/http/response
"private/log.rkt"
(submod web-server/dispatchers/dispatch-log private))
(define format-reqresp/c
(or/c (-> request? string?)
(-> request? response? string?)))
(provide/contract
[format-reqresp/c contract?]
[log-format/c contract?]
[log-format->format (log-format/c . -> . format-reqresp/c)]
[paren-format format-reqresp/c]
[extended-format format-reqresp/c]
[apache-default-format format-reqresp/c]
[interface-version dispatcher-interface-version/c]
[make (->* (dispatcher/c)
(#:format (or/c log-format/c format-reqresp/c)
#:log-path (or/c path-string? output-port?))
dispatcher/c)])
(define interface-version 'v1)
(define ((log-header-handler log-message req original-handler) resp)
(define new-resp (original-handler resp))
(log-message req new-resp)
new-resp)
(define (make #:format [format paren-format]
#:log-path [log-path "log"]
dispatcher)
(define final-format
(if (symbol? format)
(log-format->format format)
format))
(define log-message (make-log-message
log-path
(λ (req resp)
(cond
[(procedure-arity-includes? final-format 2)
(final-format req resp)]
[else (final-format req)]))))
(lambda (conn req)
(with-handlers ([exn:dispatcher? (lambda (e) (next-dispatcher))])
(parameterize ([current-header-handler (log-header-handler log-message req (current-header-handler))])
(dispatcher conn req)))))
(define (log-format->format log-format)
(case log-format
[(parenthesized-default)
paren-format]
[(extended)
extended-format]
[(apache-default)
apache-default-format]))
(define apache-default-format
(make-format "~a - - [~a] \"~a\" ~a -\n"
(λ (req resp)
(append (apache-default-format/obj req)
(list (response-code resp))))))
(define paren-format
(make-format "~s\n"
(λ (req resp)
(list (append (car (paren-format/obj req))
(list 'code (response-code resp)))))))
(define extended-format
(make-format "~s\n"
(λ (req resp)
(list (append (car (extended-format/obj req))
(list (list 'code (response-code resp))))))))
| false |
36d0d9fa0769b7f0679c9dd6bbd500ec97d7e08c | 9dc73e4725583ae7af984b2e19f965bbdd023787 | /monad/amonad.rkt | 04cb5f064e2b2ac0e1a354ea4e120b4990d75660 | []
| no_license | hidaris/thinking-dumps | 2c6f7798bf51208545a08c737a588a4c0cf81923 | 05b6093c3d1239f06f3657cd3bd15bf5cd622160 | refs/heads/master | 2022-12-06T17:43:47.335583 | 2022-11-26T14:29:18 | 2022-11-26T14:29:18 | 83,424,848 | 6 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,381 | rkt | amonad.rkt | #lang racket
;; The identity monad
(define mybegin
(λ (x f)
(f x)))
(mybegin (printf "One\n")
(λ (_) (printf "Two\n")))
(mybegin (printf "One\n")
(λ (_) (mybegin (printf "Two\n")
(λ (_) (printf "Three\n")))))
(define mylet
(λ (x f)
(f x)))
(mylet 5 (λ (x) (+ x 3)))
(mylet 5 (λ (x) (mylet x (λ (y) (+ x y)))))
;; ma -> (a -> mb) -> mb
(define bind_identity
(λ (ma sequel)
(sequel ma))) ; <= This is a mb.
;; a -> ma
(define unit_identity
(λ (a)
a)) ; <= This is a ma.
(bind_identity
(unit_identity (printf "One\n"))
(λ (_)
(bind_identity
(unit_identity (printf "Two\n"))
(λ (_)
(unit_identity (printf "Three\n"))))))
;; ma -> (a -> mb) -> mb
(bind_identity
(unit_identity 5)
(λ (x) (unit_identity (+ x 3))))
(bind_identity
(unit_identity 5)
(λ (x)
(bind_identity
(unit_identity x)
(λ (y) (unit_identity (+ x y))))))
;; The State Monad
(define even-length?
(λ (ls)
(cond
[(null? ls) #t]
[else
(not (even-length? (cdr ls)))])))
(define even-length?_sps
(λ (ls s)
(cond
[(null? ls) s]
[else
(even-length?_sps (cdr ls) (not s))])))
(define even-length?_state
(λ (ls)
(cond
[(null? ls) (unit_state '_)]
[else (bind_state
(λ (s)
`(_ . ,(not s)))
(λ (_)
(even-length?_state (cdr ls))))])))
(define unit_state
(λ (a)
(λ (s) ; <= This function is a ma.
`(,a . ,s))))
(define bind_state
(λ (ma sequel)
(λ (s) ; <= This function is a mb.
(let ((p (ma s)))
(let ((a_^ (car p))
(s_^ (cdr p)))
(let ((mb (sequel a_^)))
(mb s_^)))))))
(define remberevensXcountevens_2pass
(λ (l)
`(,(remberevens_direct l) . ,(countevens_direct l))))
(define remberevens_direct
(λ (l)
(cond
[(null? l) `()]
[(pair? (car l))
(cons (remberevens_direct (car l))
(remberevens_direct (cdr l)))]
[(or (null? (car l)) (odd? (car l)))
(cons (car l)
(remberevens_direct (cdr l)))]
[else (remberevens_direct (cdr l))])))
(define countevens_direct
(λ (l)
(cond
[(null? l) 0]
[(pair? (car l))
(+ (countevens_direct (car l))
(countevens_direct (cdr l)))]
[(or (null? (car l)) (odd? (car l)))
(countevens_direct (cdr l))]
[else (add1 (countevens_direct (cdr l)))])))
(define remberevensXcountevens_cps
(λ (l k)
(cond
[(null? l) (k '(() . 0))]
[(pair? (car l))
(remberevensXcountevens_cps (car l)
(λ (pa)
(remberevensXcountevens_cps (cdr l)
(λ (pd)
(k `(,(cons (car pa) (car pd)) . ,(+ (cdr pa) (cdr pd))))))))]
[(or (null? (car l)) (odd? (car l)))
(remberevensXcountevens_cps (cdr l)
(λ (p)
(k `(,(cons (car l) (car p)) . ,(cdr p)))))]
[else (remberevensXcountevens_cps (cdr l)
(λ (p) (k `(,(car p) . ,(add1 (cdr p))))))])))
(define remberevens
(λ (l)
(cond
[(null? l) (unit_state '())]
[(pair? (car l))
(bind_state
(remberevens (car l))
(λ (a)
(bind_state
(remberevens (cdr l))
(λ (d) (unit_state (cons a d))))))]
[(or (null? (car l)) (odd? (car l)))
(bind_state
(remberevens (cdr l))
(λ (d) (unit_state (cons (car l) d))))]
[else
(remberevens (cdr l))])))
(define-syntax do*_state
(syntax-rules ()
((_ () body) body)
((_ ((a0 ma0) (a ma) ...) body)
(bind_state
ma0
(λ (a0) (do*_state ((a ma) ...) body))))))
;; (do*_state ((a (remberevens_direct (car l)))
;; (d (remberevens_direct (cdr l))))
;; (unit_state (cons a d)))
(define remberevensXcountevens_almost
(λ (l)
(cond
[(null? l) (unit_state '())]
[(pair? (car l))
(bind_state
(remberevensXcountevens_almost (car l))
(λ (a)
(bind_state
(remberevensXcountevens_almost (cdr l))
(λ (d) (unit_state (cons a d))))))]
[(or (null? (car l)) (odd? (car l)))
(bind_state
(remberevensXcountevens_almost (cdr l))
(λ (d) (unit_state (cons (car l) d))))]
[else
(remberevens (cdr l))])))
| true |
2c00436107d2bf5ab0271dc04048a91a1d10d180 | b682299435d3cf5c49e44196a8e886617ed54151 | /keyboard/drracket/private/frame.rkt | eeaa3bae04f67102cff2277ae6350464e46a1b7e | []
| no_license | samth/contract-benchmarks | 57e322263ede793cf83ed8e303d1e5e3963d125e | aaff107fd309cd0ccd5f1d8fa3fa59412b655e6e | refs/heads/master | 2020-12-24T22:40:51.841481 | 2013-06-21T20:48:38 | 2013-06-21T20:48:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 36,376 | rkt | frame.rkt | #lang racket/base
(module install-pkg racket/base
(require racket/class
pkg/gui/main)
(provide install-pkg
pkg-manager)
(define pkg-gui #f)
(define (pkg-manager wrap-terminal-action)
(if pkg-gui
(send pkg-gui show #t)
(set! pkg-gui (make-pkg-gui #:wrap-terminal-action wrap-terminal-action))))
(define (install-pkg parent wrap-terminal-action)
(make-pkg-installer #:parent parent
#:wrap-terminal-action wrap-terminal-action)))
(require string-constants
racket/match
racket/class
racket/string
racket/file
racket/math
racket/unit
"drsig.rkt"
racket/gui/base
framework
net/url
net/head
setup/plt-installer
help/bug-report
setup/unpack
mrlib/terminal
pkg
(submod "." install-pkg))
(provide frame@)
(define-unit frame@
(import [prefix drracket:unit: drracket:unit^]
[prefix drracket:app: drracket:app^]
[prefix help: drracket:help-desk^]
[prefix drracket:multi-file-search: drracket:multi-file-search^]
[prefix drracket:init: drracket:init^]
[prefix drracket: drracket:interface^])
(export (rename drracket:frame^
[-mixin mixin]))
(define last-keybindings-planet-attempt "")
(define basics-mixin
(mixin (frame:standard-menus<%>) (drracket:frame:basics<%>)
(define/override (on-subwindow-focus win on?)
(when the-keybindings-frame
(when on?
(send the-keybindings-frame set-bindings
(if (can-show-keybindings?)
(get-keybindings-to-show)
'())))))
(define/override (on-subwindow-char receiver event)
(let ([user-key? (send (keymap:get-user)
handle-key-event
(if (is-a? receiver editor-canvas%)
(send receiver get-editor)
receiver)
event)])
;; (printf "user-key? ~s\n" user-key?) returns #t for key release events -- is this a problem? (we'll find out!)
(or user-key?
(super on-subwindow-char receiver event))))
(inherit get-edit-target-window get-edit-target-object get-menu-bar)
(define/private (get-menu-bindings)
(let ([name-ht (make-hasheq)])
(let loop ([menu-container (get-menu-bar)])
(for-each
(λ (item)
(when (is-a? item selectable-menu-item<%>)
(let ([short-cut (send item get-shortcut)])
(when short-cut
(let ([keyname
(string->symbol
(keymap:canonicalize-keybinding-string
(string-append
(menu-item->prefix-string item)
(case short-cut
[(#\;) "semicolon"]
[(#\:) "colon"]
[(#\space) "space"]
[else
(cond
[(symbol? short-cut) (symbol->string short-cut)]
[(char? short-cut) (string short-cut)])]))))])
(hash-set! name-ht keyname (send item get-plain-label))))))
(when (is-a? item menu-item-container<%>)
(loop item)))
(send menu-container get-items)))
(when (eq? (system-type) 'windows)
(for-each (λ (top-level-menu)
(when (is-a? top-level-menu menu%)
(let ([amp-key
(let loop ([str (send top-level-menu get-label)])
(cond
[(regexp-match #rx"[^&]*[&](.)(.*)" str)
=>
(λ (m)
(let ([this-amp (list-ref m 1)]
[rest (list-ref m 2)])
(cond
[(equal? this-amp "&")
(loop rest)]
[else
(string-downcase this-amp)])))]
[else #f]))])
(when amp-key
(hash-set! name-ht
(format "m:~a" amp-key)
(format "~a menu" (send top-level-menu get-plain-label)))
(hash-set! name-ht
(format "m:s:~a" amp-key)
(format "~a menu" (send top-level-menu get-plain-label)))))))
(send (get-menu-bar) get-items)))
name-ht))
(define/private (menu-item->prefix-string item)
(apply
string-append
(map (λ (prefix)
(case prefix
[(alt) (if (eq? (system-type) 'windows)
"m:"
"a:")]
[(cmd) "d:"]
[(meta) "m:"]
[(ctl) "c:"]
[(shift) "s:"]
[(opt option) "a:"]
[else (error 'menu-item->prefix-string "unknown prefix ~s\n" prefix)]))
(send item get-shortcut-prefix))))
(define/private (copy-hash-table ht)
(let ([res (make-hasheq)])
(hash-for-each
ht
(λ (x y) (hash-set! res x y)))
res))
(define/private (can-show-keybindings?)
(let ([edit-object (get-edit-target-object)])
(and edit-object
(is-a? edit-object editor<%>)
(let ([keymap (send edit-object get-keymap)])
(is-a? keymap keymap:aug-keymap<%>)))))
;; pre: (can-show-keybindings?) = #t
(define/private (get-keybindings-to-show)
(define edit-object (get-edit-target-object))
(define keymap (send edit-object get-keymap))
(define menu-names (get-menu-bindings))
(define table (send keymap get-map-function-table))
(define bindings (hash-map table list))
(define w/menus
(append (hash-map menu-names list)
(filter (λ (binding) (not (bound-by-menu? binding menu-names)))
bindings)))
(sort
w/menus
(λ (x y) (string-ci<=? (cadr x) (cadr y)))))
(define/private (show-keybindings)
(if (can-show-keybindings?)
(show-keybindings-to-user (get-keybindings-to-show) this)
(bell)))
(define/private (bound-by-menu? binding menu-table)
(ormap (λ (constituent)
(hash-ref menu-table (string->symbol constituent) (λ () #f)))
(regexp-split #rx";" (symbol->string (car binding)))))
(define/override (help-menu:before-about help-menu)
(make-help-desk-menu-item help-menu))
(define/override (help-menu:about-callback item evt) (drracket:app:about-drscheme))
(define/override (help-menu:about-string) (string-constant about-drscheme))
(define/override (help-menu:create-about?) #t)
(define/public (get-additional-important-urls) '())
(define/override (help-menu:after-about menu)
(drracket-help-menu:after-about menu this))
(define/override (file-menu:new-string) (string-constant new-menu-item))
(define/override (file-menu:create-new?) #t)
(define/override (file-menu:open-string) (string-constant open-menu-item))
(define/override (file-menu:create-open?) #t)
(define/override (file-menu:create-open-recent?) #t)
(define/override (file-menu:between-open-and-revert file-menu)
(new menu-item%
[label (string-constant install-plt-file-menu-item...)]
[parent file-menu]
[callback (λ (item evt)
(install-plt-file this))])
(new menu-item%
[label (string-constant install-pkg-menu-item...)]
[parent file-menu]
[callback
(λ (item evt)
(install-pkg this
(lambda (thunk)
(parameterize ([error-display-handler drracket:init:original-error-display-handler])
(thunk)))))])
(new separator-menu-item% [parent file-menu])
(new menu-item%
[label (string-constant pkg-manager-menu-item)]
[parent file-menu]
[callback
(λ (item evt)
(pkg-manager (lambda (thunk)
(parameterize ([error-display-handler drracket:init:original-error-display-handler])
(thunk)))))])
(super file-menu:between-open-and-revert file-menu))
(define/override (file-menu:between-print-and-close menu)
(super file-menu:between-print-and-close menu)
(instantiate menu-item% ()
(label (string-constant mfs-multi-file-search-menu-item))
(parent menu)
(callback
(λ (_1 _2)
(drracket:multi-file-search:multi-file-search))))
(new separator-menu-item% (parent menu)))
(define/override (edit-menu:between-find-and-preferences menu)
(super edit-menu:between-find-and-preferences menu)
(when (current-eventspace-has-standard-menus?)
(new separator-menu-item% [parent menu]))
(let ([keybindings-on-demand
(λ (menu-item)
(let ([last-edit-object (get-edit-target-window)])
(send menu-item enable (can-show-keybindings?))))])
(instantiate menu% ()
(label (string-constant keybindings-menu-item))
(parent menu)
(demand-callback
(λ (keybindings-menu)
(for-each (λ (old) (send old delete))
(send keybindings-menu get-items))
(new menu-item%
(parent keybindings-menu)
(label (string-constant keybindings-show-active))
(callback (λ (x y) (show-keybindings)))
(help-string (string-constant keybindings-info))
(demand-callback keybindings-on-demand))
(new menu-item%
(parent keybindings-menu)
(label (string-constant keybindings-add-user-defined-keybindings))
(callback
(λ (x y)
(with-handlers ([exn? (λ (x)
(printf "~a\n" (exn-message x)))])
(let ([filename (finder:get-file
#f
(string-constant keybindings-choose-user-defined-file)
#f
""
this)])
(when filename
(add-keybindings-item/update-prefs filename)))))))
(new menu-item%
(parent keybindings-menu)
(label (string-constant keybindings-add-user-defined-keybindings/planet))
(callback
(λ (x y)
(let ([planet-spec (get-text-from-user (string-constant drscheme)
(string-constant keybindings-type-planet-spec)
this
last-keybindings-planet-attempt)])
(when planet-spec
(set! last-keybindings-planet-attempt planet-spec)
(cond
[(planet-string-spec? planet-spec)
=>
(λ (planet-sexp-spec)
(add-keybindings-item/update-prefs planet-sexp-spec))]
[else
(message-box (string-constant drscheme)
(format (string-constant keybindings-planet-malformed-spec)
planet-spec)
#:dialog-mixin frame:focus-table-mixin)]))))))
(let ([ud (preferences:get 'drracket:user-defined-keybindings)])
(unless (null? ud)
(new separator-menu-item% (parent keybindings-menu))
(for-each (λ (item)
(new menu-item%
(label (format (string-constant keybindings-menu-remove)
(if (path? item)
(path->string item)
(format "~s" item))))
(parent keybindings-menu)
(callback
(λ (x y) (remove-keybindings-item item)))))
ud)))))))
(unless (current-eventspace-has-standard-menus?)
(make-object separator-menu-item% menu)))
(super-new)))
(define (add-keybindings-item/update-prefs item)
(when (add-keybindings-item item)
(preferences:set 'drracket:user-defined-keybindings
(cons item
(preferences:get 'drracket:user-defined-keybindings)))))
(define (planet-string-spec? p)
(let ([sexp
(with-handlers ([exn:fail:read? (λ (x) #f)])
(read (open-input-string p)))])
(and sexp
(planet-spec? sexp)
sexp)))
(define (planet-spec? p)
(match p
[`(planet ,(? string?) (,(? string?) ,(? string?) ,(? number?))) #t]
[`(planet ,(? string?) (,(? string?) ,(? string?) ,(? number?) ,(? number?))) #t]
[else #f]))
;; add-keybindings-item : keybindings-item[path or planet spec] -> boolean
;; boolean indicates if the addition happened sucessfully
(define (add-keybindings-item item)
(with-handlers ([exn:fail?
(λ (x)
(message-box (string-constant drscheme)
(format (string-constant keybindings-error-installing-file)
(if (path? item)
(path->string item)
(format "~s" item))
(exn-message x))
#:dialog-mixin frame:focus-table-mixin)
#f)])
(keymap:add-user-keybindings-file item)
#t))
(define (remove-keybindings-item item)
(keymap:remove-user-keybindings-file item)
(preferences:set
'drracket:user-defined-keybindings
(remove item
(preferences:get 'drracket:user-defined-keybindings))))
;; install-plt-file : (union #f dialog% frame%) -> void
;; asks the user for a .plt file, either from the web or from
;; a file on the disk and installs it.
(define (install-plt-file parent)
(define pref (preferences:get 'drracket:install-plt-dialog))
(define dialog
(new dialog% [parent parent]
[label (string-constant install-plt-file-dialog-title)]
[alignment '(left center)]))
(define tab-panel
(new tab-panel% [parent dialog]
[callback (λ (x y) (update-panels))]
[choices (list (string-constant install-plt-web-tab)
(string-constant install-plt-file-tab))]))
(define outer-swapping-panel
(new horizontal-panel% [parent tab-panel]
[stretchable-height #f]))
(define spacing-panel
(new horizontal-panel% [parent outer-swapping-panel]
[stretchable-width #f]
[min-width 20]))
(define swapping-panel
(new panel:single% [parent outer-swapping-panel]
[alignment '(left center)]
[stretchable-width #t] [stretchable-height #f]))
(define file-panel
(new horizontal-panel% [parent swapping-panel]
[stretchable-width #t] [stretchable-height #f]))
(define url-panel
(new horizontal-panel% [parent swapping-panel]
[stretchable-height #f]))
(define button-panel
(new horizontal-panel% [parent dialog]
[stretchable-height #f] [alignment '(right center)]))
(define file-text-field
(new text-field% [parent file-panel]
[callback void] [min-width 300] [stretchable-width #t]
[init-value (caddr pref)]
[label (string-constant install-plt-filename)]))
(define file-button
(new button% [parent file-panel]
[callback (λ (x y) (browse))]
[label (string-constant browse...)]))
(define url-text-field
(new text-field% [parent url-panel]
[min-width 300] [stretchable-width #t] [callback void]
[init-value (cadr pref)]
[label (string-constant install-plt-url)]))
(define-values (ok-button cancel-button)
(gui-utils:ok/cancel-buttons
button-panel
(λ (x y) (set! cancel? #f) (send dialog show #f))
(λ (x y) (send dialog show #f))))
;; browse : -> void
;; gets the name of a file from the user and updates file-text-field
(define (browse)
(let ([filename (parameterize ([finder:default-extension "plt"]
[finder:default-filters
(if (eq? (system-type) 'macosx)
(finder:default-filters)
'(("PLT Files" "*.plt")
("Any" "*.*")))])
(finder:get-file #f "" #f "" dialog))])
(when filename
(send file-text-field set-value (path->string filename)))))
;; from-web? : -> boolean
;; returns #t if the user has selected a web address
(define (from-web?)
(zero? (send tab-panel get-selection)))
(define cancel? #t)
(define (update-panels)
(define w? (from-web?))
(define t (if w? url-text-field file-text-field))
(send swapping-panel active-child (if w? url-panel file-panel))
(send t focus)
(send (send t get-editor) set-position
0 (string-length (send t get-value))))
;; initialize
(send tab-panel set-selection (if (car pref) 0 1))
(update-panels)
(send dialog show #t)
(preferences:set 'drracket:install-plt-dialog
(list (from-web?)
(send url-text-field get-value)
(send file-text-field get-value)))
(cond
[cancel? (void)]
[(from-web?)
(install-plt-from-url
(let* ([url (send url-text-field get-value)]
;; trim whitespaces
[url (regexp-replace #rx"^ +" url "")]
[url (regexp-replace #rx" +$" url "")])
(if (regexp-match? #rx"^(?:[^/:]*://|$)" url)
url
(string-append "http://" url)))
parent)]
[else (parameterize ([error-display-handler
drracket:init:original-error-display-handler])
(run-installer
(string->path (send file-text-field get-value))))]))
;; install-plt-from-url : string (union #f dialog%) -> void
;; downloads and installs a .plt file from the given url
(define (install-plt-from-url s-url parent)
(define-values (port size)
(let-values ([(port header)
(get-pure-port/headers (string->url s-url)
#:redirections 5)])
(define size
(let* ([content-header (extract-field "content-length" header)]
[m (and content-header
(regexp-match "[0-9]+" content-header))])
(and m (string->number (car m)))))
(values port size)))
(let* ([tmp-filename (make-temporary-file "tmp~a.plt")]
[header (purify-port port)]
[d (make-object dialog% (string-constant downloading) parent)]
[message (make-object message% (string-constant downloading-file...) d)]
[gauge (if size
(make-object gauge% #f 100 d)
#f)]
[exn #f]
; Semaphores to avoid race conditions:
[wait-to-start (make-semaphore 0)]
[wait-to-break (make-semaphore 0)]
; Thread to perform the download:
[t (thread
(λ ()
(semaphore-wait wait-to-start)
(with-handlers ([exn:fail?
(λ (x)
(set! exn x))]
[exn:break? ; throw away break exceptions
void])
(semaphore-post wait-to-break)
(with-output-to-file tmp-filename
(λ ()
(let loop ([total 0])
(when gauge
(send gauge set-value
(inexact->exact
(floor (* 100 (/ total size))))))
(let ([s (read-string 1024 port)])
(unless (eof-object? s)
(unless (eof-object? s)
(display s)
(loop (+ total (string-length s))))))))
#:mode 'binary #:exists 'truncate))
(send d show #f)))])
(send d center)
(make-object button% (string-constant &stop)
d
(λ (b e)
(semaphore-wait wait-to-break)
(set! tmp-filename #f)
(send d show #f)
(break-thread t)))
; Let thread run only after the dialog is shown
(queue-callback (λ () (semaphore-post wait-to-start)))
(send d show #t)
(when exn (raise exn))
(define unpack-err (open-output-string))
(cond
[(with-handlers ((exn:fail? values))
(parameterize ([error-display-handler drracket:init:original-error-display-handler]
[current-error-port unpack-err])
(fold-plt-archive tmp-filename void void void void void))
#f)
=>
(λ (exn)
(delete-file tmp-filename)
(message-box (string-constant drscheme)
(string-append
(string-constant install-plt-error-header)
"\n\n"
(exn-message exn)
"\n\n"
(get-output-string unpack-err))
#:dialog-mixin frame:focus-table-mixin))]
[else
(parameterize ([error-display-handler drracket:init:original-error-display-handler])
(run-installer tmp-filename
(λ ()
(delete-file tmp-filename))))])))
(define keybindings-frame%
(class frame%
(init-field bindings)
(define/override (on-size w h)
(preferences:set 'drracket:keybindings-window-size (cons w h))
(super on-size w h))
(super-new)
(define/public (set-bindings _bindings)
(set! bindings _bindings)
(update-bindings))
(define bp (make-object horizontal-panel% this))
(define search-field (new text-field%
[parent this]
[label (string-constant mfs-search-string)]
[callback (λ (a b) (update-bindings))]))
(define b-name (new button%
[label (string-constant keybindings-sort-by-name)]
[parent bp]
[callback
(λ x
(set! by-key? #f)
(update-bindings))]))
(define b-key (new button%
[label (string-constant keybindings-sort-by-key)]
[parent bp]
[callback (λ x
(set! by-key? #t)
(update-bindings))]))
(define lb (new list-box% [parent this] [label #f] [choices '()]))
(define by-key? #f)
(define bp2 (make-object horizontal-panel% this))
(define cancel (make-object button% (string-constant close)
bp2 (λ x (send this show #f))))
(define/private (update-bindings)
(let ([format-binding/name
(λ (b) (format "~a (~a)" (cadr b) (car b)))]
[format-binding/key
(λ (b) (format "~a (~a)" (car b) (cadr b)))]
[predicate/key
(λ (a b) (string-ci<=? (format "~a" (car a))
(format "~a" (car b))))]
[predicate/name
(λ (a b) (string-ci<=? (cadr a) (cadr b)))])
(send lb set
(if by-key?
(map format-binding/key (sort (filter-search bindings) predicate/key))
(map format-binding/name (sort (filter-search bindings) predicate/name))))))
(define/private (filter-search bindings)
(let ([str (send search-field get-value)])
(if (equal? str "")
bindings
(let ([reg (regexp (regexp-quote str #f))])
(filter (λ (x) (or (regexp-match reg (cadr x))
(regexp-match reg (format "~a" (car x)))))
bindings)))))
(send search-field focus)
(send bp stretchable-height #f)
(send bp set-alignment 'center 'center)
(send bp2 stretchable-height #f)
(send bp2 set-alignment 'right 'center)
(update-bindings)))
(define the-keybindings-frame #f)
(define (show-keybindings-to-user bindings frame)
(unless the-keybindings-frame
(set! the-keybindings-frame
(new keybindings-frame%
[label (string-constant keybindings-frame-title)]
[width (car (preferences:get 'drracket:keybindings-window-size))]
[height (cdr (preferences:get 'drracket:keybindings-window-size))]
[bindings bindings])))
(send the-keybindings-frame show #t))
(define -mixin
(mixin (frame:editor<%> frame:text-info<%> drracket:frame:basics<%>) (drracket:frame:<%>)
(inherit get-editor get-menu% get-menu-bar)
(define show-menu #f)
(define/public get-show-menu (λ () show-menu))
(define/public update-shown (λ () (void)))
(define/public (add-show-menu-items show-menu) (void))
(define sort-menu-sort-keys (make-hasheq))
(define/public (set-show-menu-sort-key item val)
(cond
[sort-menu-sort-keys
(for ([(k v) (in-hash sort-menu-sort-keys)])
(when (eq? k item)
(error 'set-show-menu-sort-key
"set menu item ~s twice, to ~s and ~s"
(send item get-label)
v val))
(when (= v val)
(error 'set-show-menu-sort-key
"two menu items have the same val: ~s and ~s"
(send k get-label)
(send item get-label))))
(hash-set! sort-menu-sort-keys item val)]
[else
(error 'set-show-menu-sort-key
"the sort menu has already been created and its order has been set")]))
(super-new)
(set! show-menu (make-object (get-menu%) (string-constant view-menu-label)
(get-menu-bar)))
(add-show-menu-items show-menu)
(sort-show-menu-items show-menu sort-menu-sort-keys)
(set! sort-menu-sort-keys #f)))
(define (sort-show-menu-items show-menu show-menu-sort-keys)
(define items (send show-menu get-items))
(for ([itm (in-list items)])
(send itm delete))
(define (get-key item)
(hash-ref show-menu-sort-keys item
(λ ()
(define lab
(cond
[(is-a? item labelled-menu-item<%>)
(send item get-label)]
[else ""]))
(cond
[(regexp-match #rx"^Show (.*)$" lab)
=> (λ (x) (list-ref x 1))]
[(regexp-match #rx"^Hide (.*)$" lab)
=> (λ (x) (list-ref x 1))]
[else lab]))))
(define (cmp item-x item-y)
(define x (get-key item-x))
(define y (get-key item-y))
(cond
[(and (number? x) (number? y)) (< x y)]
[(and (string? x) (string? y)) (string<=? x y)]
[(and (number? x) (string? y)) #t]
[(and (string? x) (number? y)) #f]))
(define sorted-items (sort items cmp))
(define (different-slots? item-key next-item-key)
(or (not (= (quotient item-key 100)
(quotient next-item-key 100)))
(not (= (sgn item-key)
(sgn next-item-key)))))
(for ([item (in-list sorted-items)]
[next-item (in-list (append (cdr sorted-items) (list #f)))])
(define item-key (get-key item))
(define next-item-key (and next-item (get-key next-item)))
(define add-sep?
(cond
[(and (number? item-key) (number? next-item-key))
(different-slots? item-key next-item-key)]
[(or (and (string? item-key) (string? next-item-key))
(not next-item-key))
#f]
[else #t]))
(send item restore)
(when add-sep?
(new separator-menu-item% [parent show-menu]))))
(define (create-root-menubar)
(define mb (new menu-bar% (parent 'root)))
(define file-menu (new menu%
(label (string-constant file-menu))
(parent mb)))
(define help-menu (new menu%
(label (string-constant help-menu))
(parent mb)))
(new menu-item%
(label (string-constant new-menu-item))
(parent file-menu)
(shortcut #\n)
(callback
(λ (x y)
(handler:edit-file #f)
#t)))
(new menu-item%
(label (string-constant open-menu-item))
(parent file-menu)
(shortcut #\o)
(callback
(λ (x y)
(handler:open-file)
#t)))
(new menu%
(label (string-constant open-recent-menu-item))
(parent file-menu)
(demand-callback
(λ (menu)
(handler:install-recent-items menu))))
(new menu-item%
[label (string-constant mfs-multi-file-search-menu-item)]
[parent file-menu]
[callback
(λ (_1 _2)
(drracket:multi-file-search:multi-file-search))])
(unless (current-eventspace-has-standard-menus?)
(new separator-menu-item% (parent file-menu))
(new menu-item%
(label (string-constant quit-menu-item-others))
(parent file-menu)
(shortcut #\q)
(callback
(λ (x y)
(when (exit:user-oks-exit)
(exit:exit))
#t))))
(make-help-desk-menu-item help-menu)
(drracket-help-menu:after-about help-menu #f))
(define (make-help-desk-menu-item help-menu)
(define (docs-menu-item label)
(new menu-item%
[label label]
[parent help-menu]
[callback (λ (item evt) (help:help-desk) #t)]))
(docs-menu-item (string-constant racket-documentation))
(new separator-menu-item% [parent help-menu])
(docs-menu-item (string-constant help-desk)))
(define (drracket-help-menu:after-about menu dlg-parent)
(drracket:app:add-important-urls-to-help-menu menu '())
(new menu-item%
[label (string-constant bug-report-submit-menu-item)]
[parent menu]
[callback
(λ (x y)
(define saved (saved-bug-report-titles/ids))
(cond
[(null? saved)
(help-desk:report-bug #f #:frame-mixin basics-mixin)]
[else
(define which #f)
(define (done the-one)
(set! which the-one)
(send dlg show #f))
(define dlg (new dialog%
[label (string-constant drscheme)]
[parent dlg-parent]))
(define btn1 (new button%
[parent dlg]
[label (string-constant new-bug-report)]
[callback (λ (x y) (done #f))]))
(new message% [parent dlg] [label (string-constant saved-unsubmitted-bug-reports)])
(define btns
(cons btn1
(for/list ([a-brinfo (in-list saved)])
(new button%
[parent dlg]
[label (brinfo-title a-brinfo)]
[callback
(λ (x y) (done (brinfo-id a-brinfo)))]))))
(define width (apply max (map (λ (x) (let-values ([(w h) (send x get-client-size)]) w))
btns)))
(for ([x (in-list btns)])
(send x min-width width))
(send btn1 focus)
(send dlg show #t)
(help-desk:report-bug which #:frame-mixin basics-mixin)]))])
(new menu%
[label (string-constant saved-bug-reports-menu-item)]
[parent menu]
[demand-callback
(let ([last-time (gensym)]) ;; a unique thing to guarantee the menu is built the first time
(λ (saved-bug-reports-menu)
(define this-time (saved-bug-report-titles/ids))
(unless (equal? last-time this-time)
(set! last-time this-time)
(for ([x (in-list (send saved-bug-reports-menu get-items))])
(send x delete))
(cond
[(null? this-time)
(send (new menu-item%
[parent saved-bug-reports-menu]
[label (string-constant no-saved-bug-reports)]
[callback void])
enable #f)]
[else
(for ([a-brinfo (in-list this-time)])
(new menu-item%
[parent saved-bug-reports-menu]
[label (brinfo-title a-brinfo)]
[callback
(λ (x y)
(help-desk:report-bug (brinfo-id a-brinfo) #:frame-mixin basics-mixin))]))
(new separator-menu-item% [parent saved-bug-reports-menu])
(new menu-item%
[parent saved-bug-reports-menu]
[label (string-constant disacard-all-saved-bug-reports)]
[callback (λ (x y) (discard-all-saved-bug-reports))])]))))])
(drracket:app:add-language-items-to-help-menu menu)))
| false |
e452d4aa706ab8000d14fd00b382f2b2d1955472 | 71060ffeffa3469ec44ba661b04118b487fc0602 | /ch_3_digital_circuit_simulation/queue.test.rkt | 29f1b722b9b9b9c38cc19bc358394e939ee27318 | []
| no_license | ackinc/sicp | 18741d3ffc46041ecd08021d57a50702be2e0f92 | 4ee2250f8b7454fb88bc27edb41a1349d7a3016c | refs/heads/master | 2021-09-13T08:55:37.171840 | 2018-04-27T10:02:08 | 2018-04-27T10:02:08 | 114,095,803 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 217 | rkt | queue.test.rkt | #lang racket
(require "queue.rkt")
(define q (make-queue))
(empty-queue? q)
(insert-queue! q 2)
(insert-queue! q 3)
(eq? (front-queue q) 2)
(delete-queue! q)
(eq? (front-queue q) 3)
(delete-queue! q)
(empty-queue? q) | false |
07fda51a5d28f7557773960d9f29fd875d8c70f6 | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/loops-continue.rkt | 41bb6f6822175c87c3592ef2cf2710aa08e0e588 | []
| no_license | dlaststark/machine-learning-projects | efb0a28c664419275e87eb612c89054164fe1eb0 | eaa0c96d4d1c15934d63035b837636a6d11736e3 | refs/heads/master | 2022-12-06T08:36:09.867677 | 2022-11-20T13:17:25 | 2022-11-20T13:17:25 | 246,379,103 | 9 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 339 | rkt | loops-continue.rkt | #lang racket
;; Idiomatic way
(for ([i (in-range 1 11)])
(if (= (remainder i 5) 0)
(printf "~a~n" i)
(printf "~a, " i)))
;; Forces a skip, but not idiomatic because
;; the logic is less obvious
(for ([i (in-range 1 11)]
#:unless (and (= (remainder i 5) 0)
(printf "~a~n" i)))
(printf "~a, " i))
| false |
1cd2822c21aaeb3ef7db69a82996fc3baf388c87 | 453869ca6ccd4c055aa7ba5b09c1b2deccd5fe0c | /tests/ffi/context2d/simple.rkt | 5d5a245b29543fc6dbe56549ff8ebfd213948f25 | [
"MIT"
]
| permissive | racketscript/racketscript | 52d1b67470aaecfd2606e96910c7dea0d98377c1 | bff853c802b0073d08043f850108a57981d9f826 | refs/heads/master | 2023-09-04T09:14:10.131529 | 2023-09-02T16:33:53 | 2023-09-02T16:33:53 | 52,491,211 | 328 | 16 | MIT | 2023-09-02T16:33:55 | 2016-02-25T02:38:38 | Racket | UTF-8 | Racket | false | false | 425 | rkt | simple.rkt | #lang racketscript/base
(require racketscript/interop)
(define document ($$ 'window.document))
(define (onload)
(define canvas ($$ document.getElementById #js"main_canvas"))
(define ctx ($$ canvas.getContext #js"2d"))
($/:= #js.ctx.fillStyle #js"blue")
($$ ctx.fillRect 10 20 200 100)
($$ ctx.strokeStyle "#fa00ff")
($$ ctx.lineWidth 5)
($$ ctx.arc 50 50 20 20 ($ 'Math 'PI) #f)
($$ ctx.stroke))
(onload)
| false |
919165b6cfbcfac4a74c08e70598491b79369569 | 3e2d1001690f73656c532f78874875d753fa287f | /okanren-interpreter-benchmarks.rkt | 90ef733cbf704ddd1d915cba6d147e7681f71987 | [
"BSD-2-Clause"
]
| permissive | gregr/racket-misc | c51efce71c71e470dae1235d8fae1e313669fd3c | 0a5c9d4875288795e209d06982b82848c989d08b | refs/heads/master | 2020-12-13T15:05:28.463597 | 2017-10-26T19:20:44 | 2017-10-26T19:20:44 | 19,898,155 | 10 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 23,596 | rkt | okanren-interpreter-benchmarks.rkt | #lang racket/base
(require
"okanren.rkt"
"sugar.rkt"
(except-in racket/match ==)
)
(module+ test
(require
racket/set
rackunit
)
(define-syntax mk-test-cont
(syntax-rules ()
((_ test-name exact? query expected)
(let* ((result-set (list->set query))
(expected-set (list->set expected))
(overlap (set-intersect result-set expected-set)))
(if exact?
(begin
(when (not (equal? result-set expected-set))
(displayln (format "failed test: ~a" test-name)))
;(check-equal? (set-subtract expected-set result-set) (set))
;(check-equal? (set-subtract result-set expected-set) (set))
(check-equal? result-set expected-set))
(check-equal? overlap expected-set))))))
(define-syntax mk-test
(syntax-rules ()
((_ test-name query expected)
(mk-test-cont test-name #t query expected))))
(define-syntax mk-test-subsumed
(syntax-rules ()
((_ test-name query expected)
(mk-test-cont test-name #f query expected))))
(define-syntax mk-test-time
(syntax-rules ()
((_ test-name query expected)
(begin
(displayln test-name)
(time (mk-test-cont test-name #t query expected))))))
)
;; interpreter
(define (evalo expr val)
(eval-expo expr initial-env val))
(define (eval-expo expr env val)
(try-lookup-before expr env val (eval-expo-rest expr env val)))
(kanren
(define (eval-expo-rest expr env val)
(conde
((numbero expr) (== expr val))
((fresh (rator x* rands a* prim-id)
(== `(,rator . ,rands) expr)
(eval-expo rator env `(prim . ,prim-id))
(eval-primo prim-id a* val)
(eval-listo rands env a*)))
((fresh (rator x* rands body env^ a* res)
(== `(,rator . ,rands) expr)
;; Multi-argument
(eval-expo rator env `(closure (lambda ,x* ,body) ,env^))
(ext-env*o x* a* env^ res)
(eval-application rands env a* (eval-expo body res val))))
((fresh (rator x rands body env^ a* res)
(== `(,rator . ,rands) expr)
;; variadic
(symbolo x)
(== `((,x . (val . ,a*)) . ,env^) res)
(eval-expo rator env `(closure (lambda ,x ,body) ,env^))
(eval-expo body res val)
(eval-listo rands env a*)))
((== `(quote ,val) expr)
(absento 'closure val)
(absento 'prim val)
(not-in-envo 'quote env))
((fresh (x body)
(== `(lambda ,x ,body) expr)
(== `(closure (lambda ,x ,body) ,env) val)
(conde
;; Variadic
((symbolo x))
;; Multi-argument
((list-of-symbolso x)))
(not-in-envo 'lambda env)))
;; WEB 25 May 2016 -- This rather budget version of 'begin' is
;; useful for separating 'define' from the expression 'e',
;; specifically for purposes of Barliman.
((fresh (defn args name body e)
(== `(begin ,defn ,e) expr)
(== `(define ,name (lambda ,args ,body)) defn)
(eval-expo `(letrec ((,name (lambda ,args ,body))) ,e) env val)))
((handle-matcho expr env val))
((fresh (p-name x body letrec-body)
;; single-function variadic letrec version
(== `(letrec ((,p-name (lambda ,x ,body)))
,letrec-body)
expr)
(conde
; Variadic
((symbolo x))
; Multiple argument
((list-of-symbolso x)))
(not-in-envo 'letrec env)
(eval-expo letrec-body
`((,p-name . (rec . (lambda ,x ,body))) . ,env)
val)))
((prim-expo expr env val))))
(define (lookupo x env t)
(fresh (y b rest)
(== `((,y . ,b) . ,rest) env)
(conde
((== x y)
(conde
((== `(val . ,t) b))
((fresh (lam-expr)
(== `(rec . ,lam-expr) b)
(== `(closure ,lam-expr ,env) t)))))
((=/= x y)
(lookupo x rest t))))))
(define empty-env '())
(define (state-walk st term)
(let-values (((bs term) (walk (state-bindings st) term)))
(values (state-bindings-set st bs) term)))
(define (list-split-ground st xs)
(letn loop (values st rprefix xs) = (values st '() xs)
(values st xs) = (state-walk st xs)
(match xs
((cons item xs) (loop st (cons item rprefix) xs))
(_ (values st rprefix xs)))))
(def ((try-lookup-before x env t alts) st)
(values st rgenv venv) = (list-split-ground st env)
;_ = (when (< 18 (length rgenv)) (newline) (displayln `(lookup prefix ,rgenv)))
(values st env) = (state-walk st env)
goal =
(forf alts = (conde ((symbolo x) (lookupo x venv t))
(alts))
`(,y . ,b) <- rgenv
(conde
((symbolo x) (== x y)
(conde
((== `(val . ,t) b))
((fresh (lam-expr)
(== `(rec . ,lam-expr) b)
(== `(closure ,lam-expr ,env) t)))))
((=/= x y) alts)))
((goal-term-eval goal) st))
(kanren
(define (not-in-envo x env)
(conde
((== empty-env env))
((fresh (y b rest)
(== `((,y . ,b) . ,rest) env)
(=/= y x)
(not-in-envo x rest)))))
(define (eval-listo expr env val)
(conde
((== '() expr)
(== '() val))
((fresh (a d v-a v-d)
(== `(,a . ,d) expr)
(== `(,v-a . ,v-d) val)
(eval-expo a env v-a)
(eval-listo d env v-d))))))
(def ((eval-application rands aenv a* body-goal) st)
(values st rrands rands-suffix) = (list-split-ground st rands)
(values st ggoals vgoals args-suffix) =
(forf st = st
ggoals = success
vgoals = success
args = a*
rand <- (reverse rrands)
(values st rand) = (state-walk st rand)
(let* ((args-rest (var (gensym 'args-rest)))
(goal (fresh (arg)
(== `(,arg . ,args-rest) args)
(eval-expo rand aenv arg))))
(if (var? rand)
(values st ggoals (conj vgoals goal) args-rest)
(values st (conj ggoals goal) vgoals args-rest))))
(values st a*) = (state-walk st a*)
goal = (conj* ggoals ; try ground argument goals first
body-goal ; then try the body
vgoals ; then fill in the unbound arguments
; any unbound final segment of arguments
(eval-listo rands-suffix aenv args-suffix))
((goal-term-eval goal) st))
(kanren
;; need to make sure lambdas are well formed.
;; grammar constraints would be useful here!!!
(define (list-of-symbolso los)
(conde
((== '() los))
((fresh (a d)
(== `(,a . ,d) los)
(symbolo a)
(list-of-symbolso d)))))
(define (ext-env*o x* a* env out)
(conde
((== '() x*) (== '() a*) (== env out))
((fresh (x a dx* da* env2)
(== `(,x . ,dx*) x*)
(== `(,a . ,da*) a*)
(== `((,x . (val . ,a)) . ,env) env2)
(symbolo x)
(ext-env*o dx* da* env2 out))))))
(define (eval-primo prim-id a* val)
(conde
[(== prim-id 'car)
(fresh (d)
(== `((,val . ,d)) a*)
(=/= 'closure val))]
[(== prim-id 'cdr)
(fresh (a)
(== `((,a . ,val)) a*)
(=/= 'closure a))]
[(== prim-id 'not)
(fresh (b)
(== `(,b) a*)
(conde
((=/= #f b) (== #f val))
((== #f b) (== #t val))))]
[(== prim-id 'equal?)
(fresh (v1 v2)
(== `(,v1 ,v2) a*)
(conde
((== v1 v2) (== #t val))
((=/= v1 v2) (== #f val))))]
[(== prim-id 'symbol?)
(fresh (v)
(== `(,v) a*)
(conde
((symbolo v) (== #t val))
((numbero v) (== #f val))
((fresh (a d)
(== `(,a . ,d) v)
(== #f val)))))]
[(== prim-id 'null?)
(fresh (v)
(== `(,v) a*)
(conde
((== '() v) (== #t val))
((=/= '() v) (== #f val))))]
[(== prim-id 'cons)
(fresh (a d)
(== `(,a ,d) a*)
(== `(,a . ,d) val))]
))
(define (prim-expo expr env val)
(conde
((boolean-primo expr env val))
((and-primo expr env val))
((or-primo expr env val))
((if-primo expr env val))))
(define (boolean-primo expr env val)
(conde
((== #t expr) (== #t val))
((== #f expr) (== #f val))))
(define (and-primo expr env val)
(fresh (e*)
(== `(and . ,e*) expr)
(not-in-envo 'and env)
(ando e* env val)))
(define (or-primo expr env val)
(fresh (e*)
(== `(or . ,e*) expr)
(not-in-envo 'or env)
(oro e* env val)))
(kanren
(define (ando e* env val)
(conde
((== '() e*) (== #t val))
((fresh (e)
(== `(,e) e*)
(eval-expo e env val)))
((fresh (e1 e2 e-rest v)
(== `(,e1 ,e2 . ,e-rest) e*)
(conde
((== #f v)
(== #f val)
(eval-expo e1 env v))
((=/= #f v)
(eval-expo e1 env v)
(ando `(,e2 . ,e-rest) env val)))))))
(define (oro e* env val)
(conde
((== '() e*) (== #f val))
((fresh (e)
(== `(,e) e*)
(eval-expo e env val)))
((fresh (e1 e2 e-rest v)
(== `(,e1 ,e2 . ,e-rest) e*)
(conde
((=/= #f v)
(== v val)
(eval-expo e1 env v))
((== #f v)
(eval-expo e1 env v)
(oro `(,e2 . ,e-rest) env val))))))))
(define (if-primo expr env val)
(fresh (e1 e2 e3 t)
(== `(if ,e1 ,e2 ,e3) expr)
(not-in-envo 'if env)
(eval-expo e1 env t)
(conde
((=/= #f t) (eval-expo e2 env val))
((== #f t) (eval-expo e3 env val)))))
(define initial-env `((cons . (val . (prim . cons)))
(car . (val . (prim . car)))
(cdr . (val . (prim . cdr)))
(null? . (val . (prim . null?)))
(symbol? . (val . (prim . symbol?)))
(not . (val . (prim . not)))
(equal? . (val . (prim . equal?)))
(list . (val . (closure (lambda x x) ,empty-env)))
. ,empty-env))
(define handle-matcho
(lambda (expr env val)
(fresh (against-expr mval clause clauses)
(== `(match ,against-expr ,clause . ,clauses) expr)
(not-in-envo 'match env)
(eval-expo against-expr env mval)
(match-clauses mval `(,clause . ,clauses) env val))))
(define (not-symbolo t)
(conde
((== #f t))
((== #t t))
((== '() t))
((numbero t))
((fresh (a d)
(== `(,a . ,d) t)))))
(define (not-numbero t)
(conde
((== #f t))
((== #t t))
((== '() t))
((symbolo t))
((fresh (a d)
(== `(,a . ,d) t)))))
(define (self-eval-literalo t)
(conde
((numbero t))
((booleano t))))
(define (literalo t)
(conde
((numbero t))
((symbolo t) (=/= 'closure t))
((booleano t))
((== '() t))))
(define (booleano t)
(conde
((== #f t))
((== #t t))))
(kanren
(define (regular-env-appendo env1 env2 env-out)
(conde
((== empty-env env1) (== env2 env-out))
((fresh (y v rest res)
(== `((,y . (val . ,v)) . ,rest) env1)
(== `((,y . (val . ,v)) . ,res) env-out)
(regular-env-appendo rest env2 res)))))
(define (match-clauses mval clauses env val)
(fresh (p result-expr d penv)
(== `((,p ,result-expr) . ,d) clauses)
(conde
((fresh (env^)
(p-match p mval '() penv)
(regular-env-appendo penv env env^)
(eval-expo result-expr env^ val)))
((p-no-match p mval '() penv)
(match-clauses mval d env val))))))
(define (var-p-match var mval penv penv-out)
(fresh (val)
(symbolo var)
(=/= 'closure mval)
(conde
((== mval val)
(== penv penv-out)
(lookupo var penv val))
((== `((,var . (val . ,mval)) . ,penv) penv-out)
(not-in-envo var penv)))))
(define (var-p-no-match var mval penv penv-out)
(fresh (val)
(symbolo var)
(=/= mval val)
(== penv penv-out)
(lookupo var penv val)))
(define (p-match p mval penv penv-out)
(conde
((self-eval-literalo p)
(== p mval)
(== penv penv-out))
((var-p-match p mval penv penv-out))
((fresh (var pred val)
(== `(? ,pred ,var) p)
(conde
((== 'symbol? pred)
(symbolo mval))
((== 'number? pred)
(numbero mval)))
(var-p-match var mval penv penv-out)))
((fresh (quasi-p)
(== (list 'quasiquote quasi-p) p)
(quasi-p-match quasi-p mval penv penv-out)))))
(define (p-no-match p mval penv penv-out)
(conde
((self-eval-literalo p)
(=/= p mval)
(== penv penv-out))
((var-p-no-match p mval penv penv-out))
((fresh (var pred val)
(== `(? ,pred ,var) p)
(== penv penv-out)
(symbolo var)
(conde
((== 'symbol? pred)
(conde
((not-symbolo mval))
((symbolo mval)
(var-p-no-match var mval penv penv-out))))
((== 'number? pred)
(conde
((not-numbero mval))
((numbero mval)
(var-p-no-match var mval penv penv-out)))))))
((fresh (quasi-p)
(== (list 'quasiquote quasi-p) p)
(quasi-p-no-match quasi-p mval penv penv-out)))))
(kanren
(define (quasi-p-match quasi-p mval penv penv-out)
(conde
((== quasi-p mval)
(== penv penv-out)
(literalo quasi-p))
((fresh (p)
(== (list 'unquote p) quasi-p)
(p-match p mval penv penv-out)))
((fresh (a d v1 v2 penv^)
(== `(,a . ,d) quasi-p)
(== `(,v1 . ,v2) mval)
(=/= 'unquote a)
(quasi-p-match a v1 penv penv^)
(quasi-p-match d v2 penv^ penv-out)))))
(define (quasi-p-no-match quasi-p mval penv penv-out)
(conde
((=/= quasi-p mval)
(== penv penv-out)
(literalo quasi-p))
((fresh (p)
(== (list 'unquote p) quasi-p)
(=/= 'closure mval)
(p-no-match p mval penv penv-out)))
((fresh (a d)
(== `(,a . ,d) quasi-p)
(=/= 'unquote a)
(== penv penv-out)
(literalo mval)))
((fresh (a d v1 v2 penv^)
(== `(,a . ,d) quasi-p)
(=/= 'unquote a)
(== `(,v1 . ,v2) mval)
(conde
((quasi-p-no-match a v1 penv penv^))
((quasi-p-match a v1 penv penv^)
(quasi-p-no-match d v2 penv^ penv-out))))))))
(module+ test
(mk-test "number"
(run* (q) (evalo '6 q))
'(((6))))
(mk-test "quote"
(run* (q) (evalo '(quote foo) q))
'(((foo))))
(mk-test "and"
(run* (q) (evalo '(and 9) q))
'(((9))))
(mk-test "append empty lists"
(run* (q)
(evalo
`(begin
(define append
(lambda (l s)
(if (null? l)
s
(cons (car l)
(append (cdr l) s)))))
(append '() '()))
'()))
'(((_.0))))
(mk-test "append all argument pairs"
(run* (l1 l2)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons (car l)
(append (cdr l) s))))))
(append ',l1 ',l2))
'(1 2 3 4 5)))
'(((() (1 2 3 4 5)))
(((1) (2 3 4 5)))
(((1 2) (3 4 5)))
(((1 2 3) (4 5)))
(((1 2 3 4) (5)))
(((1 2 3 4 5) ()))))
(mk-test "append cons-first-arg"
(run 1 (q)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons ,q
(append (cdr l) s))))))
(append '(1 2 3) '(4 5)))
'(1 2 3 4 5)))
'((((car l)))))
(mk-test "append cdr-arg"
(run 1 (q)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons (car l)
(append (cdr ,q) s))))))
(append '(1 2 3) '(4 5)))
'(1 2 3 4 5)))
'(((l))))
(mk-test-time "append cdr-prim"
(run 1 (q)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons (car l)
(append (,q l) s))))))
(append '(1 2 3) '(4 5)))
'(1 2 3 4 5)))
'(((cdr))))
(mk-test-time "append cdr-both"
(run 1 (q r)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons (car l)
(append (,q ,r) s))))))
(append '(1 2 3) '(4 5)))
'(1 2 3 4 5)))
'(((cdr l))))
(mk-test-time "append cdr-entire"
(run 1 (q)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons (car l)
(append ,q s))))))
(append '(1 2 3) '(4 5)))
'(1 2 3 4 5))
)
'((((cdr l)))))
(mk-test-time "append both recursive args"
(run 1 (q r)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons (car l)
(append ,q ,r))))))
(list
(append '(foo) '(bar))
(append '(1 2 3) '(4 5)))
)
(list '(foo bar) '(1 2 3 4 5)))
)
'((((cdr l) s))))
(mk-test-time "append recursive var-args"
(run 1 (q)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons (car l)
(append . ,q))))))
(list
(append '(foo) '(bar))
(append '(1 2 3) '(4 5)))
)
(list '(foo bar) '(1 2 3 4 5)))
)
'(((((cdr l) s)))))
(mk-test-time "append cons-first-arg recursive var-args"
(run 1 (q r)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons ,q
(append . ,r))))))
(list
(append '() '())
(append '(foo) '(bar))
(append '(1 2 3) '(4 5)))
)
(list '() '(foo bar) '(1 2 3 4 5)))
)
'((((car l) ((cdr l) s)))))
(mk-test-time "append recursive-entire"
(run 1 (q)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons (car l)
,q)))))
(list
(append '() '())
(append '(foo) '(bar))
(append '(1 2 3) '(4 5)))
)
(list '() '(foo bar) '(1 2 3 4 5)))
)
'((((append (cdr l) s)))))
(mk-test-time "append cons-both-args"
(run 1 (q r)
(evalo `(letrec ((append (lambda (l s)
(if (null? l)
s
(cons ,q
,r)))))
(list
(append '() '())
(append '(foo) '(bar))
(append '(1 2 3) '(4 5)))
)
(list '() '(foo bar) '(1 2 3 4 5)))
)
'((((car l) (append (cdr l) s)))))
(mk-test-time "append cons-entire"
(run 1 (defn)
(let ((g1 (gensym "g1"))
(g2 (gensym "g2"))
(g3 (gensym "g3"))
(g4 (gensym "g4"))
(g5 (gensym "g5"))
(g6 (gensym "g6"))
(g7 (gensym "g7")))
(fresh ()
(absento g1 defn)
(absento g2 defn)
(absento g3 defn)
(absento g4 defn)
(absento g5 defn)
(absento g6 defn)
(absento g7 defn)
(fresh (q)
(== `(define append
(lambda (l s)
(if (null? l)
s
,q)))
defn)
(evalo `(begin
,defn
(list
(append '() '())
(append '(,g1) '(,g2))
(append '(,g3 ,g4 ,g5) '(,g6 ,g7))))
(list '() `(,g1 ,g2) `(,g3 ,g4 ,g5 ,g6 ,g7)))))))
'((((define append
(lambda (l s)
(if (null? l) s
(cons (car l) (append (cdr l) s)))))))))
(mk-test-time "append if-both-branches"
(run 1 (defn)
(let ((g1 (gensym "g1"))
(g2 (gensym "g2"))
(g3 (gensym "g3"))
(g4 (gensym "g4"))
(g5 (gensym "g5"))
(g6 (gensym "g6"))
(g7 (gensym "g7")))
(fresh ()
(absento g1 defn)
(absento g2 defn)
(absento g3 defn)
(absento g4 defn)
(absento g5 defn)
(absento g6 defn)
(absento g7 defn)
(fresh (q r)
(== `(define append
(lambda (l s)
(if (null? l)
,q
,r)))
defn)
(evalo `(begin
,defn
(list
(append '() '())
(append '(,g1) '(,g2))
(append '(,g3 ,g4 ,g5) '(,g6 ,g7))))
(list '() `(,g1 ,g2) `(,g3 ,g4 ,g5 ,g6 ,g7)))))))
'((((define append
(lambda (l s)
(if (null? l) s
(cons (car l) (append (cdr l) s)))))))))
; this starts producing nonsense results that game the test examples
; example of its "cleverness":
; (s (match s ((quasiquote ()) s)
; ((quasiquote (bar)) (quote (foo bar)))
; (_.0 (quote (1 2 3 4 5))) . _.1) _.2)
;(mk-test-time "append if-all-subforms"
;(run 1 (q r s)
;(evalo `(letrec ((append (lambda (l s)
;(if ,q ,r ,s))))
;(list
;(append '() '())
;(append '(foo) '(bar))
;(append '(1 2 3) '(4 5)))
;)
;(list '() '(foo bar) '(1 2 3 4 5)))
;)
;'())
(define quinec
'((lambda (_.0)
(list _.0 (list (quote quote) _.0)))
(quote
(lambda (_.0)
(list _.0 (list (quote quote) _.0))))))
;(mk-test-time "quine"
;(run 4 (q) (evalo q q))
;'())
)
| true |
e476a8efb0b830241b0d8a54288443b543da8d3d | 821e50b7be0fc55b51f48ea3a153ada94ba01680 | /shootout/hash.rkt | 7c75721569881832acf8b4d480c4f23a64b4c009 | []
| no_license | LeifAndersen/experimental-methods-in-pl | 85ee95c81c2e712ed80789d416f96d3cfe964588 | cf2aef11b2590c4deffb321d10d31f212afd5f68 | refs/heads/master | 2016-09-06T05:22:43.353721 | 2015-01-12T18:19:18 | 2015-01-12T18:19:18 | 24,478,292 | 1 | 0 | null | 2014-12-06T20:53:40 | 2014-09-25T23:00:59 | Racket | UTF-8 | Racket | false | false | 714 | rkt | hash.rkt | #lang racket/base
(require racket/contract)
(define/contract (main argv)
(-> (vectorof string?) string?)
(let* ([n (string->number (vector-ref argv 0))]
[hash (make-hash)]
[accum 0]
[false (lambda () #f)])
(define/contract (loop1 i)
(-> natural-number/c void?)
(unless (> i n)
(hash-set! hash (number->string i 16) i)
(loop1 (add1 i))))
(loop1 1)
(define/contract (loop2 i)
(-> natural-number/c void?)
(unless (zero? i)
(when (hash-ref hash (number->string i) false)
(set! accum (+ accum 1)))
(loop2 (sub1 i))))
(loop2 n)
(format "~s\n" accum)))
(time (begin (main (vector "2000000")) (void)))
| false |
4d3dc9214e47a97132173dac25b9b666f579181a | 799b5de27cebaa6eaa49ff982110d59bbd6c6693 | /soft-contract/test/programs/unsafe/issues/file2list.rkt | 1f73f39a426d685bc9c3d23a09d9798aecd6c8d2 | [
"MIT"
]
| permissive | philnguyen/soft-contract | 263efdbc9ca2f35234b03f0d99233a66accda78b | 13e7d99e061509f0a45605508dd1a27a51f4648e | refs/heads/master | 2021-07-11T03:45:31.435966 | 2021-04-07T06:06:25 | 2021-04-07T06:08:24 | 17,326,137 | 33 | 7 | MIT | 2021-02-19T08:15:35 | 2014-03-01T22:48:46 | Racket | UTF-8 | Racket | false | false | 101 | rkt | file2list.rkt | #lang racket
(define x (file->lines "hihi.txt"))
(provide
(contract-out
[x (listof integer?)]))
| false |
8a8723dcc40d059349d6557014fa8daf48c9af85 | 17126876cd4ff4847ff7c1fbe42471544323b16d | /beautiful-racket-demo/hdl-demo/And.hdl.rkt | e6323f29cba662ac94fbca49e253206faab90f8b | [
"MIT"
]
| permissive | zenspider/beautiful-racket | a9994ebbea0842bc09941dc6d161fd527a7f4923 | 1fe93f59a2466c8f4842f17d10c1841609cb0705 | refs/heads/master | 2020-06-18T11:47:08.444886 | 2019-07-04T23:21:02 | 2019-07-04T23:21:02 | 196,293,969 | 1 | 0 | NOASSERTION | 2019-07-11T00:47:46 | 2019-07-11T00:47:46 | null | UTF-8 | Racket | false | false | 201 | rkt | And.hdl.rkt | #lang hdl-demo
CHIP And {
IN a, b;
OUT out;
PARTS:
Nand(a=a, b=b, out=nandout);
Not(in=nandout, out=out);
}
| false |
daf32277d5115c707e15ca018795cf81877afb85 | 12075ec3d7e5bf3905f506a585680d7d756b578b | /clojlet.rkt | 797d2e2c713f43b4d60c5fc68714c3dc1d598273 | []
| no_license | cosmez/Racket-Stuff | ad5683ff12bf6b6057d9c7f62d8eb04c6a269a6e | fc34f8deffdccf54a662f5700baa441e26d40df9 | refs/heads/master | 2021-01-15T10:50:48.960585 | 2015-01-15T07:08:27 | 2015-01-15T07:08:27 | 25,495,436 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 453 | rkt | clojlet.rkt | #lang racket
(define-syntax (let@ stx)
(syntax-case stx ()
[(_ (var val) body ...)
(unless (identifier? #'var)
(raise-syntax-error #f "not an identifier" stx #'var))
#'(let ([var val]) body ...)]
[(_ (var val rest ...) body ...)
(unless (identifier? #'var)
(raise-syntax-error #f "not an identifier" stx #'var))
#'(let ([var val]) (let@ [rest ...] body ...))]))
(let@ [a 10 b 20] (printf "~a ~a" a b)) | true |
e62b00e1daf7f5b06bf44b10d7deb4c3e4c4edd4 | a148422eee91a5c6105427ef2c48c02bd4e3eaae | /site/times/winter-dates-2021.rkt | ce27141408379962180b1e9f43e967eeb9f739c2 | []
| no_license | thoughtstem/metapolis-stories | 05ddc38843904a05bb43eaccf4af566c5cc901ef | 3e4af8559c98096082e322fda75512274e0e4d8e | refs/heads/master | 2020-08-30T09:45:39.680415 | 2019-12-11T20:15:16 | 2019-12-11T20:15:16 | 218,338,179 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 509 | rkt | winter-dates-2021.rkt | #lang at-exp racket
(require stories
"./util.rkt")
(define jan-2021
@make-calendar-page{
January 2021
Su Mo Tu We Th Fr Sa
1 2
3 4 5D 6 7 8 9
10 11 12 13 14S 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
})
(define/provide-list
winter-dates-2021
(define scheduling-lovelace-asp-spring-class
(time "Scheduling Lovelace ASP Spring Class"
(get-moment jan-2021 'S 14)
(get-moment jan-2021 'S 17))))
| false |
e7b7636eeda5195782b3ef56eb974fdae3817d3b | c27b8ab46d5bf1638a8933e770ed01d8200ec731 | /EOPL3/ch3_3proc.rkt | 4fa3cbc4b43d61ca738c64d761a0c852e1ed6e62 | []
| no_license | 3gx/drracket | 21366d63b029e90da43690c54c6359ecd3cfefee | 978d9bcc3b36ee73fe682039f62302b9bd5517d5 | refs/heads/master | 2023-01-04T10:28:24.591314 | 2020-10-19T14:21:55 | 2020-10-19T14:21:55 | 195,736,419 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,690 | rkt | ch3_3proc.rkt | #lang racket
(require eopl)
;;;;;;;;;;;;;;;; grammatical specification ;;;;;;;;;;;;;;;;
(define the-lexical-spec
'((whitespace (whitespace) skip)
(comment ("%" (arbno (not #\newline))) skip)
(identifier
(letter (arbno (or letter digit "_" "-" "?")))
symbol)
(number (digit (arbno digit)) number)
(number ("-" digit (arbno digit)) number)
))
(define the-grammar
'((program (expression) a-program)
(expression (number) const-exp)
(expression
("-" "(" expression "," expression ")")
diff-exp)
(expression
("zero?" "(" expression ")")
zero?-exp)
(expression
("if" expression "then" expression "else" expression)
if-exp)
(expression (identifier) var-exp)
(expression
("let" identifier "=" expression "in" expression)
let-exp)
(expression
("proc" "(" identifier ")" expression)
proc-exp)
(expression
("(" expression expression ")")
call-exp)
))
;;;;;;;;;;;;;;;; sllgen boilerplate ;;;;;;;;;;;;;;;;
(sllgen:make-define-datatypes the-lexical-spec the-grammar)
(define show-the-datatypes
(lambda () (sllgen:list-define-datatypes the-lexical-spec the-grammar)))
(define scan&parse
(sllgen:make-string-parser the-lexical-spec the-grammar))
(define just-scan
(sllgen:make-string-scanner the-lexical-spec the-grammar))
(scan&parse "-(55, -(x,11))")
(scan&parse "if 42 then 43 else 45")
(scan&parse "
let f = proc(x) -(x,11)
in (f (f 77))
")
(scan&parse "
let f = proc(x) -(x,11)
in (f (f 77))
")
(scan&parse "
let x = 200
in let f = proc (z) -(z,x)
in let x = 100
in let g = proc (z) -(z,x)
in -((f 1), (g 1))
")
(define (empty-env)
(list 'empty-env))
(define (extend-env var val env)
(list 'extend-env var val env))
(define (apply-env env var)
(cond
[(eqv? (car env) 'empty-env)
(error "No binding for" var)]
[(eqv? (car env) 'extend-env)
(let ([saved-var (cadr env)]
[saved-val (caddr env)]
[saved-env (cadddr env)])
(if (eqv? var saved-var)
saved-val
(apply-env saved-env var)))]
[else
(error "Bad environment: " env)]))
(define (environment? x)
(println x)
(or (eqv? 'empty-env (car x))
(and (pair? x)
(symbol? (cadr x))
(expval? (caddr x))
(environment? (cadddr x)))))
(define (init-env)
(extend-env
'i (num-val 1)
(extend-env
'v (num-val 5)
(extend-env
'x (num-val 10)
(empty-env)))))
(define-datatype proc proc?
(procedure
(var symbol?)
(body expression?)
(env environment?)))
(define-datatype expval expval?
(num-val
(value number?))
(bool-val
(boolean boolean?))
(proc-val
(proc proc?)))
(define (expval->num val)
(cases expval val
(num-val (num) num)
(else (error "failed to extract num" val))))
(define (expval->bool val)
(cases expval val
(bool-val (bool) bool)
(else (error "failed to extract bool" val))))
(define (apply-procedure proc1 val)
(cases proc proc1
(procedure (var body env)
(value-of body (extend-env var val env)))))
(define (expval->proc val)
(cases expval val
(proc-val (proc) proc)
(else (error "failed to extract proc" val))))
(define (run ast)
(value-of-program ast))
(define (value-of-program pgm)
(cases program pgm
(a-program (exp1)
(value-of exp1 (init-env)))))
(define (value-of exp env)
(cases expression exp
(const-exp (num) (num-val num))
(var-exp (var) (apply-env env var))
(diff-exp (exp1 exp2)
(let* ([val1 (value-of exp1 env)]
[val2 (value-of exp2 env)]
[num1 (expval->num val1)]
[num2 (expval->num val2)])
(num-val (- num1 num2))))
(zero?-exp (exp1)
(let* ([val1 (value-of exp1 env)]
[num1 (expval->num val1)])
(if (zero? num1)
(bool-val #t)
(bool-val #f))))
(if-exp (exp1 exp2 exp3)
(let ([val1 (value-of exp1 env)])
(if (expval->bool val1)
(value-of exp2 env)
(value-of exp3 env))))
(let-exp (var exp1 body)
(let ([val1 (value-of exp1 env)])
(value-of body (extend-env var val1 env))))
(proc-exp (var body)
(proc-val (procedure var body env)))
(call-exp (rator rand)
(let ([proc (expval->proc (value-of rator env))]
[arg (value-of rand env)])
(apply-procedure proc arg)))))
(define pgm1 (scan&parse "
let x = 250
in let f = proc (z) -(z,x)
in let x = 100
in let g = proc (z) -(z,x)
in -((f 1), (g 1))
"))
pgm1
(run pgm1)
| false |
7aec9dadad45f0f572f11db9b38be8f467a14256 | 925fa95cc25d1d4d9afbe036c2e7b01791f080da | /net/http-codec.rkt | 611652e68ac7c50bff159e7dca64464522edd748 | []
| no_license | fujingjunben/autopack-racket | 947a7f306f63624320320f7e08df3f89dbf70b8b | d274432f4649792d126c57149468a97f8592d744 | refs/heads/master | 2021-01-10T11:09:18.408427 | 2016-04-08T11:16:24 | 2016-04-08T11:16:24 | 55,772,328 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,905 | rkt | http-codec.rkt | #lang racket
(require net/base64
net/uri-codec
file/md5)
(provide (all-defined-out))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; libs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (->string bs)
(if (bytes? bs)
(bytes->string/utf-8 bs)
bs))
(define (->bytes str)
(cond
[(string? str)
(string->bytes/utf-8 str)]
[(not str)
#""]
[else
str]))
(define post-multipart
(lambda (fields (files null))
(let-values ([(content-type body) (encode-multipart-formdata fields files)])
(let ([header (list (format "Content-Type: ~a" content-type)
(format "Content-Length: ~a" (bytes-length body)))])
(values header body)))))
(define encode-multipart-formdata
(lambda (fields files)
; field is a list of (name value) elements for regular form fields
; files is a list of (sequence of (name filename value) elements for data to uploaded as files
; Return (content-type body)
(let* ([boundary (bytes->string/utf-8 (md5 (number->string (current-seconds))))]
[CRLF #"\r\n"]
[fields-body
(if (null? fields) #""
(apply bytes-append
(for/list ([item fields])
(let ([key (first item)]
[value (second item)])
(apply bytes-append
(map (lambda (item)
(bytes-append item CRLF))
(map ->bytes
(list (format "--~a" boundary)
(format "Content-Disposition: form-data; name=\"~a\"" key)
""
value))))))))]
[files-body
(if (null? files) #""
(apply bytes-append
(for/list ([item files])
(let ([name (first item)]
[filename (second item)]
[filepath (third item)])
(apply bytes-append
(map (lambda (item)
(bytes-append item CRLF))
(append
(map ->bytes
(list (format "--~a" boundary)
(format "Content-Disposition: form-data;name=\"~a\";filename=\"~a\"" name filename)
(format "Content-Type: ~a" (content-type filename))
""))
(list (file->bytes filepath)))))))))]
[endline (->bytes (format "--~a--~a~a" boundary CRLF CRLF))])
(values (format "multipart/form-data; boundary=~a" boundary)
(bytes-append fields-body files-body endline)))))
(define (content-type filename)
(match (filename-extension filename)
[#"zip" "application/zip"]
[(or #"txt" #"rkt") "txt/plain"]))
(define (alist->form-urlencoded args)
(string-join
(for/list ([arg (in-list args)])
(define name (form-urlencoded-encode (first arg)))
(define value (and (cdr arg) (form-urlencoded-encode (second arg))))
(if value (string-append name "=" value) name))
(if (memq (current-alist-separator-mode) '(semi semi-or-amp)) ";" "&")))
(define (url-sign alist)
(->base64 alist))
(define (->base64 alist)
(string-join
(map (lambda (pair)
(let ([key (first pair)]
[value (second pair)])
(format "~a=~a" key (->string (base64-encode (->bytes value) #"")))))
(sort alist #:key car string<?))
""))
| false |
28ab748ed84baf04620e36918ebd22e22d2be3e1 | 662e55de9b4213323395102bd50fb22b30eaf957 | /dissertation/QA/transient-fast/determinance/typed/determinance.rkt | 72cb06f567cf1b330b34d700075e433c49645551 | []
| no_license | bennn/dissertation | 3000f2e6e34cc208ee0a5cb47715c93a645eba11 | 779bfe6f8fee19092849b7e2cfc476df33e9357b | refs/heads/master | 2023-03-01T11:28:29.151909 | 2021-02-11T19:52:37 | 2021-02-11T19:52:37 | 267,969,820 | 7 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 9,158 | rkt | determinance.rkt | #lang typed/racket
(require (prefix-in topq: "pfds-real-time.rkt"))
(require (prefix-in disjq: "pfds-real-time.rkt"))
;(require (rename-in (only-in "mk.rkt" var reify == symbolo numbero absento =/=)
; [== ==-goal]
; [symbolo symbolo-goal]
; [numbero numbero-goal]
; [absento absento-goal]
; [=/= =/=-goal]))
;
;(provide == run run* fresh conde symbolo numbero absento =/=)
(define-type Constraint-Store
(List (Listof Any)
(Listof Any)
(Listof Any)
(Listof Any)
(Listof Any)
(Listof Any)
(Listof Any)))
(define-type Disj*
(Listof disj))
(define-type Constraint
(U conj constraint))
(define-type Unsorted
(Listof Constraint-Like))
(define-type Constraint-Like
(U Constraint (-> TODO)))
(define-type TODO Any)
; Constraints
(: empty-constraint-store : (-> Constraint-Store))
(define (empty-constraint-store)
'(() () () () () () ()))
;(struct unification ([term1 : TODO]
; [term2 : TODO])
; #:transparent)
;
;(define-syntax-rule (wrap-constraints [(name [args : tys] ...) goal] ...)
; (begin
; (define (name [args : tys] ...) : Constraint
; (constraint (goal args ...)))
; ...))
;
;(wrap-constraints
; [(== [term1 : TODO] [term2 : TODO]) ==-goal]
; [(symbolo [u : TODO]) symbolo-goal]
; [(numbero [u : TODO]) numbero-goal]
; [(absento [u : TODO] [v : TODO]) absento-goal]
; [(=/= [u : TODO] [v : TODO]) =/=-goal])
(: apply-constraint (-> (-> Constraint-Store (U #f Constraint-Store))
Constraint-Store
(U #f Constraint-Store)))
(define (apply-constraint constraint constraint-store)
(constraint constraint-store))
;; Search
(struct conj ([constraint-store : (U #f Constraint-Store)]
[unsorted : Unsorted]
[disjunctions : (U #f Disj*)])
#:transparent)
(struct disj ([children : (Listof Constraint)])
#:transparent)
(struct constraint ([c : TODO])
#:transparent)
(struct state ([unreduced : TODO]
[reduced : TODO])
#:transparent)
;(: reduce-conj (-> Constraint-Store
; Unsorted
; Disj*
; (Values (U #f Constraint-Store) (U #f Disj*))
; ))
;(define (reduce-conj constraint-store unsorted disjunctions)
; (if (null? unsorted)
; (values constraint-store disjunctions)
; (match (first unsorted)
; [(constraint c)
; (let ([new-constraint-store (apply-constraint c constraint-store)])
; (cond
; [(not new-constraint-store)
; (values #f #f)]
; [(null? (rest unsorted))
; (values new-constraint-store disjunctions)]
; [else (reduce-conj new-constraint-store (rest unsorted) disjunctions)]))]
; [(conj #f nested-unsorted #f)
; (let-values ([(new-constraint-store new-disjunctions)
; (reduce-conj constraint-store nested-unsorted disjunctions)])
; (if new-constraint-store
; (reduce-conj new-constraint-store (rest unsorted) new-disjunctions)
; (values #f #f)))]
; ; Only disjunctions are inverse-eta delayed, so evaluate the procedure
; ; and enqueue the resulting disjunction.
; [(and p (? procedure?))
; (reduce-conj
; constraint-store
; (rest unsorted)
; (disjq:enqueue (p) disjunctions))]
; )))
(struct filter-res ([constraint-store : Constraint-Store]
[new-disjunctions : Disj*]
[original-term : TODO]))
;(: filter-branches (-> disj Constraint-Store Disj* (Listof TODO)))
;(define (filter-branches disjunction constraint-store disjunctions)
; (filter-map
; (match-lambda
; [(conj #f children #f)
; (define-values (new-constraint-store new-disjunctions)
; (reduce-conj constraint-store children disjunctions))
; (and new-constraint-store
; (filter-res new-constraint-store new-disjunctions (conj #f children #f)))])
; (disj-children disjunction)))
;(: reduce-filter (-> Constraint-Store
; Unsorted
; Disj*
; (Values (U #f Constraint-Store) (U #f Disj*))))
;(define (reduce-filter constraint-store unsorted disjunctions)
; (define-values (reduced-constraint-store reduced-disjunctions)
; (reduce-conj constraint-store unsorted disjunctions))
; (if reduced-disjunctions
; (let loop : (Values (U #f Constraint-Store) (U #f Disj*))
; ([remaining : Disj* reduced-disjunctions]
; [processed : (disjq:Queue disj) ((inst disjq:queue disj))]
; [constraint-store : (U #f Constraint-Store) reduced-constraint-store])
; (if (disjq:empty? remaining)
; (begin
; ;(displayln (map (lambda (i) (length (disj-children i))) (disjq:queue->list processed)))
; (values constraint-store processed))
; (let ([filtered (filter-branches (disjq:head remaining) constraint-store processed)])
; (cond
; [(null? filtered) (values #f #f)]
; [(null? (rest filtered))
; (loop (disjq:tail remaining)
; (filter-res-new-disjunctions (first filtered))
; (filter-res-constraint-store (first filtered)))]
; [else
; (loop (disjq:tail remaining)
; (disjq:enqueue
; (disj (map (lambda ([i : TODO]) (filter-res-original-term i)) filtered)) processed)
; constraint-store)]))))
; (values reduced-constraint-store reduced-disjunctions)))
(: distribute (-> disj Disj* Constraint-Store (Listof Constraint)))
(define (distribute into-disjunction other-disjunctions constraint-store)
(map
(match-lambda
[(conj #f nested-unsorted #f)
(conj constraint-store nested-unsorted other-disjunctions)])
(disj-children into-disjunction)))
;(define (step-state current-state)
; (match-define (state unreduced reduced) current-state)
; (if (pair? unreduced)
; (match-let ([(conj constraint-store unsorted disjunctions)
; (first unreduced)])
; (define-values (new-constraint-store filtered-disjunctions)
; (reduce-filter constraint-store unsorted disjunctions))
; (cond
; [(not filtered-disjunctions)
; (values #f (state (rest unreduced) reduced))]
; [(disjq:empty? filtered-disjunctions)
; (values new-constraint-store (state (rest unreduced) reduced))]
; [else
; (values #f
; (state (rest unreduced)
; (topq:enqueue (conj new-constraint-store '() filtered-disjunctions)
; reduced)))]))
; (match-let ([(conj constraint-store '() disjunctions)
; (topq:head reduced)])
; (values #f (state
; (distribute (disjq:head disjunctions)
; (disjq:tail disjunctions)
; constraint-store)
; (topq:tail reduced))))))
(: inject (-> conj * TODO))
(define (inject . conjuncts)
(state (list (conj (empty-constraint-store) conjuncts (disjq:queue))) (topq:queue)))
;(define (run-internal n query-vars current-state acc)
; (if (and (or (pair? (state-unreduced current-state))
; (not (topq:empty? (state-reduced current-state))))
; (or (false? n) (> n 0)))
; (let-values ([(result new-state) (step-state current-state)])
; (if result
; (run-internal (and n (- n 1)) query-vars new-state (cons result acc))
; (run-internal n query-vars new-state acc)))
; (map (lambda (result)
; ((reify (if (= (length query-vars) 1)
; (car query-vars)
; query-vars))
; result))
; (reverse acc))))
;
;
;; Interface macros
;
;(define-syntax (fresh stx)
; (syntax-case stx ()
; [(_ (x* ...) g g* ...)
; #'(let ([x* (var (quote x*))] ...)
; (conj #f (list g g* ...) #f))]))
;
;(define-syntax (conde stx)
; (syntax-case stx ()
; [(_ [g1 g1* ...] [g g* ...] ...)
; #'(lambda ()
; (disj
; (list
; (conj #f (list g1 g1* ...) #f)
; (conj #f (list g g* ...) #f)
; ...)))]))
;
;
;
;(define-syntax (run stx)
; (syntax-case stx ()
; [(_ ne (x x* ...) g g* ...)
; #'(let ([n ne]
; [x (var (quote x))]
; [x* (var (quote x*))] ...)
; (run-internal n
; (list x x* ...)
; (inject g g* ...)
; '()))]))
;
;(define-syntax (run* stx)
; (syntax-case stx ()
; [(_ (x x* ...) g g* ...)
; #'(run #f (x x* ...) g g* ...)]))
;
;
;; Debugging tools
;
;(define (state-display s)
; (list (state-unreduced s) (topq:queue->list (state-reduced s))))
;
;(define (show-step-internal n q [r '()])
; (if (> n 0)
; (let-values ([(result new-tree) (step-state q)])
; (show-step-internal (- n 1) new-tree (cons result r)))
; (values r (state-display q))))
;
;(define (show-step n tree)
; (show-step-internal n (inject tree)))
;
;
| true |
a7c901a435595f00fc719d8c75fd2d8621aa9b0f | e4c6743198cbd4e8a5659bf6b8a96d54467a85d4 | /web-ide/plain-jane/v1-to-v2.rkt | ab83f0dcbe8e1c3949e7d59187ce03c1ab0e1f29 | [
"BSD-3-Clause"
]
| permissive | jbclements/WebIDE | c9c9f3604c08bf141699bc0e5ac5e3d1038b657a | 0cd41024357a14e6f6770a692ffdddda44c9ebc5 | refs/heads/master | 2021-01-22T07:18:12.629063 | 2019-09-04T16:23:49 | 2019-09-04T16:23:49 | 1,227,356 | 2 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 14,199 | rkt | v1-to-v2.rkt | #lang racket
;; STILL EXPERIMENTAL
(require sxml
"apat.rkt"
"validate-lib.rkt")
(module+ test (require rackunit))
;; the hardest thing about interpreting v1 is figuring
;; out where the buttons are supposed to go. This code
;; basically tries to guess, but it's almost guaranteed
;; to be wrong. Basically, it puts a button after any
;; userfield that specified an evaluator, and a button
;; at the bottom that connects to all evaluators, on the
;; principle that it's easier to delete stuff than to
;; add it.
(define webide-1-namespace "http://www.web-ide.org/namespaces/labs/1")
(define webide-2-namespace "http://www.web-ide.org/namespaces/labs/2")
(define webide-ns `((w1 . ,webide-1-namespace)
(w2 . ,webide-2-namespace)))
;; read the lab xml from a port
(define (port->xml port)
(ssax:xml->sxml port webide-ns))
;; extract the steps from a lab *that uses w1 as a namespace prefix*
(define (xml->steps lab-sxml)
((sxpath '(w1:lab w1:step)) lab-sxml))
;; aw, heck. I'm just going to use a parameter here, to
;; step outside of lexical scoping.
(define evaluator-table (make-parameter #f))
;; rewrite a step:
(define (rewrite-step step)
(evaluator-table (step->evaluator-table step))
(define new-evaluators
(evaluator-table->new-evaluators (evaluator-table)))
(match step
[`(w1:step (@ . ,attrs) . ,content)
(match-define (list maybe-dependency
other-content)
(match content
[(cons `(w1:dependency (@ (stepName ,name))) other)
(list name other)]
[other (list #f other)]))
(define button-name
(first (or (dict-ref attrs 'buttonName #f)
(list "FIXME-unnamed-button"))))
(define other-attrs (dict-remove attrs 'buttonName))
(define new-button
`(w2:button
(@ (label ,button-name))
,@(for/list ([evalname (map second (evaluator-table))])
`(w2:evaluatorName ,evalname))))
`(w2:step (@ ,@other-attrs)
,@(if maybe-dependency
`((w2:dependency ,maybe-dependency))
`())
,@new-evaluators
(w2:content . ,(append other-content
(list new-button))))]))
;; extract the evaluators from a step, and construct
;; a table mapping them to names
(define (step->evaluator-table step)
(define evaluators (extract-evaluators step))
(for/list ([i (in-naturals)]
[evaluator evaluators])
(list evaluator (format "evaluator~s" i))))
;; given a table of evaluators, construct the top-level-style
;; evaluators that correspond to them.
(define (evaluator-table->new-evaluators evaluator-table)
(for/list ([evaluator-and-num evaluator-table])
(match-define (list evaluator name) evaluator-and-num)
(match evaluator
[`(w1:evaluator (@ . ,(list-no-order
(list 'name old-name)
(list 'labid old-labid)
(list 'href href)))
. ,segs-and-args)
`(w2:evaluator (@ (name ,name) (href ,href))
. ,(sort
(map rewrite-arg segs-and-args)
fixed-arg-<))]
[other (error 'evaluator-rewrite
"evaluator didn't match spec: ~e"
other)])))
(define (fixed-arg-< a b)
(match (list a b)
[(list `(w2:fixedArg . ,_) `(w2:fixedArg . ,_)) #t]
[(list `(w2:fixedArg . ,_) `(w2:userfieldArg . ,_)) #t]
[(list `(w2:userfieldArg . ,_) `(w2:fixedArg . ,_)) #f]
[(list `(w2:userfieldArg . ,_) `(w2:userfieldArg . ,_)) #t]))
;; rewrite the segids and args of v1. Note that this may fail
;; to validate if the fixedArgs don't precede the userfield args.
(define (rewrite-arg arg)
(match arg
[`(w1:arg . ,args)
`(w2:fixedArg . ,args)]
[`(w1:segid (w1:id ,id))
;; NB: the lab author can pick a better name here!
`(w2:userfieldArg (w2:name "userfield")
(w2:value ,id))]))
;; version 1 stylesheet:
(define v1-stylesheet
(list
`(w1:step *macro*
. ,(lambda elts
(rewrite-step elts)))
;; eat the evaluators... now done in rewrite-step
`(w1:evaluator
*macro*
. ,(lambda step
(define name (first
(dict-ref (evaluator-table) step)))
`(w2:button (@ (label "FIXME-need-a-label"))
(w2:evaluatorName ,name))))
;; segments become userfields
[apat (w1:segment attrs . content)
(begin
(define button-name
(first (or (dict-ref attrs 'buttonName #f)
(list "FIXME-unnamed-button!"))))
(define-values (enclosed-buttons other-content)
(partition (lambda (elt)
(match elt
[`(w2:button . ,_) #t]
[other #f]))
content))
(define named-buttons
(map (replace-button-name button-name)
enclosed-buttons))
(define other-attrs (dict-remove attrs 'buttonName))
`(flatten-me
(w2:userfield
(@ . ,other-attrs)
,@other-content)
,@named-buttons))]
;; tables
[apat (w1:labtable (rows cols . otherattrs) . elts)
`(w2:table (@ . ,otherattrs)
,@(regroup rows cols elts))]
[apat (w1:add attrs . content)
`(w2:td . ,content)]
;; code tag becomes pre tag
[apat (w1:code attrs . content)
`(w2:pre (@ ,@attrs) ,@content)]
;; dependencies look a bit different
[apat (w1:dependency (stepName . otherattrs) . elts)
`(w2:dependency ,stepName)]
;; hint isn't supported, but mostly isn't used....
[apat (w1:hint attrs . content)
(begin
(when (not (empty? attrs))
(fprintf (current-error-port)
"DISCARDING HINT ATTRIBUTES: ~e" attrs))
(when (not (empty? content))
(fprintf (current-error-port)
"DISCARDING HINT content: ~e" attrs))
(list 'eat-me-later))]
;; don't process attributes or text
`(@ *preorder* . ,(lambda args args))
`(*text* . ,(lambda (t a) a))
`(*default* .
,(lambda (tag . elts)
(cons (rewrite-tag tag) elts)))))
;; maybe add a name to a button
(define ((replace-button-name name) button)
(match button
[`(w2:button (@ (label "FIXME-need-a-label")) . ,elts)
`(w2:button (@ (label ,name)) . ,elts)]))
;; return all of the evaluators contained in an element
(define (extract-evaluators elt)
((sxpath '(// w1:evaluator) '()) `(*TOP* ,elt)))
;; count the number of segments contained in an element
(define (count-segments elt)
(length ((sxpath '(// w1:segment) '()) `(*TOP* ,elt))))
;; regroup : string string (listof sxml) -> (listof td)
(define (regroup rows cols elts)
(define width (string->number cols))
(define height (string->number rows))
(unless (andmap (tag-checker 'w2:td) elts)
(error 'process-content "expected only cells in table, got: ~e" elts))
(unless (integer? (/ (length elts) width))
(raise-argument-error
'process-content
(format
"table with number of entries (~a) divisible by number of table columns (~a)"
(length elts) width)
2 rows cols elts))
(unless (= (length elts) (* width height))
(raise-argument-error
'process-content
(format
"table with number of entries (~a) equal to product of cols and rows (~a)"
(length elts) (* width height))
2 rows cols elts)
(error 'process-content
"number of table entries (~a) is not divisible by number of table rows (~a)"
(length elts) (string->number rows)))
(let loop ([left elts])
(cond [(empty? left) empty]
[else (cons `(w2:tr . ,(take left width))
(loop (drop left width)))])))
;; extract an attribute representing a number
(define (num-attr attrs key)
(match (assoc key attrs)
[`(,dc ,num-str) (string->number num-str)]
[other (error 'num-attr "no ~a attribute found among ~a" key attrs)]))
;; tag-checker : tag -> element -> boolean?
(define ((tag-checker tag) element)
(and (list? element) (equal? (first element) tag)))
;; change w1: into w2:
(define (rewrite-tag s)
(match (regexp-match #px"([^:]*):(.*)" (symbol->string s))
[(list match "w1" rhs) (string->symbol (format "w2:~a" rhs))]
[(list match "w2" rhs) s]
#;[(list match lhs rhs) (string->symbol rhs)]
[false (error 'strip-tag "tag without prefix: ~a" s)]))
;; TEST CASES
(module+ test
(check-equal? (num-attr '((a "13") (b "14")) 'a) 13)
(check-equal? (num-attr '((a "13") (b "14")) 'b) 14)
(check-equal? ((tag-checker 'w1:evaluator) `(3 w1:evaluator)) #f)
(check-equal? ((tag-checker 'w1:evaluator) `(w1:evaluator (@ (abc "def")))) #t)
(check-equal? (xml->steps `(*TOP* (@ (*NAMESPACES* (w1 ,webide-1-namespace)))
(w1:lab (w1:step "abc") (w1:step "def"))))
'((w1:step "abc") (w1:step "def")))
;; tests for version 1 spec
#;(check-equal? (pcon `(w1:add "bc"))
`(td "bc"))
#;(check-equal? (regroup "3" "2"
`((td "a1")
(td "a2")
(td "a3")
(td "a4")
(td "a5")
(td "a6")))
`((tr (td "a1") (td "a2"))
(tr (td "a3") (td "a4"))
(tr (td "a5") (td "a6"))))
#;(check-equal? (pcon `(w1:labtable (@ (rows "2") (cols "1"))
(w1:add "a")
(w1:add "b")))
`(table (@ (rows "2") (cols "1"))
(tr (td "a"))
(tr (td "b"))))
#;(check-equal? (pcon `(w1:segment (@ (id "boo")(width "20") (height "1"))))
`(textarea (@ (name "boo")(width "20") (height "1")) ""))
)
;; extract the top-level "lab" element.
(define (extract-lab lab)
(match ((sxpath '(w1:lab)) lab)
[(list l) l]
[other
(raise-argument-error
'extract-lab "sxml beginning with w1:lab"
0 lab)]))
;; wrap a *TOP* element back around the tree.
(define (wrap-with-top element)
`(*TOP* (@
(*NAMESPACES*
#;(w1 "http://www.web-ide.org/namespaces/labs/2")
(w2 "http://www.web-ide.org/namespaces/labs/2")))
,element))
#;(when (file-exists? "/tmp/a.xml")
(delete-file "/tmp/a.xml"))
;; rewrite the lab from sxml to sxml
(define (rewrite lab)
;; make sure these don't leak outside one lab:
(parameterize ([evaluator-table #f])
((sxml:modify '("//flatten-me" delete-undeep))
((sxml:modify '("//eat-me-later" delete))
(wrap-with-top
(pre-post-order
(extract-lab lab)
v1-stylesheet))))))
;; COPIED FROM VALIDATE.RKT:
;; return #true for xml paths
(define (xml-path? f)
(regexp-match #px".*\\.xml$" (path->string f)))
;; return #true for paths beginning with "broken"
;; NB: assumes that the path contains just a file name!
(define (broken-test? f)
(regexp-match #px"^broken" (path->string f)))
;; check all files in a directory
(define (translate-dir dir)
(for ([f (in-list (find-files xml-path? dir))])
(define-values (base name must-be-dir?) (split-path f))
(when (and (not must-be-dir?)
(not (symbol? name))
(xml-path? name)
(not (broken-test? name))
(not (regexp-match #px"translated-labs" f)))
(printf "translating file: ~s\n" f)
(define sxml
(call-with-input-file f
(lambda (p)
(port->xml p))))
;; blecch!
(with-handlers
((exn:fail?
(lambda (exn)
(display (exn-message exn) (current-error-port))
#f)))
(define cleaned (rewrite sxml))
(validate-sxml cleaned)
(display-to-file (srl:sxml->xml cleaned)
(build-path base
"translated-labs"
name)
#:exists 'truncate)))))
(translate-dir "/Users/clements/trac-webide/labs/")
#;(define lab1
(call-with-input-file "/Users/clements/trac-webide/labs/arrays.xml"
(lambda (p)
(port->xml p))))
#;processed2
#;(validate-sxml processed2)
(module+ test
(check-equal?
(count-segments
`(w1:lab
(@ (name "Build an android apk"))
(w1:description "\nBuilding an android apk.\n")
(w1:step
(@ (name "Test test") (buttonName "Compile apk"))
"\nBuild the android apk.\n "
(w1:segment "foo")
(w1:evaluator
(@
(name "Test")
(labid "test")
(href
"http://anoteuh")))
(w1:segment "bar"))))
2)
(define t1
'(*TOP*
(@
(*NAMESPACES*
(w1 "http://www.web-ide.org/namespaces/labs/1")
(w2 "http://www.web-ide.org/namespaces/labs/2")))
(*PI* xml "version=\"1.0\"")
(w1:lab
(@ (name "Build an android apk"))
(w1:description "\nBuilding an android apk.\n")
(w1:step
(@ (name "Test test") (buttonName "Compile apk"))
"\nBuild the android apk.\n "
(w1:evaluator
(@
(name "Test")
(labid "test")
(href
"http://anoteuh")))))))
(check-true (validate-sxml (rewrite t1)))
(check-equal?
(rewrite t1)
'(*TOP*
(@ (*NAMESPACES* (w2 "http://www.web-ide.org/namespaces/labs/2")))
(w2:lab
(@ (name "Build an android apk"))
(w2:description "\nBuilding an android apk.\n")
(w2:step
(@ (name "Test test"))
(w2:evaluator
(@
(name "evaluator0")
(href
"http://anoteuh")))
(w2:content
"\nBuild the android apk.\n "
(w2:button (@ (label "Compile apk")) (w2:evaluatorName "evaluator0")))))))
)
| false |
1b9698b90471b7e377f963266f724194927bce87 | 323c4b63da4e4cd9b7236d130a137b479f2597bf | /syndicate/bag.rkt | 451b13ad2ec691bf38831220bf1a58090524379e | []
| no_license | frumioj/syndicate-rkt | b177fb55eaca6047c1bd63c024cf4297ee8b80e8 | 3030d1959e4b9bee9b8b6cbb7b8bab2d11f37d7c | refs/heads/master | 2022-10-10T01:15:41.664050 | 2020-06-10T11:38:26 | 2020-06-10T11:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,205 | rkt | bag.rkt | #lang racket/base
;; Bags and Deltas (which are Bags where item-counts can be negative).
(provide make-bag ;; mutable
bag ;; immutable
bag-change!
bag-change
bag-ref
bag-clear!
bag-member?
bag-empty?
bag-key-count
in-bag
in-bag/count
for/bag/count
for/bag
set->bag
bag->set)
(require racket/set)
;; A `(MutableBagof X)` is a `(MutableHash X Nat)`, where the `Nat`
;; against an `X` is its replication count in the bag.
;;
;; A `(Bagof X)` is similar, but immutable.
;;
;; `MutableDeltaof` and `Deltaof` are like `MutableBagof` and `Bagof`,
;; respectively, except the replication counts can be negative.
(define make-bag make-hash)
(define bag hash)
(define (bag-change! b x delta)
(define old-count (bag-ref b x))
(define new-count (+ old-count delta))
(if (zero? new-count)
(begin (hash-remove! b x)
(if (zero? old-count) 'absent->absent 'present->absent))
(begin (hash-set! b x new-count)
(if (zero? old-count) 'absent->present 'present->present))))
(define (bag-change b x delta #:clamp? [clamp? #f])
(define old-count (bag-ref b x))
(define new-count (if clamp?
(max 0 (+ old-count delta))
(+ old-count delta)))
(if (zero? new-count)
(values (hash-remove b x)
(if (zero? old-count) 'absent->absent 'present->absent))
(values (hash-set b x new-count)
(if (zero? old-count) 'absent->present 'present->present))))
(define (bag-ref b x)
(hash-ref b x 0))
(define bag-clear! hash-clear!)
(define bag-member? hash-has-key?)
(define bag-empty? hash-empty?)
(define bag-key-count hash-count)
(define-syntax-rule (in-bag piece ...) (in-hash-keys piece ...))
(define-syntax-rule (in-bag/count piece ...) (in-hash piece ...))
(define-syntax-rule (for/bag/count iters expr ...) (for/hash iters expr ...))
(define-syntax-rule (for/bag iters expr ...) (for/bag/count iters (values (begin expr ...) 1)))
(define (set->bag s [count 1])
(for/hash [(e (in-set s))]
(values e count)))
(define (bag->set b)
(list->set (hash-keys b)))
| true |
5ce24abe3a1a27e396c45d6fb4a93343afef79f7 | 3fc2a0fafceb764f3c9315f17bb1b7c7be587f06 | /WeeklyFive.rkt | e945d17110b3a796069716b11b7070c990931c8e | []
| no_license | JosephBrooksbank/COMP3351 | fef9ffbb1d062c31ef22b17681478b81c7c94756 | 1ae6d131363ca5e123e291b292e08bdd55cb4424 | refs/heads/master | 2020-07-31T01:51:22.105444 | 2019-11-21T22:53:55 | 2019-11-21T22:53:55 | 210,440,268 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 11,820 | rkt | WeeklyFive.rkt | #lang racket
(require parser-tools/yacc
(prefix-in lex: parser-tools/lex)
"JSONLexer.rkt"
;;; This is what my abstract syntax tree is called, the official one might be different?
"JSONAbstractSyntaxTree.rkt"
"JSONparser.rkt")
;;; helper function to save redundant code
;;; takes an ObjVal and converts it into the 'raw' list it contains
(define (objValToString json)
(match json
[(ObjVal '()) (ObjVal '())]
[(ObjVal li) li]))
;;; helper function for objectContains?
;;; recursively checks each StrJSONPair in the Object to see if it contains a given key
(define (objectContainsHelper list strVal)
;;; Getting the first entry from the list of STrJSONPairs
(if (empty? list)
#f
(letrec ([firstEntry (first list)])
;;; Getting the 'string' entry from the StrJSONPair
(letrec ([name (match firstEntry [(StrJSONPair st js) st])])
(if (equal? strVal name)
#t
(objectContainsHelper (rest list) strVal))))))
;;; objectContains?: returns whether or not a JSON Object contains the given field name
;;; @json: the json object to check
;;; @strVal: the field name to check for
;;; @ret: whether or not the name was found
(define (objectContains? json strVal)
;;; Getting the list of StrJSONPairs from the ObjVal
(let ([list (objValToString json)])
;;; recursively check each member of the list
(objectContainsHelper list strVal)))
;;; Helper function for @getField
;;; recursively checks each object in ObjVal list to see if it matches the name of the field requested
;;; @ret:: the field by the name requested
(define (getFieldHelp alist str)
(if (empty? alist)
(ObjVal '())
(letrec ([firstEntry (first alist)])
;;; Getting the 'string' entry from the StrJSONPair
(letrec ([name (match firstEntry [(StrJSONPair st js) st])])
(letrec ([value (match firstEntry [(StrJSONPair st jsonVal) jsonVal])])
(if (equal? str name)
value
(getFieldHelp (rest alist) str)))))))
;;; getField: consumes a JSON Object and field name and produces the JSON value corresponding to that field name
;;; @json: the JSON Object value to search through
;;; @strVal: the name of the field to return
;;; @ret: the field of name @strVal
(define (getField json strVal)
(let ([alist (objValToString json)])
(ObjVal (getFieldHelp alist strVal))))
;;; helper function for @filterKeys
;;; recursively applies a function to each StrJSONPair and returns a list of the ones that return true
(define (filterKeysHelp func alist)
(if (empty? alist)
'()
(letrec ([name (match (first alist) [(StrJSONPair st js) st])])
;;; In the instructions, the function was described as type (String -> Bool), and then in the next sentence was described as "apply it to each (key, value) pair", which I would personally think meant the function
;;; was of type (StrJSONPair -> Bool). However, I went with the assumption that the described typing was correct, and thus the function to be passed here is acting on the "string" parameter of the StrJSONPair.
(if (func (name))
(append (filterKeysHelp func (rest alist)) (first alist))
(filterKeysHelp func (rest alist))))))
;;; filterKeys: consumes a function and a JSON Object and produces a JSON object containing the pairs that returned true
;;; @funct: the function to apply to each string of the StrJSONPairs
;;; @json: the JSON object containing the values to apply the function to
;;; @ret: a list of filtered keyvalue pairs in an ObjVal object
(define (filterKeys funct json)
(let ([alist (objValToString json)])
(ObjVal (filterKeysHelp funct alist))))
;;; keyCount: returns the number of keys in a JSON object
(define (keyCount json)
(match json
[(ObjVal '()) 0]
[(ObjVal li) (length li)]
))
;;; helper function for @keyList
;;; returns a list of keys found in the JSON Object
(define (keyListHelper alist)
(if (empty? alist)
'()
(letrec ([name (match (first alist) [(StrJSONPair st js) st])])
(append (list name) (keyListHelper (rest alist)) ))))
;;; keyList: consumes a JSON Object and produces a list of all keys in the JSON structure
;;; @json: the json object to get the keys from
;;; @ret: a list of all keys in @json
(define (keyList json)
(let ([list (objValToString json)])
(keyListHelper list)))
;;; arrayLength: consumes a JSON array and returns number of elements contained in array
(define (arrayLength jsonArray)
(let ([alist (match jsonArray
[(Array li) li])])
(length alist)))
;;; helper function for @filterRange
;;; recursively finds the values in the list from low to high
(define (filterRangeHelp low high jlist cur)
(if (or (empty? jlist) (> cur high))
'()
(if (>= cur low)
(append (list (first jlist)) (filterRangeHelp low high (rest jlist) (+ 1 cur)))
(filterRangeHelp low high (rest jlist) (+ 1 cur)))))
;;; filterRange: takes a low and high value and returns a JSON array containing the values
;;; in the indexes from low to high
;;; @low: the low side of the indexes
;;; @high: the max index to get
;;; @jsonArray: the JSON array object to filter
;;; @return: a JSON array containing the filtered data
(define (filterRange low high jsonArray)
(match jsonArray
[(Array li) (Array (filterRangeHelp low high li 0))]))
;;; helper method for @filterArray
;;; recursively applies @funct to every value in @alist
;;; returns list containing values where funct returned true
(define (filterArrayHelp funct alist)
(if (empty? alist)
'()
(if (funct (first alist))
(append (first alist) (filterArrayHelp funct (rest alist)))
(filterArrayHelp funct (rest alist)))))
;;;filterArray: consumes a function and an array, returns array containing values which the function returned true for
;;; @funct: the function to apply to each JSON value
;;; @jsonArray: the array to apply the function to
(define (filterArray funct jsonArray)
(match jsonArray
[(Array li) (Array (filterArrayHelp funct li))]))
;;; helper function for @extractElements
;;; recursively gets the values from each index given
(define (extractElementsHelp aList indList cur)
(if (empty? aList)
'()
(if (member cur indList)
(append (list (first aList)) (extractElementsHelp (rest aList) indList (+ 1 cur)))
(extractElementsHelp (rest aList) indList (+ 1 cur)))))
;;; extractElements: takes a JSON array and list of indicies, and returns a new arrray containing only those indicies
;;; jsonArray: the array to extract from
;;; indList: the list of indicies to extract
(define (extractElements jsonArray indList)
(match jsonArray
[(Array li) (Array (extractElementsHelp li indList 0))]))
;;; JSON order
;;; MMWR year MMWR week Current week current week,flag cum 2018 cum 2018,flag 5-year weekly average 5-year,flag totalcases 2017 2017,flag totalcases 2016 2016,flag 2015 2015,flag 2014 2014,flag 2013 2013,flag statescurrentweek
;;; Helper function: takes a StrVal, converts it to a string without the escaped quotes
(define (strvalToString strv)
(match strv
[(StrVal str) (substring str 1 (- (string-length str) 1))]
;;; Assuming null means 0 cases
[(NullVal val) "0"]))
;;; Helper function: takes a StrVal and converts it to an int
(define (strvalToNum numv)
(match numv
[(NullVal val) 0]
[(NumVal num) num]
[(StrVal str) (string->number (substring str 1 (- (string-length str) 1)))]))
;;; Helper function for @increasingIncidentsl
;;; given the raw list of data contained in the array in the object value with key "data", recursively check each entry to see if there were more cases in 2017 than 2013
(define (increasingIncidentsHelp alist)
(if (empty? alist)
'()
;;; Extracting the relevant data from the cdc array: [8:name, 10:week, 17:2017 cases, 25:2013 cases]
(letrec ([curDiseaseData (match (extractElements (first alist) (list 8 10 17 25))
[(Array li) li])])
;;; if the number of cases in 2017 is larger than the number in 2013, AND the data is from week 15 then its valid
;;; I'm only using data from week 15 because it is the most recent week, and the data is most updated. From what the file looks like, it seems that as weeks increase, more and more data is inputted for 2017,
;;; all the way until week 15.
(if (and (> (- (strvalToNum (list-ref curDiseaseData 2)) (strvalToNum (list-ref curDiseaseData 3))) 0) (= 15 (strvalToNum (list-ref curDiseaseData 1))))
(append (list (string-append (strvalToString (list-ref curDiseaseData 0)) ":" (strvalToString (list-ref curDiseaseData 3)) " cases in 2013, " (strvalToString (list-ref curDiseaseData 2)) " cases in 2017")) (increasingIncidentsHelp (rest alist)))
(increasingIncidentsHelp (rest alist))))))
;;; increasingIncidents: parses the cdc JSON file and finds all diseases that have an increasing number of cases from 2013 to 2017
;;; filename: the name of the file to open
(define (increasingIncidents filename)
(let ([in (open-input-file filename)])
(let ([parsed (parse in)])
(let ([data (match (getField parsed "\"data\"")
[(ObjVal val) val])])
(let ([dataList (match data
[(Array aList) aList])])
(increasingIncidentsHelp dataList))))))
;;; Helper method for the extra credit option
(define (strictlyIncreasingHelp alist)
(if (empty? alist)
'()
;;; Extracting the relevant data from the cdc array: [8:name, 10:week, 17-25: yearly data]
(letrec ([curDiseaseData (match (extractElements (first alist) (list 8 10 17 19 21 23 25))
[(Array li) li])])
;;; if every year is more than the last year, it is monotonically increasing
(if (and (>(strvalToNum (list-ref curDiseaseData 2)) (strvalToNum (list-ref curDiseaseData 3)))
(>(strvalToNum (list-ref curDiseaseData 3)) (strvalToNum (list-ref curDiseaseData 4)))
(>(strvalToNum (list-ref curDiseaseData 4)) (strvalToNum (list-ref curDiseaseData 5)))
(>(strvalToNum (list-ref curDiseaseData 5)) (strvalToNum (list-ref curDiseaseData 6)))
(= 15 (strvalToNum (list-ref curDiseaseData 1))))
(append (list (string-append
(strvalToString (list-ref curDiseaseData 0)) ":"
(strvalToString (list-ref curDiseaseData 6)) " cases in 2013, "
(strvalToString (list-ref curDiseaseData 5)) " cases in 2014, "
(strvalToString (list-ref curDiseaseData 4)) " cases in 2015, "
(strvalToString (list-ref curDiseaseData 3)) " cases in 2016, "
(strvalToString (list-ref curDiseaseData 2)) " cases in 2017"
)) (strictlyIncreasingHelp (rest alist)))
(strictlyIncreasingHelp (rest alist))))))
;;; Extra credit function, returns diseases that are only strictly increasing
(define (strictlyIncreasing filename)
(let ([in (open-input-file filename)])
(let ([parsed (parse in)])
(let ([data (match (getField parsed "\"data\"")
[(ObjVal val) val])])
(let ([dataList (match data
[(Array aList) aList])])
(strictlyIncreasingHelp dataList))))))
| false |
7ea204f08859e9bb4ebe2745513aa49af14bb0ca | a61dfc66bc73fda7d06fee8e4e8d570093e3ca80 | /private/generate/api-constants.test.rkt | 231d6fa83963e679c4d3ea6f6d3a9fc88a244f81 | [
"MIT"
]
| permissive | zyrolasting/racket-vulkan | dccb8cc0e044d450746d16416c4551c1c247843c | 1e983e921fb41b59994cea0fc0ebd859ec847186 | refs/heads/master | 2022-02-11T06:47:45.089834 | 2022-02-08T18:24:02 | 2022-02-08T18:24:02 | 168,229,492 | 53 | 8 | MIT | 2022-02-08T18:24:03 | 2019-01-29T21:11:07 | Racket | UTF-8 | Racket | false | false | 1,618 | rkt | api-constants.test.rkt | #lang racket/base
(module+ test
(require racket/sequence
rackunit
"./api-constants.rkt")
(test-equal? "(find-extension-constants)"
(find-extension-constants
'(root (extension "\n "
(require (enum ((extends "A") (name "B")))
(enum ((name "X") (value "1")))))))
'(enums (enum ((name "X") (value "1")))))
(test-equal? "(generate-consts-signature)"
(sequence->list
(generate-consts-signature
'(enums (enum ((value "(~0U)") (name "A")))
(enum ((value "(~0ULL-2)") (name "B")))
(enum ((value "(~0L)") (name "C")))
(enum ((value "256") (name "D")))
(enum ((value "(~0UL)") (dir "-1") (name "N")))
(enum ((name "E") (alias "C"))))))
'((define A
(- (integer-bytes->integer (make-bytes (ctype-sizeof _long) 255) #t)
0))
(define B
(- (integer-bytes->integer (make-bytes (ctype-sizeof _llong) 255) #t)
2))
(define C
(- (integer-bytes->integer (make-bytes (ctype-sizeof _long) 255) #f)
0))
(define D 256)
(define N
(* -1
(- (integer-bytes->integer (make-bytes (ctype-sizeof _long) 255) #t)
0)))
(define E C))))
| false |
754b167c8f865236e4e6ec607caf091514ae01f5 | 2c819623a83d8c53b7282622429e344389ce4030 | /riscv/tostr.rkt | 531e0773a8e1eda6e2bb2f51fa29b10913ca6a26 | []
| no_license | uw-unsat/jitsynth | 6bc97dd1ede9da42c0b9313a4766095345493adc | 69529e18d4a8d4dace884bfde91aa26b549523fa | refs/heads/master | 2022-05-29T05:38:57.129444 | 2020-05-01T19:35:32 | 2020-05-01T19:35:32 | 260,513,113 | 14 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,159 | rkt | tostr.rkt | #lang rosette
(require "../common/case-hex.rkt")
(require "../common/instructions.rkt")
(require (only-in "../common/debug.rkt" [debugln common:debugln]))
(provide tostr-instr)
(provide tostr-instrs)
(define DEBUG #f)
(define (debugln x)
(if DEBUG (common:debugln x) void))
(define (tostr-func func3 func7)
(case-hex func3 3
[(0) (case-hex func7 7
[(0) "add"]
[(32) "sub"])]
[(1) "sll"]
[(2) (error "slt not implemented")]
[(3) (error "sltu not implemented")]
[(4) "xor"] ; NOTE: May need another case for signed division
[(5) (case-hex func7 7
[(0) "srl"]
[(1) "div"]
[(32) "sra"])] ; arith right shift if func7 is 32
[(6) "or"]
[(7) (case-hex func7 7
[(0) "and"]
[(1) "mod"])]))
(define (tostr-imm-func func3 imm)
(case-hex func3 3
[(0) "addi"]
[(1) "slli"]
[(2) (error "slti not implemented")]
[(3) (error "sltiu not implemented")]
[(4) "xori"]
[(5) (case-hex (extract 10 10 imm) 1
[(0) "srli"]
[(1) "srai"])]
[(6) "ori"]
[(7) "andi"]))
(define (tostr-reg x)
(case-hex x 5
[(0) "0"]
[(1) "ra"]
[(2) "sp"]
[(3) "gp"]
[(4) "tp"]
[(5) "t0"]
[(6) "t1"]
[(7) "t2"]
[(8) "fp"]
[(9) "s1"]
[(10) "a0"]
[(11) "a1"]
[(12) "a2"]
[(13) "a3"]
[(14) "a4"]
[(15) "a5"]
[(16) "a6"]
[(17) "a7"]
[(18) "s2"]
[(19) "s3"]
[(20) "s4"]
[(21) "s5"]
[(12) "s6"]
[(23) "s7"]
[(24) "s8"]
[(25) "s9"]
[(26) "s10"]
[(27) "s11"]
[(28) "t3"]
[(29) "t4"]
[(30) "t5"]
[(31) "t6"]))
(define (tostr-imm b)
(~a "0x" (number->string (bitvector->natural b) 16)))
(define (tostr-off b)
(~a (number->string (bitvector->integer b))))
(define (tostr-arith-64 ri)
(let* ([func3 (riscv-instr-func3 ri)]
[func7 (riscv-instr-func7 ri)]
[src1 (riscv-instr-src1 ri)]
[src2 (riscv-instr-src2 ri)]
[dst (riscv-instr-dst ri)])
(~a (tostr-func func3 func7) " "
(tostr-reg dst) ", "
(tostr-reg src1) ", "
(tostr-reg src2))))
(define (tostr-arith-32 ri)
(let* ([func3 (riscv-instr-func3 ri)]
[func7 (riscv-instr-func7 ri)]
[src1 (riscv-instr-src1 ri)]
[src2 (riscv-instr-src2 ri)]
[dst (riscv-instr-dst ri)]
[func (~a (tostr-func func3 func7) "w")])
(~a func " "
(tostr-reg dst) ", "
(tostr-reg src1) ", "
(tostr-reg src2))))
(define (tostr-imm-arith-64 ri)
(let* ([func3 (riscv-instr-func3 ri)]
[imm (riscv-instr-imm ri)]
[src (riscv-instr-src1 ri)]
[dst (riscv-instr-dst ri)])
(if (riscv-nop? ri) "nop"
(~a (tostr-imm-func func3 imm) " "
(tostr-reg dst) ", "
(tostr-reg src) ", "
(tostr-imm imm)))))
(define (tostr-imm-arith-32 ri)
(let* ([func3 (riscv-instr-func3 ri)]
[imm (riscv-instr-imm ri)]
[src (riscv-instr-src1 ri)]
[dst (riscv-instr-dst ri)]
[func (~a (tostr-imm-func func3 imm) "w")])
(~a func " "
(tostr-reg dst) ", "
(tostr-reg src) ", "
(tostr-imm imm))))
(define (tostr-load ri)
(let* ([width (riscv-instr-func3 ri)]
[base (riscv-instr-src1 ri)]
[dst (riscv-instr-dst ri)]
[offset (riscv-instr-imm ri)]
[func
(case-hex width 3
[(0) "lb"]
[(1) "lh"]
[(2) "lw"]
[(3) "ld"]
[(4) "lbu"]
[(5) "lhu"]
[(6) "lwu"])])
(~a func " "
(tostr-reg dst) ", "
(tostr-off offset) "(" (tostr-reg base) ")")))
(define (tostr-store ri)
(let* ([width (riscv-instr-func3 ri)]
[src (riscv-instr-src2 ri)]
[base (riscv-instr-src1 ri)]
[offset (riscv-instr-imm ri)]
[func
(case-hex width 3
[(0) "sb"]
[(1) "sh"]
[(2) "sw"]
[(3) "sd"])])
(~a func " "
(tostr-off offset) "(" (tostr-reg base) "), "
(tostr-reg src))))
; TODO semantics here might be wrong, may need to first update PC
(define (tostr-auipc ri)
(let* ([imm (riscv-instr-imm ri)]
[dst (riscv-instr-dst ri)])
(~a "auipc " (tostr-reg dst) ", " (tostr-imm imm))))
; NOTE: The result is sign extended always
(define (tostr-lui ri)
(let* ([imm (riscv-instr-imm ri)]
[dst (riscv-instr-dst ri)])
(~a "lui " (tostr-reg dst) ", " (tostr-imm imm))))
(define (tostr-branch ri)
(let* ([func3 (riscv-instr-func3 ri)]
[rs2 (riscv-instr-src2 ri)]
[rs1 (riscv-instr-src1 ri)]
[offset (riscv-instr-imm ri)]
[func (case-hex func3 3
[(0) "beq"]
[(1) "bne"]
[(4) "blt"]
[(5) "bge"]
[(6) "bltu"]
[(7) "bgeu"])])
(~a func " "
(tostr-reg rs1) ", "
(tostr-reg rs2) ", "
(tostr-off offset))))
(define (tostr-jal ri)
(let* ([dst (riscv-instr-dst ri)] ; assume this is 0
[offset (riscv-instr-imm ri)])
(~a "jal " (tostr-reg dst) ", " (tostr-off offset))))
(define (tostr-jalr ri)
(let* ([dst (riscv-instr-dst ri)]
[offset (riscv-instr-imm ri)]
[src1 (riscv-instr-src1 ri)])
(~a "jalr " (tostr-reg dst) ", " (tostr-off offset) "(" (tostr-reg src1) ")")))
(define (tostr-instr ri)
(if (not (null? (symbolics ri)))
(~a ri " (symbolic)")
(let* ([opcode (riscv-instr-op ri)])
(case-hex opcode 7
[(#x3b) (tostr-arith-32 ri)]
[(#x1b) (tostr-imm-arith-32 ri)]
[(#x33) (tostr-arith-64 ri)]
[(#x13) (tostr-imm-arith-64 ri)]
[(#x03) (tostr-load ri)]
[(#x23) (tostr-store ri)]
[(#x6f) (tostr-jal ri)]
[(#x63) (tostr-branch ri)]
[(#x37) (tostr-lui ri)]
[(#x73) "ret"]
[(#x67) (tostr-jalr ri)]
[(#x17) (tostr-auipc ri)]
[(0) "0"]))))
(define (tostr-instrs ri-list)
(if (null? ri-list) ""
(~a (tostr-instr (first ri-list)) "\n" (tostr-instrs (rest ri-list)))))
| false |
a605ab91a2fb0450564a43a6d3092c7881f68679 | c5ad92f350844c794b6333b8e4b56d39bfdd354e | /controller/computer-player-gui-controller.rkt | 213e5faef8f97743ec8823fcc3c80bf8ef6f50f0 | [
"MIT"
]
| permissive | AlexKnauth/turn-based-game | 02019573787a052316f76bb579a000214aa7da48 | eb290ed914fb91fc2db8e135570453608bc51f39 | refs/heads/master | 2023-08-03T17:17:25.851016 | 2022-01-07T14:40:26 | 2022-01-07T14:40:26 | 95,328,478 | 2 | 2 | MIT | 2023-07-05T09:35:01 | 2017-06-24T23:44:38 | Racket | UTF-8 | Racket | false | false | 5,007 | rkt | computer-player-gui-controller.rkt | #lang agile
(provide start/computer
turn-based-game-start/computer)
(require 2htdp/universe
lang/posn
"../computer-player.rkt"
"../turn-based-game.rkt"
"../turn-based-game-gui.rkt")
;; ------------------------------------------------------------------------
;; Running a world program using a TBGG and Comp instances
;; A GuiState is one of:
;; - InteractState
;; - EndState
;; A InteractState is a
;; (interact-state TbggState TurnState [Hashof Side Comp])
;; A EndState is a
;; (end-state TbggState [Maybe Side])
(struct interact-state [ts turn-state comps] #:transparent)
(struct end-state [ts winner] #:transparent)
;; start/computer : TBGGI [Hashof Side Comp] -> Void
;; Starts the turn-based game with its standard initial state, with some of
;; the sides played by the computer
(define (start/computer tbggi comps)
(turn-based-game-start/computer tbggi
(standard-initial-state tbggi)
(standard-initial-side tbggi)
comps))
;; turn-based-game-start/computer :
;; TBGG GameState Side [Hashof Side Comp] -> Void
;; Starts the turn-based-game with the givin initial state, with some of
;; the sides played by the computer
(define (turn-based-game-start/computer tbgg state side comps)
(void
(big-bang (start-gui-state (tbg-state tbgg state side)
(for/hash ([(k v) (in-hash comps)])
(values k (start-comp-state v))))
[to-draw gui-display]
[on-tick gui-handle-tick]
[on-mouse gui-handle-mouse]
[on-key gui-handle-key])))
;; ------------------------------------------------------------------------
;; Private Implementation Details of the World Program
;; A Comps is a [Hashof Side CompState]
;; start-gui-state : TbggState Comps -> GuiState
(define (start-gui-state ts comps)
(match-define (tbg-state tbgg _ _) ts)
(interact-state ts (start-turn tbgg) comps))
;; gui-display : GuiState -> Image
(define (gui-display gs)
(match gs
[(interact-state (tbg-state tbgg state side) turn-state comps)
(display-game-state tbgg state side turn-state)]
[(end-state (tbg-state tbgg state side) winner)
(display-end-state tbgg state side winner)]))
;; gui-handle-tick : GuiState -> GuiState
(define (gui-handle-tick gs)
(match gs
[(interact-state ts turn-state comps)
(match-define (tbg-state tbgg game-state side) ts)
(cond
[(hash-has-key? comps side)
;; comp : CompState
(define comp
(comp-state-next-state (hash-ref comps side) tbgg game-state side))
(define moves
(comp-state-moves comp tbgg game-state side))
(gui-handle-move-choice ts
(random-element moves)
(hash-set comps side comp))]
[else
gs])]
[(end-state _ _)
gs]))
;; gui-handle-mouse : GuiState Int Int MouseEvent -> GuiState
(define (gui-handle-mouse gs x y mouse)
(match gs
[(interact-state ts turn-state comps)
(match-define (tbg-state tbgg state side) ts)
(cond
[(hash-has-key? comps side) gs]
[else
(gui-handle-event-result
ts
(handle-mouse tbgg state side turn-state (make-posn x y) mouse)
comps)])]
[(end-state _ _)
gs]))
;; gui-handle-key : GuiState KeyEvent -> GuiState
(define (gui-handle-key gs key)
(match gs
[(interact-state ts turn-state comps)
(match-define (tbg-state tbgg state side) ts)
(cond
[(hash-has-key? comps side) gs]
[else
(gui-handle-event-result
ts
(handle-key tbgg state side turn-state key)
comps)])]
[(end-state _ _)
gs]))
;; gui-handle-event-result : TbggState HandlerResult Comps -> GuiState
(define (gui-handle-event-result ts hr comps)
(match hr
[(continue-turn turn-state)
(interact-state ts turn-state comps)]
[(finish-turn move)
(gui-handle-move-choice ts move comps)]))
;; gui-handle-move-choice : TbggState MoveChoice Comps -> GuiState
(define (gui-handle-move-choice ts move comps)
(match-define (tbg-state tbg _ side) ts)
(gui-state-check-winner
(tbg-state-handle-move-choice ts move)
side
(comps-handle-move-choice comps tbg side move)))
;; comps-handle-move-choice : Comps TBG Side MoveChoice -> Comps
(define (comps-handle-move-choice comps tbg side move)
(for/hash ([(k v) (in-hash comps)])
(values k (comp-state-add-move v tbg side move))))
;; gui-state-check-winner : TbggState Side Comps -> GuiState
(define (gui-state-check-winner ts side comps)
(cond [(tbg-state-win? ts side) (end-state ts side)]
[else (start-gui-state ts comps)]))
;; ------------------------------------------------------------------------
(define (random-element lst)
(list-ref lst (random (length lst))))
;; ------------------------------------------------------------------------
| false |
bf17ba31721a6d90bfe04fe869b059e908066a15 | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-lib/typed-racket/utils/unit-utils.rkt | aeec3dcf3857d56bce790b421be78567b9de360f | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/typed-racket | 2cde60da289399d74e945b8f86fbda662520e1ef | f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554 | refs/heads/master | 2023-09-01T23:26:03.765739 | 2023-08-09T01:22:36 | 2023-08-09T01:22:36 | 27,412,259 | 571 | 131 | NOASSERTION | 2023-08-09T01:22:41 | 2014-12-02T03:00:29 | Racket | UTF-8 | Racket | false | false | 281 | rkt | unit-utils.rkt | #lang racket/base
(require (for-syntax racket/base) "utils.rkt" racket/unit)
(provide cond-contracted)
(define-signature-form (cond-contracted stx)
(syntax-case stx ()
[(_ nm cnt)
(if enable-contracts?
(list #'[contracted (nm cnt)])
(list #'nm))]))
| false |
996df7f24ecbf6ab905b495a87f9c188b2998dda | d29c2c4061ea24d57d29b8fce493d116f3876bc0 | /2014.rkt | fc937b17f128f2d29adc58411a45b0d730acea4e | []
| no_license | jbejam/magnolisp | d7b28e273550ff0df884ecd73fb3f7ce78957d21 | 191d529486e688e5dda2be677ad8fe3b654e0d4f | refs/heads/master | 2021-01-16T19:37:23.477945 | 2016-10-01T16:02:42 | 2016-10-01T16:02:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,306 | rkt | 2014.rkt | #lang racket/base
#|
Defines a Racket module language for Magnolisp, but with the 2014
edition of the surface syntax. Exists for backward compatibility.
We export racket/base as the macro programming language, and we also
provide racket/base as runtime language at present as well. Such
language may be used, but it will not be compiled into C++.
The idea is not to use Magnolisp as the macro programming language, as
Racket ought to be better for that purpose. We will not provide any
Magnolisp for-syntax.
|#
(module reader syntax/module-reader
magnolisp/2014
#:wrapper1 (lambda (t)
;; No need to replace reader altogether, just override
;; readtable.
(with-magnolisp-readtable
(t)))
;; Import readtable. Note that it needs to be in the `reader`
;; submodule scope, not the outer one.
(require magnolisp/2014/reader-ext))
(provide (except-out (all-from-out racket/base) #%module-begin))
(require (for-syntax racket/base))
(provide (for-syntax (all-from-out racket/base)))
(require (submod "2014/base.rkt" modbeg))
(provide (rename-out [module-begin/2014 #%module-begin]))
(require "2014/prelude.rkt")
(provide (all-from-out "2014/prelude.rkt"))
(require "2014/surface.rkt")
(provide (all-from-out "2014/surface.rkt"))
| false |
d20bfc005e6ccd5fb9192edce1319ed62583540a | 21b370ff97102f8e39c7bbdc63c2b04622677d5e | /http/test.rkt | 59e7368d970fe76ff0c9a7a54f9325588fcf6055 | []
| no_license | imxingquan/scheme | d8ba9a34b31cfbf796448686ff7b22491ea68cfe | 531da0b60a23ac1d83deeaba1fc29dc954c55a65 | refs/heads/master | 2021-07-16T12:17:19.429706 | 2021-05-18T11:01:00 | 2021-05-18T11:01:00 | 124,641,579 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 239 | rkt | test.rkt | #lang racket
(require json)
(require net/url)
(call/input-url (string->url "https://www.ifixit.com/api/2.0/guides/13470")
get-pure-port
(lambda (port)
(string->jsexpr (port->string port)))) | false |
fbd8d086871d6f5e546e40c15e743d64b9111991 | 73e08bc49ae7a2dae6ed6b828ff3b504c497f6b8 | /bench/tptp/COM008-5-plain.rkt | d4f7d19dca9c6aacfa37de460c6d8ef560bb2445 | [
"BSD-2-Clause"
]
| permissive | altanh/colocolo | 9d44efba4d1e0d02927fa371c94d0dae59c92e99 | a7a6aeff4d166c0fa3950079f61c7a1da5f17801 | refs/heads/master | 2020-04-22T18:23:11.311752 | 2019-03-15T17:38:11 | 2019-03-15T17:38:11 | 170,575,439 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,467 | rkt | COM008-5-plain.rkt | #lang rosette
(require colocolo colocolo/lang/ast colocolo/engine/interpretation colocolo/lang/bounds colocolo/engine/sat/solver colocolo/lib/skolemize-solve colocolo/engine/symmetry)
(define universe$0 (universe (list "goal" "a0" "a1" "a2" "a3" "a4")))
(define v$11 (declare-relation 1 "C"))
(define v$6 (declare-relation 1 "A"))
(define v$16 (declare-relation 1 "B"))
(define r$4 (declare-relation 2 "trr"))
(define r$8 (declare-relation 1 "goal"))
(define v$9 (declare-relation 1 "A"))
(define v$12 (declare-relation 1 "A"))
(define v$14 (declare-relation 1 "C"))
(define r$7 (declare-relation 1 "Atom"))
(define r$5 (declare-relation 2 "rewrite"))
(define v$13 (declare-relation 1 "B"))
(define r$3 (declare-relation 2 "equalish"))
(define r$0 (declare-relation 1 "a"))
(define r$2 (declare-relation 1 "c"))
(define v$15 (declare-relation 1 "A"))
(define v$10 (declare-relation 1 "B"))
(define r$1 (declare-relation 1 "b"))
(define b-ex$53 (-> r$0 v$12))
(define b-ex$60 (join v$13 r$4))
(define b-ex$23 (join r$3 r$7))
(define b-ex$55 (-> v$12 v$13))
(define decl$67 (cons v$15 r$7 #|one|#))
(define b-ex$38 (-> v$9 v$10))
(define b-ex$10 (-> r$1 v$6))
(define b-ex$72 (-> v$15 v$16))
(define cmp-f$7 (in r$5 r$4))
(define cmp-f$5 (in r$3 r$4))
(define b-ex$42 (join v$10 r$4))
(define mul-f$14 (multiplicity-formula 'some r$8))
(define decl$36 (cons v$11 r$7 #|one|#))
(define mul-f$82 (multiplicity-formula 'some r$8))
(define mul-f$1 (multiplicity-formula 'one r$1))
(define b-ex$31 (join r$4 r$4))
(define decl$34 (cons v$9 r$7 #|one|#))
(define mul-f$0 (multiplicity-formula 'one r$0))
(define b-ex$70 (-> v$15 v$16))
(define b-ex$75 (join r$4 v$16))
(define b-ex$18 (-> r$0 r$1))
(define mul-f$3 (multiplicity-formula 'one r$2))
(define b-ex$43 (join v$11 r$4))
(define b-ex$74 (join v$15 r$5))
(define b-ex$39 (-> v$9 v$11))
(define b-ex$19 (-> r$0 r$2))
(define decl$50 (cons v$13 r$7 #|one|#))
(define b-ex$56 (-> v$12 v$14))
(define b-ex$11 (-> r$2 v$6))
(define decl$51 (cons v$14 r$7 #|one|#))
(define decl$49 (cons v$12 r$7 #|one|#))
(define decl$68 (cons v$16 r$7 #|one|#))
(define decl$35 (cons v$10 r$7 #|one|#))
(define decl$9 (cons v$6 r$7 #|one|#))
(define b-ex$61 (join v$14 r$4))
(define u-ex$28 (~ r$3))
(define cmp-f$73 (in b-ex$72 r$3))
(define cmp-f$32 (in b-ex$31 r$4))
(define b-f$2 (&& mul-f$0 mul-f$1))
(define b-ex$24 (-> b-ex$23 b-ex$23))
(define b-ex$62 (& b-ex$60 b-ex$61))
(define b-ex$44 (& b-ex$42 b-ex$43))
(define b-ex$76 (& b-ex$74 b-ex$75))
(define decls$69 (list decl$67 decl$68))
(define b-ex$57 (+ b-ex$55 b-ex$56))
(define b-ex$20 (+ b-ex$18 b-ex$19))
(define cmp-f$71 (in b-ex$70 r$4))
(define !-f$83 (! mul-f$82))
(define decls$37 (list decl$34 decl$35 decl$36))
(define decls$52 (list decl$49 decl$50 decl$51))
(define cmp-f$54 (in b-ex$53 r$5))
(define b-ex$40 (+ b-ex$38 b-ex$39))
(define b-ex$12 (+ b-ex$10 b-ex$11))
(define cmp-f$29 (= r$3 u-ex$28))
(define cmp-f$41 (in b-ex$40 r$5))
(define b-f$4 (&& b-f$2 mul-f$3))
(define mul-f$63 (multiplicity-formula 'some b-ex$62))
(define cmp-f$21 (in b-ex$20 r$4))
(define mul-f$45 (multiplicity-formula 'some b-ex$44))
(define mul-f$77 (multiplicity-formula 'some b-ex$76))
(define b-ex$25 (& b-ex$24 iden))
(define cmp-f$58 (in b-ex$57 r$4))
(define cmp-f$13 (in b-ex$12 r$4))
(define b-f$46 (=> cmp-f$41 mul-f$45))
(define b-f$78 (|| cmp-f$73 mul-f$77))
(define b-f$59 (&& cmp-f$54 cmp-f$58))
(define b-f$6 (&& b-f$4 cmp-f$5))
(define b-f$15 (=> cmp-f$13 mul-f$14))
(define cmp-f$26 (in b-ex$25 r$3))
(define q-f$47 (quantified-formula 'all decls$37 b-f$46))
(define b-f$8 (&& b-f$6 cmp-f$7))
(define b-f$79 (=> cmp-f$71 b-f$78))
(define b-f$64 (=> b-f$59 mul-f$63))
(define q-f$16 (quantified-formula 'all (list decl$9) b-f$15))
(define q-f$65 (quantified-formula 'all decls$52 b-f$64))
(define b-f$17 (&& b-f$8 q-f$16))
(define q-f$80 (quantified-formula 'all decls$69 b-f$79))
(define b-f$22 (&& b-f$17 cmp-f$21))
(define b-f$27 (&& b-f$22 cmp-f$26))
(define b-f$30 (&& b-f$27 cmp-f$29))
(define b-f$33 (&& b-f$30 cmp-f$32))
(define b-f$48 (&& b-f$33 q-f$47))
(define b-f$66 (&& b-f$48 q-f$65))
(define b-f$81 (&& b-f$66 q-f$80))
(define b-f$84 (&& b-f$81 !-f$83))
(define ts$1 (list))
(define ts$2 (list (list "a0" "a0") (list "a0" "a1") (list "a0" "a2") (list "a0" "a3") (list "a0" "a4") (list "a1" "a0") (list "a1" "a1") (list "a1" "a2") (list "a1" "a3") (list "a1" "a4") (list "a2" "a0") (list "a2" "a1") (list "a2" "a2") (list "a2" "a3") (list "a2" "a4") (list "a3" "a0") (list "a3" "a1") (list "a3" "a2") (list "a3" "a3") (list "a3" "a4") (list "a4" "a0") (list "a4" "a1") (list "a4" "a2") (list "a4" "a3") (list "a4" "a4")))
(define ts$5 (list))
(define ts$12 (list (list "goal")))
(define ts$6 (list (list "a0") (list "a1") (list "a2") (list "a3") (list "a4")))
(define bd$10 (bound r$7 ts$6 ts$6))
(define bd$3 (bound r$5 ts$1 ts$2))
(define bd$4 (bound r$3 ts$1 ts$2))
(define bd$7 (bound r$0 ts$5 ts$6))
(define bd$9 (bound r$2 ts$5 ts$6))
(define bd$11 (bound r$4 ts$1 ts$2))
(define bd$13 (bound r$8 ts$5 ts$12))
(define bd$8 (bound r$1 ts$5 ts$6))
(define bounds$14 (bounds universe$0 (list bd$10 bd$3 bd$4 bd$7 bd$9 bd$11 bd$13 bd$8)))
(define F b-f$84)
(define bnds bounds$14)
(displayln "-- instantiating bounds...")
(define interp (time (instantiate-bounds bnds)))
(displayln "-- making boolean interpretation...")
(define F* (time (interpret* F interp)))
(displayln "-- making Rosette solver call...")
(define sol (time (solve (assert F*))))
| false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.