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
4e5a525889e72879ee4c989b9e6bdf1cd4bd11cf
615ed233288889d04895f8b4ce192906cbe113c3
/examples/ranked_procedure_call.rkt
6e2f26e508b07310ba1a7795e41352fcc6cd43e8
[ "MIT" ]
permissive
lewtds/ranked-programming
ee06de15ee9bfad924949ccdcefaae286eaf9e65
5503146a8ac9779d949905b778f0d9fd6d8c0d1a
refs/heads/master
2022-11-16T21:12:12.136757
2020-05-18T15:30:08
2020-05-18T15:30:08
null
0
0
null
null
null
null
UTF-8
Racket
false
false
311
rkt
ranked_procedure_call.rkt
#lang racket (require ranked-programming) ; We calculate the sum of two values (pr ($ + 10 5)) ; Now we add uncertainty: the first value is normally 10 but exceptionally 20 (pr ($ + (nrm/exc 10 20) 5)) ; More uncertainty: we normally add, but exceptionally subtract (pr ($ (nrm/exc + -) (nrm/exc 10 20) 5))
false
802ddf9fb6c49e83faa303c89f95839417237f69
b799840b179368ed5ec0a24032f62699cadb3d5e
/racket/booleans.rkt
4207d6d3f42b0cd1cca45df5e603327e33cc452f
[]
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
300
rkt
booleans.rkt
#lang racket (provide (all-defined-out)) (= (if 1 2 3) 2) (= (if null 2 3) 2) (= (if "false" 2 3) 2) (= (if #f 2 3) 3) (define (count-falses xs) (cond [(null? xs) 0] [(car xs) (count-falses (cdr xs))] ["otherwise" (+ 1 (count-falses (cdr xs)))])) (= (count-falses (list #t #f 1 2 #f)) 2)
false
5a9838181ca162e2275723f55014d1470bb874d8
561eac844dbad77a7fa88720d8f5b9ab6e6ba4b2
/corpse-reviver/test/opaque-type/automata-adapted.rkt
28711318e5d4e307ea42da2c3868bb05bbb83816
[ "0BSD" ]
permissive
camoy/corpse-reviver
7c0a5c5d7abbeccd8f2260a4adea4ca6b3363567
67fda012093bfd5fe8f9bb699b7558699743217d
refs/heads/master
2023-08-18T14:47:26.601987
2023-08-03T15:17:01
2023-08-03T15:17:01
261,932,938
19
0
null
null
null
null
UTF-8
Racket
false
false
142
rkt
automata-adapted.rkt
#lang typed/racket/base (require "_benchmark-util.rkt") (require/typed "automata.rkt" [#:opaque Automaton automaton?]) (provide Automaton)
false
2a923f8b41b15e4356c294c668b1ad2c67fb5e62
7ab4846887821aaa6ac2290c686a2ceb51673ec4
/CSC530/Assignment-4/get-constraints.rkt
33f17aa1eca032a900292ea2f2cd7848fe976041
[]
no_license
baileywickham/college
14d39bf5586a0f3c15f3461eb42ff1114c58a7d5
8f3bb6433ea8555f0ba73cb0db2fabd98c95d8ee
refs/heads/master
2022-08-24T19:20:18.813089
2022-08-11T10:22:41
2022-08-11T10:22:41
150,782,968
1
5
null
2021-03-15T19:56:38
2018-09-28T18:56:44
Java
UTF-8
Racket
false
false
2,018
rkt
get-constraints.rkt
#lang typed/racket (provide get-constraints) (require "types.rkt") (define (get-constraints [cfg : CFG]) : (Listof Logic) (append-map (λ ([cp : Cut-Point]) (map ImpliesL (map (λ ([x : Logic]) (ConjunctionL (list (if (start-point? cp) #t (InvariantL 'I)) x))) (get-conditions (hash-ref cfg cp) cfg)) (map (λ ([path : (Listof Stmt)]) (omega path (InvariantL 'I))) (get-paths (hash-ref cfg cp) cfg)))) (filter Cut-Point? (hash-keys cfg)))) (define (start-point? [c : Cut-Point]) : Boolean (equal? (Cut-Point-name c) 'start)) (define (omega [tau : (U Stmt (Listof Stmt))] [I : Logic]) : Logic (match tau [(Assert p) (ConjunctionL (list p I))] [(Assume p) (ImpliesL p I)] [(Assign x e) (SubstitutionL e x I)] [(cons S1 S2) (omega S1 (omega S2 I))] ['() I])) (define (get-conditions [tau : Any] [cfg : CFG]) : (Listof Logic) (match tau [(cons (Assign var val) rst) (map (λ ([l : Logic]) (SubstitutionL val var l)) (get-conditions rst cfg))] [(list (GoTo (? Cut-Point?))) '(#t) ] [(list (GoTo label)) (get-conditions (hash-ref cfg label) cfg)] [(Conditional pred t f) (append (map (λ ([c : Logic]) (ConjunctionL (list pred c))) (get-conditions (list (GoTo t)) cfg)) (map (λ ([c : Logic]) (ConjunctionL (list (NotL pred) c))) (get-conditions (list (GoTo f)) cfg)))] [(cons _ rst) (get-conditions rst cfg)])) ;; Given the CNode after a cut point, returns a list of paths to other cut points (define (get-paths [c : CNode] [cfg : CFG]) : (Listof (Listof Stmt)) (match c [(Conditional test t f) (append (get-paths (list (GoTo t)) cfg) (get-paths (list (GoTo f)) cfg))] [(list (GoTo (? Cut-Point?))) '(())] [(list (GoTo label)) (get-paths (hash-ref cfg label) cfg)] [(cons stmt rst) (map (λ ([path : (Listof Stmt)]) (cons (cast stmt Stmt) path)) (get-paths rst cfg))]))
false
f5b22933eb463ee363334de9503da523414f5bc1
ca308b30ee025012b997bb8a6106eca1568e4403
/io-utils.rkt
72ce64b7e67e0526c1aac08cc192b2559ea6d091
[ "MIT" ]
permissive
v-nys/cclp
178d603c6980922d0fe3f13ee283da61809e0a99
c20b33972fdc3b1f0509dd6b9e4ece4f5f3192b3
refs/heads/master
2022-02-18T07:12:28.750665
2017-10-30T06:55:45
2017-10-30T06:55:45
64,598,287
1
0
null
null
null
null
UTF-8
Racket
false
false
2,782
rkt
io-utils.rkt
#lang at-exp racket (require syntax/macro-testing) (require (only-in "control-flow.rkt" until)) (require scribble/srcdoc) (require (for-doc scribble/manual)) (define (prompt-for-integer) (define read-something (read)) (if (exact-nonnegative-integer? read-something) read-something (begin (displayln "Not an integer >= 0!") (prompt-for-integer)))) (module+ test (require rackunit) (let ([output-port (open-output-string)]) (parameterize ([current-output-port output-port] [current-input-port (open-input-string "hello\ntwelve\n12")]) (check-equal? (prompt-for-integer) 12) (check-equal? (get-output-string output-port) "Not an integer!\nNot an integer!\n")))) (provide (proc-doc/names prompt-for-integer (-> exact-nonnegative-integer?) () @{"Asks the user to enter a positive integer and returns it."})) (define (prompt-for-selection options) (for ([option options] [idx (range 1 (+ (length options) 1))]) (displayln (format "~v.~v" idx option))) (define int (prompt-for-integer)) (until (between? int 1 (length options)) (displayln "Not a valid choice!") (set! int (prompt-for-integer))) (list-ref options (- int 1))) (provide (proc-doc/names prompt-for-selection (-> (listof any/c) any/c) (options) @{"Asks the user to select an item from @racket[options] and returns it."})) (define (between? val lower upper) (and (>= val lower) (<= val upper))) (provide between?) (define-syntax-rule (interactive-dispatch prompt (label body ...) ...) (#%app (let ([choices (list label ...)] [actions (list (λ () body ...) ...)]) (displayln prompt) (foldl (λ (el acc) (begin (printf "~a: ~a\n" acc el) (+ acc 1))) 1 choices) (define int (prompt-for-integer)) (until (between? int 1 (length choices)) (displayln "Not a valid choice!") (set! int (prompt-for-integer))) (list-ref actions (- int 1))))) (module+ test (let ([output-port (open-output-string)]) (parameterize ([current-output-port output-port] [current-input-port (open-input-string "hello\ntwelve\n12\n2")]) (check-equal? (interactive-dispatch "What can I get you?" ("Gimme foo" 'foo) ("Gimme bar" 'bar) ("Print something" (print "Don't print this!"))) 'bar) (check-equal? (get-output-string output-port) "What can I get you?\n1: Gimme foo\n2: Gimme bar\n3: Print something\nNot an integer!\nNot an integer!\nNot a valid choice!\n")))) (provide (form-doc (interactive-dispatch prompt (label body ...) ...) @{Presents the user with several options and executes the bodies associated with the selected one.}))
true
4aebe9742face0a1e7eda3d4457f93f9eaaca9fc
3906b8b073a874350da8914107909a90f87f282f
/digitama/exchange/csv/reader/misc.rkt
dcb5244a01c5fc84fbaaec689dc36ab7e411970b
[]
no_license
wargrey/schema
7d99e4f513b6bac5e35d07d19d1e638972c7aad0
860a09a23a01104432be6b990a627afe9d752e66
refs/heads/master
2023-07-07T15:39:11.744020
2023-06-30T16:33:13
2023-06-30T16:33:13
76,066,993
6
2
null
2021-04-17T23:30:43
2016-12-09T20:14:41
Racket
UTF-8
Racket
false
false
7,987
rkt
misc.rkt
#lang typed/racket/base (provide (all-defined-out)) (require racket/vector) (define-type CSV-Field String) (define-type CSV-Row (Vectorof CSV-Field)) (define-type CSV-Row* (Pairof CSV-Field (Listof CSV-Field))) (define-type CSV-Stdin (U Input-Port Bytes Path-String)) (define-type CSV-Stdin* (Option CSV-Stdin)) (define empty-field : CSV-Field "") (define empty-row : CSV-Row (vector)) (define empty-row* : CSV-Row* (list empty-field)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define char-oct-digit? : (-> Any Boolean : #:+ Char) (lambda [ch] (and (char? ch) (char<=? #\0 ch #\7)))) (define char-hex-digit? : (-> Any Boolean : #:+ Char) (lambda [ch] (and (char? ch) (or (char-numeric? ch) (char-ci<=? #\a ch #\f))))) (define unicode->char : (-> Fixnum Char) (lambda [n] (cond [(> n #x10FFFF) #\uFFFD] ; #\nul and max unicode [(<= #xD800 n #xDFFF) #\uFFFD] ; surrogate [else (integer->char n)]))) (define char->decimal : (-> Char Fixnum) (lambda [hexch] (cond [(char<=? hexch #\9) (- (char->integer hexch) #x30)] [(char<=? #\a hexch) (- (char->integer hexch) #x57)] [else #;[#\A, #\F] (- (char->integer hexch) #x37)]))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define csv-topic : Symbol 'exn:csv:syntax) (define csv-bytes-name : Symbol '/dev/csvin/bytes) (define csv-string-name : Symbol '/dev/csvin/string) (define csv-ports : (HashTable Input-Port Boolean) (make-hasheq)) (define csv-input-name : (-> CSV-Stdin Any) (lambda [/dev/stdin] (cond [(input-port? /dev/stdin) (object-name /dev/stdin)] [(or (path? /dev/stdin) (regexp-match? #px"\\.csv$" /dev/stdin)) /dev/stdin] [else csv-string-name]))) (define csv-input-port : (-> CSV-Stdin Boolean Input-Port) (lambda [/dev/stdin trace?] (define /dev/csvin : Input-Port (cond [(input-port? /dev/stdin) /dev/stdin] [(path? /dev/stdin) (open-input-file /dev/stdin)] [(bytes? /dev/stdin) (open-input-bytes /dev/stdin csv-bytes-name)] [else (open-input-string /dev/stdin csv-bytes-name)])) (when (and trace?) (unless (eq? /dev/csvin /dev/stdin) (hash-set! csv-ports /dev/csvin #true))) /dev/csvin)) (define csv-input-source : (-> CSV-Stdin Boolean (U Input-Port String)) (lambda [/dev/stdin trace?] (cond [(input-port? /dev/stdin) /dev/stdin] [(path? /dev/stdin) (csv-input-port /dev/stdin trace?)] [(regexp-match? #px"\\.csv$" /dev/stdin) (csv-input-port (string->path (format "~a" /dev/stdin)) trace?)] [(bytes? /dev/stdin) (parameterize ([port-count-lines-enabled #false]) (csv-input-port /dev/stdin trace?))] [else /dev/stdin]))) (define csv-close-input-port : (-> Input-Port Void) (lambda [/dev/csvin] (when (hash-has-key? csv-ports /dev/csvin) (hash-remove! csv-ports /dev/csvin) (close-input-port /dev/csvin)))) (define csv-log-escape-error : (case-> [Input-Port -> Void] [CSV-Stdin* String Nonnegative-Fixnum -> Void]) (let ([brief : String "invalid escape sequence"]) (case-lambda [(/dev/csvin) (csv-log-syntax-error /dev/csvin 'warning #false brief)] [(/dev/stdin src idx) (csv-log-syntax-error /dev/stdin src idx 1 'warning #false brief)]))) (define csv-log-length-error : (case-> [Input-Port Integer Integer (U CSV-Row (Listof CSV-Field)) Boolean -> Void] [CSV-Stdin* String Nonnegative-Fixnum Integer Integer (U CSV-Row (Listof CSV-Field)) Boolean -> Void]) (let ([brief (λ [[expected : Integer] [given : Integer] [in : (U CSV-Row (Listof CSV-Field))]] : String (format "field length mismatch: expected ~a, given ~a ~a ~s" expected given (if (< given expected) 'in 'with) (if (vector? in) (vector-take in given) in)))]) (case-lambda [(/dev/csvin expected given in strict?) (csv-log-syntax-error /dev/csvin 'error strict? (brief expected given in))] [(/dev/stdin src idx expected given in strict?) (csv-log-syntax-error /dev/stdin src idx 1 'error strict? (brief expected given in))]))) (define csv-log-eof-error : (case-> [Input-Port Boolean -> Void] [CSV-Stdin* String Nonnegative-Fixnum Boolean -> Void]) (let ([brief : String "unexpected eof of file"]) (case-lambda [(/dev/csvin strict?) (csv-log-syntax-error /dev/csvin 'warning strict? brief)] [(/dev/stdin src idx strict?) (csv-log-syntax-error /dev/stdin src idx 0 'warning strict? brief)]))) (define csv-log-out-quotes-error : (case-> [Input-Port Boolean Symbol -> Void] [CSV-Stdin* String Nonnegative-Fixnum Boolean Symbol -> Void]) (let ([brief (λ [[position : Symbol]] : String (format "ignored non-whitespace chars ~a quote char" position))]) (case-lambda [(/dev/csvin strict? position) (csv-log-syntax-error /dev/csvin 'warning strict? (brief position))] [(/dev/stdin src idx strict? position) (csv-log-syntax-error /dev/stdin src idx 0 'warning strict? (brief position))]))) (define csv-log-if-invalid : (case-> [Input-Port Boolean Boolean -> Void] [CSV-Stdin* String Nonnegative-Fixnum Boolean Boolean -> Void]) (case-lambda [(/dev/csvin valid? strict?) (when (not valid?) (csv-log-out-quotes-error /dev/csvin strict? 'after))] [(/dev/stdin src idx valid? strict?) (when (not valid?) (csv-log-out-quotes-error /dev/stdin src (+ (assert idx index?) 1) strict? 'after))])) (define csv-log-syntax-error : (case-> [Input-Port Log-Level Boolean String -> Void] [CSV-Stdin* String Nonnegative-Fixnum Byte Log-Level Boolean String -> Void]) (case-lambda [(/dev/csvin level strict? brief) (define-values (line column position) (port-next-location /dev/csvin)) (define message : String (cond [(and line column) (format "~a:~a:~a: ~a" (object-name /dev/csvin) line column brief)] [else (format "~a: ~a" (object-name /dev/csvin) brief)])) (log-message (current-logger) level csv-topic message #false) (unless (not strict?) (csv-close-input-port /dev/csvin) (raise-user-error 'csv "~a" message))] [(/dev/stdin src idx idx0 level strict? brief) (define-values (src-name strin pos) (if (not /dev/stdin) (let ([start (search-sol src (- idx 1))] [end (search-eol src idx)]) (values csv-string-name (substring src start end) (- idx start))) (values (csv-input-name /dev/stdin) src idx))) (define message : String (format "~a: @{~a}[~a]: ~a" src-name strin (+ pos idx0) brief)) (log-message (current-logger) level csv-topic message #false) (unless (not strict?) (when (input-port? /dev/stdin) (csv-close-input-port /dev/stdin)) (raise-user-error 'csv "~a" message))])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define search-sol : (-> String Fixnum Integer) (lambda [/dev/strin pos] (cond [(< pos 0) 0] [else (let ([ch (string-ref /dev/strin pos)]) (cond [(or (eq? ch #\linefeed) (eq? ch #\return)) (+ pos 1)] [else (search-sol /dev/strin (- pos 1))]))]))) (define search-eol : (-> String Nonnegative-Fixnum Index) (lambda [/dev/strin pos] (define eos : Index (string-length /dev/strin)) (let search ([pos : Nonnegative-Fixnum pos]) (cond [(>= pos eos) eos] [else (let ([ch (string-ref /dev/strin pos)]) (cond [(or (eq? ch #\linefeed) (eq? ch #\return)) pos] [else (search (+ pos 1))]))]))))
false
cefa3a746d498b91078d8d24af636fbb760eb8fc
6cf2e78840970768168f583716e8826b1902dafa
/learning-functional/work-in-university/homework/hw-fp/homework-1/hw-yp/hw_1_fn_61670_yp.rkt
d735d17174c9323cdd5a176207fa019b1184b30e
[]
no_license
dianvaltodorov/learning-code
e4b3e5034c68cdf9d1e38f8b6a12af1d51d2e167
a92605345829e051c0b2420de6f3dfc1fe5eb65a
refs/heads/master
2021-01-17T12:24:58.618311
2016-02-02T17:48:55
2018-06-21T06:53:16
49,488,021
2
0
null
null
null
null
UTF-8
Racket
false
false
802
rkt
hw_1_fn_61670_yp.rkt
#lang racket (define (gcd x y) (define (helper a b) (cond ((= a b) a) ((> a b) (helper (- a b) b)) ((< a b) (helper a (- b a))))) (helper x y)) (define (scd x y) (/ (* x y) (gcd x y))) (define (exp x n) (define (helper i p q res) (if(> i n) res (helper (+ i 1) (* p x) (* q i) (+ res (/ p q))))) (helper 1 1 1 0)) (define (progr n) (define (helper current) (display current) (newline) (cond ((< current 10) #t) ((< (remainder current 10) (remainder (quotient current 10) 10)) (helper (quotient current 10))) (else #f))) (helper n)) (define (sum-nxn x n) (define (helper i next-pow res) (if(> i n) res (helper (+ i 1) (* x next-pow) (+ res (* i next-pow))))) (helper 1 x 0))
false
0e3cd5b9d359e02b282746835eaf07f64197af77
33b7db4ac6a5a60c533ac223b8470562ab25136d
/info.rkt
00d43cdc0dee120a157d750ea4edd39e8b2cf569
[]
no_license
markuspf/fra
bab327cc0062b7c771c871aa0e90fa72700ac287
151ca5afbb8e732e0da89198cf0b982625233b87
refs/heads/master
2023-03-15T19:17:59.532395
2017-12-13T17:15:05
2017-12-13T17:15:05
null
0
0
null
null
null
null
UTF-8
Racket
false
false
149
rkt
info.rkt
#lang info (define collection 'multi) (define version "0.1") (define deps '("base" "eli-tester")) (define build-deps '("racket-doc" "scribble-lib"))
false
08f31cfcf17b12c1b149a68adcfd34df3e137469
4c2dc47a9d9aa20d516a3a70d12d4e33ea28984b
/scribblings/turtles.scrbl
6b9adb40db379389ac18ba566c4979d471c8944b
[ "CC-BY-4.0" ]
permissive
rfindler/lindenmayer
92c0d0bafdc9097ba60a7dea73a548b5eb27e8b7
695db090aa4cfdb9338cd34ad0a0b8f72b698a54
refs/heads/master
2023-03-13T01:13:59.554157
2023-03-04T16:21:58
2023-03-04T16:50:37
83,209,018
27
4
null
2017-03-05T03:55:58
2017-02-26T13:06:46
Racket
UTF-8
Racket
false
false
1,742
scrbl
turtles.scrbl
#lang scribble/doc @(require (for-label lindenmayer/turtle (only-in pict pict?)) pict racket/runtime-path scribble/manual scribble/base "deflsymbol.rkt") @title{2D L-system turtles} @defmodule[lindenmayer/turtle] @racketmodname[lindenmayer/turtle] provides support for 2D turtle graphics in L-systems. @deflsymbol[(F () (len _ ...)) ([len real?])]{ Moves the turtle forward and draws a line. If @racket[len] is supplied, the turtles moves that distance (negative values move backwards). If @racket[len] is not supplied, @racket[F] checks for a variable named @litchar{l} and uses its value. Otherwise, it moves two steps forward. } @deflsymbol[(f () (len _ ...)) ([len real?])]{ Like @racket[F], but does not draw a line. } @deflsymbol[(- () (_ ...)) ()]{ Rotates the turtle counterclockwise. It rotates by @racket[θ] degrees if that variable is defined, and by @racket[90] degrees otherwise. } @deflsymbol[(+ () (_ ...)) ()]{ Like @racket[-], but rotates clockwise. } @deflsymbol[(|/| () (width _ ...)) ([width (and/c real? positive?)])]{ Set the turtle line drawing with. The default @racket[width] is @racket[1]. } @deflsymbol[(|[| () (_ ...)) ()]{ Save the current turtle state. } @deflsymbol[(|]| () (_ ...)) ()]{ Restore the turtle to the state of the matching @racket[\[]. } @defproc[(start [variables hash?]) turtles?]{ Creates an initial, with the turtle facing to the right. } @defproc[(finish [variables hash?] [turtles turtles?]) pict?]{ Turns the given @racket[turtles] into a pict. } @defparam[scale-final? scale? boolean? #:value #t]{ Determines if @racket[finish] scales the resulting pict so that it fits in a 300x300 rectangle. }
false
aa74b2cb5c323b39f4d37037cb3aa1c1c3c770eb
fc22bffe6fd01f0045ade778d3ea534acb6f9e48
/chapter01/Exercise 1.28.rkt
0d47cb486fa6c7477e23fbf3aebd4b64d66c7a2e
[]
no_license
HuTongsama/sicp
0cd9eafed8bb03e71b4e005ff4382629fc63894f
ba722200ebc81e6fe2fd6d4c47893f36420c0f2e
refs/heads/master
2021-07-23T06:05:01.884911
2020-05-06T15:26:47
2020-05-06T15:26:47
159,015,398
0
0
null
null
null
null
UTF-8
Racket
false
false
1,028
rkt
Exercise 1.28.rkt
#lang sicp (define (Miller-Rabin-test n) (define (try-it a) (= (expmod a (- n 1) n) 1)) (try-it (+ 1 (random (- n 2))))) (define (expmod base exp m) (cond ((= exp 0) 1) ((nontrivial-square-root? base m) 0) ((even? exp) (remainder (square (expmod base (/ exp 2) m)) m)) (else (remainder (* base (expmod base (- exp 1) m)) m)))) (define (square x) (* x x)) (define (nontrivial-square-root? a n) (and (not (= a 1)) (not (= a (- n 1))) (= 1 (remainder (square a) n)))) (define (test n times) (cond ((= times 0) #t) ((Miller-Rabin-test n) (test n (- times 1))) (else #f))) (test 561 (ceiling (/ 561 2))) (test 1105 (ceiling (/ 1105 2))) (test 1729 (ceiling (/ 1729 2))) (test 2465 (ceiling (/ 2465 2))) (test 2821 (ceiling (/ 2821 2))) (test 6601 (ceiling (/ 6601 2))) (test 233 (ceiling (/ 233 2))) (test 467 (ceiling (/ 467 2))) (test 661 (ceiling (/ 661 2))) (test 1723 (ceiling (/ 1723 2))) (test 2113 (ceiling (/ 2113 2)))
false
6cb0632434f54719db4b27aad308f72382d93a4d
b30896ca57a43c4c788dbb89de6ffa32c5d29338
/scribblings/leftparen.scrbl
91a4c934c66ee9ae6b7803bff5ff65e054dca3aa
[ "MIT" ]
permissive
alokthapa/leftparen
1820b543fe28a15bd649f228bf8c17d88e5f7f62
dd0ac601763bf80ab4e21b4951d152553d26e189
refs/heads/master
2021-01-09T05:36:02.280732
2009-01-12T16:51:04
2009-01-12T16:51:04
120,912
1
0
null
null
null
null
UTF-8
Racket
false
false
12,158
scrbl
leftparen.scrbl
#lang scribble/doc @(require scribble/manual) @title{LeftParen 0.51 Documentation} Website: @link["http://leftparen.com"]{http://leftparen.com} LeftParen is a framework for quickly creating web apps. It runs on PLT Scheme v4.1.3.9 or greater. (@bold{This is not-yet-officially-released}, so you'll have to download it from the @link["http://pre.plt-scheme.org/installers/"]{PLT Pre-Relese Software page}.) LeftParen is released under an @link["http://github.com/vegashacker/leftparen/tree/master/MIT-LICENSE.txt"]{MIT License}. The source is available on @link["http://github.com/vegashacker/leftparen/tree/master"]{github}. @section{Installing LeftParen} You'll need PLT Scheme v4.1.3@bold{.9} or greater installed. Make sure that @scheme[mzscheme] is in your path. You should be ready to go if you can do this: @verbatim{ % mzscheme Welcome to MzScheme v4.1.3.9... > } Installing LeftParen is done automatically when you perform various @link["http://planet.plt-scheme.org/"]{PLaneT} @scheme[require] commands. See @secref{tutorials} for examples of this. On my system, starting a LeftParen web app for the first time (with a freshly installed version of PLT Scheme), takes about an hour. (The time is spent downloading and installing a bunch of files into your local PLaneT repository.) At any point, if you see an error like @verbatim{ make-directory: cannot make directory: /home/rob/.plt-scheme/planet/300/4.1.3.9 (Permission denied; errno=13) } try re-running the command with @tt{sudo} (you won't need to do this everytime--just the once). @section[#:tag "tutorials"]{Tutorials} @subsection{Hello, World} We're going to make a project called @tt{hello-world}. Change to the directory that you'd like to create the project in. Then issue @verbatim{% mzscheme -e '(require (planet vegashacker/leftparen:4:=1/generate))' hello-world} This will create a @tt{hello-world} project directory for you. In this directory you'll find the @tt{script} directory, which contains some useful scripts. All paths are relative to this project directory, so when calling scripts, you always want to be at the project root. @verbatim{% cd hello-world} We need to make the scripts executable: @verbatim{% chmod u+x script/server} LeftParen has automatically generated everything we need to run our web app---we just need to start the server (again, you should be at the project root directory): @verbatim{ % ./script/server Populating caches... Done populating cache. Server is ready at http://localhost:8765/ (ctrl-c to stop it). } Point your browser to @link["http://localhost:8765"]{http://localhost:8765} and you should see a familiar greeting: @tt{Hello, World!} @subsection{Blogerton the Blog} Now let's try implementing the true "hello world" of web apps---a blog. First, execute the following commands from the directory in which you want to create your project: @verbatim{ % mzscheme -e '(require (planet vegashacker/leftparen:4:=1/generate))' blogerton % cd blogerton % chmod u+x script/server } @subsubsection{Changes to @tt{app.scm}} We need to register a couple of pages in our app. The @scheme[index-page] was already set up for you, but you'll need to add a page to create new posts, and one to view them. Make the @scheme[define-app] call look like this: @schemeblock[ (define-app my-app (index-page (url "/")) (create-post-page (url "/post")) (view-post-page (url "/view/" (string-arg)))) ] @subsubsection{Changes to @tt{main.scm}} Now we need to define those pages that we declared in @tt{app.scm}. @schemeblock[ (define-page (index-page req) (** `(h1 "Blogerton") `(p ,(web-link "Create a new post" (page-url create-post-page))) `(ul ,@(map (lambda (p) `(li ,(paint-blog-post p))) (load-where '((type . blog-post)) #:sort-by 'created-at #:compare >))))) (define-page (create-post-page req) (form '((title "Title" text) (body "Body" long-text)) #:init '((type . blog-post)) #:on-done (lambda (post) (redirect-to-page view-post-page (rec-id post))))) (define-page (view-post-page req post-id) (paint-blog-post (load-rec post-id #:ensure '((type . blog-post))))) (define (paint-blog-post post) `(div (h2 ,(rec-prop post 'title)) (p ,(rec-prop post 'body)))) ] @subsubsection{Launch Blogerton} You're ready for launch. Start the server with @verbatim{% ./script/server} and you should have a basic blogging app, with persistent data, in 19 lines of code. @section{Reference} @subsection{Forms} Most web applications make some use of web forms. The @scheme[form] function lets easily you get and process input from your users. @defproc[(form (field-specs (listof field-spec?))) xexpr?] @defthing[field-spec? (list symbol? string? field-type?)] @defthing[field-type? (or/c 'text 'long-text 'number 'password 'image 'checkbox 'radio 'drop-down)] You create a form by listing, in order, "field specifications". For example, you might want a title field, followed by a description text box, followed by a photo upload field. Note that the many keyword arguments available to the @scheme[form] function aren't documented yet. Each field spec is of the form @scheme[(field-name label field-type)]. For example, you create a title field, you might use the spec @scheme[(title "Enter a title" text)]. The entire example metioned above might look like this: @schemeblock[ (form '((title "Title" text) (description "Description" long-text) (photo "Your photo" image))) ] @subsubsection{Image uploads} By default, uploaded images are stored in the @tt{uploaded-files} directory in your project directory. You can customize this with the @scheme[*PATH_TO_UPLOADED_FILES*] setting. When images are saved, their original filenames are used with a 5-character code pre-pended to make filenames unique. @subsection{Sessions} A session is an object that allows you to easily store state about individual visitors to your web app. Sessions are stored on the server as a record with a virtually impossible-to-guess id. A cookie is left in the user's web browser, which contains a pointer to a particular session id. These cookies expire one month after creation and, currently, this can't be changed. @subsubsection{Creating sessions} @defform[(define-session-page (page-name request-iden session-iden page-args ...) body ...)] This is an alternate to @scheme[define-page], most commonly used in @scheme[main.scm]. The only difference is that after the request identifier, you must provide a session identifier. For example, to keep a counter (unique to each user), you could write: @schemeblock[ (define-session-page (foo-page req sesh) (let ((c (session-get-val sesh 'counter 0))) (session-put-val! sesh 'counter (+ 1 c)) (number->string c))) ] When you define a session page, the session is automatically fetched for you (and created if necessary), and bound to the session identifier you provided. @subsubsection{Accessing sessions} @defproc[(session-get-val (session session) (key symbol) (missing-val any #f)) any] @defproc[(session-put-val! (session session) (key symbol) (val any)) session] @subsection{Users} LeftParen provides built-in functionality for dealing with users, including registering users, logging users in and out, and storing persistent data about users. To get up-and-running quickly, you can use the high-level @scheme[welcome-message] function: @defproc[(welcome-message (session session?) (#:on-success success-fn (or/c (-> user? xexpr?) #f) #f) (#:no-register no-register boolean? #f)) xexpr]{The function @scheme[welcome-message] produces a small area of text and links (commonly found in the top-right area of a web app). If the user is not currently logged in, login and register links are presented. If the user is logged in, a message welcoming them is displayed, along with a link to log out.} @defproc[(current-user (session session?)) (or/c user? #f)]{The function @scheme[current-user] returns the current user record, or @scheme[#f] if no user is available in the current session.} As an example, here is the complete page code for a web app that allows users to register, login and logout, and which prints a secret message if the user is logged in: @schemeblock[ (define-session-page (index-page req sesh) (** (welcome-message sesh) (aif (current-user sesh) (format "The secret, ~A, is 42." (rec-prop it 'username)) "No secret for you."))) ] @subsection{Feeds} You can create Atom or RSS feeds in your web app. A feed in LeftParen is just a page crafted in a paricular way. The core functions involved are @scheme[atom-feed] and @scheme[rss-feed]: @defproc[(atom-feed (atom-feed-page page?) (#:feed-title feed-title string?) (#:feed-updated/epoch-seconds updated-seconds integer?) (#:author-name author-name string?) (#:feed-description feed-description (or/c #f string?) #f) (#:feed-id feed-id string? THE_URL_OF_THE_GIVEN_ATOM_FEED_PAGE) (#:related-content-link related-content-link string? THE_LINK_TO_YOUR_WEB_APP) (#:items atom-items (list-of atom-item?) '())) response/full?] @defproc[(rss-feed (rss-feed-page page?) (#:feed-title feed-title string?) (#:feed-description feed-description string?) (#:related-content-link related-content-link string? THE_LINK_TO_YOUR_WEB_APP) (#:items rss-items (list-of rss-item?) '())) response/full?] The @scheme[#:items] argument in each of these functions is a list of items constructed with @scheme[atom-item] and @scheme[rss-item]: @defproc[(atom-item (#:title title string?) (#:url url string?) (#:updated-epoch-seconds updated-seconds integer?) (#:content content (or/c #f string?) #f)) atom-item?] @defproc[(rss-item (#:title title string?) (#:url url string?) (#:content content (or/c #f string?) #f)) rss-item?] Here's an example Atom feed page: @schemeblock[ (define-page (article-feed-page req) #:blank #t (atom-feed article-feed-page #:feed-title "LeftParen blog" #:feed-description "On LeftParen..." #:feed-updated/epoch-seconds (current-seconds) #:author-name "LP staffers" #:items (list (atom-item #:title "Status update..." #:url "http://blog.../50308696" #:updated-epoch-seconds (current-seconds) #:content "I’m nearing a...") (atom-item #:title "LeftParen 0.3..." #:updated-epoch-seconds (current-seconds) #:url "http://blog.../51814971" #:content "Tonight I...")))) ] Note that while using @scheme[current-seconds] for timestamps does satisfy the interface, it's not really appropriate since these times are supposed to indicated freshness of the data. If basing your feed off of records, you might consider using @scheme[created-when]. @section{About/Acknowledgements} LeftParen was initially written by @link["http://robhunter.org"]{Rob Hunter}. It makes use of @link["http://planet.plt-scheme.org/display.ss?package=dispatch.plt&owner=untyped"]{Dispatch} by @link["http://untyped.com/"]{Untyped}, @link["http://planet.plt-scheme.org/display.ss?package=with-bindings.plt&owner=jaymccarthy"]{with-bindings} by @link["http://jay-mccarthy.blogspot.com/"]{Jay McCarthy}, and of course, @link["http://www.plt-scheme.org/"]{PLT Scheme}. LeftParen used to use @link["http://planet.plt-scheme.org/display.ss?package=web.plt&owner=soegaard"]{WEB} by @link["http://scheme.dk/blog/"]{Jens Axel Soegaard} and @link["http://planet.plt-scheme.org/display.ss?package=instaservlet.plt&owner=untyped"]{Instaservlet} (now deprecated) by @link["http://untyped.com/"]{Untyped}, which were both very helpful in getting the project started. @subsection{Code Contributors} @itemize[ @item{Bill Hager} @item{Joshua Herman} ]
false
e3697ac5e9d0f16076c20450dcb476d913c2b81b
025c71211d8c0b4cf40c65d5add4c3d1fe10fa59
/supercompilation/cog/ui/unicode.rkt
5129f0e2e22abcf507229b79327add586312f1aa
[]
no_license
gregr/experiments
5ce58d6ac6ae034d3955a96a434272ab3671bf6f
a6c5461bda9f8e221225a403f21d61ad4673c57a
refs/heads/master
2023-08-10T23:48:05.730805
2023-08-01T18:58:56
2023-08-01T18:58:56
4,839,336
9
2
null
null
null
null
UTF-8
Racket
false
false
2,678
rkt
unicode.rkt
#lang racket (module+ main (require net/url) (define unicode-data-raw (call/input-url (string->url "http://www.unicode.org/Public/UNIDATA/UnicodeData.txt") get-pure-port port->string)) (struct unicode-record (name char code category other) #:transparent) (define unicode-records (for/list ((line (string-split unicode-data-raw "\n"))) (match (string-split line ";") (`(,code ,name ,category . ,other) (let* ((code (string->number code 16)) (char (if ((integer-in #xD800 #xDFFF) code) #f (list->string (list (integer->char code)))))) (unicode-record name char code category other)))))) (define unicode-records-categorized (for/fold ((cat->recs (hash))) ((rec (in-list unicode-records))) (hash-update cat->recs (unicode-record-category rec) (curry cons rec) '()))) (define (unicode-category-chars category) (map unicode-record-char (hash-ref unicode-records-categorized category))) (define (display-unicode-category category) (for ((rec (hash-ref unicode-records-categorized category))) (displayln (format "~v : ~a : ~a" (unicode-record-char rec) (unicode-record-name rec) (unicode-record-code rec))))) (define (display-unicode-range start end (per-line 16)) (for ((code (in-range start (+ 1 end)))) (display (list->string (list (integer->char code) #\space))) (if (= 0 (remainder (+ 1 (- code start)) per-line)) (display "\n") (void)))) (define (list-drop-range xs range) (append (take xs (car range)) (drop xs (+ (car range) (- (cadr range) (car range)))))) (define (list-drop-ranges xs ranges) (for/fold ((xs xs)) ((range ranges)) (list-drop-range xs range))) (define brackets (map list (list-drop-ranges (unicode-category-chars "Ps") '((66 68))) (list-drop-ranges (unicode-category-chars "Pe") '((19 20))))) (define (display-preferred) (for ((range '( (#x0370 #x03ff) ; greek and coptic (#x2190 #x21ff) ; arrows (#x2200 #x22ff) ; math ops (#x2300 #x23ff) ; misc technical (#x2500 #x257f) ; box drawing (#x2580 #x259f) ; block elements ))) (displayln (format "~a" range)) (apply display-unicode-range range)) (displayln "bracket pairs:") (for ((bpair brackets)) (displayln (apply string-append bpair)))) ) ; interesting categories: ; Pc Pd Ps Pe Pi Pf Po ; Sm Sc Sk So
false
94e015b9f9260bf4d1eb79cec9c7aee026c63da5
19ff271d1531a4d05579999f1cb7a7b0d4dfc4b3
/util.rkt
2f0afa098e3776ae7be1c229507bf33e3ec94374
[]
no_license
deeglaze/pushdown-shift-reset
231ea10b5a4eba1850b0dfa949b44bf7ea2c2970
5b51e01f6beac8804d6c84bec141b7a35942cd74
refs/heads/master
2020-04-15T20:04:46.354682
2013-06-12T17:16:52
2013-06-12T17:16:52
null
0
0
null
null
null
null
UTF-8
Racket
false
false
520
rkt
util.rkt
#lang racket (provide (all-defined-out)) (define (hash-extend σ σ*) (for/fold ([σ σ]) ([(a vs) (in-hash σ*)]) (hash-set σ a vs))) (define (hash-join σ a vs) (hash-set σ a (set-union (hash-ref σ a (set)) vs))) (define (hashes-join σ σ*) (for/fold ([σ σ]) ([(a vs) (in-hash σ*)]) (hash-join σ a vs))) (define-syntax-rule (for/union guards body ...) (for/fold ([res (set)]) guards (let ([v (let () body ...)]) (set-union res v)))) (define (set-filter f s) (for/set ([a (in-set s)]) (f a)))
true
6a298531817e10fd19fced56b547fd9f0e6f419f
78ca4b96e85da5b3b60f29789f4edc254ef8bb22
/cs151/proj2/board.rkt
e221c3003f4465c8cc8824a1b5657e70bd46bf5a
[]
no_license
sschwartz222/Programming-Projects-and-Assignments
47b46762c7fc0c2fcc998e89fa08f3349df20b57
85352fb125824a463a62459d17b3610aa7aedac3
refs/heads/master
2020-12-01T20:22:06.771564
2019-12-29T14:36:36
2019-12-29T14:36:36
230,757,252
1
0
null
null
null
null
UTF-8
Racket
false
false
16,978
rkt
board.rkt
#lang typed/racket ;; CMSC15100 Winter 2018 ;; Project 1 -- board.rkt ;; Sam Schwartz ;; ;; Definition of basic types to represent players, boards, and games. ;; include CS151-specific definitions (require "../include/cs151-core.rkt") ;; include testing framework (require typed/test-engine/racket-tests) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; DATA DEFINITIONS ;; A player is identified by the color of his/her/its pieces (define-type Player (U 'black 'white)) ;; A (Coord r c) specifies the row (r) and column (c) of a board location (define-struct Coord ([row : Integer] [col : Integer])) ;; A cell in the board either has a player's piece or is empty ('_) (define-type Cell (U Player '_)) ;; A (Board w cells) represents a (w x w) Othello board, where cells is a ;; list of the cells in the board in row-major order. We require that w be ;; even and in the range 6..16. (define-struct Board ([size : Integer] ;; the dimension of the board; [cells : (Listof Cell)])) ;; a list of length size*size (: other-player : Player -> Player) ;; return the other player (define (other-player play) (match play ['black 'white] ['white 'black])) (check-expect (other-player 'black) 'white) (check-expect (other-player 'white) 'black) (: cell-is-player? : Player -> (Cell -> Boolean)) ;; curried function for testing if a cell holds a player's piece (define (cell-is-player? p) (lambda ([cel : Cell]) (symbol=? p cel))) (check-expect ((cell-is-player? 'white) 'white) #t) (check-expect ((cell-is-player? 'white) 'black) #f) (check-expect ((cell-is-player? 'white) '_) #f) (check-expect ((cell-is-player? 'black) 'black) #t) (: player->string : Player -> String) ;; return the name of the player (define (player->string play) (match play ['white "White"] ['black "Black"])) (check-expect (player->string 'white) "White") (check-expect (player->string 'black) "Black") (: empty-cell? : Cell -> Boolean) ;; is the cell an empty cell? (define (empty-cell? c) (match c ['white #f] ['black #f] ['_ #t])) (check-expect (empty-cell? '_) #t) (check-expect (empty-cell? 'black) #f) (: coord+ : Coord Coord -> Coord) ;; add two coordinates (define (coord+ c1 c2) (Coord (+ (Coord-row c1) (Coord-row c2)) (+ (Coord-col c1) (Coord-col c2)))) (check-expect (coord+ (Coord 2 3) (Coord 1 7)) (Coord 3 10)) (check-expect (coord+ (Coord 2 3) (Coord -2 -3)) (Coord 0 0)) (check-expect (coord+ (Coord 0 -1) (Coord 0 0)) (Coord 0 -1)) (: make-board : Natural -> Board) ;; make an empty board of the specified width...does not check that size is valid (define (make-board nat) (Board nat (make-list (* nat nat) '_))) (check-expect (make-board 3) (Board 3 '(_ _ _ _ _ _ _ _ _))) (check-expect (make-board 0) (Board 0 '())) (: num-cells : Board -> Integer) ;; return the number of cells in the board (define (num-cells b) (* (Board-size b) (Board-size b))) (check-expect (num-cells (Board 3 '(_ _ _ _ _ _ _ _ _))) 9) (check-expect (num-cells (Board 1 '(_))) 1) (: on-board? : Board Coord -> Boolean) ;; is a position on a board? (define (on-board? b c) (and (< -1 (Coord-row c) (Board-size b)) (< -1 (Coord-col c) (Board-size b)))) (check-expect (on-board? (Board 3 '(_ _ _ _ _ _ _ _ _)) (Coord 3 3)) #f) (check-expect (on-board? (Board 3 '(_ _ _ _ _ _ _ _ _)) (Coord 2 2)) #t) (check-expect (on-board? (Board 3 '(_ _ _ _ _ _ _ _ _)) (Coord -1 -1)) #f) (: coord->index : Board Coord -> Integer) ;; convert a coordinate to an index into the list of cells for the board (define (coord->index b c) (+ (* (Board-size b) (Coord-row c)) (Coord-col c))) (check-expect (coord->index (Board 3 '(_ _ _ _ _ _ _ _ _)) (Coord 2 2)) 8) (check-expect (coord->index (Board 3 '(_ _ _ _ _ _ _ _ _)) (Coord 1 2)) 5) (check-expect (coord->index (Board 3 '(_ _ _ _ _ _ _ _ _)) (Coord 2 0)) 6) (: index->coord : Board Integer -> Coord) ;; convert an index into the list of cells to a coordinate (define (index->coord b int) (Coord (truncate (/ int (Board-size b))) (remainder int (Board-size b)))) (check-expect (index->coord (Board 3 '(_ _ _ _ _ _ _ _ _)) 8) (Coord 2 2)) (check-expect (index->coord (Board 3 '(_ _ _ _ _ _ _ _ _)) 5) (Coord 1 2)) (check-expect (index->coord (Board 3 '(_ _ _ _ _ _ _ _ _)) 6) (Coord 2 0)) (: board-ref : Board Coord -> Cell) ;; return the cell value at the given position (define (board-ref b c) (list-ref (Board-cells b) (coord->index b c))) (check-expect (board-ref (Board 3 '(_ _ _ _ _ _ _ _ black)) (Coord 2 2)) 'black) (check-expect (board-ref (Board 3 '(_ _ _ _ _ _ _ _ black)) (Coord 2 1)) '_) (check-expect (board-ref (Board 3 '(white _ _ _ _ _ _ _ black)) (Coord 0 0)) 'white) (: board-update : Board Coord Cell -> Board) ;; functional update of a board (define (board-update b cor cel) (Board (Board-size b) (list-set (Board-cells b) (coord->index b cor) cel))) (check-expect (board-update (Board 3 '(_ _ _ _ _ _ _ _ black)) (Coord 2 2) '_) (Board 3 '(_ _ _ _ _ _ _ _ _))) (check-expect (board-update (Board 3 '(_ _ _ _ _ _ _ _ black)) (Coord 0 0) 'white) (Board 3 '(white _ _ _ _ _ _ _ black))) (define offsets (list (Coord -1 -1) (Coord -1 0) (Coord -1 1) (Coord 0 -1) (Coord 0 1) (Coord 1 -1) (Coord 1 0) (Coord 1 1))) (: neighbors : Board Coord -> (Listof Coord)) ;; return the list of valid neighbors to a position (define (neighbors b c) (filter (lambda ([cor1 : Coord]) (on-board? b cor1)) (map (lambda ([cor2 : Coord]) (coord+ c cor2)) offsets))) (check-expect (neighbors (Board 3 '(_ _ _ _ _ _ _ _ _)) (Coord 2 2)) (list (Coord 1 1) (Coord 1 2) (Coord 2 1))) (check-expect (neighbors (Board 3 '(_ _ _ _ _ _ _ _ _)) (Coord 0 0)) (list (Coord 0 1) (Coord 1 0) (Coord 1 1))) (check-expect (neighbors (Board 3 '(_ _ _ _ _ _ _ _ _)) (Coord 1 1)) (list (Coord 0 0) (Coord 0 1) (Coord 0 2) (Coord 1 0) (Coord 1 2) (Coord 2 0) (Coord 2 1) (Coord 2 2))) (: count-pieces : Board Player -> Integer) ;; count the pieces on the board belonging to the player (define (count-pieces b p) (foldl (lambda ([c : Cell] [i : Integer]) (if ((cell-is-player? p) c) (+ i 1) i)) 0 (Board-cells b))) (check-expect (count-pieces (Board 2 '(_ _ black white)) 'white) 1) (check-expect (count-pieces (Board 2 '(black black black white)) 'black) 3) (check-expect (count-pieces (Board 3 '(_ _ _ _ _ _ _ _ _)) 'white) 0) ;;;;; board.rkt API ;; type exports (provide Player (struct-out Coord) Cell (struct-out Board)) ;; operations on players and cells (provide other-player cell-is-player? player->string empty-cell?) ;; operations on coordinates (provide coord+) ;; operations on boards (provide make-board (rename-out [Board-size board-size]) num-cells on-board? index->coord coord->index board-ref board-update neighbors count-pieces) ;; provide offsets (provide offsets) ;; ====== GRADER TESTS for board.rkt ===== "========== GRADER TESTS (board.rkt) ==========" ;; first we define some test boards. We also export these ;; for use in testing moves.rkt and render.rkt ;; (define grader-b6x6-0 (Board 6 (make-list 36 '_))) (define grader-b6x6-0+b00 ;; update (0 0) to black (local {(define bb 'black) (define ww 'white)} (Board 6 (list bb '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_)))) (define grader-b6x6-0+w34 ;; update (3 4) to white (local {(define bb 'black) (define ww 'white)} (Board 6 (list '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ ww '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_)))) (define grader-b6x6-0+b45 ;; update (4 5) to black (local {(define bb 'black) (define ww 'white)} (Board 6 (list '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ bb '_ '_ '_ '_ '_ '_)))) (define grader-b6x6-0+b00+w32 ;; update (3 2) to white (local {(define bb 'black) (define ww 'white)} (Board 6 (list bb '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ ww '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_)))) (define grader-b6x6-1 (local {(define bb 'black) (define ww 'white)} (Board 6 (list '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ ww bb '_ '_ '_ '_ bb ww '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_)))) (define grader-b8x8-1 (local {(define bb 'black) (define ww 'white)} (Board 8 (list '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ ww bb '_ '_ '_ '_ '_ '_ bb ww '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_)))) (define grader-b8x8-2 (local {(define bb 'black) (define ww 'white)} (Board 8 (list '_ '_ '_ '_ '_ '_ '_ '_ '_ ww bb bb bb bb bb '_ '_ bb ww ww ww ww ww '_ '_ bb bb bb '_ bb '_ '_ '_ ww '_ '_ '_ '_ '_ '_ '_ bb '_ '_ '_ '_ '_ '_ '_ ww '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_ '_)))) (define grader-b10x10-0 (Board 10 (make-list 100 '_))) (: grader-valid-board? : Board -> Boolean) ;; check that a board's size is valid and that it ;; agrees with the length of the cells list (define (grader-valid-board? b) (match b [(Board w cells) (and (even? w) (<= 6 w 12) (= (* w w) (length cells)))])) (: grader-sort-coords : (Listof Coord) -> (Listof Coord)) ;; sort a list of coordinates into canonical order; we use this function ;; to ignore differences in order in tests (define (grader-sort-coords coords) (sort coords (lambda ([c1 : Coord] [c2 : Coord]) (or (< (Coord-row c1) (Coord-row c2)) (and (= (Coord-row c1) (Coord-row c2)) (< (Coord-col c1) (Coord-col c2))))))) ;; other-player (check-expect (other-player 'black) 'white) (check-expect (other-player 'white) 'black) ;; cell-is-player? (check-expect ((cell-is-player? 'white) 'white) #t) (check-expect ((cell-is-player? 'white) 'black) #f) (check-expect ((cell-is-player? 'white) '_) #f) (check-expect ((cell-is-player? 'black) 'white) #f) (check-expect ((cell-is-player? 'black) 'black) #t) (check-expect ((cell-is-player? 'black) '_) #f) ;; player->string (check-expect (player->string 'white) "White") (check-expect (player->string 'black) "Black") ;; empty-cell? (check-expect (empty-cell? '_) #t) (check-expect (empty-cell? 'black) #f) (check-expect (empty-cell? 'white) #f) ;; coord+ (check-expect (coord+ (Coord 1 4) (Coord 2 7)) (Coord 3 11)) (check-expect (coord+ (Coord 1 4) (Coord -2 1)) (Coord -1 5)) (check-expect (coord+ (Coord 0 0) (Coord 2 7)) (Coord 2 7)) ;; make-board (check-expect (make-board 6) grader-b6x6-0) (check-expect (make-board 10) grader-b10x10-0) ;; num-cells (check-expect (num-cells grader-b6x6-0) 36) (check-expect (num-cells grader-b6x6-1) 36) (check-expect (num-cells grader-b10x10-0) 100) ;; on-board? (check-expect (on-board? grader-b6x6-0 (Coord 0 0)) #t) (check-expect (on-board? grader-b6x6-0 (Coord 1 2)) #t) (check-expect (on-board? grader-b6x6-0 (Coord 0 5)) #t) (check-expect (on-board? grader-b6x6-0 (Coord 5 0)) #t) (check-expect (on-board? grader-b6x6-0 (Coord 5 5)) #t) (check-expect (on-board? grader-b6x6-0 (Coord -1 0)) #f) (check-expect (on-board? grader-b6x6-0 (Coord 0 -1)) #f) (check-expect (on-board? grader-b6x6-0 (Coord 5 6)) #f) (check-expect (on-board? grader-b6x6-0 (Coord 6 5)) #f) (check-expect (on-board? grader-b6x6-0 (Coord 2 -1)) #f) (check-expect (on-board? grader-b6x6-0 (Coord -1 6)) #f) ;; coord->index (check-expect (coord->index grader-b6x6-0 (Coord 0 0)) 0) (check-expect (coord->index grader-b6x6-0 (Coord 1 2)) 8) (check-expect (coord->index grader-b6x6-0 (Coord 0 5)) 5) (check-expect (coord->index grader-b6x6-0 (Coord 5 0)) 30) (check-expect (coord->index grader-b6x6-0 (Coord 5 5)) 35) ;; index->coord (check-expect (index->coord grader-b6x6-0 0) (Coord 0 0)) (check-expect (index->coord grader-b6x6-0 8) (Coord 1 2)) (check-expect (index->coord grader-b6x6-0 5) (Coord 0 5)) (check-expect (index->coord grader-b6x6-0 30) (Coord 5 0)) (check-expect (index->coord grader-b6x6-0 35) (Coord 5 5)) ;; board-ref (check-expect (board-ref grader-b6x6-1 (Coord 0 0)) '_) (check-expect (board-ref grader-b6x6-1 (Coord 0 5)) '_) (check-expect (board-ref grader-b6x6-1 (Coord 1 2)) '_) (check-expect (board-ref grader-b6x6-1 (Coord 2 1)) '_) (check-expect (board-ref grader-b6x6-1 (Coord 2 2)) 'white) (check-expect (board-ref grader-b6x6-1 (Coord 2 3)) 'black) (check-expect (board-ref grader-b6x6-1 (Coord 3 2)) 'black) (check-expect (board-ref grader-b6x6-1 (Coord 3 3)) 'white) (check-expect (board-ref grader-b6x6-1 (Coord 2 4)) '_) (check-expect (board-ref grader-b6x6-1 (Coord 4 2)) '_) (check-expect (board-ref grader-b6x6-1 (Coord 5 0)) '_) (check-expect (board-ref grader-b6x6-1 (Coord 5 5)) '_) ;; board-update (check-expect (grader-valid-board? (board-update grader-b6x6-0 (Coord 0 0) 'white)) #t) (check-expect (grader-valid-board? (board-update grader-b6x6-0 (Coord 2 3) 'white)) #t) (check-expect (grader-valid-board? (board-update grader-b6x6-0 (Coord 5 5) 'white)) #t) (check-expect (board-update grader-b6x6-0 (Coord 0 0) 'black) grader-b6x6-0+b00) (check-expect (board-update grader-b6x6-0 (Coord 3 4) 'white) grader-b6x6-0+w34) (check-expect (board-update grader-b6x6-0 (Coord 4 5) 'black) grader-b6x6-0+b45) (check-expect (board-update grader-b6x6-0+b00 (Coord 3 2) 'white) grader-b6x6-0+b00+w32) (check-expect (board-update grader-b6x6-0+b00 (Coord 0 0) '_) grader-b6x6-0) ;; neighbors ;; - corners (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 0 0))) (list (Coord 0 1) (Coord 1 0) (Coord 1 1))) (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 0 5))) (list (Coord 0 4) (Coord 1 4) (Coord 1 5))) (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 5 0))) (list (Coord 4 0) (Coord 4 1) (Coord 5 1))) (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 5 5))) (list (Coord 4 4) (Coord 4 5) (Coord 5 4))) ;; - edges (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 0 2))) (list (Coord 0 1) (Coord 0 3) (Coord 1 1) (Coord 1 2) (Coord 1 3))) (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 3 0))) (list (Coord 2 0) (Coord 2 1) (Coord 3 1) (Coord 4 0) (Coord 4 1))) (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 4 5))) (list (Coord 3 4) (Coord 3 5) (Coord 4 4) (Coord 5 4) (Coord 5 5))) (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 5 1))) (list (Coord 4 0) (Coord 4 1) (Coord 4 2) (Coord 5 0) (Coord 5 2))) ;; - interior (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 1 1))) (list (Coord 0 0) (Coord 0 1) (Coord 0 2) (Coord 1 0) (Coord 1 2) (Coord 2 0) (Coord 2 1) (Coord 2 2))) (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 2 3))) (list (Coord 1 2) (Coord 1 3) (Coord 1 4) (Coord 2 2) (Coord 2 4) (Coord 3 2) (Coord 3 3) (Coord 3 4))) (check-expect (grader-sort-coords (neighbors grader-b6x6-1 (Coord 4 4))) (list (Coord 3 3) (Coord 3 4) (Coord 3 5) (Coord 4 3) (Coord 4 5) (Coord 5 3) (Coord 5 4) (Coord 5 5))) ;; count-pieces (check-expect (count-pieces grader-b6x6-0 'black) 0) (check-expect (count-pieces grader-b6x6-0 'white) 0) (check-expect (count-pieces grader-b6x6-1 'black) 2) (check-expect (count-pieces grader-b6x6-1 'white) 2) "========== END GRADER TESTS (board.rkt) ==========" ;; ===== END GRADER TESTS ===== ;; export grader definitions for testing in other modules ;; (provide grader-b6x6-0 grader-b6x6-1 grader-b8x8-1 grader-b8x8-2 grader-valid-board? grader-sort-coords)
false
fb2352e2358d6e4ec3f47751629c01ce7ee7c70e
17126876cd4ff4847ff7c1fbe42471544323b16d
/beautiful-racket-demo/basic-demo-2/go.rkt
5f97ac59a1e19525108419c527cf895f8722bcb0
[ "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
1,539
rkt
go.rkt
#lang br (require "struct.rkt" "line.rkt" "misc.rkt") (provide b-end b-goto b-gosub b-return b-for b-next) (define (b-end) (raise (end-program-signal))) (define (b-goto num-expr) (raise (change-line-signal num-expr))) (define return-ccs empty) (define (b-gosub num-expr) (let/cc this-cc (push! return-ccs this-cc) (b-goto num-expr))) (define (b-return) (when (empty? return-ccs) (raise-line-error "return without gosub")) (define top-cc (pop! return-ccs)) (top-cc (void))) (define next-funcs (make-hasheq)) (define-macro-cases b-for [(_ LOOP-ID START END) #'(b-for LOOP-ID START END 1)] [(_ LOOP-ID START END STEP) #'(b-let LOOP-ID (let/cc loop-cc (hash-set! next-funcs 'LOOP-ID (λ () (define next-val (+ LOOP-ID STEP)) (if (next-val . in-closed-interval? . START END) (loop-cc next-val) (hash-remove! next-funcs 'LOOP-ID)))) START))]) (define (in-closed-interval? x start end) ((if (< start end) <= >=) start x end)) (define-macro (b-next LOOP-ID) #'(begin (unless (hash-has-key? next-funcs 'LOOP-ID) (raise-line-error (format "`next ~a` without for" 'LOOP-ID))) (define func (hash-ref next-funcs 'LOOP-ID)) (func)))
false
b8053c0226a43fdd51781c7c35f3ee15fbe0585e
ef61a036fd7e4220dc71860053e6625cf1496b1f
/HTDP2e/01-fixed-size-data/ch-05-adding-structure/ex-083-render-editr.rkt
bb59a3d3fc037a34a36f00a7058b9238692b6601
[]
no_license
lgwarda/racket-stuff
adb934d90858fa05f72d41c29cc66012e275931c
936811af04e679d7fefddc0ef04c5336578d1c29
refs/heads/master
2023-01-28T15:58:04.479919
2020-12-09T10:36:02
2020-12-09T10:36:02
249,515,050
0
0
null
null
null
null
UTF-8
Racket
false
false
2,300
rkt
ex-083-render-editr.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 ex-083-render-editr) (read-case-sensitive #t) (teachpacks ((lib "image.rkt" "teachpack" "2htdp") (lib "universe.rkt" "teachpack" "2htdp"))) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ((lib "image.rkt" "teachpack" "2htdp") (lib "universe.rkt" "teachpack" "2htdp")) #f))) ; Constans: (define WIDTH 200) (define HEIGHT 20) (define MTS (empty-scene WIDTH HEIGHT)) (define CURSOR (rectangle 1 20 "solid" "red")) (define TEXT-SIZE 16) (define TEXT-COLOR "black") ; Data definition: (define-struct editor [pre post]) ; An Editor is a structure: ; (make-editor String String) ; interpretation (make-editor s t) describes an editor ; whose visible text is (string-append s t) with ; the cursor displayed between s and t (define E0 (make-editor "" "")) (define E1 (make-editor "" "helloworld")) (define E2 (make-editor "hello" "world")) (define E3 (make-editor "hel" "lo world")) ; Function: ; render: Editor -> Image ; place the given text and the cursor on MTS (check-expect (render E0) (overlay/align "left" "center" (beside (text "" 16 "") CURSOR (text "" 16 "")) MTS)) (check-expect (render (make-editor "" "helloworld")) (overlay/align "left" "center" (beside (text "" 16 "balck") CURSOR (text "helloworld" 16 "black")) MTS)) (check-expect (render E2) (overlay/align "left" "center" (beside (text "hello" 16 "black") CURSOR (text "world" 16 "black")) MTS)) (define (render ed) (overlay/align "left" "center" (beside (text (editor-pre ed) TEXT-SIZE TEXT-COLOR) CURSOR (text (editor-post ed) TEXT-SIZE TEXT-COLOR)) MTS))
false
a7f827999b17bf3736e4ebc9dc4880749ae37731
e553691752e4d43e92c0818e2043234e7a61c01b
/rosette/lib/profile/data.rkt
9d8cfca2702fa2ad789f1b22488ee141d08421ce
[ "BSD-2-Clause" ]
permissive
emina/rosette
2b8c1bcf0bf744ba01ac41049a00b21d1d5d929f
5dd348906d8bafacef6354c2e5e75a67be0bec66
refs/heads/master
2023-08-30T20:16:51.221490
2023-08-11T01:38:48
2023-08-11T01:38:48
22,478,354
656
89
NOASSERTION
2023-09-14T02:27:51
2014-07-31T17:29:18
Racket
UTF-8
Racket
false
false
1,663
rkt
data.rkt
#lang racket (provide (all-defined-out)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Profiler data structures ;; A profile consists of a mutable box events, which contains a list of ;; profile-event? records. (struct profile-state (events thd)) (struct profile-event (metrics)) (struct profile-event-enter profile-event (id location procedure inputs) #:transparent) (struct profile-event-exit profile-event (outputs)) (struct profile-event-sample profile-event ()) (struct profile-event-pc profile-event ()) (struct profile-event-solve profile-event ()) (struct profile-event-solve-start profile-event-solve ()) (struct profile-event-solve-finish profile-event-solve (sat?)) (struct profile-event-solve-encode profile-event-solve (asserts)) (struct profile-event-finitize profile-event ()) (struct profile-event-finitize-start profile-event-finitize ()) (struct profile-event-finitize-finish profile-event-finitize ()) (struct profile-event-encode profile-event ()) (struct profile-event-encode-start profile-event-encode ()) (struct profile-event-encode-finish profile-event-encode ()) (struct profile-event-term profile-event (val)) (struct profile-event-term-new profile-event-term ()) ;; Returns a new profile (define (make-profile-state) (profile-state (box '()) (current-thread))) ;; Append a new event to a profile state (define (profile-state-append! state evt) (define the-box (profile-state-events state)) (let loop () (let* ([old (unbox the-box)] [new (cons evt old)]) (unless (box-cas! the-box old new) (loop)))))
false
fc4da9b947579576797362765beed06bec72b0d9
b3601af15f5d31561ba93f88bad47eed41b40842
/basic/rcalc-engine-test.rkt
32b150d06c70ac96644cd4b952d8ca541a81c2f2
[]
no_license
mgushee/rcalc-tutorial
7802edb5f12a369113c6c6d4025eecfa5adbf532
480a33fbbb34f24ffdea752939b5db9f706331fe
refs/heads/master
2020-05-07T19:39:02.764776
2014-11-28T01:30:12
2014-11-28T01:30:12
27,153,535
0
2
null
null
null
null
UTF-8
Racket
false
false
925
rkt
rcalc-engine-test.rkt
#lang racket/base (require rackunit "./rcalc-engine.rkt") (test-case "1 + 1 =" (let ((engine (mk-engine))) (check eqv? (engine #\1) 'ok) (check eqv? (engine #\+) 'ok) (check eqv? (engine #\1) 'ok) (check eqv? (engine #\=) '(result 2)))) (test-case "1 + 2 + 3 =" (let ((engine (mk-engine))) (check eqv? (engine #\1) 'ok) (check eqv? (engine #\+) 'ok) (check eqv? (engine #\2) 'ok) (check eqv? (engine #\+) '(result 3)) (check eqv? (engine #\3) 'ok) (check eqv? (engine #\=) '(result 6)))) (test-case "1024 - 384 =" (let ((engine (mk-engine))) (check eqv? (engine #\1) 'ok) (check eqv? (engine #\0) 'ok) (check eqv? (engine #\2) 'ok) (check eqv? (engine #\4) 'ok) (check eqv? (engine #\-) 'ok) (check eqv? (engine #\3) 'ok) (check eqv? (engine #\8) 'ok) (check eqv? (engine #\4) 'ok) (check eqv? (engine #\=) '(result 640))))
false
b2b0889c378ff205e2986db4f8f102ccc990b90e
ee9546eb2f533d606a90cd4ce2c0be8b1d4309b3
/scheme/Prepared/20181026/forcc.rkt
de0dde941a6ccc7b20c7d91a4fa238fca310a046
[ "Apache-2.0" ]
permissive
riccardotommasini/ppl
679544073e757263b85672188feea3e0971bf53d
53b2f5b9a2d238070963eb26457fd4e4311e190b
refs/heads/master
2021-10-10T20:00:46.190489
2019-01-16T13:00:34
2019-01-16T13:00:34
72,336,096
18
13
Apache-2.0
2023-06-24T13:55:23
2016-10-30T07:43:46
Haskell
UTF-8
Racket
false
false
765
rkt
forcc.rkt
#lang racket (define break #f) (define continue #f) (define-syntax for (syntax-rules (in) ((_ v in l body ...) (call/cc (lambda (b) (set! break b) (let loop ((l1 l)) (unless (null? l1) (call/cc (lambda (c) (set! v (car l1)) (set! continue c) (begin body ...))) (loop (cdr l1))))))))) (define x #f) (for x in '(1 2 3) (begin (display "initial") (display x) (newline)) (if (= (remainder x 2) 0) (continue "continue") (begin (display "mid") (display (+ x 1)) (newline))) (begin (display "end") (display (- x 1)) (newline)))
true
11a00b4198428a4f46bc8db05dcaded8eb10f0e0
561eac844dbad77a7fa88720d8f5b9ab6e6ba4b2
/corpse-reviver-benchmark/benchmarks/lnm/both/_format.rkt
22f6c8c864d49a1767ef451ff8faf2cb970213a5
[ "0BSD" ]
permissive
camoy/corpse-reviver
7c0a5c5d7abbeccd8f2260a4adea4ca6b3363567
67fda012093bfd5fe8f9bb699b7558699743217d
refs/heads/master
2023-08-18T14:47:26.601987
2023-08-03T15:17:01
2023-08-03T15:17:01
261,932,938
19
0
null
null
null
null
UTF-8
Racket
false
false
200
rkt
_format.rkt
#lang racket/base (require (prefix-in f: racket/format)) (provide ~r) (define (~r n base min-width pad-string) (f:~r n #:base base #:min-width min-width #:pad-string pad-string))
false
9a332a9e3fdb2525458f858c236b670ecdde57fa
715ebc6491cd5888f516c3f03cb0c172dae3bc47
/transformer.rkt
42cc992e317b34f5ebc0b3823d72cb67861606b9
[]
no_license
rmculpepper/macros
975456bd4badd181cc26660177e7e52911d91233
47a4b4c771374536d3039b5b4109429e2a9a85e0
refs/heads/master
2020-12-24T17:26:34.521348
2011-07-09T07:55:19
2011-07-09T07:55:19
1,656,185
0
0
null
null
null
null
UTF-8
Racket
false
false
445
rkt
transformer.rkt
#lang racket/base (require syntax/stx (for-template racket/base)) (provide id->expr-transformer) (define (id->expr-transformer expr) (let ([expr #`(#%expression #,expr)]) (lambda (stx) (cond [(stx-pair? stx) (datum->syntax stx (cons expr (stx-cdr stx)))] [(identifier? stx) expr] [else (raise-syntax-error #f "bad syntax" stx)]))))
false
ce9b7e44655779a1c0e3f7872808c613631b5793
954ceab7d6c118553599223e8c952a257f8dd314
/custom-load/doc/custom-load/blueboxes.rktd
93b33e0a29b6d66017bf7fe05a49cff6df7d4afc
[]
no_license
florence/testing-packages
844940dc80308645abe38ab1f479e045e7a1d55d
3b145b16664f415103af93c0389994983f1464ed
refs/heads/master
2022-06-21T04:15:23.544850
2020-05-14T18:30:17
2020-05-14T18:30:17
263,990,894
0
0
null
null
null
null
UTF-8
Racket
false
false
1,154
rktd
blueboxes.rktd
188 ((3) 0 () 0 () () (h ! (equal) ((q def ((lib "custom-load/main.rkt") make-custom-load/use-compiled)) q (0 . 17)) ((q def ((lib "custom-load/top.rkt") current-zo-blacklist)) q (806 . 4)))) procedure (make-custom-load/use-compiled [#:blacklist blacklist      #:load-zo load-zo       #:load-src load-src])   -> (-> path?     (or/c #f symbol? (cons/c (or/c #f symbol?) (listof symbol?)))     any)   blacklist : (treeof (or/c regexp? (-> path? any/c)))      = (lambda (file) #f)   load-zo : (-> path?     (or/c #f symbol? (cons/c (or/c #f symbol?) (listof symbol?)))     any)      = (current-load/use-compiled)   load-src : (-> path?     (or/c #f symbol? (cons/c (or/c #f symbol?) (listof symbol?)))     any)      = (lambda (file want) ((current-load) file want)) parameter (current-zo-blacklist) -> (-> path? any/c) (current-zo-blacklist pred) -> void?   pred : (treeof (or/c (-> path? any/c) regexp?))
false
f1c612f35344772b51d7f2865423ecbaa3d55ec1
df0ba5a0dea3929f29358805fe8dcf4f97d89969
/exercises/lab/homework/00/solutions/k-ary.rkt
ba8ebd96789b56aedb1b73729866c4b73cf07975
[ "MIT" ]
permissive
triffon/fp-2019-20
1c397e4f0bf521bf5397f465bd1cc532011e8cf1
a74dcde683538be031186cf18367993e70dc1a1c
refs/heads/master
2021-12-15T00:32:28.583751
2021-12-03T13:57:04
2021-12-03T13:57:04
210,043,805
14
31
MIT
2019-12-23T23:39:09
2019-09-21T19:41:41
Racket
UTF-8
Racket
false
false
115
rkt
k-ary.rkt
#lang racket (provide from-k-ary to-k-ary) (define (from-k-ary n k) void) (define (to-k-ary n k) void)
false
98a25107339a57ec950e2d16ca1c673116f54bd2
b08b7e3160ae9947b6046123acad8f59152375c3
/Programming Language Detection/Experiment-2/Dataset/Train/Racket/minesweeper-game.rkt
c510853d22da32470478dc9a4cfee7116cfefc4f
[]
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
6,058
rkt
minesweeper-game.rkt
#lang racket (require math/array) ;board uses arrays directly, but maintaining an abstraction is nice (define (board-ref b row col) (array-ref b (vector row col))) (define (board-rows b) (vector-ref (array-shape b) 0)) (define (board-cols b) (vector-ref (array-shape b) 1)) (define (on-board? b row col) (and (<= 0 row (sub1 (board-rows b))) (<= 0 col (sub1 (board-cols b))))) (define (board->lists b) (array->list* b)) ;run on adjacent board positions (define-syntax (for-adj stx) (syntax-case stx () [(_ b (r row) (c col) diag? body ...) (with-syntax ([is (if (syntax->datum #'diag?) #''(0 0 1 1 1 -1 -1 -1) #''(0 0 1 -1))] [js (if (syntax->datum #'diag?) #''(1 -1 0 -1 1 0 -1 1) #''(1 -1 0 0))]) #'(for ([i is] [j js]) (let ([r (+ row i)] [c (+ col j)]) (when (on-board? b r c) body ...))))])) ;mark is either hidden, assume-mine, or clear ;n is int equal to # adj mines or -1 for mine (struct pos ([mark #:mutable] n) #:transparent) (define (mine? p) (= (pos-n p) -1)) (define (mine-count b) (apply + (array->list (array-map (λ (p) (if (mine? p) 1 0)) b)))) ;hidden0? is needed because only spaces with no mines in them and no mines adjacent ;to them are cleared recursively (define (hidden0? p) (and (symbol=? (pos-mark p) 'hidden) (zero? (pos-n p)))) (define (show-pos p) (match-let ([(pos m n) p]) (case m [(hidden) "."] [(assume-mine) "?"] [(clear) (if (zero? n) " " (number->string n))] [else (error "illegal mark" m)]))) ;put "|" around positions (define (show-board b) (for ([row (board->lists b)]) (displayln (format "|~a|" (string-join (map show-pos row) "|"))))) ;winning = every position is either cleared or a hidden mine (define (win? b) (for*/and ([r (range 0 (board-rows b))] [c (range 0 (board-cols b))]) (let ([p (board-ref b r c)]) (or (symbol=? (pos-mark p) 'clear) (mine? p))))) (define (init-board rows cols) (let ([chance (+ (/ (random) 10) 0.1)] ;empty board [b (array->mutable-array (build-array (vector rows cols) (λ (x) (pos 'hidden 0))))]) ;loop whole board (for* ([row (range 0 rows)] [col (range 0 cols)]) (when (< (random) chance) ;put a mine (array-set! b (vector row col) (pos 'hidden -1)) ;increment adjacent mine counts unless that adjacent position is a mine (for-adj b (r row) (c col) #t (let ([p (board-ref b r c)]) (unless (mine? p) (array-set! b (vector r c) (pos 'hidden (add1 (pos-n p))))))))) b)) ;only clear position if it's not a mine ;only continue recursing when it's a hidden0? (define (try-clear! p) (cond [(mine? p) #f] [(hidden0? p) (set-pos-mark! p 'clear) #t] [else (set-pos-mark! p 'clear) #f])) ;the following player move functions return boolean where #f = lose, #t = still going ;assuming can never directly lose ((void) == #t from the set!) ;make sure to not allow overwriting an already cleared position (define (toggle-assume! b row col) (let ([p (board-ref b row col)]) (set-pos-mark! p (case (pos-mark p) [(assume-mine) 'hidden] [(hidden) 'assume-mine] [(clear) 'clear] [else (error "invalid mark" (pos-mark p))])))) ;clearing loses when the chosen position is a mine ;void = #t as far as if works, so no need to return #t (define (clear! b row col) (let ([p (board-ref b row col)]) (and (not (mine? p)) ;not a mine, so recursively check adjacents, and maintain list of visited positions ;to avoid infinite loops (let ([seen '()]) ;clear the chosen position first, only continuing if it's a 0 (when (try-clear! p) (let clear-adj ([row row] [col col]) (for-adj b (r row) (c col) #f ;make sure its not seen (when (and (not (member (list r c) seen)) (try-clear! (board-ref b r c))) ;it was cleared, so loop after saving this position as being seen (set! seen (cons (list r c) seen)) (clear-adj r c))))))))) (define assume-string "a") (define clear-string "c") ;validates input...returns either #f for an error or the move to execute (define (parse-and-create-move! b s) (match (string-split s) [(list type row col) (let ([row (string->number row)] [col (string->number col)]) (and (number? row) (number? col) (let ([row (sub1 row)] [col (sub1 col)]) (and (on-board? b row col) (or (and (string=? type assume-string) (λ () (toggle-assume! b row col))) (and (string=? type clear-string) (λ () (clear! b row col))))))))] [else #f])) (define (run) (displayln (string-append "--- Enter one of:\n" (format "--- \"~a <row> <col>\" to clear at (row,col), or~n" clear-string) (format (string-append "--- \"~a <row> <col>\" to flag a possible mine " "(or clear a flag) at (row,col).~n") assume-string))) (let ([b (init-board 4 6)]) (displayln (format "There are ~a mines.~n" (mine-count b))) (let run () (show-board b) (display "enter move: ") ;parse either failed or gave the procedure to execute (let ([proc? (parse-and-create-move! b (read-line))]) ;was the parse successful? (if proc? ;then run it (if (proc?) ;didn't lose, so either we won or we're not done (if (win? b) (displayln "CLEAR!") (run)) (displayln "BOOM!")) ;parse failed (run))))))
true
48552c559480a30f778f189793965bb5502ae665
cc06424c5203c28d6aea69f8d5734f9acc067075
/info.rkt
1ed1564b34d51acedadf0027a61727fa15be4c7a
[]
no_license
uwplse/syncro
48e5ab79793dfb631b85e39a19803e1b407854d0
cd89d345293f9512350b716ed9e938ff308a162b
refs/heads/master
2021-01-23T10:55:06.557355
2017-11-24T23:26:15
2017-11-24T23:26:15
93,102,017
2
1
null
2017-11-24T23:26:16
2017-06-01T21:43:17
Racket
UTF-8
Racket
false
false
120
rkt
info.rkt
#lang info (define collection 'multi) (define deps '("base" "rosette" "graph")) (define build-deps '("rackunit-lib"))
false
f13c992ce9e775484b265ca382acb56500417d5f
d89d5fee583c2b5c93bf663cdf761a7026cae259
/http123/scribblings/intro.scrbl
3503416ba52d5ba03dc1ac0de300236f5793a97a
[]
no_license
DavidAlphaFox/racket-http123
9f109c53c938e783cd88db7b4055ebb502d4d80a
8dc1e79f3788994ac6866c3c5e53b6ccb95887f2
refs/heads/master
2023-06-24T06:31:54.924609
2021-07-22T10:38:07
2021-07-22T10:38:07
null
0
0
null
null
null
null
UTF-8
Racket
false
false
6,527
scrbl
intro.scrbl
#lang scribble/manual @(require scribble/example racket/runtime-path "util.rkt" (for-label racket/base racket/contract racket/class net/url json http123)) @(begin (define-runtime-path log-file "log-intro.rktd") (define the-eval (make-log-based-eval log-file 'replay)) (the-eval '(require http123 racket/class racket/port racket/pretty json (submod http123/scribblings/util pretty)))) @; ------------------------------------------------------------ @title[#:tag "intro"]{Introduction to http123} This library's @racket[http-client<%>] objects support two styles of usage: a high-level handler-based interface and a low-level response-based interface. @section[#:tag "client-intro"]{Using the Handler API} This section introduces the high-level, handlers-based client API. Create a client with default header fields and content handlers for expected content types: @examples[#:eval the-eval #:label #f (define client (http-client #:add-header `([x-racket-version ,(version)]) #:add-content-handlers `([application/json ,read-json]))) ] Header fields can be specified in several different forms. Construct a request with a method and URL: @examples[#:eval the-eval #:label #f (define time-req (request 'GET "http://date.jsontest.com/")) ] A request can also contain a header and data (a message body). Fields in the request header override any fields of the same name in the client's default header. Execute the request and handle the response: @examples[#:eval the-eval #:label #f (send client handle time-req) ] The @tt{Content-Type} of this response is @tt{application/json}, which the client is configured to handle using @racket[read-json]. If the client has no handler for the response's content type, it raises an exception. For example: @examples[#:eval the-eval #:label #f (eval:error (send client handle (request 'GET "https://tools.ietf.org/rfc/rfc7540.txt"))) ] You can create a new client with additional handlers by calling the @method[http-client<%> fork] method. The resulting client shares its connections with the original client. @examples[#:eval the-eval #:label #f (define client2 (send client fork #:add-content-handlers `([text/plain ,(lambda (in) (read-string 40 in))] [*/* ,(lambda (in) (format "something called ~s, I guess" (send (current-response) get-content-type)))]))) (send client2 handle (request 'GET "https://tools.ietf.org/rfc/rfc7540.txt")) (send client2 handle (request 'GET "https://www.google.com/")) ] By default, the content handlers are only called for responses with status code 200 (``Found''). The default response handler raises an exception for any other response. @examples[#:eval the-eval #:label #f (eval:error (send client2 handle (request 'GET "https://mirror.racket-lang.org/no-such-file.html"))) ] Additional response handlers can be added for individual status codes or status classes: @examples[#:eval the-eval #:label #f (define client3 (send client2 fork #:add-response-handlers `([404 ,(lambda (client resp) 'not-found)] [client-error ,(lambda (client resp) 'failed)]))) (send client3 handle (request 'GET "https://racket-lang.org/secret-plans.scrbl")) (send client3 handle (request 'GET "https://mirror.racket-lang.org/no-such-file.html")) ] A response handler can call back to the client's @method[http-client<%> handle-response-content] method to process the content of responses with other status codes: @examples[#:eval the-eval #:label #f (define client4 (send client3 fork #:add-response-handlers `([404 ,(lambda (client resp) (list 'not-found (send client handle-response-content resp)))]))) (send client4 handle (request 'GET "https://mirror.racket-lang.org/no-such-file.html")) ] @section[#:tag "base-intro"]{Using the Response API} This section introduces a lower-level client API that users can use to simply retrieve response objects. Create a client: @examples[#:eval the-eval #:label #f (define client (http-client)) ] Create a request: @examples[#:eval the-eval #:label #f (define header '("Accept-Encoding: gzip, deflate" (accept-language #"en") (#"User-Agent" #"racket-http123/0.1"))) (define req (request 'GET "https://www.google.com/" header #f)) ] Use @method[http-client<%> sync-request] to perform the request and get a response: @examples[#:eval the-eval #:label #f (define resp (send client sync-request req)) (eval:alts @#,elem{@racket[(code:comment "... prune away some header fields ...")]} (begin (let ([h (send resp get-header)]) (send h remove! #"alt-svc") (send h remove! #"set-cookie")))) (eval:alts resp (pretty (call-with-output-string (lambda (out) (pretty-print resp out))))) (send resp get-status-code) ] The response's content is available as an input port. If the response specifies a @tt{Content-Encoding} of @tt{gzip} or @tt{deflate}, the content is automatically decompressed. @examples[#:eval the-eval #:label #f (read-string 15 (send resp get-content-in)) ] Once read, content data is gone forever! @examples[#:eval the-eval #:label #f (read-string 5 (send resp get-content-in)) ] Using @method[http-client<%> async-request] it is possible to submit send requests and receive responses as they arrive. In particular, with an @(HTTP/2) connection, responses may arrive in an order different from the order the requests were sent. Of course, responses using different connections are always unordered. The event returned by @method[http-client<%> async-request] produces a thunk as its synchronization result; apply the thunk to get the response or to raise an exception if there was an error getting the response. (See @secref["evt-result"] for rationale.) @examples[#:eval the-eval #:label #f (define ietf-evt (send client async-request (request 'GET "https://tools.ietf.org/rfc/rfc7540.txt"))) (define google-evt (send client async-request (request 'GET "https://www.google.com/"))) (eval:alts ((sync ietf-evt google-evt)) (let ([resp ((sync ietf-evt google-evt))]) (define h (send resp get-header)) (send h remove! #"alt-svc") (send h remove! #"set-cookie") (pretty (call-with-output-string (lambda (out) (pretty-print resp out)))))) ] @; ------------------------------------------------------------ @(close-eval the-eval)
false
a1ee0df9bb744de5608d37a356576cf194e83581
49d98910cccef2fe5125f400fa4177dbdf599598
/advent-of-code-2021/solutions/day02/syntax.rkt
e33859a291114f38b6a5651fa4696b90a905b042
[]
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
488
rkt
syntax.rkt
#lang racket (require (for-syntax racket/syntax)) (provide state) ;; A macro to allow using: ;; ;; [ "forward" (state [ pos (+ (s-pos obj) n) ]) ] ;; ;; instead of: ;; ;; [ "forward" (struct-copy s obj [ pos (+ (s-pos obj) n) ]) ] ;; ;; within a match form. (define-syntax (state stx) (syntax-case stx () [(_ clause1 clause2 ...) (with-syntax ([ s (format-id stx "s") ] [ obj (format-id stx "obj") ]) #`(struct-copy s obj clause1 clause2 ...))]))
true
29e54e6f318297343b07dbb585ae0edcc3cc47d0
14be9e4cde12392ebc202e69ae87bbbedd2fea64
/CSC324/lecture/w7/variadic.rkt
33631d83a33d5bcc8d1a9a603f0da43ba14d8824
[ "LicenseRef-scancode-unknown-license-reference", "GLWTPL" ]
permissive
zijuzhang/Courses
948e9d0288a5f168b0d2dddfdf825b4ef4ef4e1e
71ab333bf34d105a33860fc2857ddd8dfbc8de07
refs/heads/master
2022-01-23T13:31:58.695290
2019-08-07T03:13:09
2019-08-07T03:13:09
null
0
0
null
null
null
null
UTF-8
Racket
false
false
1,816
rkt
variadic.rkt
#lang racket (require "mm.rkt") ; Variadic functions. #;(λ <identifier> ; Single identifier without parentheses. <body> ...) ((λ v ; Parameter gets bound to a list of the arguments. (+ (first v) (third v))) 1 20 300 4000 50000) ; Like: #;(local [(define v (list 1 20 300 4000 50000))] (+ (first v) (third v))) ; Let's make this #;(class (Point a b) [(a) a] [(b) b] [(size) (sqrt (+ (sqr a) (sqr b)))] [(scale c) (set! a (* c a)) (set! b (* c b))]) ; mean this: #;(define (Point a b) (λ method+arguments (match method+arguments ['(a) a] ['(b) b] ['(size) (sqrt (+ (sqr a) (sqr b)))] [`(scale ,c) (set! a (* c a)) (set! b (* c b))]))) (define-syntax class (syntax-rules () [(class (class-id init-id ...) [(method-id parameter-id ...) body-expr ...] ...) ; The memory modeller can take the keyword '#:name' in front of the function name ; in a 'define', to tell it to use the function's name in the name it generates ; for the corresponding λ(s). (define (#:name class-id init-id ...) ; The memory modeller can take '#:name <identifier>' after λ, to tell it to use ; <identifier> in the name it generates for the corresponding λ(s). (λ #:name class-id message+arguments (match message+arguments [`(method-id ,parameter-id ...) body-expr ...] ...)))])) (class (Point a b) [(a) a] [(b) b] [(size) (sqrt (+ (sqr a) (sqr b)))] [(scale c) (set! a (* c a)) (set! b (* c b))]) (define p (Point 3 4)) (p 'size) (p 'scale 10) (p 'size) (define p1 (Point 8 15)) (p1 'size) (p1 'scale 3) (p1 'size)
true
e31e5222c79c1a2b9c8a51aa19e6163c2a98bed2
5c58ab6f71ae0637bb701b21f288bc08e815f5e9
/chapter1/130.rkt
4fd703014226327f7405555d799b564567853511
[ "MIT" ]
permissive
zxymike93/SICP
81949b33d283ac7e7603d5b02a2bd18d0bf3bd9d
a5b90334207dabeae19feaa3b441a3e64a2aee64
refs/heads/master
2023-01-09T03:22:13.887151
2022-12-28T15:11:54
2022-12-28T15:11:54
98,005,093
19
2
null
null
null
null
UTF-8
Racket
false
false
280
rkt
130.rkt
#lang sicp ;; 实现一个迭代版本的 sigma (define (sum term next a b) (define (iter a result) (if (> a b) result (iter (next a) (+ result (term a))))) (iter a 0)) ;; tests (sum (lambda (x) x) (lambda (x) (+ x 1)) 1 100)
false
b1175ea401f3e5771abe9cc352873d2f6d6a131d
4b5472bdab1db0c0425ae79eced9b0e3da1aae0a
/denominator.rkt
c1b0aad08fea600b3ead2d0f08b68e3795a390ef
[ "Apache-2.0" ]
permissive
Metaxal/rascas
c5a921c456e5c9e0948f6fd65c0f2ca3628ec47d
f575e5a63b02358e80bfde53c7cb3eaae396e41a
refs/heads/master
2023-03-16T04:23:54.814941
2023-03-11T13:37:28
2023-03-11T13:37:28
121,151,282
27
2
null
null
null
null
UTF-8
Racket
false
false
500
rkt
denominator.rkt
#lang racket/base ;;;; This file has been changed from its original dharmatech/mpl version. (provide denominator) (require (prefix-in rkt: (only-in racket/base denominator)) racket/match "arithmetic.rkt") (define (denominator u) (match u [(? number?) (rkt:denominator u)] [`(^ ,x ,y) (if (and (number? y) (negative? y)) (^ u -1) 1)] [`(* ,v . ,rest) (* (denominator v) (denominator (/ u v)))] [else 1]))
false
1e577debcc077247ac49c6923f26906464b7cc6e
3424ab96c3265f69191dd3a219b2b66a1e61b57d
/zenspider/ch21.rkt
957b7759db891d2c46f2036297c4f3736a345398
[]
no_license
SeaRbSg/little-schemer
9130db9720470c70ccddfc4803b0c14c214493c4
2864c2c46a546decb6e68cca92862c2d77fc6b65
refs/heads/master
2016-09-10T02:09:03.708360
2015-12-29T20:56:16
2015-12-29T20:56:16
26,874,199
10
4
null
null
null
null
UTF-8
Racket
false
false
7,504
rkt
ch21.rkt
#lang racket/base (require "lib/reasonable.rkt") (provide (rename-out (teacup-o teacup°))) (define (teacup-o x) (cond-e [(≈ 'tea x) %s] [(≈ 'cup x) %s] [else %u])) (module+ test (require rackunit) (require (submod "lib/reasonable.rkt" test)) (check-run* (q) ; 10 %u => none) (check-run* (q) ; 11 (≈ #t q) => '(#t)) (check-run* (q) ; 12 %u (≈ #t q) => none) (check-run* (q) ; 13 %s (≈ #t q) => '(#t)) (check-run* (r) ; 15 %s (≈ 'corn r) => '(corn)) (check-run* (r) ; 17 %u (≈ 'corn r) => none) (check-run* (x) ; 22 (let ([x #f]) (≈ #t x)) => none) (check-run* (q) ; 23 (fresh (x) (≈ #t x) (≈ #t q)) => '(#t)) ;;;; The Law of Fresh ;; ;; If x is fresh, then (≈ v x) succeeds and associates x with v. (check-run* (q) ; 26 (fresh (x) (≈ x #t) (≈ #t q)) => '(#t)) ;;;; The Law of ≈ ;; ;; (≈ v w) is the same as (≈ w v) (check-run* (q) ; 28 %s => '(_.0)) (check-run* (r) ; 30 (fresh (x y) (≈ (list x y) r)) => '((_.0 _.1))) (check-run* (r) ; 31 (fresh (t u) (≈ (list t u) r)) => '((_.0 _.1))) (check-run* (r) ; 33 (fresh (x) (let ([y x]) (fresh (x) (≈ (list x y x) r)))) => '((_.0 _.1 _.0))) (check-run* (q) ; 34 (≈ #f q) (≈ #t q) => none) (check-run* (q) ; 35 (≈ #f q) (≈ #f q) => '(#f)) (check-run* (q) ; 36 (let ([x q]) (≈ #t x)) => '(#t)) (check-run* (r) ; 37 (fresh (x) (≈ x r)) => '(_.0)) (check-run* (q) ; 38 (fresh (x) (≈ #t x) (≈ x q)) => '(#t)) (check-run* (q) ; 39 (fresh (x) (≈ x q) (≈ #t x)) => '(#t)) ;; can't actually do this one, because #f isn't a lambda ;; (check-run* (q) ; 41 ;; (cond-e [#f %s] ;; [else #f]) ;; => #f) ;; closest I can get to a working example -- the lambda is basically %u (check-run* (q) ; 41 (cond-e [(lambda (_) #f) %s] [else (lambda (_) #f)]) => none) (check-equal? ((cond-e [%u %s] ; 44.1 [else %u]) 'does-not-matter) #f) (check-run* (q) ; 44.2 (cond-e [%u %s] [else %u]) => none) (check-equal? ((cond-e [%u %u] ; 45.1 [else %s]) 'success) 'success) (check-run* (q) ; 45.2 (cond-e [%u %u] [else %s]) => '(_.0)) ;; raw result == (first-binding . lambda-to-continue-stream) (let ([result ((cond-e [%s %s] ; 46 [else %u]) 'success)]) (check-equal? (car result) 'success) (check-equal? ((cdr result)) #f)) (check-run* (x) ; 47 (cond-e [(≈ 'olive x) %s] [(≈ 'oil x) %s] [else %u]) => '(olive oil)) ;;;; The Law of cond-e ;; ;; To get more values from cond-e, pretend that the successful ;; cond-e line has failed, refreshing all variables that got an ;; association from that line. (check-run1 (x) ; 49 (cond-e [(≈ 'olive x) %s] [(≈ 'oil x) %s] [else %u]) => '(olive)) (check-run* (x) ; 50 (cond-e [(≈ 'virgin x) %u] [(≈ 'olive x) %s] [%s %s] [(≈ 'oil x) %s] [else %u]) => '(olive _.0 oil)) (check-run 2 (x) ; 52 (cond-e [(≈ 'olive x) %s] [(≈ 'oil x) %s] [else %u]) => '(olive oil)) (check-run* (r) ; 53 (fresh (x y) (≈ 'split x) (≈ 'pea y) (≈ (list x y) r)) => '((split pea))) (check-run* (r) ; 54 (fresh (x y) (cond-e [(≈ 'split x) (≈ 'pea y)] [(≈ 'navy x) (≈ 'bean y)] [else %u]) (≈ (list x y) r)) => '((split pea) (navy bean))) (check-run* (r) ; 55 (fresh (x y) (cond-e [(≈ 'split x) (≈ 'pea y)] [(≈ 'navy x) (≈ 'bean y)] [else %u]) (≈ (list x y 'soup) r)) => '((split pea soup) (navy bean soup))) (check-run* (x) ; 56 (teacup-o x) => '(tea cup)) (check-run* (r) ; 57 (fresh (x y) (cond-e [(teacup-o x) (≈ #t y) %s] [(≈ #f x) (≈ #t y)] [else %u]) (≈ (list x y) r)) => '((tea #t) (cup #t) (#f #t))) (check-run* (r) ; 58 (fresh (x y z) (cond-e [(≈ y x) (fresh (x) (≈ z x))] [(fresh (x) (≈ y x)) (≈ z x)] [else %u]) (≈ (list y z) r)) => '((_.0 _.1) (_.0 _.1))) (check-run* (r) ; 59 (fresh (x y z) (cond-e [(≈ y x) (fresh (x) (≈ z x))] [(fresh (x) (≈ y x)) (≈ z x)] [else %u]) (≈ #f x) (≈ (list y z) r)) => '((#f _.0) (_.0 #f))) (check-run* (q) ; 60 (let ([a (≈ #t q)] [b (≈ #f q)]) b) => '(#f)) (check-run* (q) (let ([a (≈ #t q)] [b (fresh (x) (≈ x q) (≈ #f x))] [c (cond-e [(≈ #t q) %s] [else (≈ #f q)])]) b) => '(#f)))
false
a42ae3aa87191e938b747ceede4faa54c7ebae0d
fc69a32687681f5664f33d360f4062915e1ac136
/test/dssl2/continue.rkt
df763a4c372f150df9127b0489f7fdb13eb91f27
[]
no_license
tov/dssl2
3855905061d270a3b5e0105c45c85b0fb5fe325a
e2d03ea0fff61c5e515ecd4bff88608e0439e32a
refs/heads/main
2023-07-19T22:22:53.869561
2023-07-03T15:18:32
2023-07-03T15:18:32
93,645,003
12
6
null
2021-05-26T16:04:38
2017-06-07T14:31:59
Racket
UTF-8
Racket
false
false
125
rkt
continue.rkt
#lang dssl2 let result = 0 for i in [1, 2, 4, 8, 16]: if i == 8: continue result = result + i assert result == 23
false
1a618ac469b02c8aa64c58946214d4aa16d8470f
d2fc383d46303bc47223f4e4d59ed925e9b446ce
/courses/2012/fall/330/notes/1-13h.rkt
c0e00edaf48aad084f34b6cb9ca8de289cd6d5c3
[]
no_license
jeapostrophe/jeapostrophe.github.com
ce0507abc0bf3de1c513955f234e8f39b60e4d05
48ae350248f33f6ce27be3ce24473e2bd225f6b5
refs/heads/master
2022-09-29T07:38:27.529951
2022-09-22T10:12:04
2022-09-22T10:12:04
3,734,650
14
5
null
2022-03-25T14:33:29
2012-03-16T01:13:09
HTML
UTF-8
Racket
false
false
8,513
rkt
1-13h.rkt
#lang plai (print-only-errors #t) (define-type Binding [binding (name symbol?) (named-expr AE?)]) (define-type AE [num (n number?)] [binop (op procedure?) (lhs AE?) (rhs AE?)] [id (name symbol?)] [if0 (c AE?) (t AE?) (e AE?)] [fun (args (listof symbol?)) (body AE?)] [app (f AE?) (args (listof AE?))]) ;; "Macro" (define (with lob body) (app (fun (map binding-name lob) body) (map binding-named-expr lob))) ;; C or C++ ;; #include <-- not part C ;; part of CPP - C pre-processor - cpp ;; pre-compiled headers... lib.h -> lib.ho (define (add lhs rhs) (binop + lhs rhs)) (define (sub lhs rhs) (binop - lhs rhs)) ;; <AE> := <real Racket number> ;; | (+ <AE> <AE>) ;; | (- <AE> <AE>) ;; | (* <AE> <AE>) ;; | (/ <AE> <AE>) ;; | <id> ;; | (with ([<id> <AE>] ...) <AE>) ;; | (<AE> <AE> ...) ;; | (fun (<id> ...) <AE>) ;; where <id> is any Racket symbol, except +, -, *, /, fun, if0, and with ;; parse-binding : s-expression -> Binding (define (parse-binding se) (cond [(and (list? se) (= 2 (length se)) (symbol? (first se))) (binding (first se) (parse (second se)))] [else (error 'parse "Invalid syntax, dude")])) (define (jays-/ x y) (if (zero? y) (error 'calc "division by zero") (/ x y))) ;; parse :: s-expression -> AE (define (parse se) (cond [(and (list? se) (= 3 (length se)) (equal? 'fun (first se)) (list? (second se)) (andmap symbol? (second se))) (fun (second se) (parse (third se)))] [(and (list? se) (= 3 (length se)) (equal? 'with (first se)) (list? (second se))) (with (map parse-binding (second se)) (parse (third se)))] [(symbol? se) (id se)] [(number? se) (num se)] [(and (list? se) (= 4 (length se)) (equal? 'if0 (first se))) (if0 (parse (second se)) (parse (third se)) (parse (fourth se)))] [(and (list? se) (= 3 (length se)) (equal? '+ (first se))) (add (parse (second se)) (parse (third se)))] [(and (list? se) (= 3 (length se)) (equal? '- (first se))) (sub (parse (second se)) (parse (third se)))] [(and (list? se) (= 3 (length se)) (equal? '* (first se))) (binop * (parse (second se)) (parse (third se)))] [(and (list? se) (= 3 (length se)) (equal? '/ (first se))) (binop jays-/ ;; / ;; => ;; (λ (x y) ;; (/ x y)) (parse (second se)) (parse (third se)))] [(and (list? se) (>= (length se) 1)) (app (parse (first se)) (map parse (rest se)))] [else (error 'parse "Invalid syntax, dude: ~e" se)])) (test (parse '1) (num 1)) (test (parse '(+ 1 1)) (add (num 1) (num 1))) (test (parse '(- 1 1)) (sub (num 1) (num 1))) (test (parse 'x) (id 'x)) (test (parse '(with ([x 27]) x)) (with (list (binding 'x (num 27))) (id 'x))) (test (parse '(double 5)) (app (id 'double) (list (num 5)))) (test (parse '(fun (x) (+ x x))) (fun '(x) (add (id 'x) (id 'x)))) (test (parse '(if0 0 1 2)) (if0 (num 0) (num 1) (num 2))) (test/exn (parse "1") "Invalid syntax") (define-type Env [mtEnv] [consEnv (name symbol?) (named-value AEV?) (rest Env?)]) (define-type AEV [numV (n number?)] [closureV (param (listof symbol?)) (body AE?) (env Env?)]) (define (lookup-id $ sym) (type-case Env $ [mtEnv () (error 'calc "You has a bad identifier, bro: ~e" sym)] [consEnv (name named-value rest) (if (symbol=? name sym) named-value (lookup-id rest sym))])) (define (conssEnv ids vals base-env) (foldr consEnv base-env ids vals)) ;; (foldr ;; consEnv empty ;; (list 1 2 3) ;; (list 'a 'b 'c)) ;; (consEnv 1 'a (consEnv 2 'b (consEnv 3 'c empty))) (define (foldr replace-cons replace-empty l1 l2) (cond [(and (empty? l1) (empty? l2)) replace-empty] [(or (empty? l1) (empty? l2)) (error 'foldr "blah")] [else (replace-cons (first l1) (first l2) (foldr replace-cons replace-empty (rest l1) (rest l2)))])) ;; calc : AE? Env? -> AEV? ;; compute the meaning of the AE (define (calc ae $) (type-case AE ae [if0 (cond-e true-e false-e) (if (num-zero? (calc cond-e $)) (calc true-e $) (calc false-e $))] [fun (param body) (closureV param body $)] [app (fun args) (type-case AEV (calc fun $) [closureV (arg-names fun-body fun-$) (calc fun-body (conssEnv arg-names (map (λ (....) (calc .... $)) args) fun-$))] [else (error 'calc "Not a function, man")])] [id (sym) (lookup-id $ sym)] [num (n) (numV n)] [binop (op lhs rhs) (numV (lift-numV op (calc lhs $) (calc rhs $)))])) ;; interface AE ;; calc : -> value ;; class binop ;; calc : return lhs.calc + rhs.calc ;; class num ;; calc : return n (define (num-zero? v) (zero? (numV-n* v))) (define (lift-numV f . args) (apply f (map numV-n* args))) (define (numV-n* a) (if (numV? a) (numV-n a) (error 'calc "Not a number: ~e" a))) ;; calc* : sexpr -> number? (define (calc* se) (define res (calc (parse se) (mtEnv))) (type-case AEV res [numV (n) n] [else res])) (test (calc* '1) 1) (test (calc* '(+ 1 1)) 2) (test (calc* '(- 0 1)) -1) (test (calc* '(with ([x (+ 5 5)]) (+ x x))) 20) (test (calc* '(with ([y 7]) (with ([x y]) (+ x x)))) 14) (test (calc* '(with ([x (+ 5 5)]) (with ([x 7]) (+ x x)))) 14) (test (calc* '(with ([x (+ 5 5)]) (+ x (with ([x 7]) (+ x x))))) 24) (test (calc* '(with ([x (+ 5 5)]) (+ (with ([x 7]) (+ x x)) x))) 24) (test (calc* '(with ([x (+ 5 5)]) (+ (with ([x 7]) (+ x x)) (with ([x 8]) (+ x x))))) (+ 14 16)) (test (calc* '(with ([x 7]) (with ([y (+ 2 x)]) (+ y 3)))) 12) (test (calc* '(with ([y 7]) (with ([y (+ y 2)]) (+ y 3)))) 12) (test (calc* '(with ([x (+ 5 5)]) 7)) 7) (test (calc* '(with ([x (+ 5 5)]) (+ x x))) 20) (test (calc* '(with ([x (+ 5 6)]) (+ x x))) 22) (test (calc* '(with ([x 5]) (with ([y 5]) (+ (+ x x) y)))) 15) (test (calc* '(with ([x 5]) (with ([x (+ 1 x)]) (+ (+ x x) x)))) 18) (test/exn (calc* '(with ([x 5]) (with ([x (+ 1 x)]) (+ (+ x x) y)))) "bro") (test/exn (calc* '(with ([x x]) 5)) "bro") (test (calc* '(fun (x) (+ x x))) (closureV '(x) (add (id 'x) (id 'x)) (mtEnv))) (test (calc* '(+ 1 (+ 2 3))) 6) (test/exn (calc* '(+ 1 (fun (x) x))) "Not a number") (test/exn (calc* '(5 1)) "Not a function") (test (calc* '(with ([double (fun (x) (+ x x))]) (double 5))) 10) (test (calc* '(with ([double (fun (x) (+ x x))]) (with ([triple (fun (x) (+ x (double x)))]) (triple 5)))) 15) (test (calc* '(with ([double (fun (x) (+ x x))]) (with ([triple (fun (x) (+ x (double x)))]) (with ([double (fun (x) (- x 6))]) (triple 5))))) 15) (test (calc* '(if0 0 1 2)) 1) (test (calc* '(if0 -1 1 2)) 2) (test/exn (calc* '((fun () 5) 6)) "blah") (test (calc* '(if0 0 1 (1 5))) 1) (test/exn (calc* '(/ 1 0)) "division by zero") (test/exn (calc* '(with ([x 0]) (/ 1 (+ 4 -4)))) "division by zero")
false
02a542d119daaff7996b9773f2330d806b37723b
d084590d6a74cf62c261f87376e97c37eeb612db
/C311/a8/a8.rkt
585664788c344d9dcb1c3dbe7636601c7ff0bedd
[]
no_license
haskellstudio/college-coursework
733721b585104463f7bf39efa6600c642d9b8ed5
45a623cac0004f831259c03be196aab5b7ed6b6c
refs/heads/master
2021-04-15T06:41:42.372960
2018-02-27T09:19:15
2018-02-27T09:19:15
null
0
0
null
null
null
null
UTF-8
Racket
false
false
3,903
rkt
a8.rkt
#lang racket (define m* 'stuff) (define n* 'junk) (define a* 'mess) (define v* 'garbage) (define k* 'crud) (define empty-k (λ () `(empty-k))) ;;;;;;;;;;;;;;;;;;;; (define ack-else-k (λ () `(else-k ,m* ,k*))) (define ack-apply-k (λ () (match k* [`(empty-k) v*] [`(else-k ,m ,k) (begin (set! m* (sub1 m)) (set! k* k) (set! n* v*) (ack))]))) ;; (define ack (lambda () (cond [(zero? m*) (begin (set! v* (add1 n*)) (ack-apply-k))] [(zero? n*) (begin (set! m* (sub1 m*)) (set! n* 1) (ack))] [else (begin (set! n* (sub1 n*)) (set! k* (ack-else-k)) (ack))]))) ;; (define ack-reg-driver (λ (m n) (begin (set! m* m) (set! n* n) (set! k* (empty-k)) (ack)))) ;;;;;;;;;;;;;;;;;;;; (define depth-inner-k (λ () `(inner-k ,(add1 n*) ,k*))) (define depth-outer-k (λ () `(outer-k ,m* ,k*))) (define depth-apply-k (λ () (match k* [`(empty-k) v*] [`(inner-k ,n ,k) (begin (set! k* k) (if (< n v*) (depth-apply-k) (begin (set! v* n) (depth-apply-k))))] [`(outer-k ,m ,k) (begin (set! m* (cdr m)) (set! n* v*) (set! k* k) (set! k* (depth-inner-k)) (depth))]))) ;; (define depth (lambda () (cond [(null? m*) (begin (set! v* 1) (depth-apply-k))] [(pair? (car m*)) (begin (set! k* (depth-outer-k)) (set! m* (car m*)) (depth))] [else (begin (set! m* (cdr m*)) (depth))]))) (define depth-reg-driver (λ (ls) (begin (set! m* ls) (set! k* (empty-k)) (depth)))) ;;;;;;;;;;;;;;;;;;;; (define fact-else-k (λ () `(else-k ,n* ,k*))) (define fact-apply-k (λ () (match k* [`(empty-k) v*] [`(else-k ,n ,k) (begin (set! k* k) (set! v* (* n v*)) (fact-apply-k))]))) (define fact (lambda () (cond [(zero? n*) (begin (set! v* 1) (fact-apply-k))] [else (begin (set! k* (fact-else-k)) (set! n* (sub1 n*)) (fact))]))) (define fact-reg-driver (λ (n) (begin (set! n* n) (set! k* (empty-k)) (fact)))) ;;;;;;;;;;;;;;;;;;;; (define f* 'balls) (define pascal-else-inner-k (λ () `(else-inner-k ,a* ,k*))) (define pascal-else-outer-k (λ () `(else-outer-k ,a* ,k*))) (define pascal-let-k (λ () `(let-k ,k*))) (define pascal-apply-k (λ () (match k* [`(empty-k) v*] [`(else-inner-k ,a ,k) (begin (set! a* a) (set! v* (cons a* v*)) (set! k* k) (pascal-apply-k))] [`(else-outer-k ,a ,k) (begin (set! a* a) (set! k* k) (set! k* (pascal-else-inner-k)) (pascal))]))) (define pascal (lambda () (cond [(> m* n*) (pascal-apply-k)] [else (begin (set! a* (+ a* m*)) (set! m* (add1 m*)) (set! k* (pascal-else-outer-k)) (pascal))]))) (define pascal-reg-driver (λ (n) (begin (set! n* n) (set! m* 1) (set! a* 0) (set! v* '()) (set! k* (empty-k)) (pascal))))
false
55693cabeb83d937f4a0252a7df91ab202527a0f
fa659fbb3ae62b3d16c551a6499776c2ec75e017
/Functional programming basics/labs/04/4th.rkt
4104047ec6c8aed2c3b5723871a7bb7bd4f342b7
[]
no_license
stepanplaunov/bmstu-ics9
fe5683371a7806154c735085b075ba94132afd05
d3b1294626512fa0faf347c14856c65d7fa663d6
refs/heads/master
2023-03-16T03:32:06.492608
2020-09-17T08:54:09
2020-09-17T08:54:09
null
0
0
null
null
null
null
UTF-8
Racket
false
false
6,487
rkt
4th.rkt
(define (end? program count) (if (equal? (vector-ref program count) 'end) (+ count 1) (end? program (+ count 1)))) (define (skip-if program count num-ifs) (cond ((and (equal? (vector-ref program count) 'endif) (equal? num-ifs 1)) (+ count 1)) ((equal? (vector-ref program count) 'endif) (skip-if program (+ count 1) (- num-ifs 1))) ((equal? (vector-ref program count) 'if) (skip-if program (+ count 1) (+ num-ifs 1))) (else (skip-if program (+ count 1) num-ifs)))) (define (interpret program given-stack) (define (word-interp wcount stack return dict) ;вектор, счетчик, стек, возврат, словарь (if (< wcount (vector-length program)) (let* ((word (vector-ref program wcount)) (func (assoc word dict))) (cond ;Числа ((number? word) (word-interp (+ wcount 1) (cons word stack) return dict)) ;Словарная статья (func (word-interp (cadr func) stack (cons (+ wcount 1) return) dict)) ;Управляющие конструкции ((equal? word 'define) ;Начинает словарную статью — определение слова word (word-interp (end? program wcount) stack return (cons (list (vector-ref program (+ wcount 1)) (+ wcount 2)) dict))) ((or (equal? word 'end) ;Завершает статью (equal? word 'exit)) ;Завершает выполнение процедуры (кода статьи) (word-interp (car return) stack (cdr return) dict)) ((equal? word 'if) ;Если флаг не равен 0, то выполняется код в теле if..endif, иначе выполнение кода до endif пропускается (word-interp (if (equal? (car stack) 0) (skip-if program (+ wcount 1) 1) (+ wcount 1)) (cdr stack) return dict)) ((equal? word 'endif) ;Завершает тело if (word-interp (+ wcount 1) stack return dict)) ;Арифметическиие операции ((equal? word '+) ;Сумма n1 и n2 (word-interp (+ wcount 1) (cons (+ (cadr stack) (car stack)) (cddr stack)) return dict)) ((equal? word '-) ;Разность: n1 - n2 (word-interp (+ wcount 1) (cons (- (cadr stack) (car stack)) (cddr stack)) return dict)) ((equal? word '*) ;Произведение n2 на n1 (word-interp (+ wcount 1) (cons (* (cadr stack) (car stack)) (cddr stack)) return dict)) ((equal? word '/) ;Целочисленное деление n1 на n2 (word-interp (+ wcount 1) (cons (quotient (cadr stack) (car stack)) (cddr stack)) return dict)) ((equal? word 'mod) ;Остаток от деления n1 на n2 (word-interp (+ wcount 1) (cons (remainder (cadr stack) (car stack)) (cddr stack)) return dict)) ((equal? word 'neg) ;смена знака числа (word-interp (+ wcount 1) (cons (- (car stack)) (cdr stack)) return dict)) ;Операции сравнения ((equal? word '=) ;Флаг равен -1, если n1 = n2, иначе флаг равен 0 (word-interp (+ wcount 1) (cons (if (equal? (cadr stack) (car stack)) -1 0) (cddr stack)) return dict)) ((equal? word '>) ;Флаг равен -1, если n1 > n2, иначе флаг равен 0 (word-interp (+ wcount 1) (cons (if (> (cadr stack) (car stack)) -1 0) (cddr stack)) return dict)) ((equal? word '<) ;Флаг равен -1, если n1 < n2, иначе флаг равен 0 (word-interp (+ wcount 1) (cons (if (< (cadr stack) (car stack)) -1 0) (cddr stack)) return dict)) ;Логические операции ((equal? word 'not) ;НЕ n (word-interp (+ wcount 1) (cons (if (equal? (car stack) 0) -1 0) (cdr stack)) return dict)) ((equal? word 'and) ;n2 И n1 (word-interp (+ wcount 1) (cons (if (or (equal? (cadr stack) 0) (equal? (car stack) 0)) 0 -1) (cddr stack)) return dict)) ((equal? word 'or) ;n2 ИЛИ n1 (word-interp (+ wcount 1) (cons (if (and (equal? (cadr stack) 0) (equal? (car stack) 0)) 0 -1) (cddr stack)) return dict)) ;Операции со стеком ((equal? word 'drop) ;Удаляет элемент на вершине стека (word-interp (+ wcount 1) (cdr stack) return dict)) ((equal? word 'swap) ;Меняет местами два элемента на вершине стека (word-interp (+ wcount 1) (cons (cadr stack) (cons (car stack) (cddr stack))) return dict)) ((equal? word 'dup) ;Дублирует элемент на вершине стека (word-interp (+ wcount 1) (cons (car stack) stack) return dict)) ((equal? word 'over) ;Копирует предпоследний элемент на вершину стека (word-interp (+ wcount 1) (cons (cadr stack) stack) return dict)) ((equal? word 'rot) ;Меняет местами первый и третий элемент от головы стека (word-interp (+ wcount 1) (cons (caddr stack) (cons (cadr stack) (cons (car stack) (cdddr stack)))) return dict)) ((equal? word 'depth) ;Возвращает число элементов в стеке перед своим вызовом (word-interp (+ wcount 1) (cons (length stack) stack) return dict)))) stack)) (word-interp 0 given-stack '() '())) (interpret #( define abs dup 0 < if neg endif end abs ) ; программа '(-9)) ; исходное состояние стека
false
2f2f8aaf9aadd77cbe78969507fd4a1dc1eb8584
70e413abafeb8ab98bb3499ef848f6ae5ad9bf4a
/biolink/pieces-parts/postquery.rkt
242c33d0a99ffd5eeea6198b2cdfb97bd099108a
[ "MIT" ]
permissive
19katz/mediKanren
079a36d87c55538fe0c963988b2cf9d93a31c2e6
abee8906b9375fe7a71b27cee73c89ceb66411e3
refs/heads/master
2022-12-04T22:17:26.110534
2020-08-26T22:22:07
2020-08-26T22:22:07
274,751,745
4
0
MIT
2020-06-24T19:24:04
2020-06-24T19:24:03
null
UTF-8
Racket
false
false
4,884
rkt
postquery.rkt
#lang racket/base (provide (all-defined-out)) (require "query.rkt") (require racket/list) ;; different notions of consistency ;; arc: across 1-hop ;; path: across entire path ;; global: between multiple paths that might share nodes ;; global consistency ;; X -> Y ;; X -> Z ;; Y -> Z ;; need to find X -> Y -> Z ;; but imagine that X, Y, Z are sets ;; need the individual elements to be related ;; query/graph ;; returns an association list from the concept and edge names defined to their result (define (all-consistent query-result) (define paths (car query-result)) (define named-cells (cdr query-result)) (define kvs (map (lambda (nc) (cons (car nc) ((cdr nc) 'ref))) named-cells)) (define csets (filter (lambda (kv) (eq? (cadr kv) 'concept)) kvs)) (define esets (filter (lambda (kv) (eq? (cadr kv) 'edge)) kvs)) ;; symbolic: capital ;; concrete: lower case (define E=>sgs (foldl (lambda (path e=>s) (foldl (lambda (edge e=>s) (define ename (cadr edge)) (define sname (car edge)) (hash-set e=>s ename (cddr (assoc sname csets)))) e=>s (path->edges path))) (hash) paths)) (define E=>ogs (foldl (lambda (path e=>o) (foldl (lambda (edge e=>o) (define ename (cadr edge)) (define oname (caddr edge)) (hash-set e=>o ename (cddr (assoc oname csets)))) e=>o (path->edges path))) (hash) paths)) (define (augment sgs ogs es) (map (lambda (kv) (define key (car kv)) (define es (cdr kv)) (list key es)) (hash->list (foldl (lambda (e acc) (define snorm (curie-norm sgs (cadr (caddr e)))) (define onorm (curie-norm ogs (cadr (cadddr e)))) (define key (cons snorm onorm)) (define existing (hash-ref acc key #f)) (hash-set acc key (if existing (cons e existing) (list e)))) (hash) es)))) (define E=>aes (make-immutable-hash (map (lambda (kv) (define sgs (hash-ref E=>sgs (car kv))) (define ogs (hash-ref E=>ogs (car kv))) (define aes (augment sgs ogs (cddr kv))) (cons (car kv) aes)) esets))) (define (C=>Es f) (foldl (lambda (path c=>e) (foldl (lambda (edge c=>e) (define ename (cadr edge)) (define cname (f edge)) (hash-update c=>e cname (lambda (old) (cons ename old)) '())) c=>e (path->edges path))) (hash) paths)) (define S=>Es (C=>Es car)) (define O=>Es (C=>Es caddr)) (define (revert-C=>Es C=>Es) (make-immutable-hash (append* (hash-map C=>Es (lambda (C Es) (map (lambda (E) (cons E C)) Es)))))) (define E=>S (revert-C=>Es S=>Es)) (define E=>O (revert-C=>Es O=>Es)) (define all-concepts (map car csets)) (define all-edges (map car esets)) (define (global-instances edges substitution) (if (null? edges) (list substitution) (let* ((E (car edges)) (aes (hash-ref E=>aes E)) (S (hash-ref E=>S E)) (O (hash-ref E=>O E)) (s (hash-ref substitution S #f)) (o (hash-ref substitution O #f))) (append* (for/list ((ae aes)) (let* ((snorm (caar ae)) (onorm (cdar ae)) (edge-consistent? (and (or (not s) (equal? snorm s)) (or (not o) (equal? onorm o))))) (if edge-consistent? (let ((substitution^ (hash-set (hash-set (hash-set substitution E ae) S snorm) O onorm))) (global-instances (cdr edges) substitution^)) '()))))))) (global-instances all-edges (hash)) ) (define-syntax-rule (query/graph/consistent ((concept-name initial) ...) ((edge-name edge-constraints ...) ...) path ...) (let ((q (query/graph ((concept-name initial) ...) ((edge-name edge-constraints ...) ...) path ...))) (all-consistent q))) #| (define q (time (query/graph/consistent ((X drug-concept?) (Y gene-or-protein) (rhobtb2 "UMLS:C1425762")) ((X->Y negatively-regulates) (Y->rhobtb2 positively-regulates)) (X X->Y Y Y->rhobtb2 rhobtb2)))) |#
true
62f4da6b48b967486bad8e9c3701cd1a33514a2c
538194e777b5cf8a99a277658f55f7e598a2c558
/src/program-to-setup-and-command.rkt
2f416693ee02315a50bb2d698935ca4238aa1261
[]
no_license
Mahbodmajid/pl-project
c0aca57d4e6e0582349af11be8fabeeb4146ed92
1e80acfc4c4361278b789fa3d94020ef1d144771
refs/heads/master
2022-02-08T08:54:34.707794
2019-06-30T09:30:25
2019-06-30T09:30:25
189,848,200
0
0
null
null
null
null
UTF-8
Racket
false
false
2,017
rkt
program-to-setup-and-command.rkt
#lang racket (provide set-commands-setup!) (define program-url "sample/sample_input.txt") (define remove-all (lambda (ele lst) (cond ((null? lst) '()) ; if the list is empty then we're done ((not (pair? (car lst))) ; if the first element is an atom (if (equal? (car lst) ele) ; check if it's the one we're looking for (remove-all ele (cdr lst)) ; if so we skip over it, eliminating it (cons (car lst) (remove-all ele (cdr lst))))) ; otherwise we add it (else (cons (remove-all ele (car lst)) ; else advance recursion (remove-all ele (cdr lst))))))) ; over both `car` and `cdr` (define program-lines (remove-all "" (map string-normalize-spaces (file->lines program-url #:mode'text)))) (define extract-setup-commands (lambda (lines) (let ([store '(() ()) ]) (extract-setup-commands-helping lines 'doesntmatter store)))) ; ((setup) (commands)) (define extract-setup-commands-helping (lambda (lines dir result) (if (equal? lines '()) result (let ([head (car lines)] [tail (cdr lines)] [setup (car result)] [commands (cadr result)]) (cond [(equal? head "setup") (extract-setup-commands-helping tail 's result)] [(equal? head "commands") (extract-setup-commands-helping tail 'c result)] [(equal? dir 's) (extract-setup-commands-helping tail 's (list (append setup (list head)) commands))] [(equal? dir 'c) (extract-setup-commands-helping tail 'c (list setup (append commands (list head))))] [else (error "something is wrong")]))))) (define-syntax-rule (set-commands-setup! c s) (match (extract-setup-commands program-lines) [(list lsetup lcommands) (begin (set! c lcommands) (set! s lsetup)) ]))
true
41e0cba2f39b0d75f09999c1e33c5f221f43e96e
07d8fb2322be30e81475c0b54ead42200e0b25af
/lambda-py-oopsla2013/appendix.scrbl
d8433710475b35060dab9c3cbf6fa86afb0b5002
[ "Apache-2.0" ]
permissive
jpolitz/lambda-py-paper
b475edccbaa2fc60d49a27c172f192e90942577a
746ef63fc1123714b4adaf78119028afbea7bd76
refs/heads/master
2022-04-17T11:02:08.421368
2020-04-10T00:50:04
2020-04-10T00:50:04
8,738,600
0
0
null
null
null
null
UTF-8
Racket
false
false
11,969
scrbl
appendix.scrbl
#lang scribble/manual @(require scriblib/footnote scriblib/figure scribble/core racket/base (only-in racket/string string-join) redex "../redex/lambdapy-core.rkt" "../redex/lambdapy-reduction.rkt" "../redex/lambdapy-prim.rkt" "typesetting.rkt" "bib.rkt") @(define (pycode . stx) (nested #:style 'code-inset (verbatim (string-join stx "")))) @(define (pyinline . stx) (tt (string-join stx ""))) @(define (lambda-py) (elem "λ" (subscript (larger "π")))) @(define (lambda-js) (elem "λ" (subscript "JS"))) @(define (lambda-interp) (elem "λ" (subscript (larger "π↓")))) @title{Python: The Even Fuller Monty} @section[#:tag "s:appendix" #:style 'unnumbered]{Appendix 1: The Rest of @(lambda-py)} The figures in this section show the rest of the @(lambda-py) semantics. We proceed to briefly present each of them in turn. @figure["f:E" (elem "Evaluation contexts") @(with-rewriters (lambda () (render-language λπ #:nts '(E Es))))] @subsection{Contexts and Control Flow} @figure["f:T" (elem "Contexts for try-except") @(with-rewriters (lambda () (render-language λπ #:nts '(T Ts))))] @figure["f:H" (elem "Contexts for loops") @(with-rewriters (lambda () (render-language λπ #:nts '(H Hs))))] @Figure-ref["f:E" "f:T" "f:H" "f:R"] show the different @emph{contexts} we use to capture left-to-right, eager order of operations in @(lambda-py). @(lp-term E) is the usual @emph{evaluation context} that enforces left-to-right, eager evaluation of expressions. @(lp-term T) is a context for the first expression of a @(lp-term tryexcept) block, used to catch instances of @(lp-term raise). Similarly, @(lp-term H) defines contexts for loops, detecting @(lp-term continue) and @(lp-term break), and @(lp-term R) defines contexts for @(lp-term return) statements inside functions. Each interacts with a few expression forms to handle non-local control flow. @figure["f:R" (elem "Contexts for return statements") @(with-rewriters (lambda () (render-language λπ #:nts '(R Rs))))] @figure["f:control" (elem "Control flow reductions") @(lp-reduction '(E-While E-LoopContinue E-LoopBreak E-LoopNext E-TryDone E-TryCatch E-Return E-FramePop E-FinallyReturn E-FinallyBreak E-FinallyRaise E-FinallyContinue E-IfTrue E-IfFalse E-Seq))] @Figure-ref["f:control"] shows how these contexts interact with expressions. For example, in first few rules, we see how we handle @(lp-term break) and @(lp-term continue) in @(lp-term while) statements. When @(lp-term while) takes a step, it yields a @(lp-term loop) form that serves as the marker for where internal @(lp-term break) and @(lp-term continue) statements should collapse to. It is for this reason that @(lp-term H) does @emph{not} descend into nested @(lp-term loop) forms; it would be incorrect for a @(lp-term break) in a nested loop to @(lp-term break) the outer loop. One interesting feature of @pyinline{while} and @pyinline{tryexcept} in Python is that they have distinguished ``else'' clauses. For @pyinline{while} loops, these else clauses run when the condition is @pyinline{False}, but @emph{not} when the loop is broken out of. For @pyinline{tryexcept}, the else clause is only visited if @emph{no} exception was thrown while evaluating the body. This is reflected in E-TryDone and the else branch of the @(lp-term if) statement produced by E-While. We handle one feature of Python's exception raising imperfectly. If a programmer uses @pyinline{raise} without providing an explicit value to throw, @emph{the exception bound in the most recent active catch block} is thrown instead. We have a limited solution that involves raising a special designated ``reraise'' value, but this fails to capture some subtle behavior of nested catch blocks. We believe a more sophisticated desugaring that uses a global stack to keep track of entrances and exits to catch blocks will work, but have yet to verify it. We still pass a number of tests that use @pyinline{raise} with no argument. @subsection{Mutation} @figure*["f:mutation" "Various operations on mutable variables and values"]{ @(lp-reduction '(E-App E-LetLocal E-LetGlobal E-GetVar E-GetVar E-AssignLocal E-AssignGlobal E-Alloc E-Fetch E-Set! E-SetFieldAdd E-SetFieldUpdate E-DeleteLocal E-DeleteGlobal)) } There are @emph{three} separate mutability operators in @(lambda-py), @(lp-term (set! e e)), which mutates the value stored in a reference value, @(lp-term (assign e := e)), which mutates variables, and @(lp-term (set-field e e e)), which updates and adds fields to objects. @Figure-ref["f:mutation"] shows the several operators that allocate and manipulate references in different ways. We briefly categorize the purpose for each type of mutation here: @itemlist[ @item{We use @(lp-term (set! e e)), @(lp-term (fetch e)) and @(lp-term (alloc e)) to handle the update and creation of objects via the δ function, which reads but does not modify the store. Thus, even the lowly @(lp-term +) operation needs to have its result re-allocated, since programmers only see references to numbers, not object values themselves. We leave the pieces of object values immutable and use this general strategy for updating them, rather than defining separate mutability for each type (e.g., lists).} @item{We use @(lp-term (assign e := e)) for assignment to both local and global variables. We discuss global variables more in the next section. Local variables are handled at binding time by allocating references and substituting the new references wherever the variable appears. Local variable accesses and assignments thus work over references directly, since the variables have been substituted away by the time the actual assignment or access is reached. Note also that E-AssignLocal can override potential @(lp-term (undefined-val)) store entries.} @item{We use @(lp-term (set-field e e e)) to update and add fields to objects' dictionaries. We leave the fields of objects' dictionaries as references and not values to allow ourselves the ability to share references between object fields and variables. We maintain a strict separation in our current semantics, with the exception of modules, and we expect that we'll continue to need it in the future to handle patterns of @pyinline{exec}.} ] Finally, we show the E-Delete operators, which allow a Python program to revert the value in the store at a particular location back to @(lp-term (undefined-val)), or to remove a global binding. @subsection{Global Scope} @figure*["f:lazy-get" "Accessing fields on a class defined by an identifier"]{ @(lp-reduction '(E-GetField-Class/Id)) @(linebreak) @(lp-metafunction env-lookup #f) } While local variables are handled directly via substitution, we handle global scope with an explicit environment @(lp-term ε) that follows the computation. We do this for two main reasons. First, because global scope in Python is truly dynamic in ways that local scope is not (@pyinline{exec} can modify global scope), and we want to be open to those possibilities in the future. Second, and more implementation-specific, we use global scope to bootstrap some mutual dependencies in the object system, and allow ourselves a touch of dynamism in the semantics. For example, when computing booleans, @(lambda-py) needs to yield numbers from the δ function that are real booleans (e.g., have the built-in @(lp-term (id %bool global)) object as their class). However, we need booleans to set up if-tests while we are bootstrapping the creation of the boolean class itself! To handle this, we allow global identifiers to appear in the class position of objects. If we look for the class of an object, and the class position is an identifier, we look it up in the global environment. We only use identifiers with special %-prefixed names that aren't visible to Python in this way. It may be possible to remove this touch of dynamic scope from our semantics, but we haven't yet found the desugaring strategy that lets us do so. @Figure-ref["f:lazy-get"] shows the reduction rule for field lookup in this case. @subsection{@pyinline{True}, @pyinline{False}, and @pyinline{None}} The keywords @pyinline{True}, @pyinline{False}, and @pyinline{None} are all singleton references in Python. In @(lambda-py), we do not have a form for @pyinline{True}, instead desugaring it to a variable reference bound in the environment. The same goes for @pyinline{None} and @pyinline{False}. We bind each to an allocation of an object:@centered{ @(lp-term (let (True global = (alloc (obj-val %bool (meta-num 1) ()))) in (let (False global = (alloc (obj-val %bool (meta-num 0) ()))) in (let (None global = (alloc (obj-val %none (meta-none) ()))) in e_prog)))) } and these bindings happen before anything else. This pattern ensures that all references to these identifiers in the desugared program are truly to the same objects. Note also that the boolean values are represented simply as number-like values, but with the built-in @(lp-term %bool) class, so they can be added and subtracted like numbers, but perform method lookup on the @(lp-term %bool) class. This reflects Python's semantics: @pycode{ isinstance(True, int) # ==> True } @subsection{Variable-arity Functions} @figure*["f:varargs" "Variable-arity functions"]{ @(lp-reduction '(E-AppArity E-AppVarArgsArity E-AppVarArgs1 E-AppVarArgs2)) } We implement Python's variable-arity functions directly in our core semantics, with the reduction rules shown in @figure-ref["f:varargs"]. We show first the two arity-mismatch cases in the semantics, where either no vararg is supplied and the argument count is wrong, or where a vararg is supplied but the count is too low. If the count is higher than the number of parameters and a vararg is present, a new tuple is allocated with the extra arguments, and passed as the vararg. Finally, the form @(lp-term (app e (e ...) e)) allows a variable-length collection of arguments to be @emph{passed} to the function; this mimics @pyinline{apply} in languages like Racket or JavaScript. @subsection{Modules} @figure*["f:modules" @elem{Simple modules in @(lambda-py)}]{ @(lp-reduction '(E-ConstructModule E-ModuleDone)) @(linebreak) @(lp-metafunction vars->fresh-env #f) } We model modules with the two rules in @figure-ref["f:modules"]. E-ConstructModule starts the evaluation of the module, which is represented by a @(lp-term meta-code) structure. A @(lp-term meta-code) contains a list of global variables to bind for the module, a name for the module, and an expression that holds the module's body. To start evaluating the module, a new location is allocated for each global variable used in the module, initialized to @(lp-term (undefined-val)) in the store, and a new environment is created mapping each of these new identifiers to the new locations. Evaluation that proceeds inside the module, @emph{replacing} the global environment ε with the newly-created environment. The old environment is stored with a new @(lp-term in-module) form that is left in the current context. This step also sets up an expression that will create a new module object, whose fields hold the global variable references of the running module. When the evaluation of the module is complete (the @(lp-term in-module) term sees a value), the old global environment is reinstated. To desugar to these core forms, we desugar the files to be imported, and analyze their body to find all the global variables they use. The desugared expression and variables are combined with the filename to create the @(lp-term meta-code) object. This is roughly an implementation of Python's @pyinline{compile}, and it should be straightforward to extend it to implement @pyinline{exec}, though for now we've focused on specifically the module case.
false
e7367755893cfdb85ec42656b38a2801a79aabc4
e533f67477c33b07f5ecf5c80b28e2b688005b9a
/primitives.rkt
0b4f1cc7f56d82bb8d0931929dde9eace876c2e8
[]
no_license
jevanlingen/scheme-trials
efbdd574302cdc4973f20bc284b0882e9a13f939
10690158fc85ec923f953fd39a23e61d8b8e3f9d
refs/heads/master
2023-02-04T07:36:15.570387
2020-12-21T11:50:27
2020-12-21T11:50:27
318,579,679
0
0
null
null
null
null
UTF-8
Racket
false
false
13,440
rkt
primitives.rkt
#lang racket (provide (all-defined-out)) ;;; Primitive procedures and syntax ;;; John David Stone ;;; Department of Computer Science ;;; Grinnell College ;;; Edit by Jacob van Lingen ;;; created August 17, 2011 ;;; last revised January 9, 2017 ;;; removed library creation (the define-library) at December 21, 2020 ;;; This library defines the primitive procedures and syntax extensions ;;; used in _Algorithms for functional programming_. ;; ===== div-and-mod ================================================== ;; integer, integer -> integer, natural ;; dividend divisor ;; The div-and-mod procedure performs a number-theoretic integer ;; division of its first argument by its second, returning a quotient ;; and remainder such that (a) the remainder is a natural number less ;; than or equal to the absolute value of the divisor, and (b) the ;; dividend is equal to the sum of the remainder and the product of the ;; quotient and the divisor. ;; Precondition: divisor is not zero. ;; (define (div-and-mod dividend divisor) ;; (let-values (((near-quot near-rem) (floor/ dividend divisor))) ;; (if (negative? near-rem) ;; (values (+ near-quot 1) (- near-rem divisor)) ;; (values near-quot near-rem)))) ;; NOTE: Disabled procedure because procedure does not work ;; ===== expt ========================================================= ;; number, integer -> number ;; base exponent ;; The expt procedure raises base to the power of exponent. ;; This version of the expt procedure requires the exponent to be an ;; integer, so that the result is always rational if the base is ;; rational. ;; Precondition: ;; Either base is not zero or exponent is not negative. ;; (define (expt base exponent) ;; (unless (integer? exponent) ;; (error "expt: non-integer exponent")) ;; (r7rs-expt base exponent)) ;; NOTE: Disabled procedure because default error exeption is even clearer ;; ===== delist ======================================================= ;; list(alpha) -> alpha ... ;; ls ;; The delist procedure returns the elements of ls. (define (delist ls) (apply values ls)) ;; ===== rec ========================================================== ;; The syntax extension with the keyword `rec' provides a simple, ;; readable expression syntax for recursively defined procedures. ;; I am indebted to Al Petrovsky for the definition of this syntax ;; extension. Mr. Petrovsky published this definition in the SRFI-31 ;; discussion list on August 8, 2002: ;; ;; http://srfi.schemers.org/srfi-31/mail-archive/msg00009.html ;; ;; and the author of SRFI 31, Mirko Luedde, incorporated it into the ;; final version (December 12, 2002): ;; ;; http://srfi.schemers.org/srfi-31/srfi-31.html ;; The rec syntax can be used either to bind a name only, in the form ;; ;; (rec <name> <expression>) ;; ;; or with a "formals list" that also binds the parameters of the ;; recursively defined procedure, as in a short-form procedure ;; definition: ;; ;; (rec (<name> <param> ...) <expression> ...) ;; (rec (<name> <param> ... . <rest-param>) <expression> ...) ;; ;; (The first of these forms is for recursive procedures of fixed arity, ;; the second for procedures of variable arity.) (define-syntax rec (syntax-rules () ((rec (name . variables) . body) (letrec ((name (lambda variables . body))) name)) ((rec name expression) (letrec ((name expression)) name)))) ;; ===== receive ====================================================== ;; The syntax extension with the keyword `receive' provides a concise ;; and readable syntax for binding identifiers to the values of a ;; multiple-valued expression. ;; The general form of a use of the receive macro is ;; ;; (receive <formals> <expression> <body>) ;; ;; <Formals>, <expression>, and <body> are as described in section 11.3 ;; and 11.4 of R6RS. Specifically, <formals> can have any of three ;; forms: ;; ;; * (<variable-1> ... <variable-n>): The environment in which the ;; receive-expression is evaluated is extended by binding ;; <variable-1>, ..., <variable-n> to fresh locations. The ;; <expression> is evaluated, and its values are stored into those ;; locations. It is an error if <expression> does not have exactly n ;; values. ;; ;; * <variable>: The environment in which the receive-expression is ;; evaluated is extended by binding <variable> to a fresh location. ;; The <expression> is evaluated, its values are converted into a ;; newly allocated list, and the list is stored in the location to ;; which <variable> is bound. ;; ;; * (<variable-1> ... <variable-n> . <variable-(n + 1)>): The ;; environment in which the receive-expression is evaluated is ;; extended by binding <variable-1>, ..., <variable-(n + 1)> to fresh ;; locations. The <expression> is evaluated. Its first n values are ;; stored into the locations bound to <variable-1>, ..., ;; <variable-n>. Any remaining values are converted into a newly ;; allocated list, which is stored into the location bound to ;; <variable-(n + 1)>. It is an error if <expression> does not have ;; at least n values. ;; ;; In any case, the expressions in <body> are evaluated sequentially in ;; the extended environment. The results of the last expression in the ;; body are the values of the receive-expression. (define-syntax receive (syntax-rules () ((receive formals expression body ...) (call-with-values (lambda () expression) (lambda formals body ...))))) ;; ===== sect ========================================================= ;; I am indebted to Al Petrovsky for the definition of the syntax ;; extension for procedure sections that I have used here, in slightly ;; adapted form. Mr. Petrovsky published this definition in the ;; SRFI-26 discussion list on June 4 and 5, 2002: ;; ;; http://srfi.schemers.org/srfi-26/mail-archive/msg00070.html ;; http://srfi.schemers.org/srfi-26/mail-archive/msg00072.html ;; ;; He contributed this code to the public domain: ;; ;; http://srfi.schemers.org/srfi-26/mail-archive/msg00077.html ;; The syntax extension with the keyword `sect' provides a concise ;; notation for "procedure sections," that is, specializations of a ;; multi-argument procedure formed by substituting fixed expressions ;; for some of its parameters and removing them from the parameter ;; list. ;; A sect-expression consists of the keyword sect and one or more ;; subexpressions, each of which can be either an ordinary Scheme ;; expression or the literal <> ("slot"). The value of the ;; sect-expression is a procedure with a parameter for each slot in the ;; sect-expression and a body consisting of the subexpressions of the ;; sect-expression, but with each slot replaced by the corresponding ;; parameter. ;; The last subexpression in a sect-expression can also be the literal ;; <...> ("rest-slot"). In this case, the value of the sect-expression ;; is a variable-arity procedure with a "rest" parameter. When and if ;; the procedure is called, the values of any residual arguments are ;; bundled as a list, which becomes the value of the rest parameter. ;; This construction was originally proposed (under the name `cut') in ;; Scheme Request for Implementation 26 ;; (http://srfi.schemers.org/srfi-26/srfi-26.html), which was finalized ;; and adopted on June 14, 2002. In that document, the designer of the ;; construction, Sebastian Egner, offered the following examples of its ;; use: ;; ;; (sect cons (+ a 1) <>) expands to ;; (lambda (x2) (cons (+ a 1) x2)) ;; ;; (sect list 1 <> 3 <> 5) expands to ;; (lambda (x2 x4) (list 1 x2 3 x4 5)) ;; ;; (sect list) expands to ;; (lambda () (list)) ;; ;; (sect list 1 <> 3 <...>) expands to ;; (lambda (x2 . xs) (apply list 1 x2 3 xs)) ;; ;; (sect <> a b) expands to ;; (lambda (f) (f a b)) ;; ;; Double every element of a given list: ;; (map (sect * 2 <>) '(1 2 3 4)) ;; ;; Destructively zero out selected positions in a vector: ;; (map (sect vector-set! x <> 0) indices) ;; ;; Write the values of several expressions to an output port: ;; (for-each (sect write <> port) exprs) ;; ;; List the least and greatest of certain values: ;; (map (sect <> x y z) (list min max)) ;; ;; Invoke a sequence of thunks: ;; (for-each (sect <>) thunks) ;; The internal-sect macro keeps track of the information needed at ;; intermediate stages of expansion of a sect-expression. The plan is ;; to process the subexpressions of the sect-expression one by one. ;; When a slot is encountered, a new parameter is generated and added ;; both the parameter list and to the body of the procedure that is ;; being constructed; a non-slot subexpression is simply transferred to ;; the body unchanged. ;; The general form of a use of this macro is ;; ;; (internal-sect slot-names combination . cs) ;; ;; Here slot-names is the list of parameters that have been generated ;; so far, combination is the part of the (single-expression) procedure ;; body that has been generated so far, and cs comprises the ;; subexpressions of the original sect-expression that have not yet ;; been processed. Initially, slot-names and combination are empty ;; lists, and all of the subexpressions of the original sect-expression ;; are stored in cs. ;; ;; Once all of the subexpressions of the original sect-expression have ;; been processed (except possibly for a trailing <...>), a ;; lambda-expression for the procedure is assembled, and it becomes the ;; result of the expansion. ;; ;; The identifier x is used for each parameter that corresponds to a ;; slot as it is encountered, but Scheme's hygienic macro system ;; ensures that different replacement identifiers are generated ;; automatically during expansion. (define-syntax internal-sect (syntax-rules (<> <...>) ;; The first two syntax rules construct fixed- and variable-arity ;; procedures, respectively, once all of the subexpressions of the ;; original sect-expression have been processed. ;; The unusual-looking form "(begin proc)" ensures that a ;; non-expression in operator position, such as "(sect quote <>)", ;; is reported as an error. ((internal-sect (slot-name ...) (proc arg ...)) (lambda (slot-name ...) ((begin proc) arg ...))) ((internal-sect (slot-name ...) (proc arg ...) <...>) (lambda (slot-name ... . rest-slot) (apply proc arg ... rest-slot))) ;; The third and fourth syntax rules process a single subexpression ;; of the original sect-expression. If the subexpression is a ;; slot, a parameter is generated and appended to the parameter ;; list and to the future procedure body: ((internal-sect (slot-name ...) (position ...) <> . cs) (internal-sect (slot-name ... x) (position ... x) . cs)) ;; If it is not a slot, it is just transferred to the procedure ;; body. ((internal-sect (slot-name ...) (position ...) const . cs) (internal-sect (slot-name ...) (position ... const) . cs)))) ;; A sect-expression expands into a use of internal-sect with ;; appropriate initial subexpressions. (define-syntax sect (syntax-rules () ((sect . consts-or-slots) (internal-sect () () . consts-or-slots)))) ;; ===== natural-number? ============================================== ;; any -> Boolean ;; something ;; The predicate natural-number? determines whether its argument is a ;; natural number -- in Scheme terminology, an exact non-negative ;; integer. (define (natural-number? something) (and (integer? something) (exact? something) (not (negative? something)))) ;; ===== null ========================================================= ;; null ;; null is the null value -- the unique value of the null data type. ;; In Scheme it also serves as the empty list. (define null '()) ;; ===== source ======================================================= ;; The source syntax expands into a lambda-expression with no arguments ;; and the body of the source-expression as its body. It is used to ;; produce sources, as described in the section "Sources" of ;; _Algorithms for functional programming. (define-syntax source (syntax-rules () ((_ body) (lambda () body))))
true
af528a197617860aebebae40624a230c66e36069
ff21054c103e3133a582571cc6b9dc9d16c4fbe7
/punctaffy-doc/scribblings/punctaffy/motivation.scrbl
80bc0d07ab7380203fce46acfe86c1c5f3f77e21
[ "Apache-2.0" ]
permissive
lathe/punctaffy-for-racket
3e87a48886bc5a9a0123187e5bfae7d550d7b215
2a958bf3987459e9197eb5963fe5107ea2e2e912
refs/heads/main
2022-03-18T21:37:28.626249
2022-03-11T11:44:37
2022-03-11T11:44:37
104,895,828
7
1
Apache-2.0
2022-02-17T04:51:25
2017-09-26T14:31:18
Racket
UTF-8
Racket
false
false
41,276
scrbl
motivation.scrbl
#lang parendown scribble/manual @; punctaffy/scribblings/punctaffy/motivation.scrbl @; @; Discussion of Punctaffy's high-level motivations. @; Copyright 2021 The Lathe Authors @; @; 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. @(require punctaffy/scribblings/private/shim) @(shim-require-various-for-label) @title[#:tag "motivation"]{Motivation for Punctaffy} @local-table-of-contents[] @section[#:tag "existing-use-cases"]{Hyperbracketed Notations Predating Punctaffy} @itemlist[ @item{Trivially, @tech{hyperbrackets} of low @tech{degree} are hyperbrackets too: If we find ourselves in a context where a program is usually just a "sequence of instructions," then a structured @tt{while} loop is a degree-1-@tech{hyperbracketed} operation. (An instruction by itself is a degree-0-hyperbracketed operation.) If we learn lessons about hygienic macro system design at higher degrees, there's a good chance they can be extrapolated downward to tell us something about s-expression macros (degree 1) and reader macros (degree 0).} @item{The @racket[quasiquote] or @tt{backquote} operation is probably the most widespread example. Moreover, string interpolation is even more widespread, and it's basically quasiquotation for text-based code.} @item{The "apply-to-all" notation @tt{α(f •xs)} from Connection Machine Lisp (CM-Lisp) applies the same operation @tt{(f _)} to every element of a xapping @tt{xs} (where a xapping is a certain type of multiple-element collection). Pages 280-281 of @hyperlink["https://web.archive.org/web/20060219230046/http://fresh.homeunix.net/~luke/misc/ConnectionMachineLisp.pdf"]{"Connection Machine Lisp" by Guy Steele} go into detail on the functionality and motivation of this operation.} @item{Shadow DOM is an HTML feature which allows templates to be defined and instantiated. A template can have slots in it, which can have default content specified inside (in case the slot isn't filled at the instantiation site). The template looks like @tt{<template>...<slot name="x">...</slot>...</template>}, where the @tt{...} inside the @tt{<slot>} element is the @tech{degree}-1 @tech{hypersnippet} of default content for the slot, the slot's @tt{name} attribute identifies the slot when overriding it at the instantiation site, and the rest of the template is the degree-2 hypersnippet of content that doesn't vary.} @item{In a @hyperlink["https://www.youtube.com/watch?v=dCuZkaaou0Q"]{2017 invited talk at Clojure/Conj}, Guy Steele talks about the inconsistency of computer science notation. At 53m03s, he goes into detail about a combination underline/overline notation he proposes as a way to bring more rigor to schematic formulas which iterate over vectors. He compares it to quasiquotation and the CM-Lisp @tt{α} notation.} ] None of these existing examples involves a @tech{hypersnippet} of @tech{degree} 3 or greater. So, aside from the trivial degree-0 and degree-1 examples, all the examples above have degree 2. @section[#:tag "potential-use-cases"]{Potential Application Areas} @subsection[#:tag "potential-use-case-hygiene"]{Potential Application: Hygiene} Hygienic macroexpansion usually generates code where certain variables are only in scope across some @tech{degree}-2 @tech{hypersnippet} of the code. For instance, Racket first colors all the input subforms of a macro call using a new scope tag, and then it inverts that color in the result so that the color winds up only occurring on the code the macro generates itself, not the code it merely passes through. Racket's strategy works, but it relies on the generation of unique tags and the creation of invisible annotations throughout the generated code. If we were to approach hygiene by using explicit hypersnippets instead, it might lead to more straightforward or less error-prone implementations of macro hygiene. If enough people find it convenient enough to do structural recursion over nested hypersnippets, then they may find this skill lets them easily keep a lid on the local details of each hypersnippet, just as traditional forms of structural recursion make it easy to keep the details of one branch of a tree data structure from interfering with unrelated branches. @; TODO: Consider using the following explanation somewhere. We once had it in the Punctaffy documentation's opening blurb. @;{ So how does this make any sense? We can think of the macro bodies as being @emph{more deeply nested}, despite the fact that the code they interpolate still appears in a nested position as far as the tree structure of the code is concerned. In this sense, the tree structure is not the full story of the nesting of the code. This is a matter of @emph{dimension}, and we can find an analogous situation one dimension down: The content between two parentheses is typically regarded as further into the traversal of the tree structure of the code, despite the fact that the content following the closing parenthesis is still further into the traversal of the code's text stream structure. The text stream is not the full story of how the code is meant to be traversed. } @subsection[#:tag "potential-use-case-incremental-compilation"]{Potential Application: Incremental Compilation} In a language like Racket where programmers can write arbitrarily complex custom syntaxes, compilation can be expensive. This can drag down the experience of editing code the DrRacket IDE, where features like jump-to-definition can depend on performing background expansion to process the user's custom syntaxes. If macros weren't tree-to-tree transformations, but instead consumed only some small part of the tree and generated a @tech{degree}-2 @tech{hypersnippet}, then a modification of one local part of a file could lead to a pinpoint re-expansion of the specific macro call that processed that part of the file, rather than a costly re-expansion of every macro call in the whole file. Incidentally, this would bring s-expression macro calls into a closer analogy with reader macro calls, which themselves consume some bounded part of the source text stream and generate an s-expression. @subsection[#:tag "potential-use-case-call-stacks"]{Potential Application: Abstraction-Respecting Call Stacks} When using higher-order functional programming techniques, the call stack can sometimes be cluttered with the implementation details of higher-order functions. For instance, if @racket[filter] were implemented in terms of @racket[append-map], then call stacks observed during the execution of the @racket[filter] predicate might look like: @code-block{ ... <filter-callback> <append-map-callback> append-map filter ... } But this may be too much information if someone's not trying to debug the @racket[filter] function itself. If @racket[filter] were implemented in a more direct way, the call stack would only show: @code-block{ ... <filter-callback> filter ... } If call stacks were @tech{hyperstacks}, then the @racket[filter] and @racket[append-map] calls could be @tech{degree}-2 hyperstack frames, essentially giving the call stack a nested structure: @code-block{ ... { { } append-map } filter ... } With tools built on this infrastructure, the user could view the stack in as much or as little detail as they'd like, using UI toggles or a verbosity-controlling stylesheet to collapse and expand sections of interest. @subsection[#:tag "potential-use-case-ellipsis-unsyntax"]{Potential Application: Interactions Between @racket[unsyntax] and Ellipses} In @secref["intro"], we talk about the relationship between @tech{hypersnippets} and Racket's @racket[syntax] DSL for syntax templates (or, more specifically, its @racket[datum] DSL for s-expression templates). The @racket[quasisyntax] form (abbreviated @tt{#@literal{`}}) introduces the quasiquotation-like ability to use @racket[unsyntax] and @racket[unsyntax-splicing] (abbreviated @tt{#,} and @tt{#,@"@"}) to interpolate arbitrary expression results into a template. There's a noticeable missed opportunity in the current design of the DSL, and it has to do with how these interpolated expressions interact with ellipses (@racket[...]). Usually, ellipses iterate the template they apply to, and template variables have an associated ellipsis depth that specifies how many dimensions of nested iteration they should undergo (usually because they were created by matching a @racket[syntax-parse] or @racket[syntax-case] template with the same number of nested ellipses). However, expressions interpolated with @racket[unsyntax] don't have any ellipsis depth information. Even if they contain another @racket[syntax] or @racket[quasisyntax] call inside, the variables in that second call can't interact with the ellipses in the first call. For insatnce, the following doesn't work, because @racket[_pat] and @racket[_val] only occur in the template @racket[#'(_pat _val)], not in the template that has the ellipsis: @RACKETBLOCK[ (define-syntax (match-let/derived _stx) (syntax-parse _stx [(_ _orig-stx ([_pat _val] ...) _body ...) (syntax-protect #`(let () #,(datum->syntax #f `(,#'match-define ,@#'(_pat _val)) #'_orig-stx) ... (let () _body ...)))])) ] (TODO: See if we can make this a better example. The idea here is that the macro defines something like a cross between @racket[match/derived] and @racket[match-let], and it manipulates the call to @racket[match-define] to insert the source location of the given term to help with accurate error-reporting. However, we haven't tested that this manipulation would actually improve the error-reporting this way, and using the actual @racket[match/derived] would likely be a better idea than trying to make @racket[match-define] work just right.) Incidentally, the @racket[syntax] DSL already has an experimental feature that caters to this situation: template metafunctions. A template metafunction can run arbitrary code during the iteration of a template: @racketblock[ (define-syntax (match-let/derived _stx) (syntax-parse _stx [(_ _orig-stx ([_pat _val] ...) _body ...) (define-template-metafunction (_reattributed-match-define _stx) (syntax-parse _stx [(_ _pat _val) (datum->syntax #f `(,#'match-define ,@#'(_pat _val)) #'_orig-stx)])) (syntax-protect #'(let () (_reattributed-match-define _pat _val) ... (let () _body ...)))])) ] However, using @racket[define-template-metafunction] substantially rearranges the code. That can be good in cases like this one, where the concept can be associated with a simple name and interface. On the other hand, @racket[unsyntax] comes in handy in situations where the code's navigability benefits from having some structural resemblance to the results it produces, or in situations where multiple DSLs have synergy together but haven't yet been fused into a single monolithic DSL. If for some reason we have a strong preference to arrange this code in the @racket[unsyntax] style, then what we really need here is for @racket[#'(_pat _val)] not to be a @emph{new} template but a @emph{resumption} of the original syntax. We need some kind of @tt{un-unsyntax}, perhaps abbreviated @tt{#,!}. Then we could replace @racket[#'(_pat _val)] with @tt{#,!}@racket[(_pat _val)] and be on our way. The concept of @tt{un-unsyntax} fits neatly into the hypersnippet concept we explore in Punctaffy. We can consider @racket[quasisyntax] to be opening a @tech{degree}-3 hypersnippet, @racket[unsyntax] to be opening a degree-2 @tech{hole} in that hypersnippet, and @tt{un-unsyntax} to be opening a degree-1 hole in that degree-2 hole. Punctaffy currently defines a @racket[taffy-quote-syntax] operation, but it corresponds to @racket[quote-syntax] rather than the @racket[syntax] template DSL. Suppose Punctaffy were to define a @tt{taffy-syntax} operation in that combined spirit, which used @seclink["baseline-notations"]{Punctaffy's baseline hyperbrackets} and had support for @racket[syntax] DSL features like ellipses. Using that operation, the above code could look like this: @racketblock[ (define-syntax (match-let/derived _stx) (syntax-parse _stx [(_ _orig-stx ([_pat _val] ...) _body ...) (syntax-protect (taffy-syntax (^<d 3 (let () (^>d 2 (list (datum->syntax #f `(,#'match-define ,@(^> (_pat _val))) #'_orig-stx))) ... (let () _body ...)))))])) ] This seems to be a rare example of where a degree-3 hypersnippet specifically would come in handy. Most of the things we say about hypersnippets of degree 3 aren't so specific; they would make just as much sense at degree 4, 5, etc. This example seems like an instance of a pattern, though: The basic principle of this example is that we want two different invocations of an embedded DSL to be part of the same "whole program" to allow some nonlocal interaction between them. The nonlocal interactions here aren't too exotic; they're basically lexically scoped variables, with ellipses acting as the binding sites. Other embedded DSLs with lexically scoped interactions, such as type inference and type-directed elaboration, may similarly benefit from degree-3 lexical structure. @; TODO: Consider writing another "Potential Application" section related to the @racket[syntax] DSL, with the focus being this: If we change the reader to read hyperbracketed code instead of s-expressions (and change @racket[syntax-protect], the sets-of-scopes hygiene model, and the syntax property @racket[cons]-collecting logic, and the quotation operators to go along with this change), then we won't have to worry about reporting errors for unbound hyperbracket notations. Currently with Punctaffy's baseline notations, if the programmer neglects to import a certain notation or shadows its binding, then it'll silently be treated as an identifier in the code rather than as a hyperbracket. This problem exists for Racket's @racket[quasiquote] and @racket[unquote] and @racket[quasisyntax] and @racket[unsyntax], too. @subsection[#:tag "potential-use-case-opetopes"]{Potential Application: Opetopes and Higher Categories} An opetope is a kind of geometric shape that arises in certain formulations of higher category theory. A category is like the collection of paths in a directed graph: Two paths (called morphisms) can match up end-to-end, and if they do, together they make a single path. Path-joining like this is associative; if we join some number of paths together this way, it doesn't matter which ones we join first. Higher category theory extends this to higher-dimensional shapes. If two paths share both their endpoints, we can think of a soap bubble where current flows across from one of them to the other, a path between paths (called a 2-cell). And given two of these, we can imagine a geometric solid where current flows from one of these faces to the other (called a 3-cell). We can study more subtle category-like systems this way: Instead of simply knowing whether two paths are equal or not, we can point to a 2-cell and say they're equivalent according to this specific equivalence that translates between them. This is appealing to many category theorists, because a lot of interesting category-theoretic results don't depend at all on whether paths have @emph{particular endpoints} (called objects), only that when joining paths, there's some equivalence-like way to join up one endpoint to another. Once we're looking at 2-cells, a lot of interesting results have nothing to do with what specific 1-cells/paths/morphisms they begin and end at. However, this kind of generalization also makes it quite a bit more difficult to formalize the meaning of a higher category. A number of different formalizations exist. What we've described just now is a @emph{globular} approach, where each cell of dimension (N + 1) begins at a cell of dimension N and ends at another cell of dimension N with the same endpoints. Perhaps we should instead take a @emph{cubical} approach, where the source and target don't necessarily have "the same" endpoints, just edges that are related by other cells. Then a 2-cell is shaped like a square, a 3-cell is a cube, and higher cells are hypercubes. Or perhaps we could take a @emph{simplicial} approach, where the higher cells that mediate compositions of two paths are triangles, the ones that mediate compositions of three paths are tetrahedra, and the ones that mediate compositions of more paths are higher-dimensional simplex polytopes. But one of the approaches is what we're here for, because it resembles Punctaffy's @tech{hypersnippets}: The @emph{opetopic} approach. @deftech{Opetopes} are another set of higher-dimensional shapes like hypercubes or simplexes. An @deftech{opetopic} cell of dimension (N + 1) has a target cell of dimension N and any number of source cells of dimension N that are in a composable arrangement. For instance, an opetopic 2-cell ends at a path, and it begins with any number of paths aligned end-to-end. This makes opetopic 2-cells just the right shape for saying "this arrangement of paths composes to make something that's related to this other path in this particular way." Opetopic 3-cells are good for the same thing, but they relate a composable arrangement of 2-cells (i.e. a tree) to a single 2-cell. Since these are many-input, single-output relations, a composition of 2-cells tends to look like a tree, and higher cells are composed along "higher-dimensional trees." The peculiar shape of opetopes lets us talk about composition at the same time as we talk about cells being related to each other. Instead of postulating ideas of composition and equivalence as separate ideas, we can define them both in terms of the existence of certain opetopic cells. If we're looking for a cell that acts as the composition of some composable arrangement of cells, all we need is for the arrangement to be the source of some equivalence-like cell; that way the target of that cell is the composition we're looking for (or equivalent to it, which is just as good). Once we have composition, we can also use cells like these to relate one arrangement to another, by first taking the composition of the target arrangement and making that the target cell of another opetope. In this fashion, we can build up a theory of weak higher categories by merely requiring that enough equivalence-like cells exist (and are actually equivalence-like in their relationships with each other). Now we can finally relate opetopes to hypersnippets, specifically @tech{hypertees}. At low dimensions, there's a striking resemblance: @tech{Degree}-2 hypertees are shaped like @racket[(^< (^> __) (^> __) (^> __) ...)] with some number of degree-1 @tech{holes} in sequence, which looks just like the way an opetopic 2-cell represents a composition of any number of paths. There's only one degree-0 hypertee, and only one degree-1 hypertee, and the same is true for dimension-0 and dimension-1 opetopes. At degree 3, the degree-2 holes of a hypertee can be arranged like a tree, and the source cells of a dimension-3 opetope are also arranged like a tree. However, there does seem to be a discrepancy. This is apparent when we look at algebraic data types that represent opetopes and hypersnippets. The slide deck @hyperlink["https://ncatlab.org/nlab/files/FinsterTypesAndOpetopes2012.pdf"]{"Type Theory and the Opetopes"} by Eric Finster gives a richly illustrated overview of opetopes as they're used in opetopic higher category theory and opetopic type theory. One slide mentions a type @tt{MTree} representing "possible ill-typed A-labeled pasting diagrams": @code-block{ data MTree (A : Set) : N → Set where obj : MTree A 0 drop : {n : N} → MTree ⊤ n → MTree A (n + 2) node : {n : N} → A → MTree (MTree A (n + 1)) n → MTree A (n + 1) } This corresponds to three mutually exclusive kinds of opetopes: @itemlist[ @item{An opetope can be the trivial dimension-0 opetope, which has no targets or sources.} @item{An dimension-(@emph{n} + 2) opetope's composable arrangement of dimension-(@emph{n} + 1) source cells can be a trivial arrangement of zero source cells. In that case, its dimension-(@emph{n} + 1) target cell is shaped like an identity element of dimension-(@emph{n} + 1) cell composition. That dimension-(@emph{n} + 1) target cell must have a single dimension-@emph{n} source cell of the same shape as its dimension-@emph{n} target cell. This kind of opetope is called a "drop" due to the teardrop-like way it can be illustrated: The zero source cells effectively pinch the two sides of the target cell together into a teardrop. There's one of these dimension-(@emph{n} + 2) opetopes for each of the dimension-@emph{n} opetopes (the endpoints that are pinched together).} @item{Finally, a dimension-(@emph{n} + 1) opetope's composable arrangement of source cells can consist of a nonzero number of cells. In this case, one of these dimension-@emph{n} source cells in the arrangement can be identified by its incidence with the the target cell's target cell (if dimension (@emph{n} + 1) is at least 2). The rest can be grouped into sub-arrangements of dimension (@emph{n} + 1), each of which targets one of the identified source cell's source cells. (If the dimension (@emph{n} + 1) is only 1, then there's precisely one dimension-@emph{n} source cell, which we can serendipitously talk about the same way since that source cell no source cells of its own for the sub-arrangements to target.)} ] In short, an opetope falls into one of three cases: Either it's the trivial dimension-0 opetope where sources aren't allowed at all, it has no sources, or it has at least one source. As for hypersnippets, an analogous data type definition for possible ill-typed A-labeled hypertees would look like this: @code-block{ data Hypertee (A : Set) : N → Set where zero : Hypertee A 0 hole : {m, n : N} → {m < n} → A → Hypertee (Hypertee A n) m → Hypertee A n } These cases correspond to @racket[hypertee-coil-zero] and @racket[hypertee-coil-hole], and we can describe them like this: @itemlist[ @item{A hypertee can be the trivial degree-0 hypertee, which has no holes.} @item{A degree-@emph{n} hypertee can have at least one hole. In that case, the first hole has some dimension @emph{m} such that (@emph{m} < @emph{n}). The rest of the hypertee's arrangement of holes can be grouped into sub-arrangements which correspond to other degree-@emph{n} hypertees.} ] Going from opetopes to hypertees, we notably lose the existence of "drop" opetopes, but the "at least one" case has become more lenient and admits more hypertees to take the place of what we lost. Specifically, the "at least one" case no longer limites us to incrementing the dimension by precisely 1. This gives us all the shapes we had before. The degree-2 hypertee @racket[(^<)] has zero degree-1 holes @racket[(^> __)], and in this way it is exactly the same shape as the "drop" dimension-2 opetope which has zero degree-1 source cells. However, we don't represent it by a zero-hole "drop" case; we represent it as having at least one hole: Its @emph{degree-0} hole. The degree-0 hole corresponds not to one of the dimension-2 opetope's dimension-1 source cells, but to its dimension-1 target cell's dimension-0 source cell. We can similarly encode any other "drop" opetope as a hypertee by encoding its target cell (which is not itself a "drop" opetope since it has one source cell) and then adjusting that encoding to have a degree 1 greater. In fact, we have some hypertees that don't correspond to any opetopes. For instance, the degree-2 hypertee @racket[(^< (^> __) (^> __))] corresponds to an opetope, but setting its degree to 3 gives us a degree-3 hypertee @racket[(^<d 3 (^> __) (^> __))] that has no such correspondence. This hypertee isn't a drop, because a drop's target must have exactly one source (of the same shape as its target, so that it can represent an identity element that unimposingly slots into compositions along that shape). On the other hand, if we turn our attention to the role of these shapes as conceptual notations for higher category theory, then in some sense it makes sense for @racket[(^<d 3 (^> __) (^> __))] to be a "drop." That's because, while the degree-2 target @racket[(^< (^> __) (^> __))] isn't syntactically identity-shaped the way @racket[(^< (^> __))] is, it's still @emph{semantically} identity-shaped: A higher category has an equivalence-like cell of this shape---namely, one of the 2-cells that relates two composable paths to the combined path they become. The story isn't as simple as saying that there are more hypertees than opetopes. The two approaches seem to have an affinity for different kinds of generalization: @itemlist[ @item{ Opetopes are typically defined by iterating a @emph{slice construction} taking one symmetric operad or symmetric multicategory to another. The "symmetric" part means there sources of an opetopic cell are an orderless collection. The Punctaffy authors don't yet (TODO) understand the reason for this. It seems the cells can be assigned an ordering by, for instance, iterating over each tree of a zoom complex in depth-first order according to the branch ordering we established in the previous tree, and numbering the circles as we first arrive at them to establish the branch ordering of the next tree. But we suppose the slice construction could potentially be applied to an operad or multicategory that isn't trivial enough for this to work. As long as most of the work on opetopic theories works with this kind of slice construction, its results will likely be transportable to those less trivial base operads/multicategories. (The paper @hyperlink["https://mat.uab.cat/~kock/cat/0706.1033v2.pdf"]{"Polynomial functors and opetopes"} by Joachim Kock, André Joyal, Michael Batanin, and Jean-François Mascari goes into detail on zoom complexes and might even contain information as to why the symmetric approach is necessary.) This kind of generality doesn't seem like a focus of hypersnippets. Hypersnippets are primarily motivated by giving structure to a text file, a context where the syntax does have an innate order that we can work with. In particular, the design of @tech{hyperbracket} notation and the @tech{hyperstacks} to parse it likely relies intrinsically on syntax having an ordering so that the brackets can be associated with their closest matches. } @item{ Since the definition of hypertees doesn't rely on adding 1 or 2 to a dimension number, hypertees can be generalized across any @tech{dimension system}. (Dimension systems seem to be semilattices.) We sometimes make use of this as an implementation technique, by constructing a modified dimension system that gives us the hypertees we need for our intermediate representations. Typically when we do this, we simply add a new greatest element to the dimension system, giving us "degree-infinity" hypersnippets to work with. With opetopes, by defining them via the iteration of a slice construction on a base operad/multicategory, it's generally possible to prove things about them by doing induction on the dimension of an opetope. (TODO: Is that right?) In Punctaffy, since hypersnippets are motivated by syntax, and since programs have syntax of finite size, we can count on each hypersnippet to have a finite number of holes. This already seems to be a way to keep our recursive constructions well-founded, so induction over the degree of a hypersnippet doesn't seem to be as necessary. } ] Still, hypertees and opetopes are two systems that seem to have a lot in common. This finally brings us to the potential applications: It's quite likely Punctaffy will be easier to explain if we borrow some of the graphical visualization techniques from the existing body of work on opetopes. Conversely, we suspect opetopic type theory in particular would benefit from hyperbrackets as a more intuitive notation for specifying opetopic shapes in textual code. If hypertees aren't quite the same as opetopes, then perhaps hypertees constitute yet another geometry for higher category theory, alongside shapes like hypercubes and simplexes. Perhaps this approach to higher category theory would be more appealing than the others in some ways, at least thanks to the ease of representing its higher-dimensional shapes in textual code if nothing else. If we pursue hypersnippet-shaped higher category theory, then Punctaffy's progress so far can give us some clues as to how that theory might be formulated. In particular, the @tech{snippet system} interface likely bears a strong resemblance to the interface of an internalized hypersnippet-based higher category, similar to the way the Haskell @tt{Category} type class can be seen as the interface of an internalized 1-category. @subsection[#:tag "potential-use-case-transpension"]{Potential Application: Type Theories with Transpension} The paper @hyperlink["https://arxiv.org/pdf/2008.08533.pdf"]{"Transpension: The Right Adjoint to the Pi-type"} by Andreas Nuyts and Dominique Devriese discusses several type theories that have operations that we might hope to connect with what Punctaffy is doing. Transpension appears to be making use of @tech{degree}-2 @tech{hypersnippets} in its syntax. Essentially (and if we understand correctly), a transpension operation declares a variable that represents some unknown coordinate along a new dimension. At some point in the scope of that dimension variable, another operation takes ownership of it, taking the original dimension variable and all the variables that depended on it since then out of scope, but replacing the latter with reusable functions that can be applied repeatedly to different coordinate values of the user's choice. From a Punctaffy perspective, the dimension variable's original scope is a degree-2 hypersnippet, and the operation that takes it out of scope (and converts other variables to functions) is located at one of the degree-1 closing @tech{hyperbrackets} of that hypersnippet. Curiously, the degree-2 hypersnippet also gets closed by degree-1 closing hyperbrackets at the @emph{type} level; we might say these type theories assign types to terms that have unmatched closing hyperbrackets. They also have lambdas that @emph{abstract over} terms that have unmatched closing hyperbrackets, so the journey of a closing hyperbracket through the codebase to find its match can potentially be rather circuitous. At any rate, these dimension variables have affine (use-at-most-once) types, which can sometimes seem odd in the context of a type theory where the rest of the variables are Cartesian (use-any-number-of-times). By relating transpension operators to hyperbrackets, we may give the affine typing situation some more clarity: A "closing bracket" can't match up with an "opening bracket" that's already been closed. And conversely, by relating the two, we may find techniques for understanding Punctaffy's hyperbrackets in terms of affine variables in a type theory rather than the other way around. This kind of insight may come in handy for studying the categorical semantics of a calculus that has @tech{hyperbracketed} operations, or even for implementing hyperbracket libraries like Punctaffy for typed languages. @subsection[#:tag "potential-use-case-custom-escape"]{Potential Application: User-Defined Escapes from Nestable Quotation} Pairs of @racket[quasiquote] and @racket[unquote] can be seamlessly nested within each other as long as they match up. The situation is less convenient for string literal syntaxes, which typically require nested occurrences to be escaped: @racketblock[ (displayln "(displayln \"(displayln \\\"Hello, world!\\\")\")") ] A rethought design for string syntaxes, using more distinctive string delimiters like @tt{"@"{"} and @tt{@"}""}, can give strings the ability to recognize nested occurrences of @tt{"@"{"} the way @racket[quasiquote] does: @code-block{ (displayln "{(displayln "{(displayln "{Hello, world!}")}")}") } However, string syntaxes also complicate matters in a way that doesn't come up as often with @racket[quasiquote]: String syntaxes have a wide variety of escape sequences. In fact, if we take a look at s-expression quotation DSLs other than @racket[quasiquote], this @emph{does} come up: For instance, @racket[syntax] templates have the @racket[...], @racket[~@], and @racket[~?] directives, and @racket[syntax-parse] patterns have a wide variety of directives like @racket[~seq] and @racket[~optional]. Users can even define their own operations like @racket[~seq] and @racket[~optional] by using @racket[prop:pattern-expander]. (And from a certain point of view, most languages are trivial "quotation DSLs" where nothing at all is quoted and every single term is an escape sequence.) When an escape sequence appears inside multiple layers of quotation, there's an ambiguity issue: Which layer of quotation does it escape from? Should a string escape sequence be processed right away as part of the first string literal, or should it become part of the generated code to be processed as part of the next one (or the one after that)? While this suggests some ambiguity in the user's intent, there's no corresponding wiggle room in the design. When we consider the point of recognizing nested occurrences in the first place, one design stands out: If we associate escape sequences specifically with the innermost quotation, we can successfully write a string literal the same way whether we're inside or outside another string literal. That ambiguity in the user's intent does exist, though. Sometimes the user may @emph{intend} to escape from an outer quotation. In that case, they can use a more elaborate notation to specify what layer they have in mind, such as writing @tt{\[LABEL]x20} instead of @tt{\x20}: @code-block{ (displayln "[OUTER]{(displayln "{Hello,\[OUTER]x20world!}")}") } One implication of this design is that when we process an escape sequence like @tt{\x20}, we might treat it in two different ways depending on context: If it's associated with the outermost stage of quotation, we fully process it, turning @tt{\x20} into a space character. If it's associated with some inner stage of quotation, we suppress it, treating @tt{\x20} as the four characters @tt{\ x 2 0}. Note that even when we suppress an escape sequence, we still need to @emph{recognize} it to know where it ends. That means in the implementation of even our simplest escape sequences, we'll need a couple of behaviors: @itemlist[ @item{Process an unbounded input to determine what prefix of it is the escape sequence's bounded input.} @item{Once we know the bounded input to determine what the interpretation of this escape sequence is (often just some escaped content, but sometimes a more sophisticated behavior like @racket[~optional]).} ] For string escape sequences, expressing the boundary is simple, and the bounded input is some substring of the string literal's code. For instance, in @racket["Hello,\x20world..."], the @tt{x} escape sequence might process the unbounded input @tt{20world...} and determine that its bounded input is @tt{20}. If the escape sequence is being suppressed, then we stop there and treat that bounded input as literal text. Otherwise, we invoke the @tt{x} escape sequence's second step to detemine what it represents (a space character). Either way, we then turn our attention to the rest of the input (@tt{world...}) and process the escape sequences we find there. Punctaffy's infrastructure starts to come in handy when we apply this design to s-expression escape sequences. There, the bounded input is a @tech{degree}-2 @tech{hypersnippet} of code. This quotation DSL design---specifically this particular way it leads to degree-2 hypersnippets---is actually the original motivating force behind Punctaffy. For a couple of other reasons, the infrastructure we need to complete a DSL like this is still not straightorward to build, even with Punctaffy's hypersnippets in our toolkit: @itemlist[ @item{If we just have @tech{hyperbracketed code}, how do we know which @tech{hyperbrackets} delimit @emph{quoted} sections of code that should suppress our escape sequences? After all, in the examples above, we wouldn't expect the parentheses around the @racket[(displayln _...)] call to be delimiting a quoted section of code, and the same is true of degree-2 hyperbrackets when they're used in the @racket[list-taffy-map] or @racket[taffy-let] operations. We might want to create a slightly more complex analogue of hyperbracketed code where instead of just having an interoperable notation for hyperbracketed lexical structure, we also have interoperable notations for quotation boundaries and escape sequences.} @item{ One of the techniques we mention above is to use @tt{\[LABEL]x20} as a way to specify which quotation stage the escape sequence @tt{\x20} should be processed in. What happens if we want to apply that kind of label to an @racket[unquote]? @RACKETBLOCK[ (let ([_place "world"]) (writeln (quasiquote #:label _OUTER (writeln ((UNSYNTAX @racket[quasiquote]) ("hello" (unquote #:to-label _OUTER _place))))))) ] If we do that, we might expect our labeled @racket[unquote] to skip over one @racket[quasiquote] to match a labeled @racket[quasiquote] beyond it, but isn't obvious how to denote that interaction in terms of hyperbrackets or how to manipulate that kind of structure in terms of hypersnippet-shaped data. One approach we might take to this is to use hypersnippets of almost impredicatively infinite degree, where we don't quite get to say we have a degree that's "less than itself," but every time we use an unnamed degree, it's something that's less than the unnamed degree we used before. We can likely simulate this if we use a custom @tech{dimension system} where instead of counting degrees up from zero using natural numbers, we count down from infinity using chains of symbolic names. We might say the outer @racket[quasiquote] is a quote-depth-increasing opening hyperbracket of degree @tt{/OUTER}, the inner @racket[quasiquote] is a quote-depth-increasing opening hyperbracket of degree @tt{/OUTER/GENSYM_ONE}, and the @racket[unquote] is a closing hyperbracket of degree @tt{/OUTER/GENSYM_TWO} --- not @tt{/OUTER/GENSYM_ONE/GENSYM_TWO}, because its explicit label specifies another parent to use. To see if one degree is less than another, we check that it's @emph{under the other's directory}. Since @tt{/OUTER/GENSYM_TWO} is under the @tt{/OUTER} directory, but not under the @tt{/OUTER/GENSYM_ONE} directory, the hyperbrackets match up just the way we want. Of course, we haven't put this plan into motion yet, so there may be lurking obstacles that we haven't uncovered. } ] Nestable quasiquotation with depth-labeled escape sequences seems to be a complex problem. While Punctaffy's notion of hyperbracketed code doesn't straightforwardly apply in all the ways we might hope for it to, the slightly more complex variations we've described seem viable, and Punctaffy's hyperbrackets are a milestone in those directions. Hypersnippet-shaped data does seem come in handy at least for representing the bounded input of an escape sequence. @; TODO: The above is very long-winded. The original plan to write this section had a much pithier description, which we might be able to pilfer from for an intro or summary paragraph: @; @; Consider writing a "Potential Application" section about one of the original (and ongoing) motivating goals of Punctaffy: The ability to have custom escape sequences in a quotation DSL that are suppressed if the quotation DSL appears inside itself. The "suppressed" behavior of a custom escape sequence conveys nothing but what part of the input is consumed, which is the same part that's consumed when it's not suppressed. When it's not suppressed, it additionally specifies what quoted content that input transforms into.
true
c8e33942b9515ad805143a901930273ea90ccd86
063934d4e0bf344a26d5679a22c1c9e5daa5b237
/racket/lexer.rkt
207d3c55e869251ecd0384ffa91d3b383e169fa6
[]
no_license
tnelson/Margrave
329b480da58f903722c8f7c439f5f8c60b853f5d
d25e8ac432243d9ecacdbd55f996d283da3655c9
refs/heads/master
2020-05-17T18:43:56.187171
2014-07-10T03:24:06
2014-07-10T03:24:06
749,146
5
2
null
null
null
null
UTF-8
Racket
false
false
10,536
rkt
lexer.rkt
; Copyright (c) 2009-2010 Brown University and Worcester Polytechnic Institute. ; ; This file is part of Margrave. ; Margrave 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. ; ; Margrave is distributed in the hope that it will be useful, ; but WITHOUT ANY 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 Margrave. If not, see <http://www.gnu.org/licenses/>. #lang racket (require parser-tools/lex (prefix-in : parser-tools/lex-sre) syntax/readerr) (provide lex terminals empty-terminals) ; ************************************************* ; define-empty-tokens defines the tokens that take no value ; define-tokens defines the tokens that can contain a value (define-empty-tokens empty-terminals ( ; delimiters, constant signifier ;DOT EMPTYQUOTES COLON ; logical connectives, parens, equality, etc. and fmla context control LET BE LSQBRACK RSQBRACK COMPARE AND OR NOT IMPLIES IFF LPAREN RPAREN EQUALS COMMA TRUE FALSE FORALL EXISTS ISA ; vector sugar GTHAN LTHAN DEFVEC ; command tokens SHOW ALL REALIZED UNREALIZED FOR CASES ISPOSSQ COUNT AT RESET ; optional parameters to some commands UNDER INCLUDE ; directives and options INFO SET GET WITH IN LOAD POLICY XACML SQS IOS TUPLING DEBUG CEILING QUIT MINIMIZE ; end of command SEMICOLON EOF )) ; Margrave identifiers are case-sensitive. We distinguish between ; e.g. sorts and predicates by capitalization (Sorts are capitalized, ; predicates are not). (define-tokens terminals ( ; all lowercase id <lowercase-id> ; capitalized id <capitalized-id> ; for constants. used to be <quoted-id> <constant-id> ; natural <natural> ; conf1: <comment>)) (define-lex-abbrevs [lex:letter (:or (:/ #\a #\z) (:/ #\A #\Z))] [lex:uppercase-letter (:/ #\A #\Z)] [lex:lowercase-letter (:/ #\a #\z)] [lex:digit (:/ #\0 #\9)] ; allow these in identifiers: [lex:allowed-non-alphanum (:or #\_ #\- #\. #\/)] [lex:whitespace (:or #\newline #\return #\tab #\space #\vtab)] [lex:nswhitespace (:or #\newline #\return #\tab #\vtab)] ; The last line of a file may be a comment. Greedy matching will match the entire line up to the end. [lex:comment (:or (:: #\/ #\/ (:* (char-complement (:or #\newline #\return)))) ; #lang margrave doesn't have arbitrary strings, etc. so this should be safe? ; (The Lexers documentation page suggested this use of any-string.) (:: "/*" (complement (:: any-string "*/" any-string)) "*/"))]) ; ************************************************* ; Lexer syntax-transformer that creates SRE syntax for case-insensitive string tokens ; Example (lex-ci "explore") becomes an SRE for the regexp [Ee][Xx] ... ; Used to allow keywords to be case insensitive without making the entire syntax case-insensitive. (define-lex-trans lex-ci (lambda (s) (define the-string-syntax (car (cdr (syntax->list s)))) (define the-string (syntax->datum the-string-syntax)) (define (make-both-case-or the-char) `(union ,(char-upcase the-char) ,(char-downcase the-char))) (define (make-case-insensitive-regexp-symbol str) `(:: ,@ (map make-both-case-or (string->list str)))) ; reconstruct using old syntax object's context, srcloc, prop, cert. (define result (datum->syntax the-string-syntax (make-case-insensitive-regexp-symbol the-string) the-string-syntax the-string-syntax the-string-syntax)) ; (printf "~a ~a~n" the-string-syntax result) result)) ; ************************************************* ; Produce a lexer function ; Assume the caller has downcased the input (define lex (lexer-src-pos ; Skip whitespace and comments [(:+ lex:whitespace) (return-without-pos (lex input-port))] ; Comment. Must appear before <identifier> rules or else something like ; //abc will be mis-tokenized. (Remember, priority is length and then order in the rule list.) ; (Leaving the above comment in even though it doesn't apply w/o //abc being a viable identifier - TN 4/11) [lex:comment (return-without-pos (lex input-port))] [(eof) (token-EOF)] [":" (token-COLON)] ; ["." (token-DOT)] [";" (token-SEMICOLON)] ["(" (token-LPAREN)] [")" (token-RPAREN)] ["=" (token-EQUALS)] ["," (token-COMMA)] ["<" (token-LTHAN)] [">" (token-GTHAN)] ["[" (token-LSQBRACK)] ["]" (token-RSQBRACK)] ; formulas [(lex-ci "let") (token-LET)] [(lex-ci "be") (token-BE)] [(lex-ci "true") (token-TRUE)] [(lex-ci "false") (token-FALSE)] [(lex-ci "and") (token-AND)] [(lex-ci "or") (token-OR)] [(lex-ci "not") (token-NOT)] [(lex-ci "implies") (token-IMPLIES)] [(lex-ci "iff") (token-IFF)] [(lex-ci "forall") (token-FORALL)] [(lex-ci "exists") (token-EXISTS)] [(lex-ci "isa") (token-ISA)] ; commands [(lex-ci "minimize") (token-MINIMIZE)] [(lex-ci "compare") (token-COMPARE)] [(lex-ci "realized") (token-REALIZED)] [(lex-ci "unrealized") (token-UNREALIZED)] [(lex-ci "for") (token-FOR)] [(lex-ci "cases") (token-CASES)] [(lex-ci "count") (token-COUNT)] [(lex-ci "show") (token-SHOW)] [(lex-ci "all") (token-ALL)] [(lex-ci "poss?") (token-ISPOSSQ)] [(lex-ci "reset") (token-RESET)] ; command args [(lex-ci "include") (token-INCLUDE)] [(lex-ci "under") (token-UNDER)] ; Directives ; Want to remove the # versions eventually. Including for backward compat. [(:or (lex-ci "#defvec") (lex-ci "defvec")) (token-DEFVEC)] [(:or (lex-ci "#set") (lex-ci "set")) (token-SET)] [(:or (lex-ci "#get") (lex-ci "get")) (token-GET)] [(:or (lex-ci "#info") (lex-ci "info")) (token-INFO)] [(:or (lex-ci "#quit") (lex-ci "quit")) (token-QUIT)] [(:or (lex-ci "#load") (lex-ci "load")) (token-LOAD)] ; directive options [(lex-ci "policy") (token-POLICY)] [(lex-ci "xacml") (token-XACML)] [(lex-ci "sqs") (token-SQS)] [(lex-ci "ios") (token-IOS)] [(lex-ci "with") (token-WITH)] [(lex-ci "in") (token-IN)] [(lex-ci "tupling") (token-TUPLING)] [(lex-ci "debug") (token-DEBUG)] [(lex-ci "ceiling") (token-CEILING)] [(:: #\" #\" ) (token-EMPTYQUOTES)] ; Natural nums [(:: lex:digit (:* lex:digit)) (token-<natural> (string->symbol lexeme))] ; lowercase-ids [(:: lex:lowercase-letter (:* (:or lex:letter lex:digit lex:allowed-non-alphanum))) (token-<lowercase-id> (string->symbol lexeme))] ; Capitalized ids [(:: lex:uppercase-letter (:* (:or lex:letter lex:digit lex:allowed-non-alphanum))) (token-<capitalized-id> (string->symbol lexeme))] ; Quoted ids (trim off the quote) ; or $ids (DO NOT TRIM) [(:: "'" (:+ (:or lex:letter lex:digit lex:allowed-non-alphanum))) (token-<constant-id> (string->symbol (substring lexeme 1)))] [(:: "$" (:+ (:or lex:letter lex:digit lex:allowed-non-alphanum))) (token-<constant-id> (string->symbol lexeme))] ; Identifiers enclosed in double quotes ; Can contain symbols. Used for filenames ; allow escaping the double-quote via \" ; Quoted only lowercase letters and digits? produce a lowercase id: [(:: #\" lex:lowercase-letter (:* (:or lex:letter lex:digit lex:allowed-non-alphanum)) #\") (token-<lowercase-id> (string->symbol (substring lexeme 1 (- (string-length lexeme) 1))))] ; for now, produce a capitalized id. (will never allow functions or variables or constants in quotes!) ; regexp is annoying. Racket requires an escape \, but so does regexp! ; so a backslash REGEXP is \\\\ in first arg below [(:: #\" (:+ (:or (:: #\\ #\") (char-complement (:or lex:nswhitespace #\")))) #\") (token-<capitalized-id> (string->symbol (regexp-replace* "\\\\\"" (substring lexeme 1 (- (string-length lexeme) 1)) "\"")))] ; Lexer error (parameter allows for syntax highlighting on the first character) [any-char (raise-read-error (format "Could not assign a lexical token starting at character: ~a.~n" lexeme) (object-name input-port) (position-line start-pos) (position-col start-pos) (position-offset start-pos) (- (position-offset end-pos) (position-offset start-pos)))] )) ; ************************************************* ; ************************************************* ; ************************************************* ; Tests ; Return a thunk that gives tokens from s (define (get-lexer-for s) (define in (open-input-string s)) (port-count-lines! in) (lambda () (lex in))) (define (pretty-position pos) (list (position-offset pos) (position-line pos) (position-col pos))) ; Prints out the tokens generated for a given input string (define (run-lexer-on s) (printf "Running lexer on string: ~a~n" s) (define lex-func (get-lexer-for s)) (define (inner-func) (define my-token (lex-func)) (printf "~a @ start: ~a, end: ~a. ~n~n" (position-token-token my-token) (pretty-position (position-token-start-pos my-token)) (pretty-position (position-token-end-pos my-token))) (unless (equal? 'EOF (position-token-token my-token)) (inner-func))) (inner-func)) ; (run-lexer-on "let myquery[x] be R(x) and Foo('CX); show all; 6") ; (run-lexer-on " \"*foo\\\" bar zot\" \"foo\"")
false
e8e16539f3ed0a8ffcac943fdc73b9c551cf44de
82c76c05fc8ca096f2744a7423d411561b25d9bd
/typed-racket-test/gui/succeed/require-typed-gui-class.rkt
b720117b84c67107e1e809b34b3987b983fe1e57
[ "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
287
rkt
require-typed-gui-class.rkt
#lang typed/racket/gui (require/typed racket/gui/base [editor-canvas% Editor-Canvas%] [canvas% Canvas%]) (define frame (new frame% [label "Example"])) (define canvas (new canvas% [parent frame])) (define editor-canvas (new editor-canvas% [parent frame]))
false
69846263a4bdc370d5e0065ef8982dee8e1c0da8
24338514b3f72c6e6994c953a3f3d840b060b441
/cur-test/cur/tests/stdlib/bool.rkt
82a17597f44b7c7307ff7c281889a81a71756f9e
[ "BSD-2-Clause" ]
permissive
graydon/cur
4efcaec7648e2bf6d077e9f41cd2b8ce72fa9047
246c8e06e245e6e09bbc471c84d69a9654ac2b0e
refs/heads/master
2020-04-24T20:49:55.940710
2018-10-03T23:06:33
2018-10-03T23:06:33
172,257,266
1
0
BSD-2-Clause
2019-02-23T19:53:23
2019-02-23T19:53:23
null
UTF-8
Racket
false
false
428
rkt
bool.rkt
#lang cur (require rackunit cur/stdlib/bool cur/stdlib/sugar) (check-equal? (not true) false) (check-equal? (not false) true) (check-equal? (and true false) false) (check-equal? (and false false) false) (check-equal? (and false true) false) (check-equal? (and true true) true) (check-equal? (or true false) true) (check-equal? (or false false) false) (check-equal? (or false true) true) (check-equal? (or true true) true)
false
3b29c5aec9437359b54ab0f0d4a8dc6ded3dfb9e
db6e317c7d9dc6ddfbe4cdb668c5e1536c24d78c
/tables.rkt
7035cb09d4be239007164dce2b34975a1642498c
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
jadudm/data-table
1c5dce16fafb953f0640418bc1c6716459193c14
331dcd445372435abcca64e4eb75c8d34a73fe5b
refs/heads/master
2023-03-15T13:16:43.644550
2019-03-12T05:15:10
2019-03-12T05:15:10
172,364,147
1
1
NOASSERTION
2023-05-13T06:41:26
2019-02-24T16:55:29
Racket
UTF-8
Racket
false
false
10,484
rkt
tables.rkt
#lang racket (provide (contract-out [create-table (case-> (-> (or/c symbol? string?) any/c) (-> (or/c symbol? string?) (cons/c (listof (or/c symbol? string?)) (listof any/c)) any/c))] [create-numeric-table (-> (or/c symbol? string?) (list/c (or/c symbol? string?)) any)] [create-series (-> (or/c symbol? string?) (-> any/c any) #:values list? series?)] [add-series! (-> data-table? series? data-table?)] [insert (case-> (-> data-table? series? list? any) (-> data-table? list? any) (-> data-table? series? any) (-> data-table? #:rest any/c any))] [rename-table (-> data-table? string? data-table?)] [get-series-by-name (-> data-table? string? series?)] [get-rows (-> data-table? vector?)] [get-column (-> data-table? string? vector?)] [get-series-names (-> data-table? (listof string?))] [table-count (-> data-table? number?)] [table-series-count (-> data-table? number?)] ) (rename-out [table-series-count table-column-count]) ) (require data/gvector "sanitizers.rkt" "types.rkt") ;; valid-table-name? : symbol string -> void | exn ;; PURPOSE ;; Throws an exception if someone tries to create a table ;; that has an invalid table name. The name must conform to ;; SQL semantics... so, we allow lowercase, uppercase, numbers, and the ;; underscore. And, also within those constraints, it must be a valid ;; Racket symbol (meaning it cannot start with a number). (define (valid-table-name? fun name) (unless (regexp-match "[a-zA-Z0-9_]" name) (error fun (string-append "Valid names for tables contain letters, numbers, and the underscore (the _ symbol). Nothing else.~n" "\tYou provided: ~a" name)))) ;; valid-field-name? : symbol string -> void | exn ;; PURPOSE ;; Like valid table name, above. (define (valid-field-name? fun name) (unless (regexp-match "[a-zA-Z0-9_]" name) (error fun (string-append "Valid column names for tables contain letters, numbers, and the underscore (the _ symbol). Nothing else.~n" "\tYou provided: ~a" name)))) ;; PURPOSE ;; Creates a table structure. Makes sure the name conforms ;; to SQL naming conventions, so that we can save to an SQLite file. (define create-table (match-lambda* ;; This is the no-data-case, where the user creates a table ;; with only a name. ;; (create-table "periodic_table") [(list (? string? name)) (define name-string (~a name)) (valid-table-name? 'create-table name-string) (data-table name-string (make-gvector))] ;; This matches the case where the programmer wants to ;; create a table with columns and data. It consumes a list ;; of lists, where the first list is a list of symbols or strings, ;; and the rest of the lists are data rows. All of them need to be ;; the same length. ;; ;; Matches ;; (create-table "a-table" '((a b c) (1 2 3) (4 5 6) ...)) [(list (? string? name) (list (list (? (λ (s) (or (symbol? s) (string? s))) s*) ...) (list data-row* ...) ...)) ;; Error checking (define name-string (~a name)) (valid-table-name? 'create-table name-string) (define leng-names (length s*)) (define leng-rows (map length data-row*)) ;; FIXME ;; It would be nice if this reported which row was not the right length. (unless (andmap (λ (l) (= leng-names l)) leng-rows) (error 'create-table "All of the rows are not of length ~a" leng-names)) ;; Proceeding onward... (define T (data-table name-string (make-gvector))) (for ([name s*] [ndx (range (length s*))]) (define data (map (λ (row) (list-ref row ndx)) data-row*)) (define S (create-series (~a name) (guess-sanitizer data) #:values data)) (add-series! T S)) T] )) ;; PURPOSE ;; Create a table that only contains numeric data. Saves having to specify everything. (define (create-numeric-table name fields) (define field-strings (map ~a fields)) (valid-table-name? 'create-numeric-table name) (for ([f field-strings]) (valid-field-name? 'create-numeric-table f)) (let ([T (create-table (format "~a" name))]) (for ([col (map (λ (f) (format "~a" f)) field-strings)]) (add-series! T (create-series col number-sanitizer))) T)) ;; CONTRACT ;; add-series : table series -> table ;; PURPOSE ;; This mutates the table given. It adds a new series by extending ;; the gvector that holds the serieses. Returns the table, but ;; it is not constructing a new table; it is returning the existing, ;; mutated table. (define (add-series! T S) (when (member (series-name S) (map series-name (gvector->list (data-table-serieses T)))) (error 'add-series "Series [ ~a ] already exists in table [ ~a ]~n" (series-name S) (data-table-name T))) (gvector-add! (data-table-serieses T) S) T) ;; CONTRACT ;; ->gvector : (or list vector) -> gvector ;; Takes a list-like thing, and returns a gvector (define (->gvector o) (cond [(list? o) (list->gvector o)] [(vector? o) (vector->gvector o)] [else (error '->gvector "Cannot convert ~a to a gvector." o)])) ;; CONTRACT ;; create-series : string λ #:values (list-of any) -> series ;; PURPOSE ;; Takes a list of values that conform to the contract of the ;; sanitizer passed in, and returns a series structure constructed ;; from those values. (define (create-series name sanitizer #:values [values empty]) (define sanitized (sanitizer values)) (define gv (->gvector sanitized)) (series name sanitizer gv)) ;; Insert value into a series in a table. (define insert (match-lambda* [(list (? data-table? T) (? series? S) (? list? v*)) (for ([v v*]) (insert T S v))] [(list (? data-table? T) (? series? S) v) (define the-series (get-series-by-name T (series-name S))) (define sanitized ((series-sanitizer the-series) (list v))) ;; (display sanitized) (newline) (for ([v sanitized]) (gvector-add! (series-values the-series) v))] ;; As a list [(list (? data-table? T) (? list? v*)) (apply insert (cons T v*))] ;; Insert values... must be same as number of serieses in the T [(list (? data-table? T) v* ...) (cond [(not (= (gvector-count (data-table-serieses T)) (length v*))) (error 'insert "Need to insert [ ~a ] values to match columns [ ~a ]~nYou tried to insert [ ~a ]" (gvector-count (data-table-serieses T)) (apply string-append (add-between (for/list ([s (data-table-serieses T)]) (series-name s)) ", ")) v* )] [else (for ([s (data-table-serieses T)] [v v*]) (insert T s v))] )] )) (define (rename-table T name) (data-table name (data-table-serieses T))) (define (table-count T) (gvector-count (series-values (gvector-ref (data-table-serieses T) 0)))) (define (table-series-count T) (gvector-count (data-table-serieses T))) (define (round-to-nearest v n) (* (add1 (modulo v n)) n )) (define (get-series-by-name T sname) (define (finder gv ndx) (cond [(>= ndx (gvector-count gv)) (error 'get-series-by-name "No series with name [ ~a ]" sname)] [(equal? (series-name (gvector-ref gv ndx)) sname) ;;(printf "Found:~n~a~n" (gvector-ref gv ndx)) (gvector-ref gv ndx)] [else (finder gv (add1 ndx))])) (finder (data-table-serieses T) 0)) (define (get-series-names T) (map series-name (gvector->list (data-table-serieses T)))) (define (get-rows T) (define lor empty) ;; This sets up the indicies to march down the vectors (for/vector ([n (gvector-count (series-values (gvector-ref (data-table-serieses T) 0)))]) ;; This is so I can go through each of the serieses (for/list ([s (data-table-serieses T)]) (gvector-ref (series-values s) n)))) (define (get-column T col) (define sbn (get-series-by-name T col)) ;; (printf "Requested ~a~nGot: ~a~n" col sbn) (gvector->vector (series-values sbn))) ;; ----------------------------------------------------------------- ;; ----------------------------- TESTS ----------------------------- ;; ----------------------------------------------------------------- (module+ test (require rackunit) (define (create-bacon-table) (define baconT (create-table "bacons")) (define stripsS (create-series "strips" integer-sanitizer #:values (map (λ (n) n) (range 5)))) (define streaksS (create-series "streaks" integer-sanitizer #:values (map (λ (n) n) (range 5 10)))) (add-series! (add-series! baconT stripsS) streaksS) ) (define baconT (create-bacon-table)) (define otherBaconT (create-table "bacons" '((strips streaks) (0 5) (1 6) (2 7) (3 8) (4 9)))) (define comparison-table (data-table "bacons" (gvector (series "strips" integer-sanitizer (gvector 0 1 2 3 4)) (series "streaks" integer-sanitizer (gvector 5 6 7 8 9)) ))) (check-equal? baconT comparison-table ) (check-equal? baconT otherBaconT) ;; This should fail; it adds a series that already exists. (check-exn exn:fail? (λ () (add-series! baconT (series "strips" integer-sanitizer (gvector 0 1 2 3 4))))) )
false
9ae9cc71b29358e934044991dc1297d1066f605f
b64657ac49fff6057c0fe9864e3f37c4b5bfd97e
/ch2/ex-22.rkt
d2dfb4691c63752b2a1be6e78f9b48a79a49a5fb
[]
no_license
johnvtan/sicp
af779e5bf245165bdfbfe6965e290cc419cd1d1f
8250bcc7ee4f4d551c7299643a370b44bc3f7b9d
refs/heads/master
2022-03-09T17:30:30.469397
2022-02-26T20:22:24
2022-02-26T20:22:24
223,498,855
0
0
null
null
null
null
UTF-8
Racket
false
false
1,052
rkt
ex-22.rkt
#!/usr/bin/racket #lang sicp (define (square x) (* x x)) (define (square-list items) ; This procedure returns the answers in reverse because answer starts out as nil, ; which is the end of the list. Then we cons the square of the first item to the list ; meaning that the square of the first item will be at the end of the list. ; Then on the next iteration, we cons the square of the second item to that list, ; meaning the square of the second item will be ahead of the square of the first item. (define (iter things answer) (if (null? things) answer ; Reversing the order here (i.e. calling (cons answer (square (car things)))) ; doesn't work because of the definition of a list, which ends with a '(). ; If we do the above, then after the first iteration, answer will look like ; '() . (square (car things)) ; which isn't a list, because '() needs to come at the end of the list. (iter (cdr things) (cons (square (car things)) answer)))) (iter items '())) (square-list '(1 2 3 4 5))
false
d1b2a93c86eac2ec734ca45592d0c656dabddb9b
f1dda554fd9bf0dc7de60c84d9c87edf0e416ef8
/HTDP/31.2.rkt
309ec98965a5bdccef706155cfdc8453cab4626c
[ "MIT" ]
permissive
shenxs/about-scheme
3381680b6b685dc19df20c0a253eb9fd7530d663
7260128257b5b99fd516116de0387df92e2027e2
refs/heads/master
2021-11-23T11:15:36.994915
2021-10-24T02:39:29
2021-10-24T02:39:29
40,663,316
20
1
null
null
null
null
UTF-8
Racket
false
false
1,554
rkt
31.2.rkt
#lang racket ; [Number -> Number] Number Number -> Number ; determines R such that f has a root in [R,(+ R TOLERANCE)] ; assume f is continuous ; assume (or (<= (f left) 0 (f right)) (<= (f right) 0 (f left))) ; generative divide interval in half, the root is in one of the two ; halves, pick according to assumption (define TOLERANCE 0.5) (define (find-root f left right) (cond [(<= (- right left) TOLERANCE) left] [else (local ((define mid (/ (+ left right) 2)) (define f@mid (f mid)) (define f@left (f left)) (define f@right (f right))) (cond [(or (<= f@left 0 f@mid) (<= f@mid 0 f@left)) (find-root f left mid)] [(or (<= f@mid 0 f@right) (<= f@right 0 f@mid)) (find-root f mid right)] [else (error "something wrong") ]))])) (define (ploy x) (* (- x 5) ( - x -1))) ;; (find-root ploy -1 14) ;Exercise 428 ;The function consumes a number n and a list of n2 numbers. ;It produces a list of n lists of n numbers (define (creat-matrix n l) (local( ;;从list l里面拿出n个元素 (define (take-from l n) (cond [(= 0 n) '()] [else (cons (first l) (take-from (rest l) (sub1 n)))])) (define (drop-from l n) (cond [(= 0 n) l] [else (drop-from (rest l) (sub1 n))]))) (cond [(>= (length l) n) (cons (take-from l n) (creat-matrix n (drop-from l n)))] [else '()]))) (creat-matrix 3 '(1 2 3 4 5 6 7 8 9))
false
2144ae1f0789ea1d811572ec8f7aa8f5b7cd1484
b84e4ca83a53723611dbb82d19defa35c3d9cdcf
/lib/typed-module-lang/print/print-type.rkt
b0225c72bfb22be5154d32e051c5b29b0c8b7025
[]
no_license
macrotypefunctors/typed-module-lang
2cafea34270f5aad6100ff42becd2a6a522c658a
cfe5145412d06eef54df7d37c919aa49fff151de
refs/heads/master
2021-01-25T09:55:18.718123
2018-05-04T20:44:48
2018-05-04T20:44:48
123,330,705
0
0
null
null
null
null
UTF-8
Racket
false
false
3,604
rkt
print-type.rkt
#lang racket/base (provide type->string sig->string) (require racket/match racket/pretty "../type.rkt" "../sig.rkt" "../env/combined-env.rkt" "../env/label-env.rkt") (module+ private (provide ->s-expr ->s-expr/recur)) ;; --------------------------------------------------------- (define (type->string env τ) (define ne (env-name-env env)) (define le (env-label-env env)) (pretty-format (->s-expr ne le τ) #:mode 'write)) (define (sig->string env τ) (define ne (env-name-env env)) (define le (env-label-env env)) (pretty-format (->s-expr ne le τ) #:mode 'write)) ;; --------------------------------------------------------- (struct unconvertable [v] #:transparent #:methods gen:custom-write [(define (write-proc self out mode) (write (unconvertable-v self) out))]) (struct *dot [m x] #:transparent #:methods gen:custom-write [(define (write-proc self out mode) (match-define (*dot m x) self) (fprintf out "~s.~s" m x))]) ;; --------------------------------------------------------- ;; A NameEnv is a [LabelEnvof Symbol] ;; maps identifiers to their *external*-ly seen names (define (->s-expr ne le τ) (->s-expr/recur ne le τ ->s-expr)) (define (->s-expr/recur ne le τ rec) (define (rc τ) (rec ne le τ)) (match τ ;; generic things, both types and module paths [(label-reference label) (label-env-lookup ne label (λ () label))] [(dot path (? symbol? x)) (*dot (rc path) x)] ;; types [(Int) 'Int] [(Bool) 'Bool] [(Arrow ins out) `(-> ,@(map rc ins) ,(rc out))] [(Forall Xs body) (define ne* (label-env-extend ne (map list Xs Xs))) (define le* (label-env-extend le (for/list ([X (in-list Xs)]) (list X (type-binding (type-opaque-decl)))))) `(∀ ,Xs ,(rec ne* le* body))] ;; signatures [(? sig? s) (define ne* (label-env-extend ne (for/list ([(k v) (in-hash s)]) (match-define (sig-component label _) v) (list label k)))) (define le* (label-env-extend le (for/list ([(k v) (in-hash s)]) (match-define (sig-component label ent) v) (list label (sig-entry->env-binding ent))))) `(sig ,@(for/list ([(k v) (in-hash s)]) (match-define (sig-component _ entry) v) (match entry [(constructor-decl τ) `(constructor ,k : ,(rec ne* le* τ))] [(data-decl ls) (define variants (for/list ([l (in-list ls)]) (define name (label-env-lookup ne* l)) (match (label-env-lookup le* l) [(constructor-binding (Arrow ins (label-reference _))) (cons name (for/list ([in (in-list ins)]) (rec ne* le* in)))]))) `(data ,k = ,@variants)] [(val-decl τ) `(val ,k : ,(rec ne* le* τ))] [(type-opaque-decl) `(type ,k)] [(type-alias-decl τ) `(type ,k = ,(rec ne* le* τ))] [(mod-decl sub) `(module ,k : ,(rec ne* le* sub))])))] [(pi-sig x A B) (define ne* (label-env-extend ne (list (list x x)))) (define le* (label-env-extend le (list (list x (mod-binding A))))) `(Π ([,x : ,(rc A)]) ,(rec ne* le* B))] ;; else [_ (unconvertable τ)]))
false
a38eecbbd13c156615d911bf9ba850821dcb6813
5cd661683aab8b6d0e0cc026c2ab352458647443
/pattern-unification.rkt
eef2f581830841ef0d6804ca260bfe63b8a9855b
[]
no_license
rntz/microtalespin
d7d5fd723b85457943571e799a534bb3b5b2dd04
8abbe6f092822ff3b2b11b70ebcdcc10812d7e51
refs/heads/master
2020-04-03T16:28:57.349995
2018-10-31T20:17:57
2018-10-31T20:17:57
155,406,289
0
0
null
null
null
null
UTF-8
Racket
false
false
3,050
rkt
pattern-unification.rkt
#lang racket ;; ===== PATTERN UNIFICATION ===== ;; Lines 1570-1663 in microtalespin.txt. This is actually *dead code* in ;; microtalespin.txt; it seems to be merely a simpler version of the ;; CD-unification that micro-Talespin actually uses. ;; ;; Sack's code uses association lists for substitutions. I use Racket hash ;; tables; they provide the interface I need and are probably more efficient. ;; Sack's code has a global flag that disables/enables the occurs check. I ;; always perform the check. ;; ;; WARNING: I have not tested this code. At all. ;; Pattern (or unification) variables. TODO: make (pvar 'x) display as "?x". (struct pvar (id) #:transparent) ;; Atoms are symbols, booleans, and numbers. ;; A ::= x | b | n (define atom? (or/c symbol? boolean? number?)) ;; Patterns P are pattern variables, atoms, or lists of patterns. ;; P ::= A -- atom ;; | ?x -- pattern variable ;; | (P ...) -- list of patterns (define pattern? (flat-rec-contract pattern? pvar? atom? (listof pattern?))) ;; A substitution is a finite map from pattern variables to patterns. (define subst? (hash/c symbol? pattern? #:immutable #t)) ;; Expands away all variables that have already unified with something. Like ;; Sack's replace-variables or instantiate. (AFAICT they do (almost?) the same ;; thing, and are both unused elsewhere in the file.) (define/contract (expand pat subst) (-> pattern? subst? pattern?) (match pat [(pvar x) #:when (hash-has-key? subst x) (expand (hash-ref subst x) subst)] [(cons x y) (cons (expand x subst) (expand y subst))] [_ pat])) ;; Does `x` occur in `pat` when `pat` is expanded under `subst`? (define/contract (occurs? x pat subst) (-> symbol? pattern? subst? boolean?) (match pat [(pvar y) (or (equal? x y) (occurs? x (hash-ref subst y #f)))] [(cons p1 p2) (or (occurs? x p1 subst) (occurs? x p2 subst))] [_ #f])) ;; Finds a substitution that makes two patterns equal, or fails. Patterns either ;; unify or don't; no backtracking is necessary. (define/contract (unify pat1 pat2 [subst (hash)]) (->* (pattern? pattern?) (subst?) (or/c #f subst?)) (match* (pat1 pat2) ;; Unifying a var with itself is a no-op. [((pvar x) (pvar x)) subst] [((pvar x) term) (unify-var x term subst)] [(term (pvar x)) (unify-var x term subst)] ;; Equal atoms unify. Otherwise, unification fails: an atom only unifies ;; with an equal atom or a pattern variable. [((? atom?) _) (and (equal? pat1 pat2) subst)] [(_ (? atom?)) #f] [((cons x xs) (cons y ys)) ;; Emulating the Maybe monad here. (define xy-subst (unify x y subst)) (and xy-subst (unify xs ys xy-subst))])) (define (unify-var x term subst) (cond ;; If x is already unified with something, follow through. [(hash-has-key? subst x) (unify (hash-ref subst x) term subst)] ;; Avoid unifying x with a term containing x. ("The occurs check.") [(occurs? x term subst) #f] ;; Otherwise, extend the substitution. [#t (hash-set subst x term)]))
false
f06b5ae4780136cf9a03866415a838be272a1d02
b5fb8ea9bff961ecf3e338a9892a8ed82e8110d8
/spells.rkt
b1efecaf1ebaff97113608aced759037410c9410
[ "Apache-2.0", "MIT" ]
permissive
srfoster/nomic
ef13b4400b2d564df125564135d5b328250fcc00
64063f759d4b5cedd0e84e37befc76431229dc0a
refs/heads/main
2023-04-05T01:28:36.352549
2021-04-14T13:47:58
2021-04-14T13:47:58
349,147,504
0
0
null
null
null
null
UTF-8
Racket
false
false
4,724
rkt
spells.rkt
#lang at-exp codespells (require nomic/lang taggable) (provide nexus sevarog parasite) ;;Possible additional parameters ; Mana cap / max mana ; Regen rate ; Starting mana ; Radius (define (nexus #:mana mana #:color [crystal-color 'pink]) (local-require (except-in hierarchy my-mod-lang) (except-in crystals my-mod-lang) (except-in magic-circles my-mod-lang)) (define (crystals color) (local-require (except-in crystals my-mod-lang)) (match color ['pink dark-crystal] ['green green-crystal] ['orange orange-crystal] ['blue blue-crystal])) (define thing-id (~a (player-name (game-current-player the-game)) ":Nexus:" (next-thing-id))) (set-the-game! (struct-copy game the-game [mana-constructs (cons (mana-construct thing-id "Nexus" mana (player-name (game-current-player the-game)) (list (on-beginning-of-turn (change-mana thing-id 25)))) (game-mana-constructs the-game))])) (with-tag thing-id (parentify (crystals crystal-color) (scale (xyz-vector 3 3 3) basic-circle)))) (define (sevarog #:mana mana) (local-require (except-in sevarog my-mod-lang) (except-in hierarchy my-mod-lang)) (only-if-enough-mana mana (thunk (define thing-id (~a (player-name (game-current-player the-game)) ":Sevarog:" (next-thing-id))) (set-the-game! (struct-copy game the-game [mana-constructs (cons (mana-construct thing-id "Sevarog" mana (player-name (game-current-player the-game)) (list)) (game-mana-constructs the-game))])) ; L/(1+e^-k*(x-x0)) ; k is steepness, L is maximum value and x0 is size at 0 ; THANKS KENZO! :) (define n (* 0.02 mana)) (with-tag thing-id (scale (xyz-vector n n n) (sevarog)))))) (define (parasite #:mana mana #:regen [regen 33] #:behavior [behavior (thunk (displayln "HOWDY"))]) (local-require (except-in hierarchy my-mod-lang) (except-in fire-particles my-mod-lang)) (define thing-id (~a (player-name (game-current-player the-game)) ":Parasite:" (next-thing-id))) (only-if-enough-mana mana (thunk (set-the-game! (struct-copy game the-game [mana-constructs (cons (mana-construct thing-id "Parasite" mana (player-name (game-current-player the-game)) (list (on-beginning-of-turn (do-all (change-mana thing-id regen) (change-mana-of-target thing-id (- regen)) behavior)))) (game-mana-constructs the-game))])) (with-tag thing-id @unreal-js{ (function(){ var child = @(at [0 0 0] (flames)) var parent = @(parentify ;(find-with-tag "Lindsey:Sevarog:1") (target-permanent) @unreal-js{child}) return child })()} ))))
false
575f66b14464f2af25efb7a5c8b8b56fa5650ff8
b996d458a2d96643176465220596c8b747e43b65
/how-to-code-complex-data/problem-bank/abstraction/abstract-some.rkt
8cf2a99e791fb8d25650fdb1bf87bbf4060bbf80
[ "MIT" ]
permissive
codingram/courses
99286fb9550e65c6047ebd3e95eea3b5816da2e0
9ed3362f78a226911b71969768ba80fb1be07dea
refs/heads/master
2023-03-21T18:46:43.393303
2021-03-17T13:51:52
2021-03-17T13:51:52
null
0
0
null
null
null
null
UTF-8
Racket
false
false
1,324
rkt
abstract-some.rkt
#lang htdp/isl ;; PROBLEM: ;; ;; Design an abstract function called some-pred? (including signature, purpose, ;; and tests) to simplify the following two functions. When you are done ;; rewrite the original functions to use your new some-pred? function. ;; ListOfNumber -> Boolean ;; produce true if some number in lon is positive (check-expect (some-positive? empty) false) (check-expect (some-positive? (list 2 -3 -4)) true) (check-expect (some-positive? (list -2 -3 -4)) false) (define (some-positive? lon) (some-pred? positive? lon)) ;; ListOfNumber -> Boolean ;; produce true if some number in lon is negative (check-expect (some-negative? empty) false) (check-expect (some-negative? (list 2 3 -4)) true) (check-expect (some-negative? (list 2 3 4)) false) (define (some-negative? lon) (some-pred? negative? lon)) ;; (X -> Boolean) (listof X) -> Boolean ;; Given a function 'func' and a list of elements 'lox', produce true if any of the element is true ;; for the given function, false otherwise (define (some-pred? func lox) (cond [(empty? lox) false] [else (or (func (first lox)) (some-pred? func (rest lox)))])) (check-expect (some-pred? positive? empty) false) (check-expect (some-pred? positive? '(2 3 -3)) true) (check-expect (some-pred? negative? '(2 3)) false)
false
eb4f7eddc31673705cf4a2fbd759532cd6ecab7e
099418d7d7ca2211dfbecd0b879d84c703d1b964
/whalesong/tests/older-tests/moby-programs/when-unless.rkt
526a6dbe2f02d230251aa06c8e2885822ffa4638
[]
no_license
vishesh/whalesong
f6edd848fc666993d68983618f9941dd298c1edd
507dad908d1f15bf8fe25dd98c2b47445df9cac5
refs/heads/master
2021-01-12T21:36:54.312489
2015-08-19T19:28:25
2015-08-19T20:34:55
34,933,778
3
0
null
2015-05-02T03:04:54
2015-05-02T03:04:54
null
UTF-8
Racket
false
false
217
rkt
when-unless.rkt
#lang s-exp "../../lang/base.ss" (printf "when-unless.rkt\n") (when (= (expt 2 100) 1267650600228229401496703205376) 'ok) (unless (not (= (expt 2 100) 1/1267650600228229401496703205376)) (error 'not-ok))
false
3b76adf0fa17716babd094c694c883016800eeed
d081ccc87078307aabb7ffc56ecc51e2e25d653d
/tests/lint/underscores-dont-shadow.rkt
000ede03a1ddf1dff1e3b59551ad416717d50c3d
[ "BSD-3-Clause" ]
permissive
Bogdanp/racket-review
75501945155a5f75a0684e60ae6934fb2617e655
bc7b614e3b6ab11a9f569d254aaba7f2d2074354
refs/heads/master
2023-08-21T20:16:54.808995
2023-07-28T18:28:24
2023-07-28T18:28:24
191,135,877
40
3
BSD-3-Clause
2022-08-08T08:10:11
2019-06-10T09:17:45
Racket
UTF-8
Racket
false
false
59
rkt
underscores-dont-shadow.rkt
#lang racket/base (define _ 1) (define (f _) 2) (f 3)
false
3075e3503d6a258c086edb47a32f95649e541e4b
0f0a984c3e85b8251a5a94c0efe2310c73141b39
/tcl-rosette.rkt
4a056f02da127e1f8056641d14a1ea46350e3136
[]
no_license
jcollard/rosette-playground
c82f7041a3ea080c90355b061d74af81b1c744b4
48afcaa321ad2fb609753766f1cae9fd8d029be5
refs/heads/master
2020-05-17T16:28:56.988136
2014-10-06T15:25:17
2014-10-06T15:25:17
null
0
0
null
null
null
null
UTF-8
Racket
false
false
3,627
rkt
tcl-rosette.rkt
#lang s-exp rosette (require rosette/query/debug rosette/lib/tools/render rosette/lib/meta/meta) (provide (all-defined-out) ! && || <=> define/debug #%datum #%app #%module-begin #%top-interaction quote (for-syntax #%datum)) (define-syntax-rule (define-circuit (id in ...) expr) (define (id in ...) expr)) (define-synthax (Circuit [op1 op2 ...] expr ... #:depth d) #:assert (>= d 0) ([choose op1 identity] [choose expr ... ([choose op2 ...] (Circuit [op1 op2 ...] expr ... #:depth (- d 1)) (Circuit [op1 op2 ...] expr ... #:depth (- d 1)))])) (define (verify-circuit impl spec) (define n (procedure-arity spec)) (for ([i (expt 2 n)]) (define bits (for/list ([j n]) (bitwise-bit-set? i j))) (unless (eq? (apply impl bits) (apply spec bits)) (error "verification failed on" bits)))) ;(define (! a) (if a #f #t)) ;(define (&& a b) (if a b #f)) ;(define (|| a b) (if a #t b)) ;(define (<=> a b) (if a b (! b))) (define-symbolic b0 b1 b2 b3 boolean?) (define (dynamic-choose) (define-symbolic* v boolean?) v) (define-circuit (xor x y) (! (<=> x y))) (define-circuit (RBC-parity a b c d) (xor (<=> a b) (<=> c d))) ;(define-circuit (AIG-parity a b c d) ; (&& ; (! (&& (! (&& (! (&& a b)) (&& (! a) (! b)))) ; (! (&& (&& (! c) (! d)) (! (&& c d)))))) ; (! (&& (&& (! (&& a b)) (! (&& (! a) (! b)))) ; (&& (! (&& (! c) (! d))) (! (&& c d))))))) ;(define/debug (AIG-parity a b c d) ; (&& ; (! (&& (! (&& (! (&& a b)) (&& (! a) (! b)))) ; (! (&& (&& (! c) (! d)) (! (&& c d)))))) ; (! (&& (&& (! (&& a b)) (! (&& (! a) (! b)))) ; (&& (! (&& (! c) (! d))) (! (&& c d))))))) ;(define core ; (debug [boolean?] ; (assert (eq? (AIG-parity #t #t #t #f) ; (RBC-parity #t #t #t #f))))) ;(define counterexample ; (verify (assert (eq? (RBC-parity b0 b1 b2 b3) ; (AIG-parity b0 b1 b2 b3))))) ;(define-circuit (AIG-parity a b c d) ; (&& ; (! (&& (! (&& (! (dynamic-choose)) (&& (! a) (! b)))) ; (! (&& (&& (! c) (! d)) (! (&& c d)))))) ; (! (&& (&& (! (&& a b)) (! (&& (! a) (! b)))) ; (&& (! (&& (! c) (! d))) (! (&& c d))))))); ;(solve (assert (eq? (AIG-parity #t #t #t #f) ; (RBC-parity #t #t #t #f)))) ; >> solve: no satisfying execution found ;(define-circuit (AIG-parity a b c d) ; (&& ; (dynamic-choose) ; (! (&& (&& (! (&& a b)) (! (&& (! a) (! b)))) ; (&& (! (&& (! c) (! d))) (! (&& c d))))))); #| (define-circuit (AIG-parity a b c d) (&& (dynamic-choose) (! (&& (&& (! (&& a b)) (! (&& (! a) (! b)))) (&& (! (&& (! c) (! d))) (! (&& c d))))))) (solve (begin (assert (eq? (AIG-parity #t #t #t #f) (RBC-parity #t #t #t #f))) (assert (eq? (AIG-parity #f #f #f #f) (RBC-parity #f #f #f #f))))) (model [ v . 0) #t] [ v . 1) #f]) |# (define-circuit (AIG-parity a b c d) (&& (Circuit [! &&] a b c d #:depth 3) (! (&& (&& (! (&& a b)) (! (&& (! a) (! b)))) (&& (! (&& (! c) (! d))) (! (&& c d))))))) #| (define model (synthesize #:forall (list b0 b1 b2 b3) #:guarantee (assert (eq? (AIG-parity b0 b1 b2 b3) (RBC-parity b0 b1 b2 b3))))) (generate-forms model) '(define-circuit (AIG-parity a b c d) (&& (! (&& (&& (! (&& (! a) b)) (! (&& (! c) d))) (&& (! (&& c (! d))) (! (&& a (! b)))))) (! (&& (&& (! (&& a b)) (! (&& (! a) (! b)))) (&& (! (&& (! c) (! d))) (! (&& c d))))))) |#
true
4dc28111cc7deb86ac29baa6b42d5dde67154bac
24338514b3f72c6e6994c953a3f3d840b060b441
/cur-test/cur/info.rkt
d0ff2ecdaf12c54e38cd7be4a29ab53bfcc40d32
[ "BSD-2-Clause" ]
permissive
graydon/cur
4efcaec7648e2bf6d077e9f41cd2b8ce72fa9047
246c8e06e245e6e09bbc471c84d69a9654ac2b0e
refs/heads/master
2020-04-24T20:49:55.940710
2018-10-03T23:06:33
2018-10-03T23:06:33
172,257,266
1
0
BSD-2-Clause
2019-02-23T19:53:23
2019-02-23T19:53:23
null
UTF-8
Racket
false
false
71
rkt
info.rkt
#lang info (define collection 'multi) (define compile-omit-paths 'all)
false
0510f2474be567df745de46b71ce37018629e1ac
9cc74e5d99deb5d07bc433e70b5b6005464459bc
/src/analyzer-pipeline-empty-block-head-string-check.rkt
2412e2b70181c192b4cb95a0b1ebd4b2bac88367
[ "BSD-3-Clause" ]
permissive
darrenldl/progschl
a8757f48f7cc77d1c22908dc82d560605809bae7
2fd711b5e0c311a29cf9ff46a580e05f0ef38708
refs/heads/master
2020-05-22T04:53:14.812356
2017-06-09T02:05:31
2017-06-09T02:05:31
84,671,267
0
0
null
null
null
null
UTF-8
Racket
false
false
3,259
rkt
analyzer-pipeline-empty-block-head-string-check.rkt
#lang racket (require "analyzer-utils.rkt" "analyzer-components.rkt" "parsed-utils.rkt") (provide empty-block-head-string-check) (define/contract (empty-block-head-string-check-single p msg) (-> parsed? string? (or/c #f analysis-error?)) (let* ([keyword-syn (hash-ref (parsed-attrs p) 'keyword)] [block-head-str (first (parsed-strings p))] [block-head-len (string-length block-head-str)]) (cond [(= block-head-len 0) (analysis-error (file-name) (syntax-line keyword-syn) (syntax-column keyword-syn) msg)] [else #f]))) (define/contract (empty-block-head-string-check lst) (-> list? (or/c list? (listof analysis-error?))) (define/contract (empty-block-head-string-check-helper lst [res null]) (->* (list?) (list?) (listof analysis-error?)) (match lst [(list) (reverse res)] [(list v vs ...) (cond [(parsed-with-token v 'INCLUDE '+YEAR '+MONTH '+WEEK '+DAY '+RECUR '~TASK '*REMARK) (let* ([msg (match (parsed-token v) ['INCLUDE "missing file name"] ['+YEAR "missing year"] ['+MONTH "missing month"] ['+WEEK "missing week"] ['+DAY "missing day"] ['+RECUR "missing recur parameter"] ['~TASK "missing task name"] ['*REMARK "missing remark name"])] [check-res (empty-block-head-string-check-single v msg)]) (cond [check-res (empty-block-head-string-check-helper vs (cons check-res res))] [else (empty-block-head-string-check-helper vs res)]))] [else (empty-block-head-string-check-helper vs res)])])) (let ([res (empty-block-head-string-check-helper lst)]) (cond [(empty? res) lst] [else res])))
false
833f8a49478ac2afe75a4f10a73db944fc6e7dee
359523f5cfd0856e5aef0300276c13ed3944ab32
/info.rkt
9aee57db81dcf44348296a94a20144577a46afd1
[ "MIT" ]
permissive
AlexKnauth/bitwise-exact-rational
8f70873c7d93a7ed232377bc9820fa647bbc257f
22b56c7faae2900b19a6d5dd42de036d42b324bb
refs/heads/main
2023-06-09T18:09:53.636020
2021-06-21T20:01:05
2021-06-21T20:01:05
379,049,957
5
0
null
null
null
null
UTF-8
Racket
false
false
481
rkt
info.rkt
#lang info ;; -------------------------------------------------------- ;; Package Info (define collection "bitwise-exact-rational") (define version "0.0") (define deps '("base" "exact-decimal-lang" "typed-racket-lib" "math-lib")) (define build-deps '("scribble-lib" "racket-doc" "typed-racket-doc" "rackunit-typed")) ;; -------------------------------------------------------- ;; Collection Info (define scribblings '(["scribblings/bitwise-exact-rational.scrbl" ()]))
false
d1670a26ca5888b6e411730b08a69dd29e64159d
9208cb48aebb722221e6a9635507a2f52e4b94bb
/relation-lib/private/util.rkt
8d2e85b9bf0a01142ca6faa361c25d44b15ed5f4
[]
no_license
countvajhula/relation
13fc90bfec071c98bfb782f8eefa51342293d63b
5022738f69387c5722318717db5c866c9839614e
refs/heads/master
2022-10-01T15:09:14.565556
2022-09-22T17:55:58
2022-09-22T17:55:58
222,787,178
4
1
null
2022-09-22T00:35:25
2019-11-19T20:50:21
Racket
UTF-8
Racket
false
false
1,881
rkt
util.rkt
#lang racket/base (require racket/list racket/match arguments syntax/parse/define version-case qi (for-syntax racket/base)) (provide define-alias check-pairwise exists for-all find kwhash->altlist join-list singleton? arguments-cons) (version-case [(version< (version) "7.9.0.22") (define-syntax define-syntax-parse-rule (make-rename-transformer #'define-simple-macro))]) (define-syntax-parse-rule (define-alias alias:id name:id) (define-syntax alias (make-rename-transformer #'name))) (define (check-pairwise check? vals) (if (empty? vals) #t (let ([v (first vals)] [vs (rest vals)]) (if (empty? vs) #t (and (check? v (first vs)) (check-pairwise check? vs)))))) (define (exists pred . seqs) (if (andmap empty? seqs) #f (or (apply pred (map first seqs)) (apply exists pred (map rest seqs))))) (define (for-all pred . seqs) (if (andmap empty? seqs) #t (and (apply pred (map first seqs)) (apply for-all pred (map rest seqs))))) (define (find pred lst) (match lst ['() #f] [(cons v vs) (or (and (pred v) v) (find pred vs))])) (define (kwhash->altlist v) (foldr (λ (a b) (list* (car a) (cdr a) b)) null (sort (hash->list v) (λ (a b) (keyword<? (car a) (car b)))))) (define (join-list lst) (apply append lst)) (define-flow (singleton? seq) ;; cheap check to see if a list is of length 1, ;; instead of traversing to compute the length (and (not empty?) (~> rest empty?))) (define (arguments-cons v args) (make-arguments (cons v (arguments-positional args)) (arguments-keyword args)))
true
ba9c4d3ed14f5547ecdf25c6ba2f6940f65a06f7
9128b9f75746608deafcc1bf0e7420322dde7c63
/linker.rkt
c2b0313f9442c901d9a92f543fd2d1a1b4ef54c8
[]
no_license
dbenoit17/adqc
a472055aa9f2cf40d8aa8ffe52b08903e44fe9d8
5e98a5c33a6f02b599f8ac5e4a003651c945eaac
refs/heads/master
2020-03-25T12:36:24.366643
2018-08-06T13:44:16
2018-08-06T13:44:16
null
0
0
null
null
null
null
UTF-8
Racket
false
false
1,880
rkt
linker.rkt
#lang racket/base (require racket/contract/base racket/file racket/match racket/port (except-in ffi/unsafe ->) "ast.rkt" "compile.rkt") (struct linked-program (lib type-map src-path) #:transparent) (define (ty->ctype ty) (match ty [(IntT signed? bits) (if signed? (match bits [8 _sint8] [16 _sint16] [32 _sint32] [64 _sint64]) (match bits [8 _uint8] [16 _uint16] [32 _uint32] [64 _uint64]))] [(FloT bits) (match bits [32 _float] [64 _double])])) (define (link-program p) (define c-path (make-temporary-file "adqc~a.c")) (define bin-path (make-temporary-file "adqc~a")) (unless (compile-library p c-path bin-path) (newline (current-error-port)) (display (port->string (open-input-file c-path)) (current-error-port)) (error 'link-program "call to compile-library failed (see stderr)")) (define lib (ffi-lib bin-path)) (match-define (Program _ _ name->fun) p) (define type-map (for/hash ([(name fun) (in-hash name->fun)]) (match-define (IntFun args _ ret-ty _ _) (unpack-MetaFun fun)) (define c-args (map ty->ctype (map Arg-ty args))) (define c-ret (ty->ctype ret-ty)) (values name (_cprocedure c-args c-ret)))) (linked-program lib type-map c-path)) (define (run-linked-program lp n args) (match-define (linked-program lib type-map _) lp) (define fun (get-ffi-obj n lib (hash-ref type-map n))) (apply fun args)) (provide (contract-out [struct linked-program ([lib ffi-lib?] [type-map (hash/c c-identifier-string? ctype?)] [src-path path?])] [link-program (-> Program? linked-program?)] [run-linked-program (-> linked-program? c-identifier-string? list? any/c)]))
false
62434f6cfc6ee3fa571b1d49d02d553501c93664
821e50b7be0fc55b51f48ea3a153ada94ba01680
/exp4/plot/texpict/private/mrpict-extra.rkt
6049e4f03f377e6995473efc754d08ba50b047e5
[]
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
22,390
rkt
mrpict-extra.rkt
#lang scheme/unit (require racket/class) (require "../../draw/draw-sig.rkt" racket/gui/dynamic) (require "mrpict-sig.rkt" "common-sig.rkt") (import draw^ texpict-common^ texpict-internal^) (export mrpict-extra^ texpict-common-setup^) (define show-pict (λ (p [w #f] [h #f] #:frame-style [frame-style '()] #:frame-x [frame-x #f] #:frame-y [frame-y #f]) (define the-pict p) (define pict-drawer (make-pict-drawer the-pict)) (define no-redraw? #f) (define pict-frame% (class (gui-dynamic-require 'frame%) (define/public (set-pict p) (set! the-pict p) (set! pict-drawer (make-pict-drawer the-pict)) (set! no-redraw? #t) (let ([pw (inexact->exact (floor (pict-width the-pict)))] [ph (inexact->exact (floor (pict-height the-pict)))]) (send c min-width (if w (max w pw) pw)) (send c min-height (if h (max h ph) ph))) (set! no-redraw? #f) (send c on-paint)) (super-instantiate ()))) (define pict-canvas% (class (gui-dynamic-require 'canvas%) (inherit get-dc) (define/override (on-paint) (unless no-redraw? (let ([dc (get-dc)]) (send dc clear) (let* ([pw (pict-width the-pict)] [ph (pict-height the-pict)] [xo (if (and w (pw . < . w)) (- (/ w 2) (/ pw 2)) 0)] [yo (if (and h (ph . < . h)) (- (/ h 2) (/ ph 2)) 0)]) (pict-drawer dc xo yo))))) (super-instantiate ()))) (define f (new pict-frame% [label "MrPict"] [style frame-style] [x frame-x] [y frame-y])) (define c (make-object pict-canvas% f)) (send (send c get-dc) set-smoothing 'aligned) (send f set-pict p) (send f show #t))) (define dc-for-text-size (make-parameter (make-object bitmap-dc% (make-bitmap 1 1)) (lambda (x) (unless (or (not x) (is-a? x dc<%>)) (raise-type-error 'dc-for-parameter "dc<%> object or #f" x)) x))) (define dc (case-lambda [(f w h a d) (make-pict `(prog ,f ,h) w h a d null #f #f)] [(f w h) (dc f w h h 0)])) (define prog-picture dc) (define current-expected-text-scale (make-parameter (list 1 1))) (define (with-text-scale dc thunk) (let ([x (current-expected-text-scale)]) (if (equal? x '(1 1)) (thunk) (let-values ([(xs ys) (send dc get-scale)]) (send dc set-scale (* xs (car x)) (* ys (cadr x))) (let-values ([(w h d s) (thunk)]) (send dc set-scale xs ys) (values w h d s)))))) (define (memq* a l) (if (pair? l) (or (eq? (car l) a) (memq* a (cdr l))) #f)) (define (extend-font font size style weight hinting) (if (send font get-face) (send the-font-list find-or-create-font size (send font get-face) (send font get-family) style weight #f 'default #t hinting) (send the-font-list find-or-create-font size (send font get-family) style weight #f 'default #t hinting))) (define text (case-lambda [(string) (text string '() 12)] [(string style) (text string style 12)] [(string style size) (text string style size 0)] [(str style size angle) (if (il-memq 'caps style) (begin (unless (zero? angle) (error 'text "the style cannot include 'caps with a non-zero angle")) (caps-text str (il-remq 'caps style) size)) (not-caps-text str style size angle))])) (define families '(default decorative roman script swiss modern symbol system)) (define (il-memq sym s) (and (pair? s) (or (eq? sym (car s)) (il-memq sym (cdr s))))) (define (il-remq sym s) (if (pair? s) (if (eq? sym (car s)) (cdr s) (cons (car s) (il-remq sym (cdr s)))) s)) (define (not-caps-text string orig-style size angle) (let ([font (let loop ([style orig-style]) (cond [(null? style) (send the-font-list find-or-create-font size 'default 'normal 'normal #f 'default #t 'unaligned)] [(is-a? style font%) style] [(memq style families) (send the-font-list find-or-create-font size style 'normal 'normal #f 'default #t 'unaligned)] [(string? style) (send the-font-list find-or-create-font size style 'default 'normal 'normal #f 'default #t 'unaligned)] [(and (pair? style) (string? (car style)) (memq (cdr style) families)) (send the-font-list find-or-create-font size (car style) (cdr style) 'normal 'normal #f 'default #t 'unaligned)] [(and (pair? style) (memq (car style) '(superscript subscript bold italic aligned unaligned))) (let ([font (loop (cdr style))] [style (car style)]) (cond [(eq? style 'bold) (extend-font font (send font get-point-size) (send font get-style) 'bold (send font get-hinting))] [(eq? style 'italic) (extend-font font (send font get-point-size) 'italic (send font get-weight) (send font get-hinting))] [(or (eq? style 'aligned) (eq? style 'unaligned)) (extend-font font (send font get-point-size) (send font get-style) (send font get-weight) style)] [else font]))] [(and (pair? style) (memq (car style) '(combine no-combine))) (loop (cdr style))] [(and (pair? style) (is-a? (car style) color%)) (loop (cdr style))] [else (raise-type-error 'text "style" orig-style)]))] [combine? (let loop ([style orig-style]) (cond [(eq? style 'modern) #f] [(not (pair? style)) #t] [(eq? (car style) 'combine) #t] [(eq? (car style) 'no-combine) #f] [else (loop (cdr style))]))] [sub? (memq* 'subscript orig-style)] [sup? (memq* 'superscript orig-style)] [add-color (let loop ([style orig-style]) (cond [(not (pair? style)) values] [(is-a? (car style) color%) (define c (car style)) (lambda (p) (colorize p c))] [else (loop (cdr style))]))]) (let ([s-font (if (or sub? sup?) (extend-font font (floor (* 6/10 (send font get-point-size))) (send font get-style) (send font get-weight) (send font get-hinting)) font)] [dc (dc-for-text-size)]) (unless dc (error 'text "no dc<%> object installed for sizing")) (let-values ([(w h d s) (with-text-scale dc (lambda () (send dc get-text-extent string s-font combine?)))]) (add-color (if (or sub? sup?) (let-values ([(ww wh wd ws) (with-text-scale dc (lambda () (send dc get-text-extent "Wy" font)))]) (prog-picture (lambda (dc x y) (let ([f (send dc get-font)]) (send dc set-font s-font) (send dc draw-text string x (if sub? (+ y (- wh h)) y) combine?) (send dc set-font f))) w wh (- wh wd) wd)) (if (zero? angle) ;; Normal case: no rotation (prog-picture (lambda (dc x y) (let ([f (send dc get-font)]) (send dc set-font font) (send dc draw-text string x y combine?) (send dc set-font f))) w h (- h d) d) ;; Rotation case. Need to find the bounding box. ;; Calculate the four corners, relative to top left as origin: (let* ([tlx 0] [tly 0] [ca (cos angle)] [sa (sin angle)] [trx (* w ca)] [try (- (* w sa))] [brx (+ trx (* h sa))] [bry (- try (* h ca))] [blx (* h sa)] [bly (- (* h ca))] ;;min-x and min-y must be non-positive, ;; since tlx and tly are always 0 [min-x (min tlx trx blx brx)] [min-y (min tly try bly bry)]) (let ([pw (- (max tlx trx blx brx) min-x)] [ph (- (max tly try bly bry) min-y)] [dx (cond [(and (positive? ca) (positive? sa)) 0] [(positive? ca) (- (* h sa))] [(positive? sa) (- (* w ca))] [else (+ (- (* w ca)) (- (* h sa)))])] [dy (cond [(and (positive? ca) (negative? sa)) 0] [(positive? ca) (* w sa)] [(negative? sa) (- (* h ca))] [else (+ (- (* h ca)) (* w sa))])]) (prog-picture (lambda (dc x y) (let ([f (send dc get-font)]) (send dc set-font font) (send dc draw-text string (+ x dx) (+ y dy) combine? 0 angle) (send dc set-font f))) pw ph ph 0)))))))))) (define caps-text (case-lambda [(string) (caps-text string '() 12)] [(string style) (caps-text string style 12)] [(string style size) (let ([strings (let loop ([l (string->list string)] [this null] [results null] [up? #f]) (if (null? l) (reverse (cons (reverse this) results)) (if (eq? up? (char-upper-case? (car l))) (loop (cdr l) (cons (car l) this) results up?) (loop (cdr l) (list (car l)) (cons (reverse this) results) (not up?)))))] [cap-style (let loop ([s style]) (cond [(pair? s) (cons (car s) (loop (cdr s)))] [(is-a? s font%) (send the-font-list find-or-create-font (floor (* 8/10 (send s get-point-size))) (send s get-family) (send s get-style) (send s get-weight) (send s get-underlined?) (send s get-smoothing) (send s get-size-in-pixels?))] [else s]))] [cap-size (floor (* 8/10 size))]) (let ([picts (let loop ([l strings] [up? #f]) (if (null? l) null (let* ([first-string (list->string (map char-upcase (car l)))] [first (not-caps-text first-string (if up? style cap-style) (if up? size cap-size) 0)] [rest (loop (cdr l) (not up?))]) (if (and up? (pair? (cdr l))) ;; kern capital followed by non-captial (let ([plain-first (not-caps-text first-string cap-style cap-size 0)] [together (not-caps-text (string-append first-string (list->string (map char-upcase (cadr l)))) cap-style cap-size 0)]) (cons (hbl-append (- (pict-width together) (+ (pict-width plain-first) (pict-width (car rest)))) first (car rest)) (cdr rest))) ;; no kerning needed: (cons first rest)))))]) (apply hbl-append 0 picts)))])) (define (linewidth n p) (line-thickness n p)) (define (linestyle n p) (unless (memq n '(transparent solid xor hilite dot long-dash short-dash dot-dash xor-dot xor-long-dash xor-short-dash xor-dot-dash)) (raise-type-error 'linestyle "style symbol" n)) (line-style n p)) (define connect (case-lambda [(x1 y1 x2 y2) (connect x1 y1 x2 y2 #f)] [(x1 y1 x2 y2 arrow?) (~connect 'r +inf.0 x1 y1 x2 y2 arrow?)])) (define ~connect (case-lambda [(exact close-enough x1 y1 x2 y2) (~connect exact close-enough x1 y1 x2 y2 #f)] [(exact close-enough x1 y1 x2 y2 arrow?) `((put ,x1 ,y1 (,(if arrow? 'vector 'line) ,(- x2 x1) ,(- y2 y1) #f)))])) (define (render dc h+top l dx dy) (define b&w? #f) (with-method ([draw-line (dc draw-line)] [draw-spline (dc draw-spline)] [draw-ellipse (dc draw-ellipse)] [get-pen (dc get-pen)] [get-brush (dc get-brush)] [get-text-foreground (dc get-text-foreground)] [set-pen (dc set-pen)] [set-brush (dc set-brush)] [set-text-foreground (dc set-text-foreground)] [find-or-create-pen (the-pen-list find-or-create-pen)] [find-or-create-brush (the-brush-list find-or-create-brush)]) (let loop ([dx dx][dy dy][l l]) (unless (null? l) (let ([x (car l)]) (if (string? x) (error 'draw-pict "how did a string get here?: ~s" x) (case (car x) [(offset) (loop (+ dx (cadr x)) (+ dy (caddr x)) (cadddr x))] [(line vector) (let ([xs (cadr x)] [ys (caddr x)] [len (cadddr x)]) (let ([mx (if len (abs (if (zero? xs) ys xs)) 1)] [len (or len 1)]) (draw-line dx (- h+top dy) (+ dx (* (/ xs mx) len)) (- h+top (+ dy (* (/ ys mx) len))))))] [(circle circle*) (let ([size (cadr x)]) (draw-ellipse (- dx (/ size 2)) (- h+top dy (/ size 2)) size size))] [(oval) (let ([b (get-brush)] [rx (- dx (/ (cadr x) 2))] [ry (- h+top dy (/ (caddr x) 2))]) (set-brush (find-or-create-brush "BLACK" 'transparent)) (let ([part (cadddr x)] [cr (send dc get-clipping-region)] [set-rect (lambda (l t r b) (let ([cr (make-object region% dc)]) (send cr set-rectangle (+ rx (* l (cadr x))) (+ ry (* t (caddr x))) (* (- r l) (cadr x)) (* (- b t) (caddr x))) cr))]) (send dc set-clipping-region (cond [(string=? part "[l]") (set-rect 0 0 0.5 1.0)] [(string=? part "[tl]") (set-rect 0 0 0.5 0.5)] [(string=? part "[tr]") (set-rect 0.5 0 1.0 0.5)] [(string=? part "[r]") (set-rect 0.5 0 1.0 1.0)] [(string=? part "[bl]") (set-rect 0 0.5 0.5 1.0)] [(string=? part "[br]") (set-rect 0.5 0.5 1.0 1.0)] [else cr])) (send dc draw-rounded-rectangle rx ry (cadr x) (caddr x) (if (string=? part "") -0.2 -0.5)) (send dc set-clipping-region cr) (set-brush b)))] [(bezier) (draw-spline (+ dx (list-ref x 1)) (- h+top (+ dy (list-ref x 2))) (+ dx (list-ref x 3)) (- h+top (+ dy (list-ref x 4))) (+ dx (list-ref x 5)) (- h+top (+ dy (list-ref x 6))))] [(with-color) (if b&w? (loop dx dy (caddr x)) (let ([p (get-pen)] [b (get-brush)] [fg (get-text-foreground)]) (let* ([requested-color (cond [(is-a? (cadr x) color%) (cadr x)] [(string? (cadr x)) (send the-color-database find-color (cadr x))] [(list? (cadr x)) (apply make-object color% (cadr x))])] [color (or requested-color (send the-color-database find-color "BLACK"))]) (unless requested-color (eprintf "WARNING: couldn't find color: ~s\n" (cadr x))) (set-pen (find-or-create-pen color (send p get-width) (send p get-style))) (set-brush (find-or-create-brush color 'solid)) (set-text-foreground color)) (loop dx dy (caddr x)) (set-pen p) (set-brush b) (set-text-foreground fg)))] [(with-thickness) (let ([p (get-pen)]) (set-pen (find-or-create-pen (send p get-color) (if (number? (cadr x)) (cadr x) (case (cadr x) [(thicklines) 1] [(thinlines) 0] [else (send p get-width)])) (if (number? (cadr x)) (send p get-style) (case (cadr x) [(#f) 'transparent] [(thicklines thinlines) (send p get-style)] [else (cadr x)])))) (loop dx dy (caddr x)) (set-pen p))] [(prog) ((cadr x) dc dx (- h+top dy (caddr x)))] [else (error 'render "unknown command: ~a\n" x)]))) (loop dx dy (cdr l)))))) (define (make-pict-drawer p) (let ([cmds (pict->command-list p)]) (lambda (dc dx dy) (render dc (+ (pict-height p) dy) cmds dx 0)))) (define (draw-pict p dc dx dy) ((make-pict-drawer p) dc dx dy)) (define (convert-pict p format default) (if (eq? format 'pdf-bytes+bounds) (let ([xscale (box 1.0)] [yscale (box 1.0)]) (send (current-ps-setup) get-scaling xscale yscale) (list (convert-pict/bytes p 'pdf-bytes default) (* (unbox xscale) (pict-width p)) (* (unbox yscale) (pict-height p)) (* (unbox yscale) (pict-descent p)) 0)) (convert-pict/bytes p format default))) (define (convert-pict/bytes p format default) (case format [(png-bytes) (let* ([bm (make-bitmap (max 1 (inexact->exact (ceiling (pict-width p)))) (max 1 (inexact->exact (ceiling (pict-height p)))))] [dc (make-object bitmap-dc% bm)]) (send dc set-smoothing 'aligned) (draw-pict p dc 0 0) (send dc set-bitmap #f) (let ([s (open-output-bytes)]) (send bm save-file s 'png) (get-output-bytes s)))] [(eps-bytes pdf-bytes) (let ([s (open-output-bytes)] [xs (box 1)] [ys (box 1)]) (send (current-ps-setup) get-scaling xs ys) (let ([dc (new (if (eq? format 'eps-bytes) post-script-dc% pdf-dc%) [interactive #f] [as-eps #t] [width (* (pict-width p) (unbox xs))] [height (* (pict-height p) (unbox ys))] [output s])]) (send dc set-smoothing 'smoothed) (send dc start-doc "pict") (send dc start-page) (draw-pict p dc 0 0) (send dc end-page) (send dc end-doc)) (get-output-bytes s))] [else default]))
false
136b095e0e773588b09827a6e3fb543fee8845b1
01ed4efac0c29caeb9388c0c5c1e069da7c1eebf
/bindings/libczmq/zconfig.rkt
59feb0f7d8142c9e882a9b5afaeb9aea6294b629
[ "Apache-2.0" ]
permissive
karinies/coast
2124d69d467130b7efb03351fbcc974f9a9f4646
b520003d9c4ebb2775db2f07688e58bbd3199195
refs/heads/master
2020-04-01T23:02:24.547845
2017-05-26T21:43:27
2017-05-26T21:43:27
33,692,208
8
0
null
null
null
null
UTF-8
Racket
false
false
4,882
rkt
zconfig.rkt
#lang racket/base (require ffi/unsafe racket/format "libczmq.rkt" "zlist.rkt") (provide zconfig/new zconfig/duplicate zconfig/destroy zconfig/name zconfig/value zconfig/put zconfig/name/set zconfig/value/set zconfig/child zconfig/next zconfig/locate zconfig/resolve zconfig/depth/at zconfig/load zconfig/save zconfig/file/save zconfig/display zconfig/comment/set zconfig/comments zconfig/comments/save) ;; Constructor. (define-czmq-function zconfig/new "zconfig_new" (_fun (name : _string) (parent : _zconfig/null) -> _zconfig)) ;; Destructor. (define-czmq-function zconfig/destroy "zconfig_destroy" (_fun (_ptr i _zconfig) -> _void)) ;; Access. (define-czmq-function zconfig/name "zconfig_name" (_fun _zconfig -> _string)) (define-czmq-function zconfig/value "zconfig_value" (_fun _zconfig -> _string)) (define-czmq-function zconfig/put "zconfig_put" (_fun _zconfig (path : _string) (value : _string) -> _void)) (define-czmq-function zconfig/name/set "zconfig_set_name" (_fun _zconfig (name : _string) -> _void)) (define-czmq-function zconfig/value/set "zconfig_set_value" (_fun _zconfig (value : _string) -> _void)) ;; First child (if any). (define-czmq-function zconfig/child "zconfig_child" (_fun _zconfig -> _zconfig/null)) ;; Next sibling (if any). (define-czmq-function zconfig/next "zconfig_next" (_fun _zconfig -> _zconfig/null)) ;; Find a zconfig along a path. (define-czmq-function zconfig/locate "zconfig_locate" (_fun _zconfig (path : _string) -> _zconfig/null)) ;; Find the value at the end of a path. (define-czmq-function zconfig/resolve "zconfig_resolve" (_fun _zconfig (path : _string) (default : _string) -> _string)) (define-czmq-function zconfig/depth/at "zconfig_at_depth" (_fun _zconfig (depth : _int) -> _zconfig/null)) (define-czmq-function zconfig/load "zconfig_load" (_fun (filename : _string) -> _zconfig/null)) (define-czmq-function zconfig/file/save "zconfig_save" (_fun _zconfig (filename : _string) -> (r : _int = (zero? r)))) ;; Write to standard output. (define-czmq-function zconfig/display "zconfig_print" (_fun _zconfig -> _void)) ;; Add a comment to a node. (define-czmq-function zconfig/comment/set "zconfig_set_comment" (_fun _zconfig (comment : _string) -> _void)) ;; Return all of the comments attached to a node as a zlist. (define-czmq-function zconfig/comments "zconfig_comments" (_fun _zconfig -> _zlist/null)) ;; Walk a zconfig depth-first invoking (f z level) on each zconfig z as you go. (define (walk z f level) (let loop ([go? (f z level)] [child (zconfig/child z)]) (when (and go? child) (loop (walk child f (add1 level)) (zconfig/next child))) #t)) (define (zconfig/walk z f) (walk z f 0)) (define (indent output level) (let ((n (if (> level 1) (* (sub1 level) 4) 0))) (when (positive? n) (display (~a "" #:width n) output)))) ;; Return #t if string s contains a hash character and #f otherwise. (define octothorpe? (let ((octothorpe (regexp "#"))) (lambda (s) (regexp-match octothorpe s)))) (define (zconfig/comment/save comment output level) (indent output level) (display (format "#~a\n" comment) output)) (define (zconfig/comments/save z output level) ;(display (format "z:~a output:~a level:~a\n" z output level)) (let ([comments (zconfig/comments z)]) (when comments (let loop ([comment (zlist/first comments)]) (when comment (zconfig/comment/save comment output level) (loop (zlist/next comments)))) (newline output)))) (define (save z output level) (zconfig/comments/save z output level) (when (positive? level) (let* ([v (zconfig/value z)] [n (or (zconfig/name z) "(Unnamed)")] [form (if (or (not v) (string=? v "")) (format "~a\n" n) (format (if (octothorpe? v) "~a = ~s\n" "~a = ~a\n") n v))]) (indent output level) (display form output)))) (define (zconfig/save z output) (let ((f (lambda (z level) (save z output level)))) (zconfig/walk z f))) (define (zconfig/duplicate z parent) (and z (let ([name (zconfig/name z)] [value (zconfig/value z)] [comments (zconfig/comments z)]) (let ([root (zconfig/new name parent)]) (zconfig/value/set root value) ; Copy all of the comments (if any). (when comments (let loop ([comment (zlist/first comments)]) (when comment (zconfig/comment/set root comment) (loop (zlist/next comments))))) ; Duplicate the children of z. (let loop ([child (zconfig/child z)]) (when child (zconfig/duplicate child root) (loop (zconfig/next child)))) root)))) ;(define z (zconfig/new "example" #f)) ; ;(define sample (zconfig/load "../../bindings/libczmq/zpl_sample.cfg"))
false
1281bd49fc74be9c6ea95549d339c5e472f09737
f2e65ac33a71e4e1315107f3bdc9eb2389c84871
/gb/graphics/r.rkt
849ef61e8fe63a1c2bc6bb44010c03542ee82a5c
[]
no_license
daviesaz/get-bonus
ac217ade9879dbcd9aca1adc5fcfa7f102864dbe
ea77c5b2914316343eabd86265aee0433d0e7b03
refs/heads/master
2020-05-20T19:27:59.194962
2014-09-25T01:51:29
2014-09-25T01:51:29
null
0
0
null
null
null
null
UTF-8
Racket
false
false
15,517
rkt
r.rkt
#lang racket/base (require gb/graphics/texture-atlas-lib) ;; sprite info (define-sprite-atlas 551 512) ;; sprites (define-sprite sos/building/block/in 16 16 (1)) (define-sprite sos/building/block/out 16 16 (2)) (define-sprite sos/building/block/peg 16 16 (3)) (define-sprite sos/building/block/spike 16 16 (4)) (define-sprite sos/building/bookcase 16 16 (5)) (define-sprite sos/building/brazier 16 16 (6)) (define-sprite sos/building/brick/1 16 16 (7)) (define-sprite sos/building/brick/2 16 16 (8)) (define-sprite sos/building/brick/3 16 16 (9)) (define-sprite sos/building/chair 16 16 (10)) (define-sprite sos/building/column 16 16 (11)) (define-sprite sos/building/desk 16 16 (12)) (define-sprite sos/building/door/closed 16 16 (13)) (define-sprite sos/building/door/open 16 16 (14)) (define-sprite sos/building/grave 16 16 (15)) (define-sprite sos/building/rubble/1 16 16 (16)) (define-sprite sos/building/rubble/2 16 16 (17)) (define-sprite sos/building/rubble/3 16 16 (18)) (define-sprite sos/building/sign 16 16 (19)) (define-sprite sos/building/stairs/down 16 16 (20)) (define-sprite sos/building/stairs/up 16 16 (21)) (define-sprite sos/building/stool 16 16 (22)) (define-sprite sos/building/table 16 16 (23)) (define-sprite sos/building/wall/---- 16 16 (24)) (define-sprite sos/building/wall/---r 16 16 (25)) (define-sprite sos/building/wall/--l- 16 16 (26)) (define-sprite sos/building/wall/--lr 16 16 (27)) (define-sprite sos/building/wall/-d-- 16 16 (28)) (define-sprite sos/building/wall/-d-r 16 16 (29)) (define-sprite sos/building/wall/-dl- 16 16 (30)) (define-sprite sos/building/wall/-dlr 16 16 (31)) (define-sprite sos/building/wall/u--- 16 16 (33)) (define-sprite sos/building/wall/u--r 16 16 (34)) (define-sprite sos/building/wall/u-l- 16 16 (35)) (define-sprite sos/building/wall/u-lr 16 16 (36)) (define-sprite sos/building/wall/ud-- 16 16 (37)) (define-sprite sos/building/wall/ud-r 16 16 (38)) (define-sprite sos/building/wall/udl- 16 16 (39)) (define-sprite sos/building/wall/udlr 16 16 (40)) (define-sprite sos/character/baby/female 16 16 (41)) (define-sprite sos/character/baby/male 16 16 (42)) (define-sprite sos/character/bandit 16 16 (43)) (define-sprite sos/character/cat 16 16 (44)) (define-sprite sos/character/child/female 16 16 (45)) (define-sprite sos/character/child/male 16 16 (46)) (define-sprite sos/character/dark-sage 16 16 (47)) (define-sprite sos/character/dog 16 16 (48 49)) (define-sprite sos/character/fat/female 16 16 (50)) (define-sprite sos/character/fat/male 16 16 (51)) (define-sprite sos/character/fighter/female 16 16 (52)) (define-sprite sos/character/fighter/male 16 16 (53)) (define-sprite sos/character/ghost/female 16 16 (54)) (define-sprite sos/character/ghost/male 16 16 (55)) (define-sprite sos/character/king 16 16 (56)) (define-sprite sos/character/knight 16 16 (57)) (define-sprite sos/character/light-sage 16 16 (58)) (define-sprite sos/character/mermaid 16 16 (59)) (define-sprite sos/character/monk/female 16 16 (60)) (define-sprite sos/character/monk/male 16 16 (61)) (define-sprite sos/character/normal/female 16 16 (62)) (define-sprite sos/character/normal/male 16 16 (63)) (define-sprite sos/character/old-man 16 16 (64)) (define-sprite sos/character/pirate 16 16 (65)) (define-sprite sos/character/priest/female 16 16 (66)) (define-sprite sos/character/priest/male 16 16 (67)) (define-sprite sos/character/queen 16 16 (68)) (define-sprite sos/character/ranger/female 16 16 (69)) (define-sprite sos/character/ranger/male 16 16 (70)) (define-sprite sos/character/thief/female 16 16 (71)) (define-sprite sos/character/thief/male 16 16 (72)) (define-sprite sos/character/wizard/female 16 16 (73)) (define-sprite sos/character/wizard/male 16 16 (74)) (define-sprite sos/creatures/blob 16 16 (75)) (define-sprite sos/creatures/chest-mimic 16 16 (76)) (define-sprite sos/creatures/demon 16 16 (77)) (define-sprite sos/creatures/eye-blob 16 16 (78)) (define-sprite sos/creatures/flame-ghost 16 16 (79)) (define-sprite sos/creatures/golem 16 16 (80)) (define-sprite sos/creatures/robot 16 16 (81)) (define-sprite sos/creatures/tentacle 16 16 (82)) (define-sprite sos/devices/bear-trap/closed 16 16 (83)) (define-sprite sos/devices/bear-trap/open 16 16 (84)) (define-sprite sos/devices/grate 16 16 (85)) (define-sprite sos/devices/lever/left 16 16 (86)) (define-sprite sos/devices/lever/right 16 16 (87)) (define-sprite sos/devices/spikes/border 16 16 (88)) (define-sprite sos/devices/spikes/no-border 16 16 (89)) (define-sprite sos/devices/switch/down 16 16 (90)) (define-sprite sos/devices/switch/up 16 16 (91)) (define-sprite sos/devices/trapdoor/closed 16 16 (92)) (define-sprite sos/devices/trapdoor/open 16 16 (94)) (define-sprite sos/devices/web 16 16 (95)) (define-sprite sos/exploration/ball 16 16 (96)) (define-sprite sos/exploration/bomb 16 16 (97)) (define-sprite sos/exploration/bone 16 16 (98)) (define-sprite sos/exploration/bones 16 16 (99)) (define-sprite sos/exploration/chest/closed 16 16 (100)) (define-sprite sos/exploration/chest/open 16 16 (101)) (define-sprite sos/exploration/coins 16 16 (102)) (define-sprite sos/exploration/gem 16 16 (103)) (define-sprite sos/exploration/key/big 16 16 (104)) (define-sprite sos/exploration/key/small 16 16 (105)) (define-sprite sos/exploration/lantern 16 16 (106)) (define-sprite sos/exploration/pick 16 16 (107)) (define-sprite sos/exploration/pot/broken 16 16 (108)) (define-sprite sos/exploration/pot/okay 16 16 (109)) (define-sprite sos/exploration/pouch 16 16 (110)) (define-sprite sos/exploration/rock 16 16 (111)) (define-sprite sos/exploration/rope 16 16 (112)) (define-sprite sos/exploration/shell 16 16 (113)) (define-sprite sos/exploration/shovel 16 16 (114)) (define-sprite sos/exploration/skull 16 16 (115)) (define-sprite sos/exploration/torch 16 16 (116)) (define-sprite sos/face/chewing 16 16 (117)) (define-sprite sos/face/cry 16 16 (118)) (define-sprite sos/face/excited 16 16 (119)) (define-sprite sos/face/mad 16 16 (120)) (define-sprite sos/face/nerd 16 16 (121)) (define-sprite sos/face/normal 16 16 (122)) (define-sprite sos/face/pirate 16 16 (123)) (define-sprite sos/face/sad 16 16 (124)) (define-sprite sos/face/sleeping 16 16 (125)) (define-sprite sos/face/smile 16 16 (126)) (define-sprite sos/face/smirk 16 16 (127)) (define-sprite sos/face/yell 16 16 (128)) (define-sprite sos/fauna/bat 16 16 (129)) (define-sprite sos/fauna/bear 16 16 (130)) (define-sprite sos/fauna/centipede 16 16 (131)) (define-sprite sos/fauna/dragon 16 16 (132)) (define-sprite sos/fauna/fox 16 16 (133)) (define-sprite sos/fauna/horse 16 16 (134)) (define-sprite sos/fauna/lion 16 16 (135)) (define-sprite sos/fauna/lizard 16 16 (136)) (define-sprite sos/fauna/mouse 16 16 (137)) (define-sprite sos/fauna/scorpion 16 16 (138)) (define-sprite sos/fauna/snail 16 16 (139)) (define-sprite sos/fauna/snake 16 16 (140)) (define-sprite sos/fauna/spider 16 16 (141)) (define-sprite sos/font/A-circle 8 16 (32)) (define-sprite sos/font/A-dots 8 16 (93)) (define-sprite sos/font/A-left 8 16 (152)) (define-sprite sos/font/A-right 8 16 (209)) (define-sprite sos/font/C-tail 8 16 (262)) (define-sprite sos/font/E-circle 8 16 (263)) (define-sprite sos/font/E-dots 8 16 (264)) (define-sprite sos/font/E-left 8 16 (265)) (define-sprite sos/font/E-right 8 16 (266)) (define-sprite sos/font/O-circle 8 16 (267)) (define-sprite sos/font/O-dots 8 16 (268)) (define-sprite sos/font/O-left 8 16 (269)) (define-sprite sos/font/O-right 8 16 (270)) (define-sprite sos/font/U-circle 8 16 (271)) (define-sprite sos/font/U-dots 8 16 (272)) (define-sprite sos/font/U-left 8 16 (273)) (define-sprite sos/font/U-right 8 16 (274)) (define-sprite sos/font/arrow/down 8 16 (275)) (define-sprite sos/font/arrow/left 8 16 (276)) (define-sprite sos/font/arrow/right 8 16 (277)) (define-sprite sos/font/arrow/up 8 16 (278)) (define-sprite sos/font/block/empty 8 16 (279)) (define-sprite sos/font/block/full 8 16 (280)) (define-sprite sos/font/block/half 8 16 (281)) (define-sprite sos/font/block/quarter 8 16 (282)) (define-sprite sos/font/block/three-quarters 8 16 (283)) (define-sprite sos/font/checkbox/closed 8 16 (284)) (define-sprite sos/font/checkbox/open 8 16 (285)) (define-sprite sos/font/coin 8 16 (286)) (define-sprite sos/font/female 8 16 (287)) (define-sprite sos/font/gold 8 16 (288)) (define-sprite sos/font/male 8 16 (289)) (define-sprite sos/font/progress/empty 8 16 (290)) (define-sprite sos/font/progress/full 8 16 (291)) (define-sprite sos/font/progress/half 8 16 (292)) (define-sprite sos/font/progress/quarter 8 16 (293)) (define-sprite sos/font/progress/three-quarter 8 16 (294)) (define-sprite sos/font 8 16 (295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550)) (define-sprite sos/food/apple 16 16 (142)) (define-sprite sos/food/beet 16 16 (143)) (define-sprite sos/food/bread 16 16 (144)) (define-sprite sos/food/candy 16 16 (145)) (define-sprite sos/food/cheese 16 16 (146)) (define-sprite sos/food/cupcake 16 16 (147)) (define-sprite sos/food/egg 16 16 (148)) (define-sprite sos/food/eyeball 16 16 (149)) (define-sprite sos/food/fish 16 16 (150)) (define-sprite sos/food/flower 16 16 (151)) (define-sprite sos/food/kabob 16 16 (153)) (define-sprite sos/food/leaf 16 16 (154)) (define-sprite sos/food/mug 16 16 (155)) (define-sprite sos/food/mushroom 16 16 (156)) (define-sprite sos/food/pot 16 16 (157)) (define-sprite sos/food/potion/large 16 16 (158)) (define-sprite sos/food/potion/medium 16 16 (159)) (define-sprite sos/food/potion/small 16 16 (160)) (define-sprite sos/food/pumpkin 16 16 (161)) (define-sprite sos/food/steak 16 16 (162)) (define-sprite sos/food/turkey-leg 16 16 (163)) (define-sprite sos/food/vase 16 16 (164)) (define-sprite sos/magick/altar 16 16 (165)) (define-sprite sos/magick/ankh 16 16 (166)) (define-sprite sos/magick/bio 16 16 (167)) (define-sprite sos/magick/book 16 16 (168)) (define-sprite sos/magick/cane 16 16 (169)) (define-sprite sos/magick/cauldron 16 16 (170)) (define-sprite sos/magick/diagram/box 16 16 (171)) (define-sprite sos/magick/diagram/crescent 16 16 (172)) (define-sprite sos/magick/diagram/hand 16 16 (173)) (define-sprite sos/magick/diagram/swirl 16 16 (174)) (define-sprite sos/magick/parchment 16 16 (175)) (define-sprite sos/magick/rod 16 16 (176)) (define-sprite sos/magick/scroll 16 16 (177)) (define-sprite sos/magick/skull-staff 16 16 (178)) (define-sprite sos/magick/skull 16 16 (179)) (define-sprite sos/music/bell 16 16 (180)) (define-sprite sos/music/drum 16 16 (181)) (define-sprite sos/music/flute 16 16 (182)) (define-sprite sos/music/harp 16 16 (183)) (define-sprite sos/music/lute 16 16 (184)) (define-sprite sos/music/pan-flute 16 16 (185)) (define-sprite sos/outfit/arrow 16 16 (186)) (define-sprite sos/outfit/axe 16 16 (187)) (define-sprite sos/outfit/belt 16 16 (188)) (define-sprite sos/outfit/boots 16 16 (189)) (define-sprite sos/outfit/bow 16 16 (190)) (define-sprite sos/outfit/bracers 16 16 (191)) (define-sprite sos/outfit/breastplate 16 16 (192)) (define-sprite sos/outfit/club 16 16 (193)) (define-sprite sos/outfit/crown 16 16 (194)) (define-sprite sos/outfit/glasses 16 16 (195)) (define-sprite sos/outfit/gloves 16 16 (196)) (define-sprite sos/outfit/hammer 16 16 (197)) (define-sprite sos/outfit/hat 16 16 (198)) (define-sprite sos/outfit/helmet/large 16 16 (199)) (define-sprite sos/outfit/helmet/small 16 16 (200)) (define-sprite sos/outfit/hood 16 16 (201)) (define-sprite sos/outfit/knife 16 16 (202)) (define-sprite sos/outfit/necklace 16 16 (203)) (define-sprite sos/outfit/pants 16 16 (204)) (define-sprite sos/outfit/pole 16 16 (205)) (define-sprite sos/outfit/ring 16 16 (206)) (define-sprite sos/outfit/shield/round 16 16 (207)) (define-sprite sos/outfit/shield/tower 16 16 (208)) (define-sprite sos/outfit/spear 16 16 (210)) (define-sprite sos/outfit/sword 16 16 (211)) (define-sprite sos/outfit/tunic 16 16 (212)) (define-sprite sos/outfit/vest 16 16 (213)) (define-sprite sos/overworld/boat 16 16 (214)) (define-sprite sos/overworld/cart 16 16 (215)) (define-sprite sos/overworld/castle 16 16 (216)) (define-sprite sos/overworld/cave 16 16 (217)) (define-sprite sos/overworld/flower 16 16 (218)) (define-sprite sos/overworld/grass 16 16 (219)) (define-sprite sos/overworld/hills 16 16 (220)) (define-sprite sos/overworld/house 16 16 (221)) (define-sprite sos/overworld/rocks 16 16 (222)) (define-sprite sos/overworld/tree/dead 16 16 (223)) (define-sprite sos/overworld/tree/pine 16 16 (224)) (define-sprite sos/overworld/tree/round 16 16 (225)) (define-sprite sos/overworld/water 16 16 (226)) (define-sprite sos/symbols/arrow 16 16 (227)) (define-sprite sos/symbols/at-sign 16 16 (228)) (define-sprite sos/symbols/bubble 16 16 (229)) (define-sprite sos/symbols/diagonal-arrow 16 16 (230)) (define-sprite sos/symbols/flame 16 16 (231)) (define-sprite sos/symbols/heart 16 16 (232)) (define-sprite sos/symbols/hourglass 16 16 (233)) (define-sprite sos/symbols/lightning 16 16 (234)) (define-sprite sos/symbols/moon 16 16 (235)) (define-sprite sos/symbols/multiply 16 16 (236)) (define-sprite sos/symbols/music 16 16 (237)) (define-sprite sos/symbols/plus 16 16 (238)) (define-sprite sos/symbols/shield 16 16 (239)) (define-sprite sos/symbols/skull 16 16 (240)) (define-sprite sos/symbols/sleep 16 16 (241)) (define-sprite sos/symbols/snow 16 16 (242)) (define-sprite sos/symbols/star 16 16 (243)) (define-sprite sos/symbols/sun 16 16 (244)) (define-sprite sos/symbols/swords 16 16 (245)) (define-sprite sos/symbols/target 16 16 (246)) (define-sprite sos/symbols/warning 16 16 (247)) (define-sprite sos/symbols/water 16 16 (248)) (define-sprite sos/symbols/wind 16 16 (249)) (define-sprite sos/trollkind/cyclops 16 16 (250)) (define-sprite sos/trollkind/goblin 16 16 (251)) (define-sprite sos/trollkind/minotaur 16 16 (252)) (define-sprite sos/trollkind/orc 16 16 (253)) (define-sprite sos/unliving/ghost 16 16 (254)) (define-sprite sos/unliving/hand 16 16 (255)) (define-sprite sos/unliving/poltergeist 16 16 (256)) (define-sprite sos/unliving/skeleton-knight 16 16 (257)) (define-sprite sos/unliving/skeleton-mage 16 16 (258)) (define-sprite sos/unliving/skeleton 16 16 (259)) (define-sprite sos/unliving/spectre 16 16 (260)) (define-sprite sos/unliving/zombie 16 16 (261)) (define-sprite none 0 0 (0)) ;; palette info (define-palette-atlas 9 16) ;; palettes (define-palette blue 0) (define-palette grayscale 1) (define-palette green 2) (define-palette maze/bashful 3) (define-palette maze/pokey 4) (define-palette maze/runner 5) (define-palette maze/shadow 6) (define-palette maze/speedy 7) (define-palette monochrome 8)
false
1fed0d743650f5ed26ce1e8ad6712e03ab31518a
dffd100ed636e554ecc72f44c468f69ef7f0986e
/src/shuffle-truncation-pass.rkt
d6f887e733c5f1a501c7b48fa3e42b65225a5626
[ "MIT" ]
permissive
cucapra/diospyros
8c51b4fa14d01b35d58e408b41057d7b8fcba649
09bd97ad592aaa64ab0c465b911a0325e0bb4d4f
refs/heads/master
2023-08-17T16:50:09.504073
2022-04-27T18:07:17
2022-04-27T18:07:17
215,871,915
50
1
MIT
2022-11-11T07:45:51
2019-10-17T19:38:26
Racket
UTF-8
Racket
false
false
7,632
rkt
shuffle-truncation-pass.rkt
#lang rosette (require "ast.rkt" "dsp-insts.rkt" "interp.rkt" "utils.rkt" "prog-sketch.rkt" "register-allocation-pass.rkt" "translation-validation.rkt" threading) (provide shuffle-truncation) ; Number of registers the target can run select on. (define reg-limit 2) ; Fresh name generation for new variables (define new-var (make-name-gen)) ; Map an index to either the input it references, or the allocated register ; that now holds that index value (define (inp-id-for-idx env inps idx) (assert (not (empty? inps)) (format "idx ~a not found in inputs" idx)) (define inp-id (first inps)) (define inp-val (hash-ref env inp-id)) (cond ; The input is a constant [(vector? inp-val) (define const-len (vector-length inp-val)) (if (< idx const-len) inp-id (inp-id-for-idx env (rest inps) (- idx const-len)))] ; Input has been mapped across allocated registers [else (cond ; The mapped input symbol [(hash-has-key? inp-val idx) (hash-ref inp-val idx)] ; Otherwise, on to the next input [else (define hash-len (length (hash->list inp-val))) (inp-id-for-idx env (rest inps) (- idx hash-len))])])) ; Handle cases where shuffles touch more registers than the limit (define (nest-shuffles shufs id idxs inp-ids new-inps) (define input-count (length new-inps)) (cond ; We only touch 2 registers, and are done nesting [(<= input-count reg-limit) (vec-shuffle id idxs new-inps)] ; Otherwise, combine the first two inputs into a temporary register [else ; Create a new temp register. (define new-shuf-id (new-var idxs)) (define tmp-id (new-var (format "~a_tmp" id))) (define new-shuf (make-vector (current-reg-size) 0)) (for ([i (in-range (current-reg-size))]) (define idx (vector-ref shufs i)) (cond [(< idx (* reg-limit (current-reg-size))) (vector-set! new-shuf i idx) (vector-set! shufs i i)] [else (vector-set! shufs i (- idx (current-reg-size)))])) ; New shuffle idxs for shuffling into the temp register. (define shuf-decl (vec-const new-shuf-id new-shuf int-type)) (define tmp-shuf (vec-shuffle tmp-id new-shuf-id (take new-inps 2))) (list shuf-decl tmp-shuf (nest-shuffles shufs id idxs inp-ids (cons tmp-id (drop new-inps 2))))])) (define (truncate-irregular-shuffle env id idxs inps) ; Declare a new shuffle vector to modify (define shufs (hash-ref env idxs)) (define shuf-id (new-var idxs)) (define shuf-vec (vector-copy shufs)) (define shuf-decl (vec-const shuf-id shuf-vec int-type)) ; Get the allocated register each index falls within (define inp-ids (map (curry inp-id-for-idx env inps) (vector->list shuf-vec))) (define new-inps (remove-duplicates inp-ids)) ; Truncate indices based on the register they fall within (for ([i (in-range (length inp-ids))]) (let* ([inp-id (list-ref inp-ids i)] [position (index-of new-inps inp-id)] [idx (vector-ref shuf-vec i)] [trunc (+ (modulo idx (current-reg-size)) (* position (current-reg-size)))]) (vector-set! shuf-vec i trunc))) ; Handle cases that require nesting (cons shuf-decl (nest-shuffles shuf-vec id shuf-id inp-ids new-inps))) (define (shuffle-to-write env id shufs inp) (define val (hash-ref env inp)) (define src (cond ; The input is a constant [(vector? val) inp] ; The input has been mapped across allocated registers [else (hash-ref val (vector-ref shufs 0))])) (list (vec-decl id (current-reg-size)) (vec-write id src))) (define (truncate-shuffle env id idxs inps) (define shufs (hash-ref env idxs)) (if (and (is-continuous-aligned-vec? (current-reg-size) shufs) (equal? (length inps) 1)) (shuffle-to-write env id shufs (first inps)) (truncate-irregular-shuffle env id idxs inps))) (define (truncate-shuffle-set env out-vec idxs inp) (define shufs (hash-ref env idxs)) (assert (is-continuous-aligned-vec? (current-reg-size) shufs) (format "Shuffle-set ~a must be continuous and aligned" shufs)) (define out-val (hash-ref env out-vec)) (define dest (cond ; The output is a constant [(vector? out-val) out-vec] ; Output has been mapped across allocated registers [else (hash-ref out-val (vector-ref shufs 0))])) (vec-write dest inp)) ; Produces 1 or more instructions, modifies env (define (truncate-shuffle-inst env inst) (match inst [(vec-shuffle id idxs inps) (truncate-shuffle env id idxs inps)] [(vec-shuffle-set! out-vec idxs inp) (truncate-shuffle-set env out-vec idxs inp)] [_ inst])) (define (shuffle-truncation program env) (~> (curry truncate-shuffle-inst env) (map _ (prog-insts program)) flatten prog)) (module+ test (require rackunit rackunit/text-ui) ; Test program copied from matmul (define p (prog (list (vec-extern-decl 'A 6 'extern-input-array) (vec-extern-decl 'B 9 'extern-input-array) (vec-extern-decl 'C 6 'extern-output) (vec-decl 'reg-C 4) (vec-load 'C_0_4 'C 0 4) (vec-load 'C_4_8 'C 4 8) (vec-const 'shuf0-0 '#(3 5 2 5) int-type) (vec-const 'shuf1-0 '#(1 8 2 2) int-type) (vec-shuffle 'reg-A 'shuf0-0 '(A)) (vec-shuffle 'reg-B 'shuf1-0 '(B)) (vec-write 'reg-C 'C_4_8) (vec-app 'out 'vec-mac '(reg-C reg-A reg-B)) (vec-write 'C_4_8 'out) (vec-const 'shuf0-1 '#(2 2 0 4) int-type) (vec-const 'shuf1-1 '#(6 7 2 3) int-type) (vec-shuffle 'reg-A 'shuf0-1 '(A)) (vec-shuffle 'reg-B 'shuf1-1 '(B)) (vec-write 'reg-C 'C_0_4) (vec-app 'out 'vec-mac '(reg-C reg-A reg-B)) (vec-write 'C_0_4 'out) (vec-const 'shuf0-2 '#(1 1 2 3) int-type) (vec-const 'shuf1-2 '#(3 4 8 0) int-type) (vec-shuffle 'reg-A 'shuf0-2 '(A)) (vec-shuffle 'reg-B 'shuf1-2 '(B)) (vec-write 'reg-C 'C_0_4) (vec-app 'out 'vec-mac '(reg-C reg-A reg-B)) (vec-write 'C_0_4 'out) (vec-const 'shuf0-3 '#(0 0 1 5) int-type) (vec-const 'shuf1-3 '#(0 1 5 6) int-type) (vec-shuffle 'reg-A 'shuf0-3 '(A)) (vec-shuffle 'reg-B 'shuf1-3 '(B)) (vec-write 'reg-C 'C_0_4) (vec-app 'out 'vec-mac '(reg-C reg-A reg-B)) (vec-write 'C_0_4 'out) (vec-const 'shuf0-4 '#(5 4 2 4) int-type) (vec-const 'shuf1-4 '#(7 5 2 3) int-type) (vec-shuffle 'reg-A 'shuf0-4 '(A)) (vec-shuffle 'reg-B 'shuf1-4 '(B)) (vec-write 'reg-C 'C_4_8) (vec-app 'out 'vec-mac '(reg-C reg-A reg-B)) (vec-write 'C_4_8 'out) (vec-const 'shuf0-5 '#(4 3 0 0) int-type) (vec-const 'shuf1-5 '#(4 2 6 3) int-type) (vec-shuffle 'reg-A 'shuf0-5 '(A)) (vec-shuffle 'reg-B 'shuf1-5 '(B)) (vec-write 'reg-C 'C_4_8) (vec-app 'out 'vec-mac '(reg-C reg-A reg-B)) (vec-write 'C_4_8 'out) (vec-store 'C 'C_0_4 0 4) (vec-store 'C 'C_4_8 4 8)))) (run-tests (test-suite "shuffle truncation tests" (test-case "Mat mul example" (define c-env (make-hash)) (define reg-alloc (register-allocation p c-env)) (define new-prog (shuffle-truncation reg-alloc c-env)) (define fn-map (hash 'vec-mac vector-mac)) (check-equal? (length (prog-insts new-prog)) 74)))))
false
39852fb064e833e1b856f1f70900fd815d750179
2443cf4128e8ed24591bdc1daf6a64ba0790e49a
/dubdub.rkt
cd283597f877519b78cc7574a32667e755aa3b38
[]
no_license
gordoncmonk/CSC324-GM-A1
6cec70f6cbfe534c7793497b029c0fa0f20f272d
0a884faad11e05d2e1c6a61bf58ed38e5ec6a1d6
refs/heads/master
2020-08-06T07:07:44.805984
2019-11-15T02:03:50
2019-11-15T02:03:50
212,882,553
1
0
null
2019-10-17T21:53:55
2019-10-04T18:50:52
Racket
UTF-8
Racket
false
false
5,671
rkt
dubdub.rkt
#lang racket #| * CSC324 Fall 2019: Assignment 1 * |# #| Module: dubdub Description: Assignment 1: A More Featureful Interpreter Copyright: (c)University of Toronto, University of Toronto Mississauga CSC324 Principles of Programming Languages, Fall 2019 The assignment handout can be found at https://www.cs.toronto.edu/~lczhang/324/files/a1.pdf Please see the assignment guidelines at https://www.cs.toronto.edu/~lczhang/324/homework.html |# (provide run-interpreter) (require "dubdub_errors.rkt") ;----------------------------------------------------------------------------------------- ; Main functions (skeleton provided in starter code) ;----------------------------------------------------------------------------------------- #| (run-interpreter prog) -> any prog: datum? A syntactically-valid Dubdub program. Evaluates the Dubdub program and returns its value, or raises an error if the program is not semantically valid. |# (define (run-interpreter prog) (void)) #| (interpret env expr) -> any env: hash? The environment with which to evaluate the expression. expr: datum? A syntactically-valid Dubdub expression. Returns the value of the Dubdub expression under the given environment. |# (define (interpret env expr) ;(void) (cond [(null? expr) "Null Error"] [(or (boolean? expr) (number? expr)) expr] ;[(number? expr) expr] ;[(boolean? expr) expr] ; Noticed the above two have the same output, so I just merged ; them into one [(list? expr) (cond [(equal? (first expr) 'lambda) (list 'closure expr env)] ;Function Expression/definition ;[(procedure? (first expr)) (apply (first expr))] ;Function Call ;Same code I used for ex4 for evaluate ;(list? (first expr)) Pre-Ex4 Code ;(interpret ; (hash-setter (list-setup (list-merger (second (first expr)) (rest expr)))) ; (third (first expr)) ;(hash-setter (second expr) )) ; ) ;Might need to change else statement if error checking later [else (let* ([closure (hash-ref env (interpret env (first expr)) (interpret env (first expr)))]) (interpret ; Set-up Environment in the same way I did for Ex4 (foldl hash-setter (third closure) (list-setup (list-merger (second (second closure)) (map (map-calc env) (rest expr)))) ) (third (second closure)) ) ) ] ;[else "Inner Unknown Error"] )] [else (hash-ref env expr expr)] ; Second expr here is in case there is no value for expr key ; Then I just take the expr as is ) ) ;----------------------------------------------------------------------------------------- ; Helpers: Builtins and closures ;----------------------------------------------------------------------------------------- ; A hash mapping symbols for Dubdub builtin functions to their corresponding Racket value. (define builtins (hash '+ + 'equal? equal? '< < 'integer? integer? 'boolean? boolean? ; Note: You'll almost certainly need to replace procedure? here to properly return #t ; when given your closure data structure at the end of Task 1! 'procedure? procedure? )) ; Returns whether a given symbol refers to a builtin Dubdub function. (define (builtin? identifier) (hash-has-key? builtins identifier)) #| Starter definition for a closure "struct". Racket structs behave similarly to C structs (contain fields but no methods or encapsulation). Read more at https://docs.racket-lang.org/guide/define-struct.html. You can and should modify this as necessary. If you're having trouble working with Racket structs, feel free to switch this implementation to use a list/hash instead. |# (struct closure (params body)) ;Hash Setting (define (hash-setter bindings env) (if (null? bindings) null (if (number? (second bindings)) (hash-set env (first bindings) (second bindings)) (if (list? (second bindings)) (hash-set env (first bindings) (eval-calc (second bindings) env)) (hash-set env (first bindings) (hash-ref env (second bindings) (second bindings))) ;(hash-set env (first bindings) (dict-ref env (second bindings))) ) ) ) ) (define ( (map-calc env) expr) ;Helper function that's a curry of eval-calc to allow me to map (interpret env expr) ) ;List Setup for Lambda (define (list-merger lst1 lst2) ;Merges the two lists so I can use the same hash-function (cond [(null? lst1) ; If the first list is empty #;(lst2) '()] ; ... return the second list. [(null? lst2) ; If the second list is empty #;(lst1) '()] ; ... return the first list. [else ; If both lists are non-empty (append (list (first lst1)) (append (list (first lst2)) (list-merger (rest lst1) (rest lst2)))) ] ) ; ... make a recursively call, advancing over the first ; ... list, inverting the order used to pass the lists. ) (define (list-setup lst) ;Adds the list pairs together so I can use the same hash-function (cond [(null? lst) '()] [else (append (list (list (first lst) (second lst))) (list-setup (rest (rest lst))))] ) )
false
9c534de9dba1c7de9d8ab9f38188bcd77df315b0
2c819623a83d8c53b7282622429e344389ce4030
/common/interp-utils.rkt
44509b39cdcbed57b446804240c4868f1ac89aa5
[]
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
1,129
rkt
interp-utils.rkt
#lang rosette (require "data-structures.rkt") (require "case-hex.rkt") (require "../riscv/interpreter.rkt") (provide assemble-and-run) ; TODO remove this (define (bpf-regs->riscv regs) (make-regs-from-existing regs (lambda (index) (if (or (and (bvule (bv 0 8) index) (bvsle index (bv 2 8))) (and (bvule (bv 12 8) index) (bvsle index (bv 21 8)))) (case-hex index 8 [(0) (bv 11 8)] [(1) (bv 0 8)] [(2) (bv 10 8)] [(12) (bv 1 8)] [(13) (bv 2 8)] [(14) (bv 3 8)] [(15) (bv 4 8)] [(16) (bv 5 8)] [(16) (bv 12 8)] [(18) (bv 6 8)] [(19) (bv 7 8)] [(20) (bv 8 8)] [(21) (bv 9 8)]) (if (and (bvule (bv 3 8) index) (bvsle index (bv 11 8))) (bvadd index (bv 10 8)) index))) 32)) (define (assemble-and-run assembler bpf-instrs regs mem) (let* ([riscv-instrs (assembler bpf-instrs)]) (interpret-with-state riscv-instrs (bpf-regs->riscv regs) mem)))
false
a11e32d18c413aba667761a8d425790fddba8c76
82c76c05fc8ca096f2744a7423d411561b25d9bd
/typed-racket-test/unit-tests/type-printer-tests.rkt
ebc7420f125ed893620d85191ecdfb81044933db
[ "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
19,075
rkt
type-printer-tests.rkt
#lang racket/base ;; Tests for type, prop, object, etc. printers for Typed Racket (require "test-utils.rkt" rackunit racket/match typed-racket/standard-inits typed-racket/tc-setup typed-racket/rep/type-rep typed-racket/rep/values-rep typed-racket/types/abbrev typed-racket/types/prop-ops typed-racket/types/numeric-tower typed-racket/types/printer typed-racket/utils/tc-utils (submod typed-racket/base-env/base-types initialize)) (provide tests) (gen-test-main) (define y #'y) (define z #'z) (define (prints-as? thing expected) (cond [(string? expected) (string=? (format "~a" thing) expected)] [(procedure? expected) (expected (format "~a" thing))] [else (error 'prints-as? "unsupported expected ~a" expected)])) (define (pretty-prints-as? thing str) (string=? (pretty-format-rep thing) str)) (define-binary-check (check-prints-as? prints-as? actual expected)) (define-binary-check (check-pretty-prints-as? pretty-prints-as? actual expected)) ;; Using `do-standard-inits` here does not work when the file is invoked ;; individually (rather than through the test harness) (initialize-type-names) (current-type-names (init-current-type-names)) (define tests (test-suite "Printing tests" (test-suite "Type printing tests" (check-prints-as? (-val 3) "3") (check-prints-as? (-val 'a) "'a") (check-prints-as? (-val #\a) "#\\a") (check-prints-as? Univ "Any") (check-prints-as? (Un (-val #t) (-val #f)) "Boolean") (check-prints-as? (-lst -Nat) "(Listof Nonnegative-Integer)") (check-prints-as? (-Listof -Nat) "(Listof Nonnegative-Integer)") (check-prints-as? (make-Mu 'x (Un -Null (-pair -Nat (make-F 'x)))) "(Listof Nonnegative-Integer)") (check-prints-as? (-lst* -String -Symbol) "(List String Symbol)") (check-prints-as? (-Tuple* (list -String -Symbol) -String) "(List* String Symbol String)") ;; next three cases for PR 14552 (check-prints-as? (-mu x (Un (-pair x x) -Null)) "(Rec x (U (Pairof x x) Null))") (check-prints-as? (-mu x (Un (-pair (-box x) x) -Null)) "(Rec x (U (Pairof (Boxof x) x) Null))") (check-prints-as? (-mu x (Un (-mpair x x) -Null)) "(Rec x (U (MPairof x x) Null))") (check-prints-as? -Custodian "Custodian") (check-prints-as? (make-Opaque #'integer?) "(Opaque integer?)") (check-prints-as? (make-Immutable-Vector -Nat) "(Immutable-Vectorof Nonnegative-Integer)") (check-prints-as? (make-Mutable-Vector -Nat) "(Mutable-Vectorof Nonnegative-Integer)") (check-prints-as? (make-Vector -Nat) "(Vectorof Nonnegative-Integer)") (check-prints-as? (make-Immutable-HeterogeneousVector (list -Symbol -String)) "(Immutable-Vector Symbol String)") (check-prints-as? (make-Mutable-HeterogeneousVector (list -Symbol -String)) "(Mutable-Vector Symbol String)") (check-prints-as? (-vec* -Symbol -String) "(U (Immutable-Vector Symbol String) (Mutable-Vector Symbol String))") (check-prints-as? (-box (-val 3)) "(Boxof 3)") (check-prints-as? (make-Future -Void) "(Futureof Void)") (check-prints-as? (-> -String -Void) "(-> String Void)") (check-prints-as? (Un -String -Void) "(U String Void)") (check-prints-as? (-pair -String -Void) "(Pairof String Void)") (check-prints-as? (make-ListDots -Boolean 'x) "(List Boolean ... x)") (check-prints-as? (make-F 'X) "X") (check-prints-as? (make-Values (list (-result -String) (-result -Symbol))) "(values String Symbol)") (check-prints-as? (make-ValuesDots (list (-result -String) (-result -Symbol)) (make-F 'x) 'x) "(values String Symbol x ... x)") (check-prints-as? (-polydots (a b) (->... (list a) (b b) a)) "(All (a b ...) (-> a b ... b a))") (check-prints-as? (-mu x (-lst x)) "(Rec x (Listof x))") (check-prints-as? (-seq -String -Symbol) "(Sequenceof String Symbol)") (check-prints-as? (-poly (a) (-> a -Void)) "(All (a) (-> a Void))") (check-prints-as? (-> -Input-Port (make-Values (list (-result -String -true-propset) (-result -String -true-propset)))) "(-> Input-Port (values (String : (Top | Bot)) (String : (Top | Bot))))") (check-prints-as? (make-pred-ty -String) "(-> Any Boolean : String)") (check-prints-as? (asym-pred Univ -Boolean (-PS (-is-type 0 -String) -tt)) "(-> Any Boolean : #:+ String)") (check-prints-as? (-> Univ Univ -Boolean : (-PS (-is-type 0 -String) -tt)) "(-> Any Any Boolean)") (check-prints-as? (-> Univ Univ -Boolean : (-PS (-is-type 1 -String) -tt)) "(-> Any Any Boolean)") ;; PR 14510 (next three tests) (check-prints-as? (-> Univ (-> Univ -Boolean : (-PS (-is-type '(1 . 0) -String) (-not-type '(1 . 0) -String)))) "(-> Any (-> Any Boolean))") (check-prints-as? (-> Univ Univ -Boolean : (-PS (-is-type '(0 . 1) -String) (-not-type '(0 . 1) -String))) "(-> Any Any Boolean)") (check-prints-as? (-> Univ Univ -Boolean : (-PS (-is-type '(0 . 0) -String) (-not-type '(0 . 0) -String))) "(-> Any Any Boolean)") (check-prints-as? (-> Univ (make-Values (list (-result -String -tt-propset -empty-obj) (-result -String -tt-propset -empty-obj)))) "(-> Any (values String String))") ;; this case tests that the Number union is printed with its name ;; rather than its expansion (a former bug) (check-prints-as? (->* '() -Number -Void) "(-> Number * Void)") (check-prints-as? (->key Univ -Pathlike #:exists (one-of/c 'error 'append 'update 'replace 'truncate 'truncate/replace) #f #:mode (one-of/c 'binary 'text) #f -Void) (string-append "(-> Any Path-String [#:exists (U 'append" " 'error 'replace 'truncate 'truncate/replace" " 'update)] [#:mode (U" " 'binary 'text)] Void)")) (check-prints-as? (-> Univ (-AnyValues -tt)) "(-> Any AnyValues)") (check-prints-as? (-> Univ (-AnyValues (-is-type '(0 . 0) -String))) "(-> Any AnyValues : (: (0 0) String))") (check-prints-as? (-AnyValues -tt) "AnyValues") (check-prints-as? (-AnyValues (-is-type '(0 . 0) -String)) "(AnyValues : (: (0 0) String))") (check-prints-as? (make-Fun (list (-Arrow (list Univ) #:rest Univ -String) (-Arrow (list Univ -String) #:rest Univ -String))) ;; NOT (->* (Any) (String) #:rest Any String) "(case-> (-> Any Any * String) (-> Any String Any * String))") (check-prints-as? (->opt Univ [] -Void) "(-> Any Void)") (check-prints-as? (->opt [-String] -Void) "(->* () (String) Void)") (check-prints-as? (->opt Univ [-String] -Void) "(->* (Any) (String) Void)") (check-prints-as? (->opt Univ -Symbol [-String] -Void) "(->* (Any Symbol) (String) Void)") (check-prints-as? (->optkey Univ [-String] #:rest -Symbol -Void) "(->* (Any) (String) #:rest Symbol Void)") (check-prints-as? (->optkey Univ [-String] #:x -String #f -Void) "(->* (Any) (String #:x String) Void)") (check-prints-as? (->optkey Univ [-String] #:x -String #t -Void) "(->* (Any #:x String) (String) Void)") (check-prints-as? (->optkey Univ [-String] #:x -String #t -Void) "(->* (Any #:x String) (String) Void)") (check-prints-as? (->optkey Univ [-String] #:rest -String #:x -String #t -Void) "(->* (Any #:x String) (String) #:rest String Void)") (check-prints-as? (->optkey Univ [] #:rest (make-Rest (list -String -Symbol)) -String) "(->* (Any) #:rest-star (String Symbol) String)") (check-prints-as? (->optkey Univ [-String] #:rest (make-Rest (list -String -Symbol)) #:x -String #t -Void) "(->* (Any #:x String) (String) #:rest-star (String Symbol) Void)") (check-prints-as? (cl->* (->opt -Pathlike [-String] -Void) (->optkey Univ [-String] #:rest -String #:x -String #t -Void)) (string-append "(case-> (->* (Path-String) (String) Void) " "(->* (Any #:x String) (String) #:rest String Void))")) (check-prints-as? (cl->* (->opt -Pathlike [-String] -Void) (->optkey Univ [-String] #:rest (make-Rest (list -String -Symbol)) #:x -String #t -Void)) (string-append "(case-> (->* (Path-String) (String) Void) " "(->* (Any #:x String) (String) #:rest-star (String Symbol) Void))")) (check-prints-as? (make-Unit null null null (-values (list -String))) "(Unit (import) (export) (init-depend) String)") ;; Setup for slightly more complex unit printing test (let* ([a^ (make-Signature #'a^ #f null)] [a-sub^ (make-Signature #'a-sub^ #'a^ (list (cons #'a -String)))] [b^ (make-Signature #'b^ #f (list (cons #'b -Integer)))] [c^ (make-Signature #'c^ #f (list (cons #'c -Symbol)))] [d^ (make-Signature #'d^ #f (list (cons #'d -String)))]) (check-prints-as? (make-Unit (list a^) null null (-values (list -String))) "(Unit (import a^) (export) (init-depend) String)") (check-prints-as? (make-Unit (list a^) (list b^) null (-values (list -String))) "(Unit (import a^) (export b^) (init-depend) String)") (check-prints-as? (make-Unit (list a^) (list b^) (list a^) (-values (list -String))) "(Unit (import a^) (export b^) (init-depend a^) String)") (check-prints-as? (make-Unit (list a-sub^) null null (-values (list -String))) "(Unit (import a-sub^) (export) (init-depend) String)") (check-prints-as? (make-Unit (list a-sub^) null (list a-sub^) (-values (list -String))) "(Unit (import a-sub^) (export) (init-depend a-sub^) String)") (check-prints-as? (make-Unit null (list a-sub^) null (-values (list -String))) "(Unit (import) (export a-sub^) (init-depend) String)") (check-prints-as? (make-Unit (list a^ b^) (list c^ d^) null (-values (list -String))) "(Unit (import a^ b^) (export c^ d^) (init-depend) String)") (check-prints-as? (make-Unit (list a^ b^) null null (-values (list -String))) "(Unit (import a^ b^) (export) (init-depend) String)") (check-prints-as? (make-Unit null (list c^ d^) null (-values (list -String))) "(Unit (import) (export c^ d^) (init-depend) String)") (check-prints-as? (make-Unit (list a^ b^) (list c^ d^) (list b^) (-values (list -String))) "(Unit (import a^ b^) (export c^ d^) (init-depend b^) String)") (check-prints-as? (make-Unit (list a^ b^) (list c^ d^) (list b^ a^) (-values (list -String))) "(Unit (import a^ b^) (export c^ d^) (init-depend b^ a^) String)")) (check-prints-as? -UnitTop "UnitTop") (check-prints-as? (-HT -String -Symbol) "(HashTable String Symbol)") (check-prints-as? (-refine/fresh x -Int (-leq (-lexp x) (-lexp 42))) (λ (str) (match (read (open-input-string str)) [`(Refine [,(? symbol? x) : Integer] (<= ,(? symbol? x) 42)) #t] [_ #f]))) (check-prints-as? (-refine/fresh x (-pair -Int -Int) (-leq (-lexp (-car-of (-id-path x))) (-lexp (-cdr-of (-id-path x))))) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : (Pairof Integer Integer)] (<= (car ,x) (cdr ,x))) #t] [_ #f]))) (check-prints-as? (-refine/fresh x (-vec Univ) (-leq (-lexp (-vec-len-of (-id-path x))) (-lexp 42))) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : (Vectorof Any)] (<= (vector-length ,x) 42)) #t] [_ #f]))) (check-prints-as? (-refine/fresh x -Int (-and (-leq (-lexp x) (-lexp 42)) (-leq (-lexp 42) (-lexp x)) (-leq (-lexp 1 x) (-lexp #'y)))) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : Integer] (and (= ,x 42) (< ,x y))) #t] [`(Refine [,x : Integer] (and (= 42 ,x) (< ,x y))) #t] [`(Refine [,x : Integer] (and (< ,x y) (= ,x 42))) #t] [`(Refine [,x : Integer] (and (< ,x y) (= ,x 42))) #t] [_ #f]))) (check-prints-as? (-refine/fresh x -Int (-and (-leq (-lexp x) (-lexp 42)) (-leq (-lexp 42) (-lexp x)))) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : Integer] (= ,x 42)) #t] [`(Refine [,x : Integer] (= 42 ,x)) #t] [_ #f]))) (check-prints-as? (-refine/fresh x -Int (-eq (-lexp x) (-lexp (list 1 #'y) 42))) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : Integer] (= ,x (+ y 42))) #t] [`(Refine [,x : Integer] (= ,x (+ 42 y))) #t] [`(Refine [,x : Integer] (= (+ y 42) ,x)) #t] [`(Refine [,x : Integer] (= (+ 42 y) ,x)) #t] [_ #f]))) (check-prints-as? (-refine/fresh x -Int (-eq (-lexp x) (-lexp (list 1 #'y) 42))) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : Integer] (= ,x (+ y 42))) #t] [`(Refine [,x : Integer] (= (+ y 42) ,x)) #t] [`(Refine [,x : Integer] (= ,x (+ 42 y))) #t] [`(Refine [,x : Integer] (= (+ 42 y) ,x)) #t] [_ #f]))) (check-prints-as? (-refine/fresh x -Int (-eq (-lexp x) (-lexp (list -1 #'y) 42))) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : Integer] (= ,x (- 42 y))) #t] [`(Refine [,x : Integer] (= (- 42 y) ,x)) #t] [_ #f]))) (check-prints-as? (-refine/fresh x -Int (-eq (-lexp x) (-lexp (list 1 #'y) -42))) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : Integer] (= ,x (- y 42))) #t] [`(Refine [,x : Integer] (= (- y 42) ,x)) #t] [_ #f]))) (check-prints-as? (-refine/fresh x -Int (-is-type #'y -Int)) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : Integer] (: y Integer)) #t] [_ #f]))) (check-prints-as? (-refine/fresh x -Int (-not-type #'y -Int)) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : Integer] (! y Integer)) #t] [_ #f]))) (check-prints-as? (-refine/fresh x -Int (-or (-is-type #'y -Int) (-is-type #'z -String))) (λ (str) (match (read (open-input-string str)) [`(Refine [,x : Integer] (or (: y Integer) (: z String))) #t] [`(Refine [,x : Integer] (or (: z String) (: y Integer))) #t] [_ #f]))) (check-prints-as? (-unsafe-intersect (-val 2) (-v A)) "(∩ 2 A)") (check-prints-as? (dep-> ((x : -Int) (y : -Int)) #:pre (-lt (-lexp (-id-path x)) (-lexp (-id-path y))) -Int) (λ (str) (match (read (open-input-string str)) [`(-> ((,(? symbol? p) : Integer) (,(? symbol? q) : Integer)) #:pre (,q ,p) (< ,p ,q) Integer) #t] [_ #f]))) (check-prints-as? (dep-> ((x : -Int) (y : (-refine/fresh n -Int (-leq (-lexp (-id-path x)) (-lexp (-id-path n)))))) -Int) (λ (str) (match (read (open-input-string str)) [`(-> ((,(? symbol? r) : Integer) (,(? symbol? s) : (,r) (Refine (,t : Integer) (<= ,r ,t)))) Integer) #t] [_ #f])))) (test-suite "Pretty printing tests" (check-pretty-prints-as? (-val 3) "3") (check-pretty-prints-as? (-val 'a) "'a") (check-pretty-prints-as? (-val #\a) "#\\a") (check-pretty-prints-as? Univ "Any") (check-pretty-prints-as? (Un (-val #t) (-val #f)) "Boolean") (check-pretty-prints-as? (-lst -Nat) "(Listof Nonnegative-Integer)") (check-pretty-prints-as? (-polydots (c a b) (cl->* (-> (-> a c) (-pair a (-lst a)) (-pair c (-lst c))) ((list ((list a) (b b) . ->... . c) (-lst a)) ((-lst b) b) . ->... .(-lst c)))) (string-append "(All (c a b ...)\n" " (case->\n" " (-> (-> a c) (Pairof a (Listof a)) (Pairof c (Listof c)))\n" " (-> (-> a b ... b c) (Listof a) (Listof b) ... b (Listof c))))")) (check-pretty-prints-as? (-poly (a) (cl->* (-> (-Syntax a) Univ Univ (-Syntax a)) (-> (-Syntax Univ) Univ Univ))) (string-append "(All (a)\n" " (case-> (-> (Syntaxof a) Any Any (Syntaxof a)) (-> (Syntaxof Any) Any Any)))")))))
false
603aeeb2fe21a466fa35273b3fe70c50d205a0d4
d2fc383d46303bc47223f4e4d59ed925e9b446ce
/courses/2010/fall/330/notes/2-8.rkt
95e47a031f47db001d3179d38c1d8ee5619e18de
[]
no_license
jeapostrophe/jeapostrophe.github.com
ce0507abc0bf3de1c513955f234e8f39b60e4d05
48ae350248f33f6ce27be3ce24473e2bd225f6b5
refs/heads/master
2022-09-29T07:38:27.529951
2022-09-22T10:12:04
2022-09-22T10:12:04
3,734,650
14
5
null
2022-03-25T14:33:29
2012-03-16T01:13:09
HTML
UTF-8
Racket
false
false
5,987
rkt
2-8.rkt
#lang plai (halt-on-errors #t) (define-type WAE [num (n number?)] [add (lhs WAE?) (rhs WAE?)] [sub (lhs WAE?) (rhs WAE?)] [id (name symbol?)] [with (name symbol?) (named-expr WAE?) (body-expr WAE?)]) ; <WAE> :== <number> ; | (+ <WAE> <WAE>) ; | (- <WAE> <WAE>) ; | <id> ; | (with [<id> <WAE>] <WAE>) ; where <id> is symbol ; parse: Sexpr -> WAE ; Purpose: Parse an Sexpr into an WAE (define (parse se) (cond [(number? se) (num se)] [(symbol? se) (id se)] [(and (list? se) (symbol=? 'with (first se))) (with (first (second se)) (parse (second (second se))) (parse (third se)))] [(and (list? se) (symbol=? '+ (first se))) (add (parse (second se)) (parse (third se)))] [(and (list? se) (symbol=? '- (first se))) (sub (parse (second se)) (parse (third se)))])) (test (parse '(+ 1 1)) (add (num 1) (num 1))) (test (parse '(- 1 2)) (sub (num 1) (num 2))) (test (parse '(with [x 5] (+ x x))) (with 'x (num 5) (add (id 'x) (id 'x)))) ; subst : symbol WAE WAE -> WAE ; Purpose 1 (bad): Within plug-into replace every occurrence of id-to-subst with replace-with ; Purpose 2 (bad): Within plug-into replace every occurrence (not inside a with) of id-to-subst with replace-with ; A with binding is (with ////[id wae]//// wae) inside the ////s ; Purpose 3 (bad): Within plug-into replace every occurrence (not inside a with binding) of id-to-subst with replace-with ; Scope is the syntactic region in the program where an id makes sense ; A bound id is an identifier that is inside of an id-scope ; A free id is an identifier that is not ; Purpose 4: Within plug-into replace every free occurrence of id-to-subst with replace-with (define (subst id-to-subst replace-with plug-into) (type-case WAE plug-into [num (n) plug-into] [add (lhs rhs) (add (subst id-to-subst replace-with lhs) (subst id-to-subst replace-with rhs))] [sub (lhs rhs) (sub (subst id-to-subst replace-with lhs) (subst id-to-subst replace-with rhs))] [id (name) (if (symbol=? id-to-subst name) replace-with plug-into)] [with (name named-expr body) (if (symbol=? id-to-subst name) (with name (subst id-to-subst replace-with named-expr) body) (with name (subst id-to-subst replace-with named-expr) (subst id-to-subst replace-with body)))])) (test (subst 'x (parse '5) (parse 'x)) (parse '5)) (test (subst 'x (num 5) (id 'x)) (num '5)) (test (subst 'x (parse '5) (parse '7)) (parse '7)) (test (subst 'x (parse '5) (parse 'y)) (parse 'y)) (test (subst 'x (parse '5) (parse '(+ x y))) (parse '(+ 5 y))) (test (subst 'x (parse '5) (parse '(- x y))) (parse '(- 5 y))) (test (subst 'x (parse '(+ 5 5)) (parse '(- x y))) (parse '(- (+ 5 5) y))) (test (subst 'x (parse '(with [y 3] y)) (parse '(- x y))) (parse '(- (with [y 3] y) y))) ; This is a bad test case. Purpose 1 is wrong. #;(test (subst 'x (parse '5) (parse '(with [x 1] 7))) (parse '(with [5 1] 7))) (test (subst 'x (parse '5) (parse '(with [x 1] 7))) (parse '(with [x 1] 7))) ; This is a good test case. Purpose 2 is wrong. (test (subst 'x (parse '5) (parse '(with [y 1] x))) (parse '(with [y 1] 5))) ; This is a bad test case. Purpose 3 is wrong #;(test (subst 'x (parse '5) (parse '(with [x 1] x))) (parse '(with [x 1] 5))) (test (subst 'x (parse '5) (parse '(with [x 1] x))) (parse '(with [x 1] x))) (test (subst 'x (parse '5) (parse '(+ x (with [x 1] x)))) (parse '(+ 5 (with [x 1] x)))) (test (subst 'x (parse '5) (parse '(+ x (with [y 1] x)))) (parse '(+ 5 (with [y 1] 5)))) ; calc : WAE -> number ; Purpose: To compute the number represented by the WAE (define (calc e) (type-case WAE e [num (n) n] [add (lhs rhs) (+ (calc lhs) (calc rhs))] [sub (lhs rhs) (- (calc lhs) (calc rhs))] [with (name named-expr body) (calc (subst name (num (calc named-expr)) body))] [id (name) (error 'calc "Unbound identifier: ~e" name)])) (test/exn (calc (parse 'x)) "Unbound identifier") (test (calc (parse '0)) 0) (test (calc (parse '(+ 1 1))) 2) (test (calc (parse '(- 2 1))) 1) (test (calc (parse (list '- 2 1))) 1) (test (calc (parse (list '- 2 (list '- 2 1)))) 1) (test (calc (parse '(- (+ 1 2) (- 8 9)))) 4) (test (calc (parse '(with [x 5] (+ x x)))) 10) (test (calc (parse '(with [x (+ 5 6)] (+ x x)))) 22) (test (calc (parse '(with [x (+ 5 6)] (+ x x)))) (calc (parse '(with [x 11] (+ x x))))) (test (calc (parse '(with [x (+ 5 6)] (+ x x)))) (calc (parse '(+ (+ 5 6) (+ 5 6))))) (test (calc (parse '(with [x (+ 5 6)] (+ x x)))) (calc (parse '(+ 11 11)))) (test (subst 'x (parse '(+ 5 6)) (parse '(with [y (+ x 1)] (+ x y)))) (parse '(with [y (+ (+ 5 6) 1)] (+ (+ 5 6) y)))) (test (calc (parse '(with [x (+ 5 6)] (with [y (+ x 1)] (+ x y))))) 23) (test (subst 'x (parse '(+ 5 6)) (parse '(with [x (+ x 1)] (+ x x)))) (parse '(with [x (+ (+ 5 6) 1)] (+ x x)))) (test (calc (parse '(with [x (+ 5 6)] (with [x (+ x 1)] (+ x x))))) 24) ; Do we need names? #;(with [x (+ 5 5)] (+ x x)) #;(with (+ 5 5) (+ <0> <0>)) #;(with (+ 5 5) (with (+ <0> 6) (+ <0> <1>))) ; De Bruijn Index
false
064d23582dcf24dcad2c3d8fcd4dff3a8ea85111
9101470cfbfc3c91e240e2a963fb3760744d9d25
/guide/ch13/13.1.rkt
fe3deb7f9fd7ea86f21b7263dad9e26449b2885b
[ "MIT" ]
permissive
sylsaint/racket
49e2fc01ccec8538d0d9b9d35f73b4b6772bfd93
5c11113e5247502e6e0ea877f2538dce508c36f2
refs/heads/master
2020-12-21T22:17:32.873776
2016-12-19T09:32:14
2016-12-19T09:43:25
59,442,778
0
0
null
null
null
null
UTF-8
Racket
false
false
1,409
rkt
13.1.rkt
#lang racket (require "13.0.rkt") (define ling (new fish% [size 100])) (send ling get-size) (send ling grow 50) (send ling get-size) ; in racket, during the class instantiation, if we want to use superclass's method ; we need to use (super-new), then call its methods (define hungry-fish% (class fish% (super-new) (define/public (eat-more fish1 fish2) (send this eat fish1) (send this eat fish2)))) ; alternately, we can use inherit to declare the existence of a method (define huge-fish% (class fish% (super-new) (inherit eat) (define/public (swallow fish1 fish2) (eat fish1) (eat fish2)))) ; To achieve performance similar to inherit-based method calls when invoking a method from outside the method’s class, ; the programmer must use the generic form, which produces a class- and method-specific generic method to be invoked with send-generic (define get-fish-size (generic fish% get-size)) (displayln "get generic size") (send-generic ling get-fish-size) (define picky-fish% (class fish% (super-new) (define/override (grow amt) (super grow (* 3/4 amt))))) (define daisy (new picky-fish% [size 20])) (send daisy get-size) (provide picky-fish%)
false
aae23e902690d72e7f2de4b19a5363f07ca8f7bc
fc90b5a3938850c61bdd83719a1d90270752c0bb
/web-server-lib/web-server/private/servlet.rkt
c7c8ba1acdb38a19594a4e27eb45b0342148edba
[ "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
1,163
rkt
servlet.rkt
#lang racket/base (require racket/contract) (require web-server/servlet/servlet-structs web-server/managers/manager web-server/http/request-structs) (define servlet-prompt (make-continuation-prompt-tag 'servlet)) (define-struct servlet (custodian namespace manager directory [handler #:mutable])) (define-struct execution-context (request)) (define current-servlet (make-parameter #f)) (define current-servlet-instance-id (make-parameter #f)) (define current-execution-context (make-parameter #f)) (define (current-servlet-manager) (servlet-manager (current-servlet))) (provide/contract [servlet-prompt continuation-prompt-tag?] [struct servlet ([custodian custodian?] [namespace namespace?] [manager manager?] [directory path-string?] [handler (request? . -> . can-be-response?)])] [struct execution-context ([request request?])] [current-servlet (parameter/c (or/c false/c servlet?))] [current-servlet-instance-id (parameter/c (or/c false/c number?))] [current-execution-context (parameter/c (or/c false/c execution-context?))] [current-servlet-manager (-> manager?)])
false
8172edd487ee3b2aa3fd7f658b6f0ecf060122c1
49bef55e6e2ce9d3e64e55e71496be8f4fc7f4f3
/rb/sections/iandf.scrbl
832da3e44b90de0b594cd5cc45157893290ddc6e
[]
no_license
brittAnderson/compNeuroIntro420
13dad04726c1bf3b75a494bc221c0c56f52a060f
ad4211f433c22f647b1bf2e30561106178b777ab
refs/heads/racket-book
2023-08-10T18:34:48.611363
2023-07-28T15:59:50
2023-07-28T15:59:50
78,282,622
26
97
null
2023-07-22T19:50:59
2017-01-07T14:10:01
JavaScript
UTF-8
Racket
false
false
15,303
scrbl
iandf.scrbl
#lang scribble/book @(require plot/pict scribble/base scribble-math/dollar scribble/example scribble/manual symalg scriblib/figure) @(define plot-eval (let ([eval (make-base-eval)]) (eval '(begin (require racket/math racket/match racket/list racket/draw racket/class plot/pict plot/utils))) eval)) @title{Integrate and Fire Neuron} In this section we take a look at the history and math of the computational model of neuron firing called "Integrate and Fire" (I&F). The I&F model uses math essentially the same as the spring example. @margin-note{Is the integrate and fire model used much in modeling in the present time.? @hyperlink["https://scholar.google.com/scholar?as_ylo=2020&q=%22integrate+and+fire%22+neuron&hl=en&as_sdt=7,39"]{Answer}.} @section{History of the Integrate and Fire Model} @subsection{Louis Lapicque - Earlier Computational Neuroscientist} @hyperlink["https://link.springer.com/content/pdf/10.1007/s00422-007-0190-0.pdf"]{Modern Commentary on Lapique's Neuron Model} @; *** Image of the Laboratory @figure[ "fig:lapique-lab" @elem{The Lapique Lab at the Sorbonne early 1900s} @elem{@image[#:scale 0.5]{./images/Lapicque_laboratoire.png}}] @; haven't figure out how to scale the image. @hyperlink["http://www.snv.jussieu.fr/brette/papers/Lap07.pdf"]{Original Lapique Paper (scanned; pdf)} @hyperlink["https://fr.wikipedia.org/wiki/Louis_Lapicque"]{Brief Biographical Details of Lapicque}. @subsection{Lord Adrian and the All-or-None Action Potential} One of the first demonstrations of the all-or-none nature of the neuronal action potential was made by Lord Adrian. Lord Adrian was an interesting scientific figure. He asserted that some of his prowess at electrophysiology stemmed from his interest in and training in fencing. To answer the questions: @itemlist[@item{When was the action potential demonstrated?} @item{What was the experimental animal used by Adrian?}] Consult this @hyperlink["https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1420429/pdf/jphysiol01990-0084.pdf"]{this pdf for answers.} @margin-note{Want more details? There is an excellent free book available @hyperlink["https://lcnwww.epfl.ch/gerstner/SPNM/SPNM.html"]{@bold{Spiking Neurons}.} They also have another more modern book out too @hyperlink["http://neuronaldynamics.epfl.ch/online/index.html"]{@bold{Neuronal Dynamics}.}} @section[#:tag "sec:iandf"]{The Integrate and Fire Equation} While Hodgkin and Huxley provided the first robust computational model of the neuronal action potential their model is quite complex, as we will soon see. Is all that complexity necessary? That of course depends on the nature of the scientific question, and if we are primarily interested in whether a spike has or has not occurred, and not the ionic events that produced the spike, we may find our experimental questions dealt with much more concisely by a much simpler model of neuronal spiking: the leaky integrate and fire model. The formula for the leaky integrate and fire neuron is: @(use-mathjax) @elemtag{iandf-eq} @$$["\\tau \\frac{dV(t)}{dt} = -V(t) + R~I(t) ."]{\tag{I}} @(linebreak) In the next sections we will describe how this simplification came to be, and use it as the basis for learning some of the elementary electrical laws and relations upon which it is based. @subsection{Electronics Background} The following questions are the ones we need answers to to derive our integrate and fire model. @itemlist[#:style 'ordered @item{What is Ohm's Law?} @item{What is Kirchoff's Point Rule?} @item{What is Capacitance?} @item{What is the relation between current and charge?}] @; *Ohm's Law* (empirically observed): $V = IR$ @; *** Explain what is the relationship between current and charge? @; :QUESTION: Current: The derivative of charge with respect to time, $$I = \frac{dQ}{dt}$$ @; *** Explain *Kirchoff's Point Rule* @; :QUESTION: Current sums to zero: All the current sources going to a node in a circuit must sum to zero. @; *** What is capacitance? @; :QUESTION: Capacitance is a source of current. A capacitor is a sandwich of two conducting surfaces with a non-conducting body in between. If you a charge to one side, the electrons gather there. They can't leap the gap, so they exert an attraction for particles of the opposite charge on the other side of the gap. If you suddenly stop the charge then charge races around and you discharge a current. @; :END: @; *** Explain the relationship, mathematically, between capacitance, charge, and voltage. @; :PROPERTIES: @; :QUESTION: $C = Q/V.$ The volume of charge, per unit area, divided by the voltage that produces this imbalance in charge. @; :END: @; *** What happens when you differentiate this equation with respect to time and treat the capacitance as a constant? @; :PROPERTIES: @; :QUESTION: $C \frac{dV}{dt} = \frac{dQ}{dt} = I$ @; :END: @subsection{Formula Discussion Questions} To understand our formula clearly we should review the meaning of the key symbols and notation. @itemlist[#:style 'ordered @item{What does @($ "\\frac{dV}{dt}") mean?} @item{What does @($ "\\frac{1}{\\tau}") mean?} @item{Why does the voltage term on the right have a negative sign?} @item{What is @($ "I(t)")?}] @; :QUESTION: It is the derivative. It is the how the voltage changes as a function of how time changes. @; :Question: It is the membrane time constant and can be related to the membrane capacitance. Since it is a constant, with a clever choice of units you can assume it to be one and make it disappear. @; :QUESTION: To get the intuition of a model you don't always have to compute things. You can also get some qualitative behaviour just by looking at it. The larger the voltage the more negative becomes its rate of change and vice versa. It drives everything back to some point at which the rate of change to an equilibrium point. We will come back to this notion of a fixed point or attractor. @; :QUESTION: It is the current term. $I$ is the common abbreviation for current. Why? I don't know, can someone help? To derive our equation we need to put all these fact together. We recall that just like we used the derivative to help us figure out where the spring would be some small increment of time into the future, we use the same approach to compute our future voltage. That future voltage will also include a term that reflects an additional current that we have "experimentally" injected. @margin-note{Can you tell why, looking at the integrate and fire equation, if we don't reach the firing threshold, we see an exponential decay?} Deriving the IandF Equation @($$ "\\begin{align*} I &= I_R + I_C & (a) \\\\ &= I_R + C\\frac{dV}{dt} & (b)\\\\ &= \\frac{V}{R} + C\\frac{dV}{dt} & (c)\\\\ RI &= V + RC\\frac{dV}{dt} & (d) \\\\ \\frac{1}{\\tau} (RI-V) &= \\frac{dV}{dt} & (e)\\\\ \\end{align*}") @itemlist[@item{a: Kirchoff's point rule,} @item{b: the relationship between current, charge, and their derivatives} @item{c: Ohm's law} @item{d:multiply through by R} @item{e: rearrange and define @($ "\\tau")}] @subsection{Coding up the Integrate and Fire Neuron} Most of the integrate and fire implementation is conceptually and practically identical to the spring example. You assume a starting voltage (initial state) and then you update that voltage using the differential equation for how voltage changes with time (@($ "\\frac{dV}{dt}")). There is one critical difference though. Unlike real neurons the Integrate and Fire neuron model does not have a natural threshold and spiking behavior. You pick a threshold and everyone time your voltage reaches that threshold you designate a spike and reset the voltage. What I added below is a strictly cosmetic amendment that changes the first value after the threshold to a number much higher than the threshold so that when plotted it creates the visual appearance of a spike. @subsubsection{Class Exercise: Adding a refractory period to the Integrate and Fire model} @margin-note{What is the refractory period for a neuron?} In class make sure you can get the @hyperlink["./../code/iandf.rkt"]{integrate and fire model} working in Dr. Racket. After you get the basic model working trying altering the input current to see how that affects the number of spikes and the regularity of their spiking. Next, change the form of the input current to be something other than a constant. I suggest trying a sine wave. This will give you a chance to sample some of racket's potential. Find out how to take the sin of a number. Then learn how to @tt{map} the sin function over a list of numbers. If you use @tt{in-range} you can create a stream of numbers from a minimum to a maximum for a given step size. Then you may want to shift up or scale all the numbers to make them non-zero. This could be done by mapping again. The @tt{map} function is very powerful and allows you to avoid writing a lot of lengthy looping code. After you have done that edit the code to include a refractory period. First, decide on the logic of how to do this and only after that start editing the code to implement it. The next examples walk through the code and describe some of the ideas. @examples[#:no-prompt #:label @bold{@italic{Defining our parameters:}} (define dt 0.05) (define max-t 10) (define init-t 0.0) (define start-time 1.0) (define stop-time 6.0) (define cap 1) (define res 2) (define threshold 3.0) (define spike-display 8.0) (define init-v 0.0) (define voltage init-v) (define injection-current 4.3) (define injection-time (cons start-time stop-time)) (define tau (* res cap))] This is a good habit to develop with your code. Do not "hard code" in values for variables that you will have to write in multiple locations in a file. It makes it hard to update and debug your code. Give sensible and short names to things you will use in your code. Then define values for those at the top of your code. This gives you one place to look for explanations and reminders, and also gives you a place where when you make a single change it will propagate through your code. @examples[#:no-prompt #:label @bold{@italic{Euler's Method (again):}} (define (update old-value rate-of-change time-step) (+ (* rate-of-change time-step) old-value))] This is the same updating rule that we used in the spring example. It is a rewriting of the definition of the derivative. This is sometimes referred to as @hyperlink["https://en.wikipedia.org/wiki/Euler_method"]{Euler's method}. @examples[#:no-prompt #:label @bold{@italic{Helper functions:}} (define (dv-dt localres locali localv) (* (/ 1 tau) (- (* localres locali) localv))) (define (between x #:lower [lower (car injection-time)] #:upper [upper (cdr injection-time)] #:if-true [if-true injection-current] #:if-false [if-false 0.0]) (if (and (>= x lower) (<= x upper)) if-true if-false)) (define (voltage-choice curr-volt spike-status #:thr [thr threshold] #:sd [sd spike-display]) (cond ((and (> curr-volt thr) (not spike-status)) sd) (spike-status 0.0d0) (#t curr-volt)))] Just as we were given the equation for a spring, here we are given the equation for the I&F neuron, which we translate from math to code. In addition, I created some smaller "helper" functions. I like a style that gives my functions default values. Then I don't have to enter so many arguments when I call the function. This, of course, only makes sense if there are values which you input to your function and that rarely change. I also find it convenient to use a style where I have keywords for my functions. Then I can change the order that I enter things. It does make my code longer, because I have to type the keywords when specifying the input to my functions. This is what I am doing with the lines that look like: @code[#:lang "racket"]|{#:if-false [if-false 0.0]}| It would be possible to collapse all this into one big function, but that would be harder for me to understand, and harder for you to understand. In general, try to write short little functions that do one thing. Then you can chain those small functions together to accomplish the larger task. @examples[#:no-prompt #:label @bold{@italic{Running our model:}} (define (run-iandf-sim #:tolerance [tolerance 0.1] #:max-time [max-time 10] #:max-iter [max-iter 10000]) (for*/fold ([t 0] [i 0] [v 0] [accum '()] #:result (reverse accum)) ([n (in-range max-iter)]) #:break (> t max-time) (let ([spike (< (abs (- v spike-display)) tolerance)]) (values (+ dt t) (between t) (voltage-choice (update v (dv-dt res i v) dt) spike) (cons (list t i v) accum)))))] @examples[#:eval plot-eval (require "./code/iandf.rkt") ;;(require plot) ;;if you are doing this yourself in Dr Racket (begin (define iandf-results (run-iandf-sim #:max-time 10.0 )) (plot (lines (map vector (map first iandf-results) (map third iandf-results)))))] Though things may look more complex than the spring example, it is because I have so many more @italic{local} variables to define. The basic flow is still just a @bold{loop}. Visualizations can be essential in helping you to see and understand the function of your computational program. Thus, while it is only cosmetic, I find the addition of the apparent spike helps me to see what the output of my simulation is. In another context, e.g. if were only counting spikes this decorative element would be un-needed complexity. @section{Integrate and Fire Homework} The Integrate and Fire homework has two components. One practical and one theoretical. Practically, submit an integrate and fire racket program that alters mine in some meaningful way. You might change the plot or the type of current input. You might examine how the results depends on the size of the time step used. Just something to show that you can edit code and keep it working. Theoretically, look at @hyperlink["https://redwood.berkeley.edu/wp-content/uploads/2018/08/mainen-sejnowski.pdf"]{this article (pdf)} and tell me how you feel our integrate and fire model compares to these actual real world spiking data when both are give constant input. What are the implications for using the integrate and fire model as a model of neuronal function?
false
98d0881ccae1f48fea2d356277aed6b7872ec0b6
c0be09e5e66dc4d8704ae29adc198da031cc2117
/test-api.rkt
5083c6ac1d19cd50fb1793973f48658faea19b2d
[]
no_license
DuttonIndustrial/racket-test
504dcb5a4feb918df1175a902bcb4163c91c343d
201bc47195a798bc0ec237340d2216b046beec8a
refs/heads/master
2021-05-27T23:20:53.430737
2013-01-26T21:18:29
2013-01-26T21:18:29
null
0
0
null
null
null
null
UTF-8
Racket
false
false
2,156
rkt
test-api.rkt
#lang racket/base (require racket/list racket/match srfi/27) (provide test-ok ;logs a test completed ok message test-log ;log a message to the currently running harness test-abort ;aborts a test and halts test execution test-limit-memory ;sets a memory limit on the test test-timeout ;causes a test to timeout in a given amount of time test-gc-interval current-test-time current-test-start-time current-test-run-id make-test-run-id) #| make sure that all new test instance id's are completely new if we did not do this. random-integer would return the same sequence every time we run the code|# (random-source-randomize! default-random-source) #| the intention here is to makes a sufficiently unique number such that all test-instance-ids will be unique for all time on all computers|# (define (make-test-run-id) (random-integer (expt 2 128))) (define current-test-run-id (make-parameter 0)) ;the number of seconds that have expired since the test began (define current-test-start-time (make-parameter #f)) (define (current-test-time) (- (current-inexact-milliseconds) (current-test-start-time))) ;logs a message to the test harness (define (test-log . args) (write (if (string? (first args)) (list (current-test-run-id) (apply format args)) (list* (current-test-run-id) args))) (newline)) (define (test-ok . args) (apply test-log 'ok args)) ;instructs the test harness that an error occured (define (test-abort . args) (apply test-log 'abort args)) ;tells the harness to limit memory to size bytes (define (test-limit-memory size) (test-log 'limit-memory size)) ;tells the harness to timeout when timeout-at >= (current-test-time) (define (test-timeout (timeout #f) #:at (timeout-at #f)) (test-log 'set-timeout (if timeout (+ (current-inexact-milliseconds) timeout) timeout-at))) ;tells the harness to collect garbage at gc-interval milliseconds (define (test-gc-interval gc-interval) (test-log 'gc-interval gc-interval))
false
d1b614d9e93fea5f98ae1b88d61fe68af0594f8d
56c17ee2a6d1698ea1fab0e094bbe789a246c54f
/2016/day22/test.rkt
c6f75c9637541e0b28c37846e512c8875274b758
[ "MIT" ]
permissive
mbutterick/aoc-racket
366f071600dfb59134abacbf1e6ca5f400ec8d4e
14cae851fe7506b8552066fb746fa5589a6cc258
refs/heads/master
2022-08-07T10:28:39.784796
2022-07-24T01:42:43
2022-07-24T01:42:43
48,712,425
39
5
null
2017-01-07T07:47:43
2015-12-28T21:09:38
Racket
UTF-8
Racket
false
false
99
rkt
test.rkt
#lang reader "lang.rkt" root@ebhq-gridcenter# df -h Filesystem Size Used Avail Use%
false
da6e63fbfbe354719536daa9a39a4c6fa2fbd97a
82c76c05fc8ca096f2744a7423d411561b25d9bd
/typed-racket-test/succeed/ho-box.rkt
35edc08e5f9b2cbcb2f70cbde095dbffcf6364a6
[ "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
110
rkt
ho-box.rkt
#lang typed/racket (: f (Boxof (Number -> Number))) (define f (box (lambda: ([x : Number]) x))) (provide f)
false
43478c632ed4a84dd3de5b83d5733e77e60e711f
355306b3af7b33911551c9114840ca032bfcb90f
/infra/filter.rkt
466d1ca2f7e31d42b429952bcbacc35ff350a221
[ "MIT" ]
permissive
FPBench/FPBench
80d22747454dc2e4964792bc72369d5dfb8f517c
6feb1dd753e465ac8bce7bd19f837749982ffee8
refs/heads/main
2023-02-08T00:54:53.337027
2022-11-23T00:02:02
2022-11-23T00:02:02
50,637,596
42
18
MIT
2022-11-23T00:02:03
2016-01-29T04:34:28
Racket
UTF-8
Racket
false
false
2,104
rkt
filter.rkt
#lang racket (require "../src/common.rkt" "../src/fpcore-checker.rkt" "../src/fpcore-reader.rkt" "../src/supported.rkt") (define/contract ((filter type values) core) (-> symbol? (listof string?) (-> fpcore? boolean?)) (match* (type values) [((or 'operator 'operation) (list value)) (set-member? (operators-in core) (string->symbol value))] [((or 'operators 'operations) (list ops ...)) (subset? (operators-in core) (map string->symbol ops))] [((or 'not-operators 'not-operations) (list ops ...)) (define body-ops (operators-in core)) (for/and ([op (map string->symbol ops)]) (not (set-member? body-ops op)))] [('constant (list value)) (set-member? (constants-in core) (string->symbol value))] [('constants (list ops ...)) (subset? (constants-in core) (map string->symbol ops))] [('not-constants (list ops ...)) (define body-ops (constants-in core)) (for/and ([op (map string->symbol ops)]) (not (set-member? body-ops op)))] [((? symbol?) (list)) (define prop (string->symbol (format ":~a" type))) (dict-has-key? (property-values core) prop)] [((? symbol?) (list values ...)) (define prop (string->symbol (format ":~a" type))) (subset? (set-map (dict-ref (property-values core) prop '()) ~a) values)] [('cites (list values ...)) (subset? (map string->symbol values) (append-map set->list (dict-ref (property-values core) ':cite '())))] [(_ _) (raise-user-error 'filter "Unknown filter ~a with ~a arguments" type (length values))])) (module+ main (require racket/cmdline) (define invert? #f) (command-line #:program "filter.rkt" #:once-each [("-v" "--invert") "Invert the meaning of the filter" (set! invert? #t)] #:args (type . values) (define test ((if invert? negate identity) (filter (string->symbol type) values))) (port-count-lines! (current-input-port)) (for ([core (in-port (curry read-fpcore "stdin") (current-input-port))]) (when (test core) (pretty-print core (current-output-port) 1) (newline)))))
false
fb2fa57a54f738eeeb77f8269fc6d33d44833d2b
f2a8b0aa58a6f17711e53a9d0c309d2f87cbacd1
/test/compile.rkt
426ceb1f439cc16d041f146ccd24b693e44bc937
[]
no_license
cmsc430/assign04
67e79e5dc26c603d99efd1d5085580b10745a369
087a3e5848909219649a7749d6fb0a129e17a069
refs/heads/master
2021-06-23T08:19:13.564798
2021-03-22T02:35:51
2021-03-22T02:35:51
209,539,197
0
2
null
null
null
null
UTF-8
Racket
false
false
6,233
rkt
compile.rkt
#lang racket (require "../types.rkt" "../ast.rkt" "../parse.rkt" "../compile.rkt" a86/interp rackunit) (require (prefix-in ru: rackunit)) (define-syntax-rule (check-equal? c e) (ru:check-equal? (with-handlers ([exn:fail? identity]) c) e)) (define-syntax-rule (check pred c e) (ru:check pred (with-handlers ([exn:fail? identity]) c) e)) ;; link with runtime for IO operations (unless (file-exists? "../runtime.o") (system "make -C .. runtime.o")) (current-objs (list (path->string (normalize-path "../runtime.o")))) (define (run e) (match (asm-interp (compile (parse e))) ['err 'err] [v (bits->value v)])) ;; Abscond examples (check-equal? (run 7) 7) (check-equal? (run -8) -8) ;; Blackmail examples (check-equal? (run '(add1 (add1 7))) 9) (check-equal? (run '(add1 (sub1 7))) 7) ;; Con examples (check-equal? (run '(if (zero? 0) 1 2)) 1) (check-equal? (run '(if (zero? 1) 1 2)) 2) (check-equal? (run '(if (zero? -7) 1 2)) 2) (check-equal? (run '(if (zero? 0) (if (zero? 1) 1 2) 7)) 2) (check-equal? (run '(if (zero? (if (zero? 0) 1 0)) (if (zero? 1) 1 2) 7)) 7) ;; Con+ examples (check-equal? (run '(abs 10)) 10) (check-equal? (run '(abs -10)) 10) (check-equal? (run '(- 10)) -10) (check-equal? (run '(- -10)) 10) (check-equal? (run '(- (- 10))) 10) (check-equal? (run '(cond [else 5])) 5) (check-equal? (run '(cond [(zero? 1) 2] [else 3])) 3) (check-equal? (run '(cond [(zero? 0) 2] [else 3])) 2) (check-equal? (run '(cond [(zero? 1) 2] [(zero? (sub1 1)) 4] [else 3])) 4) ;; Dupe examples (check-equal? (run '#t) #t) (check-equal? (run '#f) #f) (check-equal? (run '(if #t 1 2)) 1) (check-equal? (run '(if 7 1 2)) 1) (check-equal? (run '(if #f 1 2)) 2) (check-equal? (run '(cond [#t 1] [#f 2] [else 3])) 1) (check-equal? (run '(cond [#f 1] [#t 2] [else 3])) 2) (check-equal? (run '(cond [#f 1] [#f 2] [else 3])) 3) ;; Dupe+ examples (check-equal? (run '(cond [#t 2] [else 3])) 2) (check-equal? (run '(cond [#f 2] [else 3])) 3) (check-equal? (run '(cond [1 2] [else 3])) 2) (check-equal? (run '(cond [#f 2] [#t 4] [else 3])) 4) (check-equal? (run '(cond [#t 2] [#f 4] [else 3])) 2) (check-equal? (run '(cond [#t 2] [#f (add1 #f)] [else 3])) 2) ;; Extort examples (check-equal? (run '(zero? #t)) 'err) (check-equal? (run '(zero? #f)) 'err) (check-equal? (run '(add1 #f)) 'err) (check-equal? (run '(if (add1 #f) 1 2)) 'err) (check-equal? (run '(if 1 (add1 #t) 2)) 'err) (check-equal? (run '(if #f (add1 #t) 2)) 2) (check-equal? (run '(cond [(add1 #t) 1] [else 2])) 'err) (check-equal? (run '(cond [#t 1] [(add1 #t) 2] [else 3])) 1) (check-equal? (run '(cond [#f 1] [(add1 #t) 2] [else 3])) 'err) ;; Extort+ examples (check-equal? (run '(abs #f)) 'err) (check-equal? (run '(cond [(add1 #f) 1] [else 2])) 'err) ;; Fraud examples (check-equal? (run '(let ((x 7)) x)) 7) (check-equal? (run '(let ((x 7)) 2)) 2) (check-equal? (run '(let ((x 7)) (add1 x))) 8) (check-equal? (run '(let ((x (add1 7))) x)) 8) (check-equal? (run '(let ((x 7)) (let ((y 2)) x))) 7) (check-equal? (run '(let ((x 7)) (let ((x 2)) x))) 2) (check-equal? (run '(let ((x 7)) (let ((x (add1 x))) x))) 8) (check-equal? (run '(let ((x (add1 #f))) 0)) 'err) ;; Fraud+ examples (check-equal? (run '(let () 7)) 7) (check-equal? (run '(let ((x 7) (y 8)) 2)) 2) (check-equal? (run '(let ((x 1) (y 2)) x)) 1) (check-equal? (run '(let ((x 1) (y 2)) y)) 2) (check-equal? (run '(let ((x 7) (y 8)) (add1 x))) 8) (check-equal? (run '(let ((x 7) (y 8)) (add1 y))) 9) (check-equal? (run '(let ((x (add1 7)) (y 0)) y)) 0) (check-equal? (run '(let ((x 7) (z 9)) (let ((y 2)) x))) 7) (check-equal? (run '(let ((x 7) (z 9)) (let ((x 2)) x))) 2) (check-equal? (run '(let ((x 7) (z 9)) (let ((x (add1 x)) (z z)) x))) 8) (check-equal? (run '(let ((x (add1 #f)) (z 9)) x)) 'err) (check-equal? (run '(let ((x 1)) (let ((y 3) (z (+ x 5))) z))) 6) (check-equal? (run '(let ((x 1)) (let ((y 3) (z (let ((x 42)) (+ x 0)))) z))) 42) (check-equal? (run '(let ((x 1) (y (let ((z 1)) z))) (let ((y 3) (z (+ x y))) z))) 2) ;; Multi-bind let* (check-equal? (run '(let* () 42)) 42) (check-equal? (run '(let* ((x 7) (y 8)) 2)) 2) (check-equal? (run '(let* ((x 7) (y 8)) (add1 x))) 8) (check-equal? (run '(let* ((x 7) (y 8)) (add1 y))) 9) (check-equal? (run '(let* ((x (add1 7)) (y 0)) y)) 0) (check-equal? (run '(let* ((x 7) (z 9)) (let ((y 2)) x))) 7) (check-equal? (run '(let* ((x 7) (z 9)) (let ((x 2)) x))) 2) (check-equal? (run '(let* ((x 7) (z 9)) (let ((x (add1 x)) (z z)) x))) 8) (check-equal? (run '(let* ((x (add1 #f)) (z 9)) x)) 'err) (check-equal? (run '(let* ((x 6) (y (add1 x))) y)) 7) (check-equal? (run '(let* ((x 7) (x 9)) x)) 9) (check-equal? (run '(let* ((x 1)) (let* ((y 3) (z (+ x 5))) z))) 6) (check-equal? (run '(let* ((x 1)) (let* ((y 3) (z (let* ((x 42)) (+ x 0)))) z))) 42) (check-equal? (run '(let* ((x 1) (y (let* ((z 1)) z))) (let* ((y 3) (z (+ x y))) z))) 4) ;; Variadic Plus (check-equal? (run '(+)) 0) (check-equal? (run '(+ 1 2)) 3) (check-equal? (run '(+ 1 2 3 4 5)) 15) (check-equal? (run '(+ 1 2 (add1 2) 4 (sub1 5))) 14) (check-equal? (run '(+ 1 2 (sub1 #f) 4 5)) 'err) ;; Boolean?/Integer? (check-equal? (run '(integer? #\a)) #f) (check-equal? (run '(integer? 4)) #t) (check-equal? (run '(integer? #f)) #f) (check-equal? (run '(boolean? #\a)) #f) (check-equal? (run '(boolean? 4)) #f) (check-equal? (run '(boolean? #t)) #t) (check-equal? (run '#\a) #\a) (check-equal? (run '#\space) #\space) (check-equal? (run '#\λ) #\λ) (check-equal? (run '(char->integer #\a)) (char->integer #\a)) (check-equal? (run '(char->integer #\space)) (char->integer #\space)) (check-equal? (run '(char->integer #\λ)) (char->integer #\λ)) (check-equal? (run '(integer->char 97)) #\a) (check-equal? (run '(integer->char 32)) #\space) (check-equal? (run '(integer->char 955)) #\λ) (check-equal? (run '#\嫂) #\嫂) (check-equal? (run '(integer->char 23234)) #\嫂) (check-equal? (run '(integer->char #f)) 'err) (check-equal? (run '(char->integer #f)) 'err) (check-equal? (run '(integer->char -1)) 'err) (check-equal? (run '(integer->char #xD800)) 'err) (check-equal? (run '(integer->char #xDFFF)) 'err)
true
803b0c47fa3c8fe67748639deb8155ab8080006d
fb61c76531fddb55b875d882895745a9dadca557
/http-server.rkt
cee9f08ff59f41713f9780d661a2848aeb779b51
[]
no_license
adityaviswanathan/genie
c0088c792d2253468f53495e3ddfb22a059ef4fc
be25be755bf69d432abfe1f07648588ad9bea4e9
refs/heads/master
2020-03-19T05:31:19.434447
2018-09-11T17:30:23
2018-09-11T17:30:23
135,940,689
2
0
null
null
null
null
UTF-8
Racket
false
false
5,096
rkt
http-server.rkt
#lang racket (require racket/trace) (require "config.rkt") (require "database-client.rkt") (require (planet murphy/protobuf)) (require (prefix-in lib- racket/serialize)) (require (prefix-in proto- "defs/database.rkt")) (require xml net/url) ;; Primary HTTP server that is managed via a custodian container, runs in ;; background thread. ;; port-no: IP port on which serve resource. (define (serve port-no) (define main-cust (make-custodian)) (parameterize ([current-custodian main-cust]) (define listener (tcp-listen port-no 5 #t)) (define (loop) (accept-and-handle listener) (loop)) (thread loop)) (lambda () (custodian-shutdown-all main-cust))) ;; Resource endpoint dispatcher managed via custodian container. Each ;; connnection is handled by a thread, enabling the server to handle multiple ;; requests simultaneously. ;; listener: Server's TCP connection listener. (define (accept-and-handle listener) (define cust (make-custodian)) (custodian-limit-memory cust (* 50 1024 1024)) ;; 50MB memory limit/cxn. (parameterize ([current-custodian cust]) (define-values (in out) (tcp-accept listener)) (thread (lambda () ;; (handle in out) (handle-proto in out) (close-input-port in) (close-output-port out)))) ;; Watcher thread, kills connections that don't send requests within 10 sec. (thread (lambda () (sleep 10) (custodian-shutdown-all cust)))) ;; Handles proto communication over HTTP. ;; in: Input request port. ;; out: Output response port. (define (handle-proto in out) (define route ;; Match the route stub of the POST request: ;; E.g. "/endpoint" in "POST /endpoint HTTP/1.1 ..." (regexp-match #rx"^POST (.+) HTTP/[0-9]+\\.[0-9]+" (read-line in))) (define datasz ;; Match Content-Length field of the POST request: (regexp-match #rx"Content-Length: ([0-9]+)" in)) (when (and route datasz) ;; (printf "[--------- Received query at url: ~s ---------]\n" (list-ref route 1)) (define numbytes (string->number (bytes->string/utf-8 (list-ref datasz 1)))) ;; (printf "[--------- Query payload size ~s ---------]\n" numbytes) ;; Discard the rest of the header (up to and including blank line), yielding only data: (define header (regexp-match #rx"[^\r\n]\r\n\r\n" in)) (when header ;; Read input payload into bytestring and deserialize. (define (readme payload bytesleft bytesread) (define byteread (open-output-bytes)) (if (> bytesleft 0) (let ([c (read-byte payload)]) (write-byte c byteread) (readme payload (- bytesleft 1) (bytes-append bytesread (get-output-bytes byteread)))) bytesread)) (define empty-bytes (open-output-bytes)) (define serialized-payload-in (open-input-bytes (readme in numbytes (get-output-bytes empty-bytes)))) (define deserialized-payload (deserialize (proto-query*) serialized-payload-in)) ;; Connect to db using config and run query. (define db-cxn (pgdb-cxn config/gen-database config/gen-username config/gen-password)) (define res (db-query db-cxn deserialized-payload)) ;; (printf "[--------- Query result: ~s ---------]\n" res) (display "HTTP/1.0 200 Okay\r\n" out) (display "Server: k\r\nContent-Type: application/octet-stream\r\n\r\n" out) (write (lib-serialize res) out)))) ;; Top-level handler for dispatching based on request @in. Response is written ;; to @out. ;; in: Input request port. ;; out: Output response port. (define (handle in out) (define req ;; Match the first line to extract the request: (regexp-match #rx"^GET (.+) HTTP/[0-9]+\\.[0-9]+" (read-line in))) (when req ;; Discard the rest of the header (up to blank line): (regexp-match #rx"(\r\n|^)\r\n" in) ;; Dispatch: (let ([xexpr (dispatch (list-ref req 1))]) ;; Send reply: (display "HTTP/1.0 200 Okay\r\n" out) (display "Server: k\r\nContent-Type: text/html\r\n\r\n" out) (display (xexpr->string xexpr) out)))) ;; Generates an xexpr if @str-path maps to a valid dispatch endpoint. ;; str-path: String URL path from request, decoded to dispatch endpoint. (define (dispatch str-path) ;; Parse the request as a URL: (define url (string->url str-path)) ;; Extract the path part: (define path (map path/param-path (url-path url))) ;; Find a handler based on the path's first element: (define h (hash-ref dispatch-table (car path) #f)) ;; Define an error page. (define errpage `(html (head (title "Error")) (body (font ((color "red")) "Unknown page: " ,str-path)))) (if h (h (url-query url)) errpage)) (define dispatch-table (make-hash)) ;; A simple dispatcher: (hash-set! dispatch-table "hello" (lambda (query) `(html (body "Hello, World!")))) (define-syntax httpdb-serve (syntax-rules () [(httpdb-serve port) (serve port)])) (provide httpdb-serve)
true
3d254941f3d0fbb4c4ac7c724ecb6f9bfaa6417e
7c58ed3a7fe9331ab49a1762fafdad460d8d326d
/algebraic/data/functor.rkt
8457292e7c85edffc7da06a387b73cf0e46618d0
[ "MIT" ]
permissive
lemastero/racket-algebraic
72decf2fcee908b7d39f90492bcdd3b566aa7406
706b2d01ab735a01e372c33da49995339194e024
refs/heads/master
2023-01-01T06:24:30.889572
2019-08-09T21:50:57
2019-08-10T00:57:32
null
0
0
null
null
null
null
UTF-8
Racket
false
false
221
rkt
functor.rkt
#lang algebraic/racket/base (provide (all-defined-out)) (class functor [fmap] [<$ (λ (x y) (fmap (const x) y))] minimal ([fmap])) (define-class-helper <$> fmap) (define-class-helper (<$>~ f x) (fmap (>>* f) x))
false
fa13db0efc24cc5e4591b7b1f27cb36479b540ef
4cadd1888971e38ab9b634790c8b444cae54c363
/condp/substitution.rkt
d72a42ab598edde1bd836c537485e4aa62861722
[]
no_license
bboskin/SFPW2018
e7431157b1cb53ed5be941a9658bb9e16a604a18
1b9467d6c5babcd13dd0bd1c5a1d702c1921de9e
refs/heads/master
2020-03-22T18:27:30.570321
2018-08-22T15:44:04
2018-08-22T15:44:04
140,461,511
2
1
null
null
null
null
UTF-8
Racket
false
false
6,292
rkt
substitution.rkt
#lang racket (require "mk.rkt" "helpers.rkt") (provide substo) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; free variables in an expression (defrel (free-unary exp vs) (fresh (tag e) (== exp `(,tag ,e)) (membero tag unary-ops) (free-vars e vs))) (defrel (free-binary exp vs) (fresh (tag e₁ e₂ vs₁ vs₂) (== exp `(,tag ,e₁ ,e₂)) (membero tag binary-ops) (free-vars e₁ vs₁) (free-vars e₂ vs₂) (uniono vs₁ vs₂ vs))) (defrel (free-trinary exp vs) (fresh (tag e₁ e₂ e₃ vs₁ vs₂ vs₃ vs1) (== exp `(,tag ,e₁ ,e₂ ,e₃)) (free-vars e₁ vs₁) (free-vars e₂ vs₂) (free-vars e₃ vs₃) (uniono vs₁ vs₂ vs1) (uniono vs1 vs₃ vs))) (defrel (free-dep-binder exp vs) (fresh (tag x T₁ T₂ vs₁ vs₂ vs₂f) (== exp `(,tag ((,x ,T₁)) ,T₂)) (membero tag dep-binders) (free-vars T₁ vs₁) (free-vars T₂ vs₂) (removo x vs₂ vs₂f) (uniono vs₁ vs₂f vs))) (defrel (free-lambda exp vs) (fresh (x b vs^) (== exp `(λ (,x) ,b)) (free-vars b vs^) (removo x vs^ vs))) (defrel (free-quote exp vs) (fresh (s) (== exp `(quote ,s)) (symbolo s) (== vs '()))) (defrel (free-ind-Nat exp vs) (fresh (t m b s vt vm vb vst v1 v2) (== exp `(ind-Nat ,t ,m ,b ,s)) (free-vars t vt) (free-vars m vm) (free-vars b vb) (free-vars s vst) (uniono vt vm v1) (uniono v1 vb v2) (uniono v2 vst vs))) (defrel (free-app exp vs) (fresh (f arg f-vs arg-vs) (== exp `(,f ,arg)) (non-reserved-Pie-fn f) (free-vars f f-vs) (free-vars arg arg-vs) (uniono f-vs arg-vs vs))) ; categories of expressions for free-vars (define unary-ops '(add1 car cdr same)) (define binary-ops '(cons the)) (define trinary-ops '(ind-= =)) (define dep-binders '(Σ Π)) (define free-vars-branches '(sym var bind λ quote unary binary trinary ind-Nat app)) ;; relevance function for free-vars (define (free-vars-table exp) (match exp [(? symbol?) '(var)] [(? (exp-memv? unary-ops)) '(unary)] [(? (exp-memv? binary-ops)) '(binary)] [(? (exp-memv? trinary-ops)) '(trinary)] [(? (exp-memv? dep-binders)) '(bind)] [(? (exp-memv? '(quote λ ind-Nat))) (list (car exp))] [`(,rat ,ran) '(app)] [else free-vars-branches])) (defrel (free-vars exp vs) (condp (((free-vars-table exp))) [var (conde [(non-reserved-Pie-symbol exp) (== vs `(,exp))] [(reserved-Pie-symbol exp) (== vs '())])] [bind (free-dep-binder exp vs)] [λ (free-lambda exp vs)] [quote (free-quote exp vs)] [ind-Nat (free-ind-Nat exp vs)] [unary (free-unary exp vs)] [binary (free-binary exp vs)] [trinary (free-trinary exp vs)] [app (free-app exp vs)])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; capture-avoiding substitution ;; helpers (defrel (avoid-capture x y z a e eᵣ) (conde [(== y x) (== e eᵣ) (== z y)] [(=/= y x) (fresh (vs-e vs-a) (free-vars e vs-e) (free-vars a vs-a) (conde [(conde [(not-membero x vs-e)] [(not-membero y vs-a)]) (== z y) (substo a x e eᵣ)] [(membero x vs-e) (membero y vs-a) (fresh (fr e-new) (fresh-name fr) (== z fr) (substo fr y e e-new) (substo a x e-new eᵣ))]))])) (defrel (subst-unary a x exp o) (fresh (tag e eᵣ) (== exp `(,tag ,e)) (membero tag unary-ops) (== o `(,tag ,eᵣ)) (substo a x e eᵣ))) (defrel (subst-binary a x exp o) (fresh (tag e₁ e₂ e₁ᵣ e₂ᵣ) (== exp `(,tag ,e₁ ,e₂)) (== o `(the ,e₁ᵣ ,e₂ᵣ)) (substo a x e₁ e₁ᵣ) (substo a x e₂ e₂ᵣ))) (defrel (subst-trinary a x exp o) (fresh (tag e₁ e₂ e₃ e₁ᵣ e₂ᵣ e₃ᵣ) (== exp `(,tag ,e₁ ,e₂ ,e₃)) (membero tag trinary-ops) (== o `(,tag ,e₁ᵣ ,e₂ᵣ ,e₃ᵣ)) (substo a x e₁ e₁ᵣ) (substo a x e₂ e₂ᵣ) (substo a x e₃ e₃ᵣ))) (defrel (subst-atom exp o) (fresh (s) (symbolo s) (== exp `(quote ,s)) (== exp o))) (defrel (subst-app a x exp o) (fresh (f arg f^ arg^) (== exp `(,f ,arg)) (non-reserved-Pie-fn f) (== o `(,f^ ,arg^)) (substo a x f f^) (substo a x arg arg^))) (defrel (subst-ind-Nat a x exp o) (fresh (t m b s tᵣ mᵣ bᵣ sᵣ) (== exp `(ind-Nat ,t ,m ,b ,s)) (== o `(ind-Nat ,tᵣ ,mᵣ ,bᵣ ,sᵣ)) (substo a x t tᵣ) (substo a x m mᵣ) (substo a x b bᵣ) (substo a x s sᵣ))) (defrel (subst-dep a x exp o) (fresh (tag y T₁ T₁ᵣ T₂ z T₂ᵣ) (== exp `(,tag ([,y ,T₁]) ,T₂)) (membero tag dep-binders) (== o `(,tag ([,z ,T₁ᵣ]) ,T₂ᵣ)) (substo a x T₁ T₁ᵣ) (avoid-capture x y z a T₂ T₂ᵣ))) (defrel (subst-lambda a x exp o) (fresh (y z b bᵣ b-vars a-vars) (== exp `(λ (,y) ,b)) (== o `(λ (,z) ,bᵣ)) (avoid-capture x y z a b bᵣ))) ;; relevance functions (define subst-branches '(sym here bind λ quote unary binary trinary ind-Nat app)) (define (subst-in-table exp) (match exp [(? symbol?) '(here sym)] [(? (exp-memv? unary-ops)) '(unary)] [(? (exp-memv? binary-ops)) '(binary)] [(? (exp-memv? trinary-ops)) '(trinary)] [(? (exp-memv? '(quote ind-Nat λ))) (list (car exp))] [(? (exp-memv? dep-binders)) '(bind)] [`(,rator ,rand) '(app)] [else '(use-maybe)])) (define (subst-out-table exp) (match exp [(? symbol?) '(here sym)] [(? (exp-memv? unary-ops)) '(here unary)] [(? (exp-memv? binary-ops)) '(here binary)] [(? (exp-memv? trinary-ops)) '(here trinary)] [(? (exp-memv? '(quote ind-Nat λ))) (list 'here (car exp))] [`(,rator ,rand) '(here app)] [else subst-branches])) (defrel (substo a x exp o) (condp (((subst-in-table exp)) ((subst-out-table o))) [here (== exp x) (== o a)] [sym (symbolo exp) (=/= exp x) (== exp o)] [quote (subst-atom exp o)] [λ (subst-lambda a x exp o)] [bind (subst-dep a x exp o)] [app (subst-app a x exp o)] [unary (subst-unary a x exp o)] [binary (subst-binary a x exp o)] [trinary (subst-trinary a x exp o)] [ind-Nat (subst-ind-Nat a x exp o)]))
false
5300e2ef7bba4e99e6fad412f8247f2c144454ea
49d98910cccef2fe5125f400fa4177dbdf599598
/exercises-for-programmers/25-password-strength-indicator/ex25a.rkt
e937f079702f2ee783a229c0290777dfe9e53da6
[]
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
3,583
rkt
ex25a.rkt
#lang racket (require "../lojic.rkt") ; Heuristic for determining password strength: ; Possible Levels: ; [ 'Too short', 'Weak', 'Fair', 'Good', 'Strong'] ; ; In the logarithm expressions below, X refers to the size of ; the character set: ; digits only = 10 ; lowercase only = 26 ; uppercase only = 26 ; punctuation only = 32 ; combinations can yield { 10, 26, 32, 36, 42, 52, 58, 62, 68, 84, 94 } ; ; 'Too short' ; =========== ; length < 6 ; ; 'Weak' ; ====== ; (password.gsub(/\s/, '') == user_name.gsub(/\s/, '')) OR ; (length < ( 10.613 / log(X) ) ) OR e.g. 8 chars of lower ; (composed of exactly one dictionary word) ; (composed of a word + single non-alpha) ; (composed of a single non-alpha + word) ; ; 'Fair' ; ====== ; (length < ( 12.871 / log(X) ) ) e.g. 8 chars of lower & upper ; (composed of a word + digits) ; (composed of digits + word) ; ; 'Good' ; ====== ; (length < ( 16.303 / log(X) ) ) e.g. 8 chars of lower, upper & punctuation ; (composed of 2 words separated by a non-alpha) ; (composed of 2 words) ; ; 'Strong' ; ======== ; not disqualified by above ; ; dict_fn should be a function that accepts a word and returns true ; if the word is found in a dictionary ; (define min-pswd-length 6) (define (dummy-dict word) (or (string=? "giraffe" word) (string=? "airplane" word) (string=? "exterminate" word))) (define (password-strength-level pswd user [dict-fn (λ (word) #f)]) (if (< (string-length pswd) min-pswd-length) "Too short" (let ([charset-size (compute-charset pswd)]) (cond [ (sub-fair pswd charset-size user dict-fn) "Weak" ] [ (sub-good pswd charset-size dict-fn) "Fair" ] [ (sub-strong pswd charset-size dict-fn) "Good" ] [ else "Strong" ])))) (define (starts-or-ends-with-word str dict-fn non-word) (let ([lower (string-downcase str)]) (ormap (λ (regex) (let ([result (regexp-match regex lower)]) (and result (dict-fn (cadr result))))) (list (pregexp (string-append "^([a-z]+)" non-word "$")) (pregexp (string-append "^" non-word "([a-z]+)$")))))) (define (sub-fair pswd charset-size user dict-fn) (or (string=? (string-replace pswd #px"\\s" "") (string-replace user #px"\\s" "")) (< (string-length pswd) (/ 10.613 (round (log10 charset-size)))) (dict-fn pswd) (starts-or-ends-with-word pswd dict-fn "[^a-z]"))) (define (sub-good pswd charset-size dict-fn) (or (< (string-length pswd) (/ 12.871 (round (log10 charset-size)))) (starts-or-ends-with-word pswd dict-fn "\\d+"))) (define (starts-and-ends-with-word str dict-fn) (let* ([lower (string-downcase str)] [result (regexp-match #px"^([a-z]+)[^a-z]([a-z]+)$" lower)]) (and result (dict-fn (second result)) (dict-fn (third result))))) (define (consists-of-2-words str dict-fn) (let ([lower (string-downcase str)] [length (string-length str)]) (for/or ([i (range 1 (- length 1))]) (and (dict-fn (substring lower 0 i)) (dict-fn (substring lower i length)))))) (define (sub-strong pswd charset-size dict-fn) (or (< (string-length pswd) (/ 16.303 (round (log10 charset-size)))) (starts-and-ends-with-word pswd dict-fn) (consists-of-2-words pswd dict-fn))) (define (compute-charset str) (+ (if (regexp-match #px"[0-9]" str) 10 0) (if (regexp-match #px"[a-z]" str) 26 0) (if (regexp-match #px"[A-Z]" str) 26 0) (if (regexp-match #px"[^0-9a-zA-Z]" str) 32 0)))
false
504e0d10f012af3a6b07c24b2d6e393a581774f5
3a29f8f1166d9c0a20e448693f07e33c7872b936
/Racket/factoriel.rkt
eed13710ac949afa325280646d4e65beeba69de8
[]
no_license
yordankapp/functional-programming-uni
1b5027f88fad95aacd15bb295f6a91fa8b83f472
d2495345d9600de982797dc357ce1423743a75d0
refs/heads/master
2020-03-21T07:44:34.967585
2018-06-22T12:34:48
2018-06-22T12:34:48
138,297,559
0
0
null
null
null
null
UTF-8
Racket
false
false
591
rkt
factoriel.rkt
#lang racket (define (fact n) (if (= n 1) 1 (* n (fact(- n 1))) ) ) (define (fact2 m) (define(fact-iter product counter maxcount) (if (> counter maxcount) product (fact-iter (* product counter) (+ counter 1) maxcount) ) ) (fact-iter 1 1 m) ;;; I LOVE YOU BANANY <3 ) (define (fact3 n) (letrec ([fact-iter (lambda (arg res) (if (= arg 0) res (fact-iter (- arg 1) (* arg res))))]) (fact-iter n 1)))
false
5c4cf9241b4f284098d98f82208835abc130449e
5f792140b853f40e3c7be559c2a412d7b8296c96
/lib.rkt
8428d9f861f2fae96ec3f25f6695c0def474ec1b
[ "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,424
rkt
lib.rkt
#lang racket (provide (all-defined-out)) (define (rassoc v alist [eq equal?]) (for/first ([a (in-list alist)] #:when (eq (cdr a) v)) a)) (define ORTHOGINAL-OFFSETS '((-1 0) (1 0) (0 -1) (0 1))) (define DIAGONAL-OFFSETS '((-1 -1) (-1 1) (1 -1) (1 1))) (define ALL-OFFSETS (append ORTHOGINAL-OFFSETS DIAGONAL-OFFSETS)) (define/match (lookup grid loc) [(_ (list x y)) (list-ref (list-ref grid y) x)]) (define/match (neighbors grid loc #:direction [direction 'all] #:lookup [do-lookup #f]) [((list a _ ...) (list x y) _ _) (filter identity (for/list ([offset (match direction [(list _ ...) direction] ['all ALL-OFFSETS] ['orthoginal ORTHOGINAL-OFFSETS] ['diagonal DIAGONAL-OFFSETS])]) (match-define (and neigh (list nx ny)) (map + loc offset)) (and (not (equal? loc neigh)) (<= 0 nx) (> (length a) nx) (<= 0 ny) (> (length grid) ny) (if do-lookup (list nx ny (lookup grid neigh)) neigh))))]) ;; todo does not work (define-syntax-rule (read-line/match cases ...) [(match (read-line) [(? eof-object?) eof] @,cases ... [_ eof])])
true
0745c24f8cb003d91e5b3bd35422c16c440580be
82c76c05fc8ca096f2744a7423d411561b25d9bd
/typed-racket-test/fail/optional/opaque-object-contract-2.rkt
42fa52bdd3642001681328001909412523986fcf
[ "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
527
rkt
opaque-object-contract-2.rkt
#; (exn-pred #rx"cannot read or write.*blaming:.*b\\)") #lang racket/base ;; Ensure that opaque object contracts prevent access to fields ;; that should be hidden (module a typed/racket/deep (provide o) (: o (Object)) (define o (new (class object% (super-new) (field [x 0]))))) (module b typed/racket/optional (require (submod ".." a)) (let ((obj (cast o (Object (field [x Zero]))))) (set-field! x obj 0) ;; hidden field, should fail (get-field x obj))) (require 'b)
false
90e1b79f2d0eaa4506a8868ec92df627eae29581
9683b726ac3766c7ed1203684420ab49612b5c86
/ts-battle-arena-starwars-summer-camp/katas.rkt
c262a46631490ed559fa6f68aeda8cb6e55d325b
[]
no_license
thoughtstem/TS-GE-Katas
3448b0498b230c79fc91e70fdb5513d7c33a3c89
0ce7e0c7ed717e01c69770d7699883123002b683
refs/heads/master
2020-04-13T21:22:10.248300
2020-02-13T18:04:07
2020-02-13T18:04:07
163,454,352
1
0
null
2020-02-13T18:04:08
2018-12-28T22:25:21
Racket
UTF-8
Racket
false
false
1,345
rkt
katas.rkt
#lang racket (provide (all-from-out ts-battle-arena-starwars/katas) (all-from-out ts-fundamentals/katas) ) (require ts-kata-util/katas/main ts-fundamentals/katas (except-in ts-battle-arena-starwars/katas imperial-katas imperial-weapon-katas) (prefix-in old: (only-in ts-battle-arena-starwars/katas imperial-katas imperial-weapon-katas)) ) (define-kata-collection imperial-katas (first (kata-collection-katas old:imperial-katas)) (third (kata-collection-katas old:imperial-katas)) (fourth (kata-collection-katas old:imperial-katas)) (second (kata-collection-katas old:imperial-weapon-katas)) (third (kata-collection-katas old:imperial-weapon-katas))) (define-kata-collection weapon-katas (kata-collection-katas lightsaber-katas) (drop (kata-collection-katas blaster-katas) 1)) (define-kata-collection powerup-katas (kata-collection-katas health-katas) (kata-collection-katas force-field-katas)) (define-kata-collection trap-weapon-katas (take (kata-collection-katas spike-mine-katas) 2) (first (kata-collection-katas lightsaber-droid-katas)) (third (kata-collection-katas lightsaber-droid-katas)) (second (kata-collection-katas blaster-droid-katas)))
false
6fb3b27b9d2a05e879b232b1f5cd3900ca1e900f
52c2225c9f44c0da28ca1fd44606a8d197c8eac8
/EOPL/ch3/3.7-test.rkt
44e9cf813d45c365ebf43fcf739b2940b5e34a8c
[]
no_license
alanzplus/EOPL
c74c1e9dd27c0580107fd860b88016320a6f231c
d7b06392d26d93df851d0ca66d9edc681a06693c
refs/heads/master
2021-06-20T00:59:21.685904
2019-08-15T06:18:10
2019-08-15T07:06:53
147,045,798
8
0
null
null
null
null
UTF-8
Racket
false
false
404
rkt
3.7-test.rkt
#lang eopl (require rackunit "let-interpreter.rkt") (require rackunit/text-ui) (define let-test (test-suite "Tests for let" (check-equal? (run "+(3, +(1,4))") (num-val 8)) (check-equal? (run "*(3, *(1,4))") (num-val 12)) (check-equal? (run "/(3,4)") (num-val 0)) (check-equal? (run "/(4,3)") (num-val 1)) )) (run-tests let-test)
false
fc1a69a65566bc059d963824acd88e26ad00f974
5bbc152058cea0c50b84216be04650fa8837a94b
/experimental/micro/suffixtree/untyped/label-sublabel-bang.rkt
5edae88b3b9142c1d28fd16e5c715c812bc3ca85
[]
no_license
nuprl/gradual-typing-performance
2abd696cc90b05f19ee0432fb47ca7fab4b65808
35442b3221299a9cadba6810573007736b0d65d4
refs/heads/master
2021-01-18T15:10:01.739413
2018-12-15T18:44:28
2018-12-15T18:44:28
27,730,565
11
3
null
2018-12-01T13:54:08
2014-12-08T19:15:22
Racket
UTF-8
Racket
false
false
653
rkt
label-sublabel-bang.rkt
#lang racket/base (provide sublabel!) ;; ----------------------------------------------------------------------------- (require "data-label.rkt" (only-in "label-label-length.rkt" label-length)) ;; ============================================================================= ;; sublabel!: label number number -> void ;; destructively sets the input label to sublabel. (define sublabel! (case-lambda ((label i) (sublabel! label i (label-length label))) ((label i j) (begin ;; order dependent code ahead! (set-label-j! label (+ j (label-i label))) (set-label-i! label (+ i (label-i label))) (void)))))
false
d9278991ab49719815978a0e8abcda0b2d863470
0a01dcd190be5a230c507068d755196104f770ca
/markdown-ng/ci-environment.rkt
bbe41d5d84eaf9c686b3b155d78bc901979b6374
[ "BSD-2-Clause", "MIT" ]
permissive
pmatos/markdown-ng
ff371639b06a67b46dab48c72b92068fcb1e2a02
2df7fd1dca47faa99799f427275f3f4ee1f50a32
refs/heads/master
2022-07-28T03:51:41.970028
2022-06-15T12:17:42
2022-06-15T12:17:42
217,128,910
2
1
null
2022-06-15T12:17:43
2019-10-23T18:41:02
Racket
UTF-8
Racket
false
false
165
rkt
ci-environment.rkt
#lang racket/base (provide ci-environment?) (define ci-environment? (ormap getenv '("CI" "TRAVIS" "PLT_PKG_BUILD_SERVICE")))
false
045a0eede6ce4b3a6b75fab2d00c166dac22fa3f
2f09df60be7100404c01084d3f8b97f5d4144510
/src/index.scrbl
e0afcf73326daf5a57bcc7e09c3a0d0f8eb1e756
[]
no_license
changka-diwan/pyret-dates-times
73960bb3e59d66672d4bd75dcce374be9d84905c
cfc852251be07e2d648fec8d2dc0d8f5d9cb9fae
refs/heads/main
2023-02-16T16:16:33.406576
2021-01-18T16:29:50
2021-01-18T16:29:50
324,372,629
2
0
null
null
null
null
UTF-8
Racket
false
false
815
scrbl
index.scrbl
#lang scribble/manual @(require (for-syntax syntax/parse) (for-syntax racket/base)) @(define cca (current-command-line-arguments)) @(define VERSION (if (> (vector-length cca) 0) (vector-ref cca 0) "")) @(define-syntax (include-section/if-set stx) (syntax-parse stx [(_ envvar-stx:str file:str) (let* ((envvar (syntax->datum #'envvar-stx)) (envvar (getenv envvar))) (if envvar #'(include-section file) #'(void)))])) @title[#:version @VERSION]{Pyret} @nested{This document contains the date-time library for Pyret, along with many examples and some longer descriptions of language design choices. The official Pyret documentation can be found @link["https://www.pyret.org/docs/latest/" "here"].} @include-section["libraries.scrbl"]
true
e980421edc05a2c2220d6d4ac867feeb70cb3fc7
5e1c7d9f9ab17c5817d37904ed4966e90a1e611d
/normal.rkt
613a5e42a24a4c674a4618f39666489153371e6e
[ "MIT" ]
permissive
tfeb/oa
d970a89cf07ad201daeb0486e1139e4d12a92546
6f8f0eef9417bc39236717a8f2d150869a430c7e
refs/heads/main
2023-05-13T15:22:24.401909
2021-05-21T14:28:44
2021-05-21T14:28:44
368,843,528
1
0
null
null
null
null
UTF-8
Racket
false
false
178
rkt
normal.rkt
#lang racket/base ;;;; oa/normal is oa/normal/pure ;;; (module reader syntax/module-reader oa/normal) (require "normal/pure.rkt") (provide (all-from-out "normal/pure.rkt"))
false
03c3382a587f737799cd9073078de3812192d16f
f05fb2cbe45417a0017c71320608d6454681d077
/quad/get-info.rkt
57a3c03c0d863e8a2901c65c4e09e2bf98be7d89
[ "MIT" ]
permissive
mbutterick/quad
dcca8d99aaacaea274d3636e9f02e75251664d9c
9c6e450b0429ad535edf9480a4b76e5c23161ec0
refs/heads/master
2022-02-01T17:44:32.904785
2022-01-08T15:52:50
2022-01-08T15:52:50
26,788,024
142
9
MIT
2020-07-07T01:54:00
2014-11-18T02:21:39
Racket
UTF-8
Racket
false
false
1,204
rkt
get-info.rkt
#lang racket (require racket/class) (provide get-info) (define (custom-indent-rules x) (match x ;; tbd: custom indent rules, examples below #;[("with-pattern" "with-shared-id" "pattern-case" "pattern-case-filter") 'lambda] #;[("define-macro" "define-macro-cases" "define-cases" "while" "until") 'define] [_ #false])) (define (indenter t pos) (send t compute-racket-amount-to-indent pos custom-indent-rules)) (define (get-info key default-value proc) (define (fallback) (if proc (proc key default-value) default-value)) (define (try-dynamic-require lib export) (with-handlers ([exn:missing-module? (λ (x) (case key [(drracket:indentation) indenter] [else (fallback)]))]) (dynamic-require lib export))) (case key [(color-lexer) (try-dynamic-require 'syntax-color/scribble-lexer 'scribble-lexer)] [(drracket:indentation) (try-dynamic-require 'scribble/private/indentation 'determine-spaces)] [(drracket:keystrokes) (try-dynamic-require 'scribble/private/indentation 'keystrokes)] [else (fallback)]))
false
52662fcdd99655274c124fcfd1df80ac3b59af1a
3b4437400fc746d3d161adfa43311d348f4fcde5
/rooms/updown.rkt
054bbae0556c2dc80d5de24a5932518c457dedac
[]
no_license
ChaseWhite3/linear-logic
bdd52382c26b1274b4fbf7c3857ac98dfb1cb3b8
e7f8526408c7f9128094c3cac891f31d850aaffc
refs/heads/master
2020-07-04T02:54:18.260024
2018-06-24T04:48:56
2018-06-24T04:48:56
4,196,429
1
0
null
null
null
null
UTF-8
Racket
false
false
3,667
rkt
updown.rkt
#lang s-exp "../rooms.rkt" ; Start of city 6 "downloader" (success (command (look (room (name "54th Street and Ridgewood Court")(description "You are standing at the corner of 54th Street and Ridgewood Court. From here, you can go east. ")(items ((item (name "/etc/passwd")(description "some kind of lost inode. It reads: howie:xyzzy:Howard Curry:/home/howie yang:U+262F:Y Yang:/home/yang hmonk:COMEFROM:Harmonious Monk:/home/hmonk")(adjectives )(condition (pristine ))(piled_on ((item (name "note")(description "written in a familiar hand. It reads: Dear Self, I had to erase our memory to protect the truth. The Municipality has become more powerful than we had feared. Its Censory Engine has impeded the spread of information throughout our ranks. I've left two useful items for you here, but I had to disassemble them and scatter the pieces. Each piece may be assembled from the items at a single location. Repair the items and recover the blueprint from the Museum of Science and Industry; it will show you how to proceed. If you have trouble reading the blueprint, know that the Censory Engine blocks only your perception, not your actions. Have courage, my self, the abstraction is weak! P.S. SWITCH your GOGGLES!")(adjectives ((adjective "self-addressed") ))(condition (pristine )) (piled_on ((item (name "downloader")(description "(according to the label) fully compatible with third generation municipal robots")(adjectives )(condition (broken (condition (pristine ))(missing ((kind (name "USB cable")(condition (pristine ))) ((kind (name "display")(condition (pristine ))) ((kind (name "jumper shunt")(condition (pristine ))) ((kind (name "progress bar")(condition (pristine ))) ((kind (name "power cord")(condition (pristine ))) )))))))) (piled_on ((item (name "uploader")(description "used to update firmware on municipal robots. A label reads, Warning: use of this device will void your robot's warranty")(adjectives )(condition (broken (condition (pristine ))(missing ((kind (name "MOSFET")(condition (pristine ))) ((kind (name "status LED")(condition (pristine ))) ((kind (name "RS232 adapter")(condition (pristine ))) ((kind (name "EPROM burner")(condition (pristine ))) ((kind (name "battery")(condition (pristine ))) ))))))))(piled_on )) ))) ))) ))) )))))) #<<END END
false
11b20b3bb25eba1113550c2b4b3e43c223776bc9
fc23acccf48e5dc3ee60b49e057a3580f7e25b18
/Racket/contextRacket.rkt
f2b0c4b310941ac2621ab7d8b9a934117ad89ef4
[]
no_license
BrunoBFerreira/ContextOriented
4363e03be146b12f1bb4b46f08da9d092ffd4dc7
5d51e5b1c350621f94ae3607c277b2b48a341b18
refs/heads/master
2018-11-27T16:22:11.789412
2018-07-25T15:44:50
2018-07-25T15:44:50
104,234,548
0
1
null
null
null
null
UTF-8
Racket
false
false
9,311
rkt
contextRacket.rkt
#lang racket (require rnrs/mutable-pairs-6) (provide define-layer define-layered deflayered with-layers) #| ContextScheme v0.1 Copyright (c) 2009 Pascal Costanza Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |# #| Workarounds for potentially missing Scheme features. Multiple values: (define (call-with-values vals cont) (apply cont (vals))) (define values list) Dynamic wind: (define (dynamic-wind pre main post) (pre) (let ((result (main))) (post) result)) |# (define set-car! set-mcar!) (define set-cdr! set-mcdr!) (define (remove element list) (cond ((null? list) '()) ((eqv? element (car list)) (cdr list)) (else (cons (car list) (remove element (cdr list)))))) (define (adjoin-front element list) (cons element (remove element list))) (define current-context-stack '()) (define (call-with-context context thunk) (let ((old-context-stack '())) (dynamic-wind (lambda () (set! old-context-stack current-context-stack) (set! current-context-stack (cons context current-context-stack))) (lambda () (context thunk)) (lambda () (set! current-context-stack old-context-stack))))) (define (call-with-context-reset thunk) (let ((old-context-stack '())) (dynamic-wind (lambda () (set! old-context-stack current-context-stack) (set! current-context-stack '())) thunk (lambda () (set! current-context-stack old-context-stack))))) (define (call-with-context-stack context-stack thunk) (cond ((null? context-stack) (thunk)) (else (call-with-context (car context-stack) (lambda () (call-with-context-stack (cdr context-stack) thunk)))))) (define current-layers '()) (define (call-with-layer layer thunk) (call-with-context (lambda (thunk) (let ((old-layers '())) (dynamic-wind (lambda () (set! old-layers current-layers) (set! current-layers (adjoin-front layer current-layers))) thunk (lambda () (set! current-layers old-layers))))) thunk)) (define (call-without-layer layer thunk) (call-with-context (lambda (thunk) (let ((old-layers '())) (dynamic-wind (lambda () (set! old-layers current-layers) (set! current-layers (remove layer current-layers))) thunk (lambda () (set! current-layers old-layers))))) thunk)) (define (lookup name) (define (find-value layers) (cond ((null? layers) (values #f #f)) (else (let ((binding (assv name (car layers)))) (cond (binding (values (cdr binding) (cdr layers))) (else (find-value (cdr layers)))))))) (define (lookup-in-context context-stack layers) (call-with-values (lambda () (find-value layers)) (lambda (value remaining-layers) (if value (let ((proceed (lambda () (let ((proceed-context-stack (append context-stack (reverse current-context-stack)))) (call-with-context-reset (lambda () (call-with-context-stack proceed-context-stack (lambda () (lookup-in-context proceed-context-stack remaining-layers))))))))) (value proceed)) #f)))) (lookup-in-context (reverse current-context-stack) current-layers)) (define (add-layered-definition name layer definition) (let ((binding (assv name layer))) (if binding (begin (set-cdr! binding definition) layer) (cons (cons name definition) layer)))) (define-syntax with-layers (syntax-rules () ((with-layers () body ...) (let () body ...)) ((with-layers (first-layer other-layers ...) body ...) (call-with-layer first-layer (lambda () (with-layers (other-layers ...) body ...)))))) (define-syntax without-layers (syntax-rules () ((without-layers () body ...) (let () body ...)) ((without-layers (first-layer other-layers ...) body ...) (call-without-layer first-layer (lambda () (without-layers (other-layers ...) body ...)))))) (define-syntax define-layer (syntax-rules () ((define-layer name) (define name '())))) (define-syntax define-layered (syntax-rules () ((define-layered name) (define (name) (lookup 'name))))) (define-syntax deflayered (syntax-rules () ((deflayered (name layer) definition) (set! layer (add-layered-definition 'name layer (lambda (proceed) definition)))) ((deflayered (name layer proceed) definition) (set! layer (add-layered-definition 'name layer (lambda (proceed) definition)))))) #| Alternative ("traditional") macro definitions: (define-macro with-layers (lambda (layers . body) (if (null? layers) `(let () ,@body) `(call-with-layer ,(car layers) (lambda () (with-layers ,(cdr layers) ,@body)))))) (define-macro without-layers (lambda (layers . body) (if (null? layers) `(let () ,@body) `(call-without-layer ,(car layers) (lambda () (with-layers ,(cdr layers) ,@body)))))) (define-macro define-layer (lambda (name) `(define ,name '()))) (define-macro define-layered (lambda (name) `(define (,name) (lookup ',name)))) (define-macro deflayered (lambda (spec definition) (let ((name (car spec)) (layer (cadr spec)) (proceed (if (null? (cddr spec)) '%%%proceed (caddr spec)))) `(set! ,layer (add-layered-definition ',name ,layer (lambda (,proceed) ,definition)))))) |# (define (out msg) (display msg) (newline)) (define (test1) (define l1 (list (cons 'p (lambda (proceed) 10)))) (define l2 (list (cons 'p (lambda (proceed) (+ (proceed) 5))))) (out "The following yields 18.") (with-layers (l1 l2) (+ (lookup 'p) 3))) (define (test1a) (define-layer l1) (define-layer l2) (define-layered p) (deflayered (p l1) 10) (deflayered (p l2 proceed) (+ (proceed) 5)) (out "The following yields 18.") (with-layers (l1 l2) (+ (p) 3))) (define (test2) (define l1 (list (cons 'p (lambda (proceed) (lambda (x) 1))))) (define l2 (list (cons 'p (lambda (proceed) (lambda (x) ((proceed) x)))))) (define l3 (list (cons 'p (lambda (proceed) (lambda (x) 3))))) (out "The following yields 1.") ((lambda (f) (with-layers (l3) (f 10))) (with-layers (l1 l2) (lookup 'p)))) (define (test2a) (define-layer l1) (define-layer l2) (define-layer l3) (define-layered p) (deflayered (p l1) (lambda (x) 1)) (deflayered (p l2 proceed) (lambda (x) ((proceed) x))) (deflayered (p l3) (lambda (x) 3)) (out "The following yields 1.") ((lambda (f) (with-layers (l3) (f 10))) (with-layers (l1 l2) (p)))) (define (test3) (define l1 (list (cons 'p (lambda (proceed) (lookup 'q))) (cons 'q (lambda (proceed) (lambda (x) 4))))) (define l2 (list (cons 'p (lambda (proceed) (lambda (x) ((proceed) x)))))) (define l3 (list (cons 'p (lambda (proceed) (lambda (x) 3))) (cons 'q (lambda (proceed) (lambda (x) 5))))) (out "The following yields 5.") ((lambda (f) (with-layers (l3) (f 10))) (with-layers (l1 l2) (lookup 'p)))) (define (test3a) (define-layer l1) (define-layer l2) (define-layer l3) (define-layered p) (define-layered q) (deflayered (p l1) (q)) (deflayered (q l1) (lambda (x) 4)) (deflayered (p l2 proceed) (lambda (x) ((proceed) x))) (deflayered (p l3) (lambda (x) 3)) (deflayered (q l3) (lambda (x) 5)) (out "The following yields 5.") ((lambda (f) (with-layers (l3) (f 10))) (with-layers (l1 l2) (p)))) (define (example) (define-layer root) (define-layer employment) (define-layer info) (define-layered print) (deflayered (print root) (lambda (person) (out (cadr (assq 'name person))))) (deflayered (print employment proceed) (lambda (person) ((proceed) person) (out (cadr (assq 'employer person))))) (deflayered (print info proceed) (lambda (person) ((proceed) person) (out (cadr (assq 'address person))))) (with-layers (root) (define pascal '((name "Pascal") (employer "VUB") (address "Brussels"))) (out "Only name:") ((print) pascal) (newline) (with-layers (employment) (out "Name + employer:") ((print) pascal)) (newline) (with-layers (info) (out "Name + address:") ((print) pascal)) (newline) (with-layers (employment info) (out "Name + employer + address:") ((print) pascal))))
true
583570e90bf5f6bba42dfac197536e45e0c1bb40
12c294500c7b5c37eeb588af94572bb9dc2419fa
/utilities.rkt
b511d251c6adcd5b784557e34bdd64f236de04f7
[]
no_license
kodaimura/muraql
bf97be5bac8808f580b9314c9b6e59def8e536c9
05a0848185892558006533385ff13aba9740ef57
refs/heads/main
2023-03-03T14:10:56.935101
2021-02-14T11:35:34
2021-02-14T11:35:34
329,822,851
0
0
null
null
null
null
UTF-8
Racket
false
false
3,556
rkt
utilities.rkt
#lang racket (provide member? scalar-type? nonnull-type? list-type? named-type? scalar-field? scalar? enum? get-fieldtype-name make-error legal-name? source->tokens) (define member? (lambda (x ls [f eq?]) (cond ((null? ls) #f) ((f x (car ls)) #t) (else (member? x (cdr ls) f))))) (define scalar-type? (lambda (fieldtype) (and (eq? (hash-ref fieldtype 'kind) 'NAMED) (member? (hash-ref fieldtype 'name) (list 'Int 'Float 'String 'Boolean 'ID))))) (define nonnull-type? (lambda (fieldtype) (eq? (hash-ref fieldtype 'kind) 'NON_NULL))) (define list-type? (lambda (fieldtype) (eq? (hash-ref fieldtype 'kind) 'LIST))) (define named-type? (lambda (fieldtype) (eq? (hash-ref fieldtype 'kind) 'NAMED))) (define scalar-field? (lambda (fielddef) (scalar-type? (hash-ref fielddef 'type)))) (define scalar? (lambda (typename) (member? typename (list 'Int 'Float 'String 'Boolean 'ID)))) (define enum? (lambda (typename schema) (eq? (hash-ref (send schema get-type typename) 'kind) 'ENUM))) (define union? (lambda (typename schema) (eq? (hash-ref (send schema get-type typename) 'kind) 'UNION))) (define get-fieldtype-name (lambda (fieldtype) (if (eq? 'NAMED (hash-ref fieldtype 'kind)) (hash-ref fieldtype 'name) (get-fieldtype-name (hash-ref fieldtype 'type))))) (define make-error (lambda (str . opt) (list (hash 'message (apply format (cons str opt)))))) (define legal-name? (lambda (str) (define ls (map char->integer (string->list str))) (define x (car ls)) (define rest (cdr ls)) (and (or (= 95 x) (and (< 96 x) (> 123 x)) (and (< 64 x) (> 91 x))) (null? (filter-not (lambda (n) (or (= 95 x) (and (< 96 x) (> 123 x)) (and (< 64 x) (> 91 x)) (and (< 47 x) (> 58 x)))) rest))))) (define source->tokens (lambda (str) (s->ts (string-append str " ") '()))) (define s->ts (lambda (str ls) (define s (if (string=? str "") #f (substring str 0 1))) (cond ((not s) ls) ((member? s '("!" "{" "}" "(" ")" ":" "[" "]" ".") string=?) (s->ts (substring str 1) (append ls (list s)))) ((member? s '("\n" "\t" "," " ") string=?) (s->ts (substring str 1) ls)) ((member? s '("\"" "'" "`") string=?) (let ([end-string (get-index-end-string str)]) (s->ts (substring str end-string) (append ls (list (substring str 0 end-string)))))) (else (let ([end-token (get-index-end-token str)]) (s->ts (substring str end-token) (append ls (list (substring str 0 end-token))))))))) (define get-index-end-string (lambda (str) (define x (substring str 0 1)) ;; x: "\"" or "'" or "`" (define (aux str i) (let ([s (substring str i (+ i 1))]) (if (string=? s x) (+ i 1) (aux str (+ i 1))))) (aux str 1))) (define get-index-end-token (lambda (str) (define (aux str i) (if (member? (substring str i (+ i 1)) '("!" "{" "}" "(" ")" ":" "\n" "\t" "[" "]" "," " " "." "\"" "'" "`") string=?) i (aux str (+ i 1)))) (aux str 0)))
false
c0e1c5366b8554d8631bf45e115d75c572f5ecab
d1beee618d659e47b2e401a651040de2d7ab982f
/bootstrap.rkt
7a93aa399b3cdc6d92ebdbb291d27f107b1b74b3
[]
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
3,188
rkt
bootstrap.rkt
#lang racket (require db "common/utils/debug.rkt" "dao/connection-pool.rkt" "common/utils/base.rkt" "common/syntax.rkt" "model/syntax.rkt" "rtm/reader/base.rkt" "rtm/request.rkt" (prefix-in model: "model/base.rkt")) (provide (all-defined-out)) (define (list->string+ lst #:sep (sep ",")) (map+ (λ (i x) (if (eq? i 1) (format "~a" x) (format "~a ~a" sep x))) lst)) (define (create-table name cols) (format "CREATE TABLE IF NOT EXISTS ~a ~a" name (list->string+ cols))) (define (drop-table name) (format "DROP TABLE IF EXISTS ~a" name)) (define (generate-drop-statements) (define statements null) (define (add statement) (push statements statement)) (add (drop-table "movie")) (add (drop-table "movie_roles")) statements) (define (generate-create-statements) (define statements null) (define (add statement) (push statements statement)) (add (create-table "movies" (list "id INTEGER PRIMARY KEY" "title VARCHAR(255)" "year INTEGER" "runtime INTEGER" ))) (add (create-table "movie_roles" (list "id INTEGER PRIMARY KEY" "movieid REFERENCES movies"))) statements) (define (generate-insert-statements) (list "")) (define (get-connection) (connection-pool-lease (get-connection-pool))) (define (bootstrap) (define dbc (get-connection)) (define (exec stmt) (query-exec dbc stmt)) (for-each exec (generate-drop-statements)) (for-each exec (generate-create-statements)) (disconnect dbc)) (define observer<%> (interface () update)) (define dao% (class* object% (observer<%>) (super-new) (define/public (update model) (dbg 'dao-update model)))) (define movie-dao% (class dao% (super-new) (define/overment (update movie) (dbg 'movie-dao-update movie) (when (null? (send movie get-id)) (send this save movie))) (define/public (save movie) (define insert-statement (format (string-append "INSERT INTO movies " "(title, year, runtime) VALUES " "('~a' , ~a, ~a)") (send movie get-title) (send movie get-year) (send movie get-runtime) )) (define dbc (get-connection)) (call-with-transaction dbc (λ () (query-exec dbc insert-statement) (let ((rowid (query-value dbc "SELECT last_insert_rowid()"))) (send movie set-id rowid)))) (disconnect dbc)))) (bootstrap) (define-values (make-movie make-person) (values (model+ model:movie% (new movie-dao%)) (model+ model:person% (new dao%)))) (define-struct info-provision-request (supplier object-of-interest object)) (define (movie-mediator requests) (define rtm (car requests)) (define m (info-provision-request-object rtm)) (make-movie #:title (rtm-movie-title m) #:year (rtm-movie-year m) #:runtime (rtm-movie-runtime m) )) (define m (movie-mediator (list (make-info-provision-request 'rtm 'movie (car (rtm-search-result-movies (read-rtm (search-movies "Separation"))))))))
false
ed6e81e28e592e4275fa30757a1d41a8ed61021a
cf47530e1682d103e96b3915bc6f0a5fb755bb19
/examples/test/views.rkt
e07b98be8405fff62729d8506d6183f558bdd84d
[]
no_license
srfoster/racket-react
3a6dcafd02a6361f1b89fc4bcf3c9869055d8ecb
7bb14cf755a8257bec016004e2ba4f8bce009dd2
refs/heads/main
2023-03-06T03:56:27.598458
2021-02-22T01:49:04
2021-02-22T01:49:04
332,783,467
0
0
null
null
null
null
UTF-8
Racket
false
false
407
rkt
views.rkt
#lang at-exp racket (require racket-react/client racket-react/components/api-explorer racket-react/components/auth ) (define-component App (return (Container (LogoutButton) (LoginForm 'path: "/welcome" 'afterLogin: @~{(response)=><APIExplorer path="/welcome"/>} ;@~{(response)=><span>In!</span>} )))) (displayln (compile-app components)) (save-app)
false
64358d1a614e29c6dfca67edff67fbb778899d17
dffd100ed636e554ecc72f44c468f69ef7f0986e
/src/translation-validation.rkt
15bf9b9a13b8cb0c301185976f06431866cb574f
[ "MIT" ]
permissive
cucapra/diospyros
8c51b4fa14d01b35d58e408b41057d7b8fcba649
09bd97ad592aaa64ab0c465b911a0325e0bb4d4f
refs/heads/master
2023-08-17T16:50:09.504073
2022-04-27T18:07:17
2022-04-27T18:07:17
215,871,915
50
1
MIT
2022-11-11T07:45:51
2019-10-17T19:38:26
Racket
UTF-8
Racket
false
false
6,450
rkt
translation-validation.rkt
#lang rosette (require racket/generator threading ; rosette/lib/value-browser "ast.rkt" "prog-sketch.rkt" "configuration.rkt" "interp.rkt" "compile-passes.rkt" "uninterp-fns.rkt" "utils.rkt") (provide (all-defined-out)) ; Generate string for keys that have different values. (define (show-diff env1 env2 keys) (string-join (for/list ([key keys]) (if (equal? (hash-ref env1 key) (hash-ref env2 key)) "" (~a key " differs:\n" (hash-ref env1 key) "\n\n" (hash-ref env2 key)))) "\n")) ; For namespace hacking (define-namespace-anchor a) (define ns (namespace-anchor->namespace a)) (define (symbol-append s1 s2) (string->symbol (string-append (symbol->string s1) "$" (number->string s2)))) (define (verify-spec-prog spec-str prog #:fn-map [fn-map (make-hash)]) (define-values (prog-ins prog-outs) (get-inputs-and-outputs prog)) ; Transform a list of vec-extern-decl to a set with (id size). (define (to-sizes lst) (define (get-id-size decl) (cons (vec-extern-decl-id decl) (vec-extern-decl-size decl))) (map get-id-size lst)) ; Generate symbolic inputs for prog (define init-env (append (~> prog-ins to-sizes (map (lambda (decl) ; Namespace hacking for binding symbolic constants in the ; spec as well (let* ([name (car decl)] [size (cdr decl)] [val (make-symbolic-v-list size name)]) (parameterize ([current-namespace ns]) (for ([i (range size)]) (eval `(define ,(symbol-append name i) ,(v-list-get val i))))) (cons name val))) _)) (~> prog-outs to-sizes (map (lambda (decl) (cons (car decl) (make-v-list-zeros (cdr decl)))) _)))) ; Add rosette uninterp function app to namespace (parameterize ([current-namespace ns]) (eval `(define ,`app , (lambda vs (apply (first vs) (rest vs)))))) (define (interp-and-env prog init-env) (define-values (env _) (interp prog init-env #:fn-map fn-map)) env) ; Eval spec after namespace mucking (define spec (align-to-reg-size (eval spec-str ns))) (define prog-env (interp-and-env prog init-env)) (define (get-and-align out) (align-to-reg-size (hash-ref prog-env (car out)))) (define flatten-prog-outputs (flatten (map get-and-align (to-sizes (reverse prog-outs))))) (assert (equal? (length spec) (length flatten-prog-outputs))) (for ([a (uninterp-fn-assumptions)]) (assert a)) (define model (verify (assert (equal? spec flatten-prog-outputs)))) (if (not (unsat? model)) (pretty-display (format "Translation validation unsuccessful. Spec:\n ~a \nProg:\n ~a" spec flatten-prog-outputs)) (pretty-display (format "~aTranslation validation successful! ~a elements equal~a\n" "\x1B[32m" ; Green in terminal (length spec) "\x1B[0m"))) ; Back to black model) ; Verify input-output behavior of programs. (define (verify-prog spec sketch #:fn-map [fn-map (make-hash)]) (define-values (spec-ins spec-outs) (get-inputs-and-outputs spec)) (define-values (sketch-ins sketch-outs) (get-inputs-and-outputs sketch)) ; Transform a list of vec-extern-decl to a set with (id size). (define (to-size-set lst) (define (get-id-size decl) (cons (vec-extern-decl-id decl) (vec-extern-decl-size decl))) (list->set (map get-id-size lst))) ; Check spec and sketch have the same set of inputs and outputs. (let ([ins-diff (set-symmetric-difference (to-size-set spec-ins) (to-size-set sketch-ins))] [outs-diff (set-symmetric-difference (set-map (to-size-set spec-outs) car) (set-map (to-size-set sketch-outs) car))]) (assert (set-empty? ins-diff) (~a "VERIFY-PROG: Input mismatch. " ins-diff)) (assert (set-empty? outs-diff) (~a "VERIFY-PROG: Output mismatch. " outs-diff))) ; Generate symbolic inputs for spec and sketch. (define init-env (append (~> spec-ins to-size-set set->list (map (lambda (decl) (cons (car decl) (make-symbolic-v-list (cdr decl)))) _)) (~> spec-outs to-size-set set->list (map (lambda (decl) (cons (car decl) (make-v-list-zeros (cdr decl)))) _)))) (define (interp-and-env prog init-env) (define-values (env _) (interp prog init-env #:fn-map fn-map)) env) (define spec-env (interp-and-env spec init-env)) (define sketch-env (interp-and-env sketch init-env)) ; Outputs from sketch are allowed to be bigger than the spec. Only consider ; elements upto the size in the spec for each output. (define assertions (andmap (lambda (decl) (let ([id (car decl)] [size (cdr decl)]) (equal? (take (hash-ref spec-env id) size) (take (hash-ref sketch-env id) size)))) (set->list (to-size-set spec-outs)))) (define model (verify ; Since get-outs extracts outputs in the same order for both, we can ; just check for list equality. (assert assertions))) (when (not (unsat? model)) (pretty-display (~a "Verification unsuccessful. Environment differences:\n" (show-diff (interp-and-env spec (evaluate init-env model)) (interp-and-env sketch (evaluate init-env model)) (map vec-extern-decl-id spec-outs))))) model) ; Convinience function to turn a generator into a producer that can be ; iterated over. (define (sol-producer model-generator) (define (is-done? model cost) (void? model)) (in-producer model-generator is-done?))
false
5a8a9abe38a7b352b4f2aa9a3052d141aec8eaf6
374e2c636adb4a54ccaa1cba5eb025a1df74150e
/assembler.rkt
b5912175e9bd9e32de9e6435cf6c101ed4f605c1
[]
no_license
kevinw/kracket
494a4f02af0db56dc901dd02eda6e435d5211e9a
8e225650e1dab63dedb1a0e809aa81cd2d7c8dde
refs/heads/master
2016-09-06T15:59:25.613485
2013-05-06T05:25:00
2013-05-06T05:25:00
null
0
0
null
null
null
null
UTF-8
Racket
false
false
5,130
rkt
assembler.rkt
#lang racket (provide data assemble offset offset-as-string dest-as-string src-as-string current-size-suffix) (define current-size-suffix (make-parameter "l")) (struct op (operand) #:transparent) (struct label-obj (name) #:transparent) (struct data-obj (label str) #:transparent) (struct comment-obj (str) #:transparent) (struct offset (bytes register)) (define (offset-as-string offset) (format "~a(%~a)" (offset-bytes offset) (offset-register offset))) (define (dest-as-string dest) (cond [(op? dest) (symbol->string (op-operand dest))] [(offset? dest) (offset-as-string dest)] [(string? dest) dest] [(symbol? dest) (format "%~a" (symbol->string dest))] [else (error "unknown target" dest)])) (define (src-as-string src) (cond [(integer? src) (format "$~a" src)] [else (dest-as-string src)])) (define size-suffixes '((32, "q") (64, "l"))) (define (op->string op) (cond [(op? op) (symbol->string (op-operand op))] [(symbol? op)(format "~a~a" op (current-size-suffix))] [else (error "op->string given unexpected value" op)])) (define-syntax-rule (defop <name>) (begin (provide <name>) (define (<name> src dest) (list '<name> src dest)))) (defop mov) (defop add) (defop sub) (defop shr) (defop shl) (defop imul) (defop cmp) (defop sal) (defop lea) (define comment (lambda args (comment-obj (apply format args)))) (provide comment) (define (data label str) (list (data-obj label str))) (define (or! src dest) (list 'or src dest)) (provide or!) (define (je label) (list (op 'je) label)) (provide je) (define (jmp label) (list (op 'jmp) label)) (provide jmp) (define (cld) (list (op 'cld))) (provide cld) (define movsb 'movsb) (define (rep repop) (list (op 'rep) (op repop))) (provide rep movsb) (define (label label) (list (label-obj label))) (provide label) (define (ret) (list (op 'ret))) (provide ret) (define (and! src dest) (list 'and src dest)) (provide and!) (define (sete dest) (list (op 'sete) dest)) (provide sete) (define (setl dest) (list (op 'setl) dest)) (provide setl) (define (push src) (list 'push src)) (provide push) (define (pop dest) (list 'pop dest)) (provide pop) (define (assemble-line source-line) ; Turn an assembly operation list like ; (list 'mov 5 'eax) into "movl $5, %eax" (define f (first source-line)) (cond [(label-obj? f) (format "~a:" (label-obj-name f))] [(data-obj? f) ""] [(comment-obj? f) (format "# ~a" (comment-obj-str f))] [else (let* ([op-str (op->string f)] [code (case (length source-line) [(3) (format "~a ~a, ~a" op-str (src-as-string (second source-line)) (dest-as-string (third source-line)))] [(2) (format "~a ~a" op-str (dest-as-string (second source-line)))] [(1) (format "~a" op-str)] [else (error "source line expected to have 1, 2, or 3 elems" source-line)])]) (string-append "\t" code))])) (define (code? l) (let ([f (first l)]) (or (symbol? f) (op? f) (label-obj? f) (comment-obj? f)))) (define (assemble-flatten l [data '()]) (cond [(or (void? l) (empty? l)) (list '() data)] [(data-obj? l) (list '() (cons l data))] [(code? l) (list (list l) data)] [else (match-let* ([(list res1 data1) (assemble-flatten (first l) data)] [(list res2 data2) (assemble-flatten (rest l) data1)]) (list (append res1 res2) data2))])) (define assembly-header #<<END .text .align 4,0x90 .globl _scheme_entry _scheme_entry: END ) (define (data-obj->string d) (format "~a:\n\t.asciz \"~a\"" (data-obj-label d) (data-obj-str d))) (define (data-segment data) (string-join (list "\t.data" (string-join (map data-obj->string data) "\n")) "\n")) (define (assemble sources) (match-let ([(list flattened-src data) (assemble-flatten sources)]) (string-join (append (list (data-segment data) assembly-header) (map assemble-line flattened-src)) "\n"))) #| (define-syntax-rule (mov src dest) (let [(src* (src-as-string src)) (dest* (dest-as-string dest))] (emit "mov ~a, ~a" src* dest*))) (require (for-syntax syntax/boundmap syntax/parse)) (begin-for-syntax (define const-table (make-free-identifier-mapping))) (define-syntax (defconst stx) (syntax-parse stx [(_ name:id v:integer) #'(begin (define-syntax name (lambda (stx) (cond [(identifier? stx) #'v] [else (raise-syntax-error #f "Can't apply the integer constant" stx)]))) (begin-for-syntax (free-identifier-mapping-put! const-table #'name #'v)))])) (define-syntax (peek stx) (syntax-parse stx [(_ name:id) (begin (define compile-time-value (free-identifier-mapping-get const-table #'name (lambda () #'#f))) (printf "At compile time, I see ~s is ~s\n" #'name compile-time-value) #'name)])) (defconst x 42) (peek x) |#
true
a05f83d0ea3300e8d301fb185260c17a39c3659e
fc6465100ab657aa1e31af6a4ab77a3284c28ff0
/results/brutally-unfair-24/poly-stlc-8-ordered-brutally-unfair.rktd
07b1e507147c5b906bdb0529a3ff7130f7447a19
[]
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
776,877
rktd
poly-stlc-8-ordered-brutally-unfair.rktd
(start 2015-06-19T12:40:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:40:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T12:40:49 (#:amount 35771592 #:time 256)) (heartbeat 2015-06-19T12:40:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:41:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:41:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:41:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:41:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:41:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:41:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:42:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:42:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:42:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:42:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:42:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:42:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:43:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:43:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:43:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:43:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:43:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:43:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:44:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:44:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T12:44:20 (#:amount 44871424 #:time 243)) (heartbeat 2015-06-19T12:44:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:44:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:44:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:44:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:45:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:45:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:45:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:45:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:45:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:45:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:46:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:46:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:46:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:46:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:46:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:46:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:47:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:47:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:47:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:47:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:47:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:47:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T12:47:59 (#:amount 45107008 #:time 282)) (heartbeat 2015-06-19T12:48:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:48:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:48:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:48:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:48:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:48:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:49:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:49:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:49:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:49:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:49:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:49:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:50:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:50:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:50:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:50:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:50:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:50:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:51:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:51:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:51:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T12:51:39 (#:amount 44788872 #:time 279)) (heartbeat 2015-06-19T12:51:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:51:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:51:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:52:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:52:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:52:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:52:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:52:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:52:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:53:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:53:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:53:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:53:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:53:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:53:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:54:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:54:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:54:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:54:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:54:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:54:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:55:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T12:55:17 (#:amount 44527064 #:time 281)) (heartbeat 2015-06-19T12:55:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:55:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:55:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:55:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:55:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:56:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:56:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:56:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:56:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:56:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:56:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:57:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:57:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:57:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:57:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:57:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:57:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:58:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:58:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:58:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:58:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:58:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T12:58:52 (#:amount 44168408 #:time 274)) (heartbeat 2015-06-19T12:58:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:59:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:59:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:59:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:59:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:59:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T12:59:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:00:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:00:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:00:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:00:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:00:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:00:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:01:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:01:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:01:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:01:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:01:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:01:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:02:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:02:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:02:28 (#:amount 44381656 #:time 276)) (heartbeat 2015-06-19T13:02:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:02:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:02:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:02:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:03:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:03:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:03:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:03:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:03:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:03:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:04:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:04:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:04:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:04:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:04:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:04:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:05:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:05:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:05:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:05:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:05:49 (#:amount 44766208 #:time 236)) (heartbeat 2015-06-19T13:05:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:05:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:06:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:06:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:06:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:06:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:06:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:06:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:07:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:07:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:07:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:07:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:07:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:07:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:08:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:08:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:08:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:08:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:08:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:08:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:09:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:09:18 (#:amount 44188056 #:time 235)) (heartbeat 2015-06-19T13:09:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:09:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:09:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:09:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:10:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:10:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:10:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:10:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:10:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:10:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:11:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:11:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:11:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:11:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:11:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:11:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:12:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:12:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:12:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:12:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:12:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:12:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:12:50 (#:amount 44472592 #:time 253)) (heartbeat 2015-06-19T13:13:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:13:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:13:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:13:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:13:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:13:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:14:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:14:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:14:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:14:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:14:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:14:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:15:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:15:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:15:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:15:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:15:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:15:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:16:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:16:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:16:18 (#:amount 45155096 #:time 239)) (heartbeat 2015-06-19T13:16:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:16:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:16:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:16:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:17:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:17:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:17:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:17:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:17:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:17:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:18:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:18:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:18:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:18:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:18:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:18:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:19:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:19:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:19:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:19:28 (#:amount 43538080 #:time 273)) (heartbeat 2015-06-19T13:19:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:19:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:19:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:20:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:20:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:20:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:20:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:20:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:20:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:21:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:21:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:21:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:21:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:21:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:21:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:22:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:22:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:22:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:22:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:22:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:22:50 (#:amount 43794032 #:time 272)) (heartbeat 2015-06-19T13:22:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:23:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:23:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:23:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:23:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:23:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:23:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:24:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:24:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:24:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:24:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:24:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:24:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:25:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:25:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:25:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:25:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:25:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:25:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:26:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:26:06 (#:amount 45464000 #:time 276)) (heartbeat 2015-06-19T13:26:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:26:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:26:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:26:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:26:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:27:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:27:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:27:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:27:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:27:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:27:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:28:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:28:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:28:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:28:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:28:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:28:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:29:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:29:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:29:14 (#:amount 45653336 #:time 238)) (heartbeat 2015-06-19T13:29:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:29:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:29:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:29:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:30:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:30:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:30:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:30:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:30:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:30:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:31:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:31:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:31:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:31:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:31:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:31:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:32:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:32:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:32:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:32:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:32:33 (#:amount 44794688 #:time 237)) (heartbeat 2015-06-19T13:32:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:32:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:33:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:33:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:33:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:33:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:33:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:33:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:34:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:34:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:34:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:34:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:34:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:34:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:35:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:35:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:35:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:35:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:35:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:35:46 (#:amount 44358040 #:time 237)) (heartbeat 2015-06-19T13:35:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:36:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:36:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:36:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:36:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:36:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:36:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:37:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:37:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:37:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:37:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:37:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:37:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:38:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:38:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:38:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:38:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:38:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:38:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:39:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:39:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:39:16 (#:amount 44137976 #:time 275)) (heartbeat 2015-06-19T13:39:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:39:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:39:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:39:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:40:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:40:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:40:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:40:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:40:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:40:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:41:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:41:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:41:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:41:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:41:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:41:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:42:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:42:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:42:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:42:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:42:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:42:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:42:58 (#:amount 44964672 #:time 276)) (heartbeat 2015-06-19T13:43:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:43:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:43:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:43:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:43:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:43:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:44:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:44:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:44:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:44:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:44:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:44:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:45:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:45:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:45:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:45:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:45:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:45:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:46:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:46:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:46:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:46:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:46:36 (#:amount 45365928 #:time 282)) (heartbeat 2015-06-19T13:46:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:46:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:47:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:47:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:47:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:47:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:47:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:47:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:48:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:48:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:48:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:48:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:48:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:48:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:49:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:49:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:49:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:49:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:49:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:49:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:50:01 (#:amount 44341616 #:time 275)) (heartbeat 2015-06-19T13:50:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:50:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:50:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:50:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:50:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:50:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:51:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:51:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:51:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:51:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:51:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:51:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:52:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:52:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:52:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:52:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:52:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:52:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:53:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:53:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:53:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:53:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:53:33 (#:amount 44405512 #:time 277)) (heartbeat 2015-06-19T13:53:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:53:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:54:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:54:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:54:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:54:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:54:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:54:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:55:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:55:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:55:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:55:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:55:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:55:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:56:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:56:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:56:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:56:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:56:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:56:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T13:56:56 (#:amount 44347360 #:time 274)) (heartbeat 2015-06-19T13:57:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:57:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:57:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:57:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:57:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:57:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:58:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:58:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:58:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:58:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:58:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:58:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:59:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:59:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:59:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:59:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:59:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T13:59:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:00:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:00:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:00:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:00:28 (#:amount 44753352 #:time 263)) (heartbeat 2015-06-19T14:00:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:00:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:00:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:01:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:01:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:01:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:01:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:01:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:01:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:02:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:02:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:02:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:02:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:02:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:02:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:03:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:03:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:03:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:03:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:03:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:03:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:04:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:04:08 (#:amount 44295984 #:time 275)) (heartbeat 2015-06-19T14:04:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:04:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:04:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:04:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:04:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:05:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:05:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:05:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:05:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:05:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:05:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:06:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:06:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:06:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:06:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:06:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:06:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:07:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:07:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:07:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:07:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:07:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:07:46 (#:amount 44964088 #:time 278)) (heartbeat 2015-06-19T14:07:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:08:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:08:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:08:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:08:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:08:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:08:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:09:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:09:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:09:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:09:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:09:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:09:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:10:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:10:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:10:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:10:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:10:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:10:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:11:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:11:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:11:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:11:27 (#:amount 45492376 #:time 276)) (heartbeat 2015-06-19T14:11:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:11:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:11:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:12:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:12:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:12:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:12:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:12:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:12:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:13:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:13:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:13:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:13:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:13:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:13:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:14:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:14:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:14:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:14:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:14:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:14:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:15:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:15:08 (#:amount 45035864 #:time 275)) (heartbeat 2015-06-19T14:15:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:15:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:15:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:15:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:15:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:16:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:16:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:16:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:16:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:16:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:16:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:17:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:17:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:17:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:17:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:17:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:17:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:18:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:18:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:18:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:18:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:18:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:18:47 (#:amount 44646720 #:time 276)) (heartbeat 2015-06-19T14:18:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:19:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:19:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:19:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:19:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:19:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:19:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:20:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:20:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:20:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:20:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:20:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:20:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:21:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:21:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:21:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:21:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:21:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:21:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:22:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:22:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:22:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:22:27 (#:amount 44735936 #:time 276)) (heartbeat 2015-06-19T14:22:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:22:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:22:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:23:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:23:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:23:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:23:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:23:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:23:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:24:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:24:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:24:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:24:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:24:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:24:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:25:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:25:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:25:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:25:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:25:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:25:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:26:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:26:05 (#:amount 44139904 #:time 275)) (heartbeat 2015-06-19T14:26:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:26:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:26:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:26:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:26:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:27:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:27:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:27:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:27:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:27:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:27:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:28:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:28:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:28:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:28:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:28:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:28:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:29:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:29:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:29:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:29:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:29:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:29:44 (#:amount 44380424 #:time 277)) (heartbeat 2015-06-19T14:29:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:30:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:30:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:30:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:30:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:30:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:30:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:31:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:31:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:31:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:31:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:31:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:31:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:32:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:32:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:32:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:32:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:32:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:32:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:33:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:33:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:33:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:33:24 (#:amount 45655352 #:time 283)) (heartbeat 2015-06-19T14:33:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:33:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:33:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:34:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:34:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:34:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:34:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:34:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:34:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:35:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:35:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:35:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:35:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:35:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:35:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:36:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:36:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:36:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:36:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:36:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:36:53 (#:amount 44800816 #:time 283)) (heartbeat 2015-06-19T14:36:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:37:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:37:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:37:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:37:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:37:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:37:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:38:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:38:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:38:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:38:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:38:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:38:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:39:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:39:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:39:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:39:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:39:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:39:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:40:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:40:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:40:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:40:32 (#:amount 43964096 #:time 234)) (heartbeat 2015-06-19T14:40:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:40:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:40:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:41:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:41:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:41:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:41:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:41:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:41:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:42:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:42:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:42:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:42:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:42:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:42:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:43:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:43:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:43:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:43:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:43:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:43:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:44:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:44:05 (#:amount 45576528 #:time 277)) (heartbeat 2015-06-19T14:44:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:44:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:44:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:44:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:44:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:45:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:45:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:45:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:45:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:45:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:45:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:46:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:46:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:46:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:46:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:46:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:46:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:47:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:47:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:47:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:47:31 (#:amount 45353616 #:time 238)) (heartbeat 2015-06-19T14:47:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:47:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:47:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:48:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:48:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:48:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:48:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:48:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:48:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:49:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:49:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:49:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:49:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:49:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:49:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:50:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:50:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:50:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:50:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:50:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:50:52 (#:amount 44554936 #:time 275)) (heartbeat 2015-06-19T14:50:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:51:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:51:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:51:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:51:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:51:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:51:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:52:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:52:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:52:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:52:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:52:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:52:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:53:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:53:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:53:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:53:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:53:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:53:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:54:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:54:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:54:17 (#:amount 44695200 #:time 276)) (heartbeat 2015-06-19T14:54:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:54:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:54:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:54:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:55:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:55:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:55:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:55:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:55:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:55:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:56:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:56:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:56:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:56:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:56:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:56:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:57:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:57:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:57:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:57:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:57:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T14:57:50 (#:amount 44856032 #:time 277)) (heartbeat 2015-06-19T14:57:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:58:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:58:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:58:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:58:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:58:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:58:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:59:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:59:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:59:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:59:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:59:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T14:59:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:00:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:00:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:00:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:00:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:00:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:00:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:01:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:01:08 (#:amount 44220968 #:time 261)) (heartbeat 2015-06-19T15:01:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:01:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:01:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:01:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:01:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:02:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:02:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:02:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:02:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:02:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:02:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:03:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:03:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:03:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:03:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:03:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:03:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:04:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:04:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:04:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:04:29 (#:amount 45819120 #:time 276)) (heartbeat 2015-06-19T15:04:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:04:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:04:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:05:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:05:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:05:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:05:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:05:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:05:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:06:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:06:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:06:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:06:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:06:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:06:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:07:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:07:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:07:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:07:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:07:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:07:55 (#:amount 44628816 #:time 236)) (heartbeat 2015-06-19T15:07:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:08:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:08:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:08:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:08:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:08:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:08:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:09:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:09:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:09:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:09:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:09:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:09:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:10:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:10:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:10:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:10:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:10:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:10:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:11:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:11:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:11:16 (#:amount 44296704 #:time 253)) (heartbeat 2015-06-19T15:11:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:11:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:11:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:11:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:12:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:12:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:12:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:12:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:12:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:12:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:13:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:13:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:13:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:13:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:13:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:13:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:14:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:14:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:14:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:14:35 (#:amount 45010304 #:time 277)) (heartbeat 2015-06-19T15:14:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:14:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:14:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:15:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:15:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:15:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:15:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:15:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:15:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:16:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:16:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:16:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:16:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:16:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:16:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:17:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:17:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:17:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:17:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:17:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:17:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:18:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:18:15 (#:amount 44081832 #:time 276)) (heartbeat 2015-06-19T15:18:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:18:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:18:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:18:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:18:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:19:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:19:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:19:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:19:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:19:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:19:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:20:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:20:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:20:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:20:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:20:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:20:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:21:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:21:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:21:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:21:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:21:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:21:54 (#:amount 44302448 #:time 276)) (heartbeat 2015-06-19T15:21:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:22:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:22:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:22:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:22:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:22:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:22:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:23:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:23:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:23:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:23:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:23:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:23:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:24:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:24:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:24:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:24:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:24:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:24:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:25:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:25:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:25:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:25:34 (#:amount 43895496 #:time 277)) (heartbeat 2015-06-19T15:25:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:25:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:25:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:26:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:26:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:26:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:26:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:26:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:26:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:27:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:27:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:27:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:27:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:27:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:27:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:28:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:28:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:28:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:28:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:28:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:28:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:29:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:29:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:29:17 (#:amount 43996856 #:time 279)) (heartbeat 2015-06-19T15:29:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:29:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:29:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:29:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:30:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:30:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:30:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:30:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:30:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:30:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:31:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:31:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:31:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:31:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:31:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:31:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:32:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:32:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:32:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:32:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:32:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:32:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:33:00 (#:amount 45993392 #:time 284)) (heartbeat 2015-06-19T15:33:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:33:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:33:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:33:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:33:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:33:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:34:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:34:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:34:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:34:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:34:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:34:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:35:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:35:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:35:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:35:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:35:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:35:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:36:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:36:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:36:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:36:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:36:42 (#:amount 44820856 #:time 277)) (heartbeat 2015-06-19T15:36:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:36:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:37:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:37:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:37:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:37:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:37:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:37:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:38:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:38:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:38:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:38:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:38:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:38:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:39:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:39:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:39:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:39:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:39:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:39:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:40:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:40:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:40:26 (#:amount 43933048 #:time 276)) (heartbeat 2015-06-19T15:40:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:40:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:40:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:40:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:41:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:41:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:41:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:41:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:41:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:41:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:42:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:42:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:42:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:42:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:42:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:42:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:43:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:43:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:43:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:43:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:43:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:43:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:44:06 (#:amount 44023432 #:time 274)) (heartbeat 2015-06-19T15:44:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:44:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:44:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:44:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:44:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:44:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:45:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:45:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:45:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:45:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:45:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:45:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:46:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:46:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:46:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:46:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:46:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:46:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:47:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:47:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:47:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:47:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:47:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:47:47 (#:amount 44623392 #:time 275)) (heartbeat 2015-06-19T15:47:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:48:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:48:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:48:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:48:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:48:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:48:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:49:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:49:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:49:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:49:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:49:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:49:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:50:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:50:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:50:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:50:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:50:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:50:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:51:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:51:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:51:23 (#:amount 44454672 #:time 277)) (heartbeat 2015-06-19T15:51:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:51:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:51:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:51:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:52:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:52:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:52:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:52:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:52:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:52:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:53:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:53:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:53:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:53:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:53:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:53:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:54:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:54:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:54:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:54:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:54:41 (#:amount 43763784 #:time 273)) (heartbeat 2015-06-19T15:54:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:54:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:55:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:55:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:55:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:55:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:55:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:55:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:56:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:56:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:56:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:56:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:56:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:56:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:57:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:57:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:57:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:57:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:57:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:57:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:58:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T15:58:07 (#:amount 44521728 #:time 234)) (heartbeat 2015-06-19T15:58:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:58:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:58:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:58:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:58:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:59:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:59:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:59:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:59:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:59:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T15:59:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:00:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:00:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:00:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:00:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:00:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:00:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:01:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:01:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:01:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:01:30 (#:amount 44675680 #:time 276)) (heartbeat 2015-06-19T16:01:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:01:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:01:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:02:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:02:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:02:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:02:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:02:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:02:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:03:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:03:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:03:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:03:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:03:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:03:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:04:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:04:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:04:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:04:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:04:42 (#:amount 45604744 #:time 280)) (heartbeat 2015-06-19T16:04:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:04:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:05:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:05:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:05:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:05:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:05:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:05:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:06:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:06:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:06:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:06:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:06:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:06:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:07:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:07:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:07:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:07:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:07:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:07:48 (#:amount 43828288 #:time 236)) (heartbeat 2015-06-19T16:07:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:08:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:08:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:08:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:08:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:08:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:08:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:09:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:09:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:09:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:09:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:09:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:09:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:10:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:10:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:10:26 (#:amount 45314728 #:time 236)) (heartbeat 2015-06-19T16:10:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:10:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:10:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:10:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:11:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:11:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:11:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:11:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:11:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:11:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:12:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:12:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:12:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:12:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:12:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:12:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:13:05 (#:amount 45050616 #:time 237)) (heartbeat 2015-06-19T16:13:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:13:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:13:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:13:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:13:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:13:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:14:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:14:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:14:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:14:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:14:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:14:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:15:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:15:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:15:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:15:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:15:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:15:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:16:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:16:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:16:25 (#:amount 45085536 #:time 278)) (heartbeat 2015-06-19T16:16:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:16:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:16:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:16:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:17:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:17:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:17:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:17:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:17:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:17:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:18:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:18:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:18:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:18:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:18:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:18:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:19:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:19:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:19:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:19:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:19:39 (#:amount 44528504 #:time 281)) (heartbeat 2015-06-19T16:19:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:19:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:20:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:20:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:20:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:20:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:20:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:20:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:21:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:21:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:21:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:21:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:21:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:21:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:22:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:22:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:22:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:22:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:22:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:22:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:23:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:23:11 (#:amount 44310032 #:time 237)) (heartbeat 2015-06-19T16:23:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:23:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:23:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:23:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:23:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:24:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:24:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:24:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:24:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:24:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:24:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:25:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:25:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:25:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:25:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:25:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:25:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:26:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:26:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:26:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:26:32 (#:amount 44002368 #:time 236)) (heartbeat 2015-06-19T16:26:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:26:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:26:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:27:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:27:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:27:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:27:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:27:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:27:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:28:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:28:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:28:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:28:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:28:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:28:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:29:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:29:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:29:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:29:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:29:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:29:55 (#:amount 45374000 #:time 276)) (heartbeat 2015-06-19T16:29:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:30:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:30:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:30:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:30:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:30:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:30:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:31:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:31:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:31:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:31:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:31:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:31:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:32:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:32:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:32:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:32:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:32:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:32:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:33:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:33:13 (#:amount 44727416 #:time 281)) (heartbeat 2015-06-19T16:33:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:33:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:33:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:33:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:33:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:34:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:34:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:34:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:34:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:34:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:34:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:35:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:35:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:35:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:35:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:35:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:35:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:36:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:36:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:36:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:36:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:36:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:36:51 (#:amount 44278440 #:time 271)) (heartbeat 2015-06-19T16:36:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:37:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:37:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:37:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:37:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:37:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:37:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:38:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:38:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:38:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:38:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:38:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:38:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:39:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:39:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:39:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:39:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:39:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:39:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:40:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:40:11 (#:amount 44609000 #:time 280)) (heartbeat 2015-06-19T16:40:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:40:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:40:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:40:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:40:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:41:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:41:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:41:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:41:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:41:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:41:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:42:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:42:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:42:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:42:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:42:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:42:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:43:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:43:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:43:22 (#:amount 45325488 #:time 276)) (heartbeat 2015-06-19T16:43:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:43:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:43:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:43:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:44:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:44:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:44:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:44:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:44:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:44:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:45:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:45:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:45:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:45:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:45:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:45:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:46:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:46:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:46:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:46:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:46:40 (#:amount 44890416 #:time 246)) (heartbeat 2015-06-19T16:46:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:46:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:47:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:47:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:47:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:47:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:47:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:47:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:48:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:48:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:48:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:48:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:48:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:48:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:49:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:49:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:49:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:49:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:49:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:49:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:50:01 (#:amount 44939088 #:time 237)) (heartbeat 2015-06-19T16:50:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:50:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:50:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:50:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:50:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:50:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:51:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:51:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:51:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:51:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:51:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:51:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:52:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:52:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:52:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:52:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:52:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:52:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:53:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:53:18 (#:amount 44988784 #:time 237)) (heartbeat 2015-06-19T16:53:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:53:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:53:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:53:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:53:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:54:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:54:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:54:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:54:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:54:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:54:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:55:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:55:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:55:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:55:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:55:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:55:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:56:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:56:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:56:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:56:39 (#:amount 44466904 #:time 237)) (heartbeat 2015-06-19T16:56:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:56:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:56:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:57:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:57:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:57:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:57:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:57:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:57:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:58:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:58:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:58:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:58:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:58:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:58:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:59:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:59:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:59:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:59:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T16:59:49 (#:amount 45118584 #:time 277)) (heartbeat 2015-06-19T16:59:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T16:59:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:00:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:00:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:00:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:00:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:00:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:00:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:01:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:01:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:01:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:01:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:01:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:01:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:02:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:02:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:02:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:02:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:02:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:02:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:03:01 (#:amount 45007480 #:time 274)) (heartbeat 2015-06-19T17:03:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:03:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:03:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:03:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:03:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:04:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:04:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:04:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:04:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:04:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:04:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:05:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:05:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:05:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:05:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:05:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:05:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:06:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:06:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:06:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:06:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:06:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:06:40 (#:amount 44290280 #:time 278)) (heartbeat 2015-06-19T17:06:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:07:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:07:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:07:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:07:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:07:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:07:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:08:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:08:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:08:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:08:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:08:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:08:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:09:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:09:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:09:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:09:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:09:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:09:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:10:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:10:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:10:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:10:20 (#:amount 44626240 #:time 281)) (heartbeat 2015-06-19T17:10:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:10:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:10:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:11:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:11:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:11:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:11:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:11:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:11:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:12:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:12:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:12:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:12:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:12:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:12:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:13:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:13:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:13:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:13:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:13:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:13:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:13:56 (#:amount 45478416 #:time 278)) (heartbeat 2015-06-19T17:14:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:14:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:14:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:14:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:14:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:14:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:15:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:15:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:15:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:15:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:15:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:15:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:16:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:16:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:16:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:16:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:16:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:16:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:17:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:17:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:17:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:17:27 (#:amount 45029104 #:time 267)) (heartbeat 2015-06-19T17:17:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:17:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:17:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:18:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:18:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:18:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:18:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:18:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:18:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:19:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:19:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:19:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:19:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:19:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:19:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:20:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:20:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:20:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:20:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:20:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:20:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:21:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:21:00 (#:amount 44851104 #:time 275)) (heartbeat 2015-06-19T17:21:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:21:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:21:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:21:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:21:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:22:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:22:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:22:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:22:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:22:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:22:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:23:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:23:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:23:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:23:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:23:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:23:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:24:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:24:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:24:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:24:31 (#:amount 45177584 #:time 277)) (heartbeat 2015-06-19T17:24:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:24:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:24:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:25:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:25:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:25:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:25:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:25:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:25:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:26:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:26:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:26:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:26:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:26:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:26:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:27:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:27:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:27:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:27:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:27:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:27:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:28:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:28:02 (#:amount 44402064 #:time 239)) (heartbeat 2015-06-19T17:28:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:28:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:28:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:28:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:28:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:29:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:29:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:29:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:29:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:29:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:29:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:30:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:30:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:30:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:30:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:30:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:30:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:31:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:31:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:31:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:31:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:31:31 (#:amount 45005368 #:time 247)) (heartbeat 2015-06-19T17:31:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:31:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:32:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:32:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:32:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:32:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:32:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:32:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:33:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:33:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:33:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:33:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:33:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:33:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:34:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:34:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:34:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:34:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:34:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:34:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:35:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:35:04 (#:amount 44929680 #:time 277)) (heartbeat 2015-06-19T17:35:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:35:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:35:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:35:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:35:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:36:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:36:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:36:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:36:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:36:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:36:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:37:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:37:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:37:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:37:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:37:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:37:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:38:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:38:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:38:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:38:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:38:33 (#:amount 44841800 #:time 274)) (heartbeat 2015-06-19T17:38:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:38:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:39:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:39:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:39:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:39:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:39:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:39:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:40:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:40:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:40:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:40:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:40:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:40:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:41:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:41:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:41:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:41:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:41:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:41:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:42:01 (#:amount 44403088 #:time 275)) (heartbeat 2015-06-19T17:42:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:42:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:42:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:42:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:42:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:42:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:43:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:43:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:43:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:43:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:43:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:43:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:44:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:44:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:44:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:44:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:44:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:44:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:45:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:45:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:45:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:45:27 (#:amount 45317512 #:time 276)) (heartbeat 2015-06-19T17:45:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:45:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:45:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:46:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:46:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:46:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:46:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:46:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:46:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:47:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:47:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:47:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:47:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:47:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:47:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:48:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:48:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:48:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:48:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:48:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:48:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:49:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:49:05 (#:amount 45640824 #:time 283)) (heartbeat 2015-06-19T17:49:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:49:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:49:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:49:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:49:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:50:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:50:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:50:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:50:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:50:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:50:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:51:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:51:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:51:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:51:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:51:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:51:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:52:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:52:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:52:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:52:30 (#:amount 44405976 #:time 278)) (heartbeat 2015-06-19T17:52:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:52:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:52:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:53:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:53:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:53:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:53:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:53:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:53:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:54:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:54:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:54:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:54:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:54:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:54:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:55:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:55:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:55:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:55:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:55:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:55:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:56:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:56:04 (#:amount 44548664 #:time 235)) (heartbeat 2015-06-19T17:56:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:56:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:56:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:56:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:56:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:57:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:57:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:57:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:57:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:57:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:57:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:58:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:58:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:58:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:58:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:58:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:58:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:59:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:59:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:59:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:59:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T17:59:39 (#:amount 44767896 #:time 275)) (heartbeat 2015-06-19T17:59:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T17:59:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:00:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:00:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:00:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:00:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:00:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:00:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:01:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:01:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:01:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:01:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:01:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:01:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:02:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:02:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:02:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:02:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:02:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:02:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:03:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:03:10 (#:amount 43962920 #:time 236)) (heartbeat 2015-06-19T18:03:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:03:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:03:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:03:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:03:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:04:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:04:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:04:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:04:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:04:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:04:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:05:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:05:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:05:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:05:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:05:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:05:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:06:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:06:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:06:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:06:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:06:40 (#:amount 45455944 #:time 237)) (heartbeat 2015-06-19T18:06:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:06:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:07:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:07:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:07:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:07:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:07:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:07:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:08:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:08:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:08:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:08:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:08:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:08:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:09:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:09:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:09:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:09:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:09:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:09:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:10:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:10:04 (#:amount 44415216 #:time 277)) (heartbeat 2015-06-19T18:10:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:10:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:10:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:10:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:10:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:11:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:11:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:11:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:11:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:11:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:11:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:12:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:12:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:12:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:12:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:12:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:12:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:13:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:13:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:13:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:13:33 (#:amount 44715544 #:time 276)) (heartbeat 2015-06-19T18:13:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:13:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:13:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:14:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:14:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:14:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:14:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:14:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:14:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:15:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:15:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:15:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:15:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:15:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:15:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:16:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:16:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:16:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:16:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:16:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:16:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:17:01 (#:amount 44700472 #:time 275)) (heartbeat 2015-06-19T18:17:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:17:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:17:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:17:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:17:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:17:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:18:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:18:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:18:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:18:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:18:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:18:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:19:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:19:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:19:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:19:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:19:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:19:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:20:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:20:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:20:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:20:27 (#:amount 45007368 #:time 277)) (heartbeat 2015-06-19T18:20:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:20:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:20:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:21:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:21:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:21:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:21:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:21:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:21:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:22:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:22:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:22:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:22:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:22:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:22:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:23:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:23:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:23:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:23:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:23:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:23:51 (#:amount 44370576 #:time 275)) (heartbeat 2015-06-19T18:23:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:24:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:24:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:24:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:24:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:24:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:24:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:25:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:25:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:25:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:25:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:25:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:25:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:26:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:26:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:26:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:26:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:26:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:26:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:27:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:27:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:27:14 (#:amount 44989720 #:time 238)) (heartbeat 2015-06-19T18:27:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:27:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:27:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:27:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:28:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:28:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:28:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:28:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:28:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:28:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:29:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:29:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:29:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:29:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:29:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:29:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:30:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:30:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:30:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:30:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:30:39 (#:amount 45500440 #:time 277)) (heartbeat 2015-06-19T18:30:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:30:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:31:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:31:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:31:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:31:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:31:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:31:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:32:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:32:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:32:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:32:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:32:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:32:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:33:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:33:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:33:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:33:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:33:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:33:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:33:57 (#:amount 44721048 #:time 277)) (heartbeat 2015-06-19T18:34:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:34:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:34:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:34:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:34:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:34:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:35:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:35:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:35:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:35:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:35:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:35:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:36:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:36:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:36:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:36:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:36:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:36:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:37:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:37:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:37:15 (#:amount 43978912 #:time 276)) (heartbeat 2015-06-19T18:37:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:37:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:37:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:37:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:38:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:38:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:38:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:38:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:38:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:38:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:39:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:39:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:39:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:39:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:39:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:39:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:40:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:40:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:40:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:40:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:40:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:40:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:40:57 (#:amount 45381592 #:time 282)) (heartbeat 2015-06-19T18:41:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:41:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:41:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:41:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:41:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:41:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:42:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:42:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:42:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:42:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:42:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:42:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:43:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:43:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:43:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:43:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:43:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:43:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:44:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:44:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:44:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:44:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:44:39 (#:amount 44448624 #:time 275)) (heartbeat 2015-06-19T18:44:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:44:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:45:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:45:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:45:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:45:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:45:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:45:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:46:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:46:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:46:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:46:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:46:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:46:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:47:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:47:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:47:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:47:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:47:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:47:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:48:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:48:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:48:20 (#:amount 44473288 #:time 275)) (heartbeat 2015-06-19T18:48:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:48:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:48:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:48:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:49:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:49:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:49:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:49:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:49:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:49:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:50:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:50:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:50:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:50:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:50:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:50:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:51:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:51:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:51:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:51:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:51:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:51:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:52:00 (#:amount 44367256 #:time 277)) (heartbeat 2015-06-19T18:52:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:52:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:52:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:52:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:52:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:52:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:53:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:53:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:53:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:53:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:53:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:53:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:54:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:54:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:54:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:54:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:54:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:54:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:55:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:55:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:55:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:55:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:55:38 (#:amount 44888104 #:time 275)) (heartbeat 2015-06-19T18:55:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:55:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:56:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:56:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:56:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:56:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:56:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:56:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:57:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:57:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:57:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:57:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:57:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:57:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:58:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:58:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:58:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:58:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:58:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:58:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:59:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:59:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T18:59:17 (#:amount 45563248 #:time 276)) (heartbeat 2015-06-19T18:59:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:59:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:59:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T18:59:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:00:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:00:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:00:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:00:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:00:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:00:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:01:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:01:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:01:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:01:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:01:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:01:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:02:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:02:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:02:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:02:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:02:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:02:48 (#:amount 44552824 #:time 274)) (heartbeat 2015-06-19T19:02:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:03:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:03:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:03:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:03:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:03:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:03:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:04:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:04:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:04:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:04:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:04:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:04:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:05:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:05:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:05:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:05:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:05:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:05:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:06:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:06:10 (#:amount 44008184 #:time 235)) (heartbeat 2015-06-19T19:06:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:06:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:06:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:06:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:06:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:07:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:07:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:07:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:07:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:07:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:07:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:08:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:08:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:08:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:08:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:08:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:08:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:09:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:09:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:09:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:09:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:09:40 (#:amount 44656656 #:time 235)) (heartbeat 2015-06-19T19:09:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:09:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:10:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:10:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:10:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:10:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:10:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:10:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:11:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:11:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:11:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:11:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:11:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:11:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:12:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:12:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:12:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:12:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:12:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:12:52 (#:amount 45097488 #:time 276)) (heartbeat 2015-06-19T19:12:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:13:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:13:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:13:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:13:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:13:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:13:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:14:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:14:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:14:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:14:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:14:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:14:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:15:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:15:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:15:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:15:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:15:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:15:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:16:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:16:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:16:19 (#:amount 44561312 #:time 274)) (heartbeat 2015-06-19T19:16:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:16:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:16:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:16:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:17:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:17:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:17:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:17:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:17:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:17:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:18:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:18:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:18:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:18:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:18:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:18:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:19:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:19:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:19:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:19:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:19:45 (#:amount 43869880 #:time 280)) (heartbeat 2015-06-19T19:19:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:19:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:20:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:20:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:20:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:20:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:20:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:20:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:21:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:21:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:21:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:21:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:21:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:21:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:22:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:22:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:22:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:22:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:22:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:22:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:23:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:23:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:23:22 (#:amount 45373776 #:time 278)) (heartbeat 2015-06-19T19:23:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:23:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:23:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:23:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:24:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:24:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:24:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:24:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:24:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:24:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:25:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:25:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:25:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:25:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:25:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:25:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:26:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:26:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:26:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:26:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:26:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:26:48 (#:amount 44311008 #:time 236)) (heartbeat 2015-06-19T19:26:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:27:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:27:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:27:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:27:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:27:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:27:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:28:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:28:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:28:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:28:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:28:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:28:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:29:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:29:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:29:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:29:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:29:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:29:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:30:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:30:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:30:23 (#:amount 44758496 #:time 275)) (heartbeat 2015-06-19T19:30:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:30:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:30:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:30:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:31:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:31:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:31:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:31:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:31:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:31:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:32:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:32:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:32:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:32:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:32:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:32:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:33:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:33:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:33:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:33:33 (#:amount 45050656 #:time 277)) (heartbeat 2015-06-19T19:33:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:33:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:33:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:34:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:34:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:34:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:34:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:34:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:34:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:35:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:35:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:35:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:35:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:35:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:35:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:36:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:36:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:36:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:36:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:36:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:36:54 (#:amount 44688848 #:time 235)) (heartbeat 2015-06-19T19:36:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:37:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:37:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:37:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:37:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:37:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:37:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:38:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:38:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:38:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:38:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:38:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:38:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:39:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:39:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:39:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:39:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:39:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:39:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:40:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:40:11 (#:amount 44567120 #:time 272)) (heartbeat 2015-06-19T19:40:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:40:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:40:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:40:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:40:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:41:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:41:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:41:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:41:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:41:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:41:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:42:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:42:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:42:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:42:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:42:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:42:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:43:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:43:09 (#:amount 44542264 #:time 279)) (heartbeat 2015-06-19T19:43:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:43:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:43:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:43:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:43:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:44:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:44:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:44:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:44:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:44:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:44:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:45:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:45:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:45:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:45:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:45:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:45:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:46:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:46:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:46:17 (#:amount 44739608 #:time 275)) (heartbeat 2015-06-19T19:46:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:46:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:46:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:46:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:47:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:47:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:47:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:47:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:47:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:47:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:48:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:48:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:48:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:48:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:48:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:48:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:49:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:49:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:49:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:49:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:49:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:49:51 (#:amount 44553000 #:time 277)) (heartbeat 2015-06-19T19:49:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:50:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:50:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:50:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:50:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:50:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:50:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:51:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:51:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:51:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:51:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:51:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:51:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:52:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:52:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:52:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:52:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:52:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:52:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:53:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:53:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:53:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:53:31 (#:amount 44547464 #:time 280)) (heartbeat 2015-06-19T19:53:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:53:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:53:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:54:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:54:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:54:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:54:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:54:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:54:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:55:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:55:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:55:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:55:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:55:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:55:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:56:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:56:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:56:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:56:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:56:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:56:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:57:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T19:57:11 (#:amount 45121240 #:time 276)) (heartbeat 2015-06-19T19:57:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:57:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:57:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:57:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:57:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:58:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:58:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:58:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:58:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:58:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:58:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:59:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:59:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:59:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:59:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:59:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T19:59:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:00:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:00:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:00:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:00:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:00:38 (#:amount 45650904 #:time 277)) (heartbeat 2015-06-19T20:00:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:00:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:01:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:01:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:01:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:01:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:01:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:01:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:02:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:02:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:02:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:02:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:02:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:02:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:03:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:03:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:03:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:03:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:03:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:03:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:04:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:04:17 (#:amount 45052184 #:time 278)) (heartbeat 2015-06-19T20:04:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:04:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:04:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:04:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:04:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:05:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:05:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:05:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:05:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:05:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:05:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:06:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:06:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:06:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:06:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:06:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:06:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:07:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:07:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:07:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:07:34 (#:amount 44752240 #:time 249)) (heartbeat 2015-06-19T20:07:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:07:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:07:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:08:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:08:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:08:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:08:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:08:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:08:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:09:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:09:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:09:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:09:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:09:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:09:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:10:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:10:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:10:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:10:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:10:43 (#:amount 45577024 #:time 239)) (heartbeat 2015-06-19T20:10:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:10:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:11:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:11:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:11:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:11:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:11:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:11:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:12:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:12:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:12:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:12:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:12:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:12:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:13:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:13:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:13:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:13:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:13:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:13:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:14:06 (#:amount 45221680 #:time 282)) (heartbeat 2015-06-19T20:14:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:14:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:14:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:14:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:14:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:14:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:15:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:15:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:15:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:15:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:15:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:15:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:16:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:16:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:16:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:16:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:16:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:16:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:17:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:17:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:17:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:17:32 (#:amount 45098160 #:time 237)) (heartbeat 2015-06-19T20:17:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:17:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:17:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:18:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:18:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:18:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:18:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:18:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:18:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:19:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:19:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:19:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:19:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:19:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:19:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:20:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:20:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:20:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:20:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:20:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:20:52 (#:amount 44642672 #:time 235)) (heartbeat 2015-06-19T20:20:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:21:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:21:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:21:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:21:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:21:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:21:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:22:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:22:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:22:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:22:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:22:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:22:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:23:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:23:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:23:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:23:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:23:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:23:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:24:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:24:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:24:22 (#:amount 44529280 #:time 280)) (heartbeat 2015-06-19T20:24:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:24:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:24:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:24:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:25:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:25:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:25:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:25:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:25:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:25:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:26:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:26:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:26:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:26:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:26:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:26:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:27:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:27:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:27:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:27:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:27:41 (#:amount 44931136 #:time 235)) (heartbeat 2015-06-19T20:27:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:27:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:28:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:28:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:28:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:28:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:28:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:28:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:29:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:29:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:29:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:29:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:29:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:29:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:30:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:30:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:30:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:30:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:30:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:30:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:31:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:31:14 (#:amount 45385488 #:time 278)) (heartbeat 2015-06-19T20:31:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:31:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:31:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:31:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:31:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:32:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:32:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:32:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:32:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:32:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:32:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:33:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:33:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:33:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:33:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:33:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:33:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:34:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:34:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:34:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:34:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:34:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:34:49 (#:amount 44466576 #:time 277)) (heartbeat 2015-06-19T20:34:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:35:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:35:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:35:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:35:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:35:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:35:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:36:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:36:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:36:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:36:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:36:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:36:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:37:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:37:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:37:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:37:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:37:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:37:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:38:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:38:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:38:21 (#:amount 45481048 #:time 236)) (heartbeat 2015-06-19T20:38:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:38:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:38:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:38:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:39:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:39:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:39:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:39:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:39:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:39:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:40:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:40:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:40:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:40:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:40:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:40:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:41:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:41:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:41:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:41:34 (#:amount 43688656 #:time 235)) (heartbeat 2015-06-19T20:41:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:41:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:41:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:42:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:42:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:42:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:42:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:42:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:42:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:43:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:43:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:43:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:43:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:43:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:43:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:44:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:44:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:44:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:44:39 (#:amount 44791200 #:time 237)) (heartbeat 2015-06-19T20:44:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:44:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:44:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:45:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:45:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:45:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:45:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:45:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:45:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:46:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:46:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:46:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:46:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:46:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:46:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:47:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:47:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:47:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:47:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:47:45 (#:amount 45297280 #:time 238)) (heartbeat 2015-06-19T20:47:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:47:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:48:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:48:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:48:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:48:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:48:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:48:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:49:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:49:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:49:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:49:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:49:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:49:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:50:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:50:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:50:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:50:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:50:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:50:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:51:07 (#:amount 44696280 #:time 274)) (heartbeat 2015-06-19T20:51:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:51:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:51:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:51:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:51:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:51:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:52:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:52:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:52:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:52:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:52:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:52:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:53:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:53:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:53:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:53:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:53:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:53:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:54:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:54:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:54:25 (#:amount 46008336 #:time 283)) (heartbeat 2015-06-19T20:54:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:54:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:54:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:54:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:55:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:55:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:55:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:55:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:55:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:55:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:56:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:56:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:56:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:56:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:56:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:56:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:57:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:57:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:57:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:57:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:57:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:57:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T20:58:01 (#:amount 43750736 #:time 235)) (heartbeat 2015-06-19T20:58:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:58:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:58:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:58:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:58:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:58:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:59:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:59:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:59:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:59:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:59:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T20:59:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:00:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:00:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:00:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:00:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:00:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:00:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:01:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:01:18 (#:amount 44880192 #:time 235)) (heartbeat 2015-06-19T21:01:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:01:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:01:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:01:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:01:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:02:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:02:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:02:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:02:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:02:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:03:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:03:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:03:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:03:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:03:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:03:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:04:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:04:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:04:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:04:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:04:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:04:48 (#:amount 44269048 #:time 277)) (heartbeat 2015-06-19T21:04:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:05:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:05:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:05:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:05:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:05:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:05:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:06:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:06:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:06:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:06:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:06:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:06:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:07:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:07:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:07:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:07:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:07:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:07:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:08:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:08:06 (#:amount 44680184 #:time 278)) (heartbeat 2015-06-19T21:08:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:08:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:08:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:08:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:08:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:09:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:09:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:09:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:09:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:09:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:09:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:10:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:10:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:10:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:10:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:10:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:10:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:11:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:11:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:11:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:11:27 (#:amount 44949672 #:time 275)) (heartbeat 2015-06-19T21:11:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:11:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:11:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:12:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:12:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:12:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:12:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:12:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:12:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:13:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:13:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:13:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:13:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:13:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:13:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:14:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:14:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:14:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:14:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:14:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:14:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:15:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:15:01 (#:amount 45053816 #:time 278)) (heartbeat 2015-06-19T21:15:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:15:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:15:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:15:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:15:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:16:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:16:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:16:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:16:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:16:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:16:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:17:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:17:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:17:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:17:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:17:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:17:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:18:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:18:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:18:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:18:27 (#:amount 44897912 #:time 282)) (heartbeat 2015-06-19T21:18:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:18:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:18:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:19:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:19:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:19:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:19:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:19:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:19:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:20:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:20:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:20:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:20:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:20:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:20:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:21:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:21:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:21:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:21:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:21:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:21:47 (#:amount 45481800 #:time 279)) (heartbeat 2015-06-19T21:21:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:22:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:22:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:22:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:22:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:22:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:22:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:23:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:23:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:23:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:23:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:23:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:23:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:24:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:24:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:24:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:24:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:24:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:24:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:25:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:25:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:25:18 (#:amount 44428296 #:time 276)) (heartbeat 2015-06-19T21:25:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:25:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:25:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:25:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:26:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:26:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:26:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:26:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:26:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:26:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:27:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:27:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:27:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:27:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:27:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:27:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:28:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:28:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:28:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:28:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:28:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:28:44 (#:amount 43839288 #:time 276)) (heartbeat 2015-06-19T21:28:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:29:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:29:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:29:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:29:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:29:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:29:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:30:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:30:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:30:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:30:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:30:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:30:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:31:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:31:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:31:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:31:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:31:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:31:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:32:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:32:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:32:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:32:29 (#:amount 45105648 #:time 277)) (heartbeat 2015-06-19T21:32:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:32:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:32:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:33:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:33:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:33:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:33:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:33:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:33:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:34:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:34:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:34:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:34:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:34:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:34:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:35:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:35:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:35:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:35:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:35:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:35:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:36:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:36:10 (#:amount 45449232 #:time 278)) (heartbeat 2015-06-19T21:36:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:36:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:36:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:36:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:36:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:37:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:37:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:37:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:37:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:37:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:37:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:38:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:38:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:38:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:38:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:38:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:38:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:39:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:39:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:39:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:39:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:39:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:39:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:39:52 (#:amount 45064624 #:time 278)) (heartbeat 2015-06-19T21:40:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:40:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:40:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:40:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:40:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:40:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:41:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:41:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:41:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:41:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:41:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:41:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:42:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:42:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:42:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:42:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:42:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:42:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:43:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:43:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:43:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:43:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:43:32 (#:amount 45799920 #:time 279)) (heartbeat 2015-06-19T21:43:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:43:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:44:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:44:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:44:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:44:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:44:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:44:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:45:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:45:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:45:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:45:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:45:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:45:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:46:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:46:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:46:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:46:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:46:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:46:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:47:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:47:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:47:14 (#:amount 45303888 #:time 280)) (heartbeat 2015-06-19T21:47:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:47:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:47:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:47:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:48:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:48:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:48:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:48:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:48:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:48:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:49:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:49:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:49:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:49:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:49:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:49:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:50:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:50:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:50:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:50:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:50:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:50:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:50:54 (#:amount 45129696 #:time 278)) (heartbeat 2015-06-19T21:51:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:51:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:51:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:51:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:51:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:51:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:52:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:52:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:52:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:52:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:52:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:52:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:53:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:53:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:53:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:53:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:53:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:53:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:54:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:54:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:54:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:54:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:54:34 (#:amount 43610128 #:time 275)) (heartbeat 2015-06-19T21:54:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:54:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:55:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:55:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:55:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:55:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:55:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:55:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:56:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:56:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:56:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:56:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:56:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:56:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:57:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:57:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:57:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:57:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:57:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:57:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:58:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:58:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T21:58:15 (#:amount 45521568 #:time 279)) (heartbeat 2015-06-19T21:58:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:58:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:58:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:58:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:59:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:59:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:59:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:59:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:59:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T21:59:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:00:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:00:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:00:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:00:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:00:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:00:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:01:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:01:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:01:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:01:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:01:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:01:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:01:58 (#:amount 44739152 #:time 283)) (heartbeat 2015-06-19T22:02:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:02:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:02:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:02:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:02:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:02:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:03:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:03:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:03:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:03:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:03:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:03:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:04:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:04:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:04:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:04:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:04:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:04:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:05:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:05:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:05:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:05:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:05:42 (#:amount 44703824 #:time 275)) (heartbeat 2015-06-19T22:05:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:05:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:06:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:06:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:06:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:06:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:06:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:06:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:07:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:07:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:07:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:07:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:07:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:07:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:08:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:08:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:08:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:08:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:08:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:08:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:09:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:09:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:09:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:09:25 (#:amount 45196208 #:time 279)) (heartbeat 2015-06-19T22:09:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:09:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:09:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:10:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:10:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:10:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:10:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:10:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:10:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:11:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:11:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:11:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:11:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:11:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:11:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:12:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:12:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:12:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:12:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:12:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:12:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:13:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:13:06 (#:amount 45084656 #:time 283)) (heartbeat 2015-06-19T22:13:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:13:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:13:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:13:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:13:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:14:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:14:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:14:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:14:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:14:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:14:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:15:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:15:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:15:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:15:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:15:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:15:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:16:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:16:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:16:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:16:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:16:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:16:48 (#:amount 44669264 #:time 275)) (heartbeat 2015-06-19T22:16:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:17:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:17:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:17:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:17:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:17:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:17:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:18:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:18:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:18:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:18:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:18:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:18:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:19:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:19:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:19:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:19:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:19:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:19:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:20:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:20:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:20:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:20:29 (#:amount 45397456 #:time 279)) (heartbeat 2015-06-19T22:20:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:20:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:20:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:21:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:21:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:21:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:21:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:21:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:21:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:22:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:22:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:22:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:22:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:22:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:22:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:23:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:23:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:23:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:23:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:23:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:23:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:24:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:24:11 (#:amount 45815240 #:time 278)) (heartbeat 2015-06-19T22:24:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:24:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:24:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:24:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:24:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:25:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:25:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:25:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:25:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:25:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:25:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:26:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:26:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:26:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:26:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:26:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:26:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:27:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:27:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:27:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:27:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:27:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:27:52 (#:amount 45442344 #:time 277)) (heartbeat 2015-06-19T22:27:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:28:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:28:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:28:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:28:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:28:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:28:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:29:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:29:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:29:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:29:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:29:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:29:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:30:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:30:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:30:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:30:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:30:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:30:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:31:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:31:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:31:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:31:32 (#:amount 44710344 #:time 278)) (heartbeat 2015-06-19T22:31:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:31:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:31:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:32:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:32:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:32:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:32:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:32:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:32:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:33:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:33:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:33:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:33:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:33:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:33:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:34:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:34:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:34:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:34:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:34:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:34:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:35:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:35:13 (#:amount 45035408 #:time 277)) (heartbeat 2015-06-19T22:35:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:35:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:35:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:35:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:35:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:36:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:36:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:36:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:36:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:36:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:36:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:37:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:37:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:37:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:37:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:37:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:37:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:38:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:38:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:38:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:38:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:38:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:38:52 (#:amount 44887928 #:time 277)) (heartbeat 2015-06-19T22:38:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:39:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:39:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:39:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:39:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:39:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:39:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:40:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:40:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:40:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:40:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:40:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:40:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:41:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:41:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:41:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:41:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:41:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:41:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:42:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:42:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:42:15 (#:amount 44823816 #:time 235)) (heartbeat 2015-06-19T22:42:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:42:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:42:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:42:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:43:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:43:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:43:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:43:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:43:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:43:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:44:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:44:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:44:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:44:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:44:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:44:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:45:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:45:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:45:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:45:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:45:35 (#:amount 44232536 #:time 275)) (heartbeat 2015-06-19T22:45:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:45:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:46:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:46:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:46:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:46:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:46:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:46:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:47:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:47:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:47:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:47:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:47:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:47:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:48:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:48:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:48:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:48:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:48:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:48:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:49:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:49:14 (#:amount 44284760 #:time 274)) (heartbeat 2015-06-19T22:49:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:49:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:49:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:49:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:49:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:50:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:50:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:50:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:50:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:50:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:50:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:51:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:51:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:51:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:51:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:51:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:51:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:52:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:52:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:52:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:52:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:52:38 (#:amount 44056792 #:time 273)) (heartbeat 2015-06-19T22:52:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:52:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:53:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:53:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:53:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:53:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:53:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:53:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:54:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:54:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:54:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:54:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:54:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:54:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:55:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:55:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:55:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:55:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:55:34 (#:amount 44961000 #:time 234)) (heartbeat 2015-06-19T22:55:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:55:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:56:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:56:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:56:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:56:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:56:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:56:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:57:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:57:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:57:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:57:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:57:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:57:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:58:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:58:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:58:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:58:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:58:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T22:58:50 (#:amount 44594584 #:time 275)) (heartbeat 2015-06-19T22:58:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:59:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:59:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:59:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:59:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:59:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T22:59:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:00:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:00:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:00:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:00:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:00:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:00:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:01:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:01:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:01:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:01:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:01:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:01:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:02:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:02:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:02:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:02:28 (#:amount 44115816 #:time 275)) (heartbeat 2015-06-19T23:02:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:02:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:02:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:03:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:03:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:03:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:03:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:03:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:03:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:04:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:04:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:04:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:04:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:04:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:04:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:05:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:05:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:05:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:05:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:05:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:05:52 (#:amount 44922888 #:time 257)) (heartbeat 2015-06-19T23:05:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:06:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:06:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:06:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:06:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:06:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:06:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:07:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:07:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:07:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:07:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:07:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:07:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:08:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:08:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:08:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:08:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:08:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:08:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:09:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:09:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:09:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:09:26 (#:amount 45047120 #:time 278)) (heartbeat 2015-06-19T23:09:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:09:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:09:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:10:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:10:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:10:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:10:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:10:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:10:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:11:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:11:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:11:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:11:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:11:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:11:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:12:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:12:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:12:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:12:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:12:44 (#:amount 45239016 #:time 276)) (heartbeat 2015-06-19T23:12:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:12:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:13:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:13:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:13:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:13:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:13:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:13:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:14:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:14:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:14:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:14:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:14:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:14:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:15:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:15:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:15:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:15:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:15:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:15:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:15:58 (#:amount 45740464 #:time 280)) (heartbeat 2015-06-19T23:16:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:16:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:16:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:16:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:16:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:16:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:17:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:17:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:17:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:17:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:17:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:17:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:18:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:18:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:18:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:18:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:18:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:18:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:19:04 (#:amount 44682912 #:time 251)) (heartbeat 2015-06-19T23:19:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:19:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:19:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:19:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:19:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:19:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:20:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:20:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:20:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:20:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:20:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:20:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:21:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:21:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:21:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:21:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:21:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:21:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:22:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:22:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:22:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:22:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:22:44 (#:amount 44709376 #:time 281)) (heartbeat 2015-06-19T23:22:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:22:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:23:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:23:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:23:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:23:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:23:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:23:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:24:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:24:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:24:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:24:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:24:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:24:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:25:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:25:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:25:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:25:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:25:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:25:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:26:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:26:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:26:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:26:27 (#:amount 44686424 #:time 276)) (heartbeat 2015-06-19T23:26:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:26:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:26:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:27:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:27:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:27:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:27:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:27:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:27:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:28:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:28:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:28:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:28:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:28:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:28:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:29:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:29:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:29:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:29:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:29:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:29:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:30:04 (#:amount 45398944 #:time 278)) (heartbeat 2015-06-19T23:30:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:30:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:30:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:30:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:30:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:30:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:31:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:31:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:31:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:31:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:31:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:31:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:32:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:32:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:32:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:32:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:32:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:32:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:33:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:33:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:33:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:33:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:33:36 (#:amount 44126104 #:time 237)) (heartbeat 2015-06-19T23:33:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:33:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:34:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:34:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:34:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:34:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:34:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:34:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:35:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:35:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:35:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:35:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:35:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:35:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:36:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:36:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:36:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:36:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:36:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:36:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:37:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:37:08 (#:amount 43750600 #:time 276)) (heartbeat 2015-06-19T23:37:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:37:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:37:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:37:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:37:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:38:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:38:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:38:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:38:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:38:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:38:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:39:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:39:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:39:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:39:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:39:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:39:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:40:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:40:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:40:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:40:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:40:41 (#:amount 44913112 #:time 278)) (heartbeat 2015-06-19T23:40:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:40:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:41:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:41:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:41:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:41:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:41:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:41:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:42:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:42:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:42:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:42:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:42:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:42:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:43:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:43:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:43:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:43:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:43:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:43:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:44:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:44:14 (#:amount 43822864 #:time 273)) (heartbeat 2015-06-19T23:44:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:44:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:44:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:44:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:44:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:45:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:45:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:45:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:45:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:45:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:45:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:46:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:46:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:46:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:46:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:46:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:46:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:47:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:47:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:47:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:47:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:47:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:47:53 (#:amount 44939744 #:time 277)) (heartbeat 2015-06-19T23:47:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:48:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:48:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:48:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:48:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:48:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:48:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:49:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:49:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:49:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:49:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:49:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:49:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:50:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:50:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:50:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:50:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:50:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:50:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:51:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:51:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:51:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:51:28 (#:amount 45539312 #:time 279)) (heartbeat 2015-06-19T23:51:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:51:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:51:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:52:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:52:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:52:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:52:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:52:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:52:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:53:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:53:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:53:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:53:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:53:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:53:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:54:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:54:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:54:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:54:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:54:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:54:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:55:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:55:07 (#:amount 44195776 #:time 277)) (heartbeat 2015-06-19T23:55:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:55:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:55:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:55:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:55:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:56:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:56:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:56:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:56:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:56:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:56:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:57:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:57:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:57:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:57:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:57:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:57:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:58:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:58:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:58:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:58:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:58:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-19T23:58:49 (#:amount 44705120 #:time 276)) (heartbeat 2015-06-19T23:58:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:59:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:59:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:59:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:59:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:59:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-19T23:59:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:00:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:00:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:00:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:00:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:00:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:00:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:01:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:01:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:01:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:01:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:01:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:01:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:02:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:02:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:02:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:02:31 (#:amount 45155168 #:time 276)) (heartbeat 2015-06-20T00:02:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:02:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:02:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:03:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:03:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:03:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:03:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:03:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:03:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:04:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:04:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:04:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:04:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:04:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:04:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:05:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:05:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:05:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:05:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:05:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:05:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:06:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:06:12 (#:amount 45086408 #:time 277)) (heartbeat 2015-06-20T00:06:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:06:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:06:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:06:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:06:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:07:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:07:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:07:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:07:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:07:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:07:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:08:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:08:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:08:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:08:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:08:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:08:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:09:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:09:13 (#:amount 44542808 #:time 275)) (heartbeat 2015-06-20T00:09:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:09:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:09:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:09:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:09:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:10:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:10:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:10:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:10:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:10:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:10:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:11:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:11:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:11:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:11:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:11:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:11:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:12:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:12:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:12:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:12:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:12:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:12:51 (#:amount 44952296 #:time 274)) (heartbeat 2015-06-20T00:12:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:13:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:13:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:13:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:13:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:13:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:13:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:14:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:14:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:14:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:14:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:14:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:14:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:15:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:15:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:15:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:15:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:15:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:15:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:16:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:16:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:16:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:16:29 (#:amount 46377864 #:time 279)) (heartbeat 2015-06-20T00:16:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:16:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:16:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:17:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:17:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:17:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:17:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:17:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:17:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:18:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:18:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:18:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:18:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:18:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:18:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:19:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:19:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:19:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:19:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:19:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:19:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:20:08 (#:amount 45094856 #:time 277)) (heartbeat 2015-06-20T00:20:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:20:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:20:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:20:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:20:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:20:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:21:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:21:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:21:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:21:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:21:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:21:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:22:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:22:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:22:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:22:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:22:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:22:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:23:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:23:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:23:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:23:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:23:45 (#:amount 43542096 #:time 273)) (heartbeat 2015-06-20T00:23:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:23:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:24:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:24:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:24:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:24:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:24:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:24:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:25:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:25:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:25:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:25:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:25:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:25:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:26:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:26:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:26:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:26:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:26:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:26:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:27:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:27:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:27:23 (#:amount 44502824 #:time 276)) (heartbeat 2015-06-20T00:27:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:27:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:27:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:27:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:28:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:28:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:28:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:28:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:28:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:28:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:29:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:29:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:29:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:29:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:29:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:29:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:30:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:30:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:30:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:30:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:30:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:30:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:31:06 (#:amount 45142896 #:time 278)) (heartbeat 2015-06-20T00:31:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:31:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:31:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:31:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:31:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:31:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:32:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:32:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:32:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:32:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:32:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:32:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:33:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:33:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:33:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:33:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:33:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:33:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:34:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:34:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:34:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:34:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:34:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:34:50 (#:amount 44006824 #:time 275)) (heartbeat 2015-06-20T00:34:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:35:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:35:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:35:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:35:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:35:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:35:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:36:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:36:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:36:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:36:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:36:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:36:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:37:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:37:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:37:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:37:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:37:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:37:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:38:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:38:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:38:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:38:32 (#:amount 45076752 #:time 279)) (heartbeat 2015-06-20T00:38:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:38:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:38:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:39:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:39:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:39:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:39:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:39:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:39:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:40:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:40:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:40:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:40:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:40:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:40:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:41:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:41:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:41:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:41:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:41:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:41:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:42:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:42:13 (#:amount 44560664 #:time 275)) (heartbeat 2015-06-20T00:42:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:42:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:42:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:42:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:42:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:43:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:43:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:43:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:43:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:43:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:43:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:44:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:44:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:44:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:44:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:44:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:44:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:45:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:45:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:45:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:45:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:45:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:45:55 (#:amount 44973440 #:time 279)) (heartbeat 2015-06-20T00:45:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:46:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:46:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:46:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:46:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:46:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:46:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:47:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:47:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:47:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:47:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:47:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:47:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:48:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:48:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:48:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:48:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:48:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:48:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:49:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:49:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:49:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:49:38 (#:amount 44580504 #:time 281)) (heartbeat 2015-06-20T00:49:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:49:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:49:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:50:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:50:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:50:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:50:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:50:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:50:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:51:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:51:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:51:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:51:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:51:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:51:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:52:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:52:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:52:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:52:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:52:46 (#:amount 45426408 #:time 278)) (heartbeat 2015-06-20T00:52:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:52:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:53:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:53:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:53:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:53:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:53:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:53:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:54:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:54:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:54:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:54:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:54:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:54:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:55:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:55:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:55:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:55:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:55:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:55:59 (#:amount 44693592 #:time 276)) (heartbeat 2015-06-20T00:55:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:56:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:56:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:56:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:56:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:56:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:56:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:57:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:57:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:57:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:57:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:57:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:57:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:58:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:58:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:58:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:58:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:58:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:58:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:59:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:59:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T00:59:20 (#:amount 44780760 #:time 277)) (heartbeat 2015-06-20T00:59:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:59:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:59:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T00:59:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:00:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:00:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:00:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:00:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:00:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:00:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:01:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:01:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:01:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:01:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:01:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:01:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:02:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:02:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:02:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:02:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:02:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:02:59 (#:amount 44689280 #:time 276)) (heartbeat 2015-06-20T01:02:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:03:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:03:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:03:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:03:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:03:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:04:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:04:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:04:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:04:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:04:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:04:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:05:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:05:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:05:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:05:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:05:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:05:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:06:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:06:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:06:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:06:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:06:37 (#:amount 44798888 #:time 278)) (heartbeat 2015-06-20T01:06:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:06:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:07:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:07:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:07:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:07:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:07:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:07:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:08:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:08:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:08:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:08:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:08:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:08:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:09:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:09:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:09:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:09:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:09:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:09:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:10:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:10:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:10:18 (#:amount 45718624 #:time 277)) (heartbeat 2015-06-20T01:10:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:10:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:10:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:10:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:11:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:11:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:11:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:11:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:11:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:11:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:12:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:12:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:12:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:12:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:12:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:12:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:13:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:13:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:13:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:13:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:13:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:13:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:13:57 (#:amount 45006192 #:time 277)) (heartbeat 2015-06-20T01:14:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:14:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:14:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:14:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:14:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:14:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:15:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:15:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:15:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:15:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:15:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:15:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:16:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:16:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:16:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:16:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:16:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:16:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:17:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:17:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:17:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:17:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:17:38 (#:amount 44025384 #:time 274)) (heartbeat 2015-06-20T01:17:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:17:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:18:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:18:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:18:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:18:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:18:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:18:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:19:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:19:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:19:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:19:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:19:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:19:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:20:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:20:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:20:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:20:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:20:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:20:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:21:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:21:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:21:17 (#:amount 44163296 #:time 274)) (heartbeat 2015-06-20T01:21:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:21:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:21:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:21:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:22:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:22:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:22:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:22:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:22:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:22:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:23:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:23:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:23:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:23:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:23:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:23:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:24:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:24:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:24:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:24:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:24:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:24:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:24:55 (#:amount 45099504 #:time 275)) (heartbeat 2015-06-20T01:25:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:25:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:25:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:25:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:25:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:25:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:26:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:26:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:26:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:26:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:26:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:26:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:27:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:27:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:27:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:27:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:27:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:27:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:28:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:28:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:28:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:28:22 (#:amount 45642936 #:time 279)) (heartbeat 2015-06-20T01:28:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:28:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:28:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:29:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:29:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:29:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:29:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:29:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:29:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:30:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:30:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:30:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:30:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:30:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:30:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:31:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:31:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:31:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:31:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:31:40 (#:amount 44933848 #:time 237)) (heartbeat 2015-06-20T01:31:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:31:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:32:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:32:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:32:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:32:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:32:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:32:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:33:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:33:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:33:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:33:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:33:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:33:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:34:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:34:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:34:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:34:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:34:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:34:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:34:54 (#:amount 45631312 #:time 278)) (heartbeat 2015-06-20T01:35:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:35:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:35:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:35:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:35:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:35:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:36:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:36:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:36:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:36:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:36:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:36:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:37:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:37:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:37:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:37:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:37:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:37:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:38:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:38:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:38:14 (#:amount 44063888 #:time 273)) (heartbeat 2015-06-20T01:38:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:38:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:38:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:38:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:39:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:39:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:39:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:39:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:39:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:39:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:40:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:40:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:40:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:40:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:40:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:40:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:41:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:41:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:41:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:41:30 (#:amount 44980792 #:time 276)) (heartbeat 2015-06-20T01:41:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:41:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:41:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:42:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:42:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:42:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:42:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:42:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:42:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:43:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:43:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:43:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:43:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:43:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:43:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:44:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:44:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:44:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:44:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:44:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:44:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:44:57 (#:amount 44351136 #:time 236)) (heartbeat 2015-06-20T01:45:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:45:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:45:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:45:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:45:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:45:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:46:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:46:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:46:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:46:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:46:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:46:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:47:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:47:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:47:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:47:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:47:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:47:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:48:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:48:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:48:14 (#:amount 44722896 #:time 276)) (heartbeat 2015-06-20T01:48:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:48:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:48:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:48:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:49:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:49:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:49:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:49:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:49:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:49:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:50:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:50:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:50:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:50:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:50:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:50:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:51:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:51:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:51:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:51:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:51:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:51:47 (#:amount 45272504 #:time 277)) (heartbeat 2015-06-20T01:51:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:52:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:52:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:52:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:52:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:52:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:52:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:53:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:53:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:53:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:53:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:53:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:53:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:54:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:54:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:54:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:54:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:54:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:54:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:55:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:55:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:55:18 (#:amount 44603904 #:time 276)) (heartbeat 2015-06-20T01:55:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:55:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:55:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:55:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:56:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:56:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:56:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:56:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:56:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:56:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:57:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:57:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:57:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:57:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:57:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:57:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:58:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:58:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:58:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:58:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:58:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T01:58:50 (#:amount 44209032 #:time 274)) (heartbeat 2015-06-20T01:58:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:59:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:59:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:59:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:59:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:59:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T01:59:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:00:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:00:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:00:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:00:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:00:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:00:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:01:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:01:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:01:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:01:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:01:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:01:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:02:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:02:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:02:21 (#:amount 44511544 #:time 275)) (heartbeat 2015-06-20T02:02:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:02:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:02:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:02:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:03:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:03:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:03:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:03:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:03:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:03:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:04:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:04:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:04:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:04:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:04:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:04:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:05:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:05:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:05:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:05:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:05:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:05:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:05:56 (#:amount 45005216 #:time 278)) (heartbeat 2015-06-20T02:06:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:06:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:06:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:06:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:06:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:06:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:07:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:07:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:07:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:07:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:07:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:07:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:08:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:08:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:08:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:08:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:08:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:08:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:09:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:09:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:09:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:09:25 (#:amount 44739736 #:time 238)) (heartbeat 2015-06-20T02:09:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:09:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:09:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:10:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:10:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:10:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:10:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:10:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:10:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:11:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:11:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:11:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:11:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:11:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:11:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:12:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:12:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:12:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:12:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:12:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:12:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:12:53 (#:amount 44250736 #:time 277)) (heartbeat 2015-06-20T02:13:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:13:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:13:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:13:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:13:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:13:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:14:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:14:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:14:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:14:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:14:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:14:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:15:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:15:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:15:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:15:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:15:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:15:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:16:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:16:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:16:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:16:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:16:34 (#:amount 44276856 #:time 275)) (heartbeat 2015-06-20T02:16:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:16:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:17:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:17:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:17:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:17:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:17:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:17:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:18:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:18:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:18:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:18:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:18:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:18:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:19:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:19:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:19:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:19:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:19:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:19:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:20:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:20:07 (#:amount 43947064 #:time 275)) (heartbeat 2015-06-20T02:20:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:20:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:20:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:20:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:20:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:21:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:21:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:21:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:21:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:21:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:21:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:22:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:22:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:22:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:22:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:22:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:22:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:23:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:23:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:23:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:23:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:23:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:23:48 (#:amount 43984584 #:time 275)) (heartbeat 2015-06-20T02:23:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:24:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:24:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:24:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:24:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:24:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:24:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:25:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:25:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:25:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:25:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:25:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:25:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:26:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:26:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:26:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:26:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:26:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:26:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:27:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:27:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:27:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:27:28 (#:amount 45236064 #:time 278)) (heartbeat 2015-06-20T02:27:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:27:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:27:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:28:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:28:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:28:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:28:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:28:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:28:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:29:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:29:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:29:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:29:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:29:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:29:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:30:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:30:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:30:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:30:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:30:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:30:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:31:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:31:08 (#:amount 45563960 #:time 279)) (heartbeat 2015-06-20T02:31:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:31:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:31:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:31:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:31:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:32:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:32:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:32:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:32:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:32:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:32:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:33:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:33:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:33:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:33:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:33:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:33:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:34:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:34:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:34:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:34:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:34:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:34:49 (#:amount 45470376 #:time 279)) (heartbeat 2015-06-20T02:34:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:35:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:35:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:35:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:35:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:35:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:35:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:36:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:36:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:36:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:36:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:36:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:36:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:37:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:37:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:37:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:37:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:37:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:37:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:38:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:38:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:38:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:38:29 (#:amount 44716424 #:time 277)) (heartbeat 2015-06-20T02:38:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:38:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:38:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:39:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:39:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:39:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:39:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:39:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:39:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:40:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:40:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:40:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:40:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:40:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:40:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:41:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:41:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:41:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:41:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:41:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:41:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:42:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:42:09 (#:amount 45001192 #:time 277)) (heartbeat 2015-06-20T02:42:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:42:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:42:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:42:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:42:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:43:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:43:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:43:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:43:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:43:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:43:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:44:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:44:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:44:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:44:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:44:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:44:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:45:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:45:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:45:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:45:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:45:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:45:49 (#:amount 44525672 #:time 277)) (heartbeat 2015-06-20T02:45:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:46:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:46:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:46:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:46:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:46:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:46:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:47:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:47:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:47:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:47:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:47:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:47:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:48:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:48:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:48:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:48:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:48:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:48:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:49:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:49:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:49:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:49:28 (#:amount 44054936 #:time 276)) (heartbeat 2015-06-20T02:49:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:49:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:49:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:50:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:50:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:50:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:50:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:50:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:50:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:51:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:51:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:51:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:51:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:51:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:51:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:52:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:52:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:52:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:52:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:52:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:52:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:53:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:53:08 (#:amount 43988440 #:time 275)) (heartbeat 2015-06-20T02:53:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:53:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:53:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:53:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:53:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:54:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:54:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:54:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:54:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:54:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:54:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:55:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:55:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:55:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:55:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:55:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:55:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:56:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:56:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:56:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:56:31 (#:amount 45051888 #:time 277)) (heartbeat 2015-06-20T02:56:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:56:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:56:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:57:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:57:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:57:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:57:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:57:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:57:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:58:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:58:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:58:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:58:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:58:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:58:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:59:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:59:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:59:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:59:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T02:59:44 (#:amount 45206200 #:time 237)) (heartbeat 2015-06-20T02:59:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T02:59:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:00:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:00:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:00:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:00:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:00:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:00:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:01:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:01:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:01:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:01:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:01:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:01:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:02:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:02:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:02:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:02:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:02:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:02:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:03:02 (#:amount 44871720 #:time 237)) (heartbeat 2015-06-20T03:03:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:03:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:03:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:03:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:03:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:03:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:04:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:04:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:04:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:04:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:04:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:04:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:05:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:05:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:05:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:05:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:05:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:05:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:06:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:06:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:06:22 (#:amount 45692208 #:time 243)) (heartbeat 2015-06-20T03:06:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:06:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:06:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:06:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:07:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:07:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:07:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:07:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:07:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:07:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:08:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:08:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:08:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:08:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:08:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:08:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:09:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:09:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:09:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:09:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:09:41 (#:amount 45217648 #:time 276)) (heartbeat 2015-06-20T03:09:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:09:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:10:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:10:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:10:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:10:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:10:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:10:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:11:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:11:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:11:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:11:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:11:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:11:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:12:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:12:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:12:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:12:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:12:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:12:52 (#:amount 45408512 #:time 278)) (heartbeat 2015-06-20T03:12:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:13:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:13:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:13:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:13:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:13:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:13:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:14:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:14:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:14:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:14:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:14:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:14:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:15:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:15:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:15:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:15:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:15:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:15:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:16:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:16:07 (#:amount 44734272 #:time 276)) (heartbeat 2015-06-20T03:16:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:16:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:16:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:16:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:16:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:17:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:17:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:17:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:17:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:17:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:17:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:18:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:18:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:18:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:18:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:18:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:18:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:19:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:19:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:19:24 (#:amount 45260840 #:time 251)) (heartbeat 2015-06-20T03:19:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:19:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:19:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:19:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:20:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:20:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:20:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:20:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:20:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:20:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:21:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:21:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:21:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:21:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:21:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:21:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:22:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:22:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:22:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:22:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:22:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:22:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:23:02 (#:amount 44873768 #:time 275)) (heartbeat 2015-06-20T03:23:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:23:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:23:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:23:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:23:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:23:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:24:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:24:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:24:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:24:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:24:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:24:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:25:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:25:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:25:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:25:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:25:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:25:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:26:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:26:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:26:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:26:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:26:39 (#:amount 44623216 #:time 276)) (heartbeat 2015-06-20T03:26:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:26:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:27:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:27:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:27:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:27:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:27:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:27:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:28:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:28:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:28:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:28:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:28:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:28:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:29:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:29:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:29:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:29:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:29:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:29:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:30:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:30:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:30:19 (#:amount 44388024 #:time 276)) (heartbeat 2015-06-20T03:30:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:30:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:30:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:30:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:31:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:31:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:31:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:31:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:31:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:31:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:32:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:32:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:32:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:32:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:32:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:32:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:33:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:33:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:33:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:33:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:33:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:33:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:34:00 (#:amount 45302040 #:time 278)) (heartbeat 2015-06-20T03:34:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:34:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:34:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:34:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:34:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:34:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:35:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:35:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:35:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:35:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:35:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:35:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:36:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:36:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:36:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:36:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:36:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:36:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:37:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:37:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:37:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:37:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:37:40 (#:amount 45492496 #:time 279)) (heartbeat 2015-06-20T03:37:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:37:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:38:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:38:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:38:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:38:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:38:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:38:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:39:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:39:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:39:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:39:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:39:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:39:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:40:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:40:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:40:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:40:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:40:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:40:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:41:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:41:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:41:19 (#:amount 44365568 #:time 276)) (heartbeat 2015-06-20T03:41:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:41:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:41:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:41:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:42:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:42:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:42:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:42:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:42:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:42:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:43:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:43:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:43:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:43:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:43:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:43:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:44:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:44:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:44:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:44:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:44:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:44:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:44:59 (#:amount 44671008 #:time 275)) (heartbeat 2015-06-20T03:45:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:45:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:45:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:45:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:45:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:45:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:46:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:46:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:46:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:46:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:46:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:46:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:47:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:47:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:47:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:47:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:47:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:47:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:48:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:48:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:48:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:48:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:48:39 (#:amount 44542904 #:time 277)) (heartbeat 2015-06-20T03:48:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:48:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:49:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:49:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:49:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:49:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:49:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:49:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:50:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:50:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:50:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:50:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:50:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:50:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:51:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:51:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:51:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:51:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:51:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:51:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:52:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:52:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:52:20 (#:amount 44865632 #:time 277)) (heartbeat 2015-06-20T03:52:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:52:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:52:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:52:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:53:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:53:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:53:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:53:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:53:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:53:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:54:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:54:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:54:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:54:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:54:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:54:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:55:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:55:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:55:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:55:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:55:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:55:54 (#:amount 45108928 #:time 239)) (heartbeat 2015-06-20T03:55:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:56:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:56:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:56:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:56:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:56:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:56:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:57:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:57:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:57:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:57:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:57:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:57:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:58:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:58:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:58:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:58:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:58:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:58:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T03:59:06 (#:amount 44208376 #:time 265)) (heartbeat 2015-06-20T03:59:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:59:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:59:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:59:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:59:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T03:59:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:00:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:00:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:00:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:00:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:00:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:00:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:01:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:01:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:01:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:01:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:01:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:01:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:02:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:02:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:02:24 (#:amount 45979920 #:time 279)) (heartbeat 2015-06-20T04:02:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:02:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:02:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:02:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:03:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:03:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:03:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:03:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:03:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:03:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:04:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:04:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:04:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:04:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:04:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:04:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:05:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:05:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:05:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:05:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:05:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:05:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:06:05 (#:amount 45062744 #:time 277)) (heartbeat 2015-06-20T04:06:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:06:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:06:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:06:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:06:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:06:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:07:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:07:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:07:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:07:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:07:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:07:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:08:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:08:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:08:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:08:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:08:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:08:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:09:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:09:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:09:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:09:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:09:43 (#:amount 44621392 #:time 276)) (heartbeat 2015-06-20T04:09:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:09:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:10:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:10:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:10:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:10:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:10:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:10:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:11:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:11:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:11:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:11:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:11:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:11:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:12:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:12:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:12:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:12:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:12:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:12:56 (#:amount 45483088 #:time 238)) (heartbeat 2015-06-20T04:12:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:13:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:13:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:13:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:13:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:13:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:13:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:14:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:14:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:14:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:14:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:14:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:14:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:15:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:15:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:15:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:15:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:15:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:15:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:16:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:16:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:16:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:16:31 (#:amount 44336152 #:time 280)) (heartbeat 2015-06-20T04:16:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:16:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:16:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:17:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:17:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:17:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:17:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:17:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:17:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:18:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:18:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:18:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:18:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:18:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:18:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:19:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:19:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:19:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:19:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:19:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:19:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:20:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:20:09 (#:amount 45071440 #:time 278)) (heartbeat 2015-06-20T04:20:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:20:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:20:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:20:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:20:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:21:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:21:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:21:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:21:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:21:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:21:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:22:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:22:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:22:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:22:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:22:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:22:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:23:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:23:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:23:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:23:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:23:42 (#:amount 45035400 #:time 276)) (heartbeat 2015-06-20T04:23:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:23:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:24:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:24:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:24:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:24:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:24:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:24:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:25:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:25:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:25:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:25:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:25:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:25:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:26:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:26:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:26:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:26:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:26:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:26:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:27:01 (#:amount 44818464 #:time 236)) (heartbeat 2015-06-20T04:27:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:27:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:27:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:27:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:27:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:27:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:28:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:28:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:28:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:28:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:28:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:28:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:29:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:29:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:29:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:29:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:29:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:29:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:30:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:30:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:30:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:30:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:30:38 (#:amount 43395184 #:time 273)) (heartbeat 2015-06-20T04:30:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:30:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:31:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:31:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:31:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:31:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:31:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:31:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:32:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:32:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:32:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:32:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:32:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:32:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:33:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:33:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:33:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:33:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:33:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:33:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:34:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:34:17 (#:amount 44786176 #:time 277)) (heartbeat 2015-06-20T04:34:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:34:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:34:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:34:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:34:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:35:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:35:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:35:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:35:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:35:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:35:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:36:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:36:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:36:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:36:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:36:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:36:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:37:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:37:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:37:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:37:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:37:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:37:49 (#:amount 44406984 #:time 276)) (heartbeat 2015-06-20T04:37:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:38:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:38:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:38:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:38:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:38:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:38:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:39:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:39:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:39:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:39:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:39:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:39:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:40:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:40:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:40:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:40:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:40:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:40:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:41:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:41:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:41:26 (#:amount 44879968 #:time 285)) (heartbeat 2015-06-20T04:41:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:41:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:41:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:41:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:42:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:42:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:42:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:42:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:42:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:42:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:43:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:43:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:43:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:43:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:43:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:43:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:44:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:44:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:44:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:44:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:44:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:44:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:45:05 (#:amount 44569312 #:time 277)) (heartbeat 2015-06-20T04:45:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:45:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:45:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:45:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:45:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:45:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:46:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:46:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:46:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:46:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:46:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:46:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:47:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:47:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:47:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:47:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:47:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:47:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:48:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:48:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:48:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:48:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:48:40 (#:amount 45234272 #:time 277)) (heartbeat 2015-06-20T04:48:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:48:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:49:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:49:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:49:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:49:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:49:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:49:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:50:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:50:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:50:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:50:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:50:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:50:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:51:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:51:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:51:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:51:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:51:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:51:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:52:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:52:11 (#:amount 44356256 #:time 275)) (heartbeat 2015-06-20T04:52:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:52:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:52:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:52:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:52:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:53:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:53:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:53:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:53:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:53:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:53:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:54:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:54:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:54:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:54:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:54:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:54:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:55:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:55:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:55:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:55:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:55:47 (#:amount 44676168 #:time 277)) (heartbeat 2015-06-20T04:55:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:55:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:56:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:56:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:56:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:56:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:56:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:56:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:57:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:57:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:57:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:57:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:57:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:57:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:58:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:58:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:58:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:58:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:58:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:58:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:59:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:59:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T04:59:29 (#:amount 45349960 #:time 277)) (heartbeat 2015-06-20T04:59:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:59:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:59:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T04:59:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:00:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:00:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:00:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:00:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:00:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:00:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:01:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:01:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:01:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:01:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:01:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:01:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:02:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:02:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:02:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:02:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:02:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:02:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:03:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:03:11 (#:amount 45321040 #:time 281)) (heartbeat 2015-06-20T05:03:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:03:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:03:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:03:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:03:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:04:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:04:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:04:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:04:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:04:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:04:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:05:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:05:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:05:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:05:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:05:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:05:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:06:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:06:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:06:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:06:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:06:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:06:54 (#:amount 43869712 #:time 274)) (heartbeat 2015-06-20T05:06:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:07:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:07:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:07:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:07:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:07:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:07:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:08:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:08:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:08:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:08:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:08:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:08:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:09:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:09:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:09:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:09:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:09:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:09:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:10:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:10:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:10:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:10:39 (#:amount 45946720 #:time 280)) (heartbeat 2015-06-20T05:10:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:10:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:10:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:11:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:11:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:11:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:11:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:11:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:12:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:12:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:12:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:12:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:12:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:12:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:13:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:13:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:13:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:13:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:13:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:13:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:14:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:14:01 (#:amount 45159824 #:time 277)) (heartbeat 2015-06-20T05:14:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:14:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:14:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:14:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:14:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:15:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:15:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:15:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:15:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:15:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:15:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:16:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:16:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:16:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:16:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:16:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:16:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:17:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:17:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:17:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:17:28 (#:amount 44829600 #:time 277)) (heartbeat 2015-06-20T05:17:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:17:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:17:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:18:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:18:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:18:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:18:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:18:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:18:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:19:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:19:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:19:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:19:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:19:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:19:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:20:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:20:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:20:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:20:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:20:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:20:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:21:00 (#:amount 46381032 #:time 278)) (heartbeat 2015-06-20T05:21:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:21:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:21:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:21:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:21:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:21:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:22:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:22:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:22:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:22:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:22:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:22:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:23:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:23:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:23:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:23:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:23:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:23:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:24:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:24:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:24:11 (#:amount 45668424 #:time 278)) (heartbeat 2015-06-20T05:24:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:24:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:24:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:24:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:25:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:25:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:25:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:25:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:25:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:25:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:26:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:26:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:26:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:26:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:26:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:26:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:27:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:27:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:27:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:27:29 (#:amount 43738576 #:time 274)) (heartbeat 2015-06-20T05:27:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:27:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:27:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:28:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:28:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:28:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:28:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:28:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:28:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:29:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:29:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:29:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:29:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:29:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:29:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:30:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:30:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:30:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:30:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:30:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:30:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:31:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:31:04 (#:amount 44448384 #:time 277)) (heartbeat 2015-06-20T05:31:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:31:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:31:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:31:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:31:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:32:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:32:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:32:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:32:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:32:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:32:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:33:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:33:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:33:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:33:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:33:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:33:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:34:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:34:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:34:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:34:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:34:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:34:44 (#:amount 45015064 #:time 277)) (heartbeat 2015-06-20T05:34:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:35:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:35:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:35:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:35:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:35:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:35:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:36:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:36:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:36:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:36:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:36:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:36:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:37:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:37:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:37:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:37:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:37:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:37:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:38:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:38:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:38:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:38:23 (#:amount 44931968 #:time 281)) (heartbeat 2015-06-20T05:38:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:38:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:38:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:39:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:39:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:39:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:39:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:39:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:39:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:40:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:40:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:40:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:40:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:40:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:40:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:41:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:41:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:41:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:41:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:41:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:41:44 (#:amount 44616712 #:time 236)) (heartbeat 2015-06-20T05:41:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:42:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:42:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:42:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:42:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:42:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:42:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:43:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:43:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:43:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:43:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:43:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:43:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:44:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:44:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:44:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:44:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:44:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:44:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:45:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:45:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:45:20 (#:amount 44651016 #:time 274)) (heartbeat 2015-06-20T05:45:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:45:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:45:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:45:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:46:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:46:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:46:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:46:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:46:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:46:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:47:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:47:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:47:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:47:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:47:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:47:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:48:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:48:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:48:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:48:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:48:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:48:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:48:59 (#:amount 44307840 #:time 275)) (heartbeat 2015-06-20T05:49:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:49:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:49:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:49:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:49:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:49:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:50:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:50:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:50:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:50:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:50:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:50:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:51:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:51:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:51:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:51:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:51:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:51:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:51:54 (#:amount 44359144 #:time 237)) (heartbeat 2015-06-20T05:52:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:52:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:52:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:52:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:52:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:52:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:53:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:53:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:53:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:53:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:53:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:53:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:54:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:54:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:54:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:54:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:54:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:54:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:55:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:55:11 (#:amount 44938864 #:time 278)) (heartbeat 2015-06-20T05:55:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:55:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:55:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:55:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:55:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:56:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:56:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:56:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:56:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:56:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:56:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:57:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:57:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:57:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:57:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:57:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:57:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:58:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:58:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:58:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:58:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:58:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T05:58:47 (#:amount 45087848 #:time 277)) (heartbeat 2015-06-20T05:58:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:59:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:59:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:59:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:59:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:59:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T05:59:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:00:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:00:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:00:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:00:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:00:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:00:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:01:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:01:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:01:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:01:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:01:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:01:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:02:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:02:06 (#:amount 44426944 #:time 274)) (heartbeat 2015-06-20T06:02:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:02:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:02:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:02:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:02:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:03:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:03:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:03:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:03:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:03:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:03:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:04:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:04:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:04:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:04:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:04:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:04:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:05:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:05:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:05:18 (#:amount 44791016 #:time 237)) (heartbeat 2015-06-20T06:05:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:05:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:05:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:05:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:06:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:06:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:06:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:06:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:06:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:06:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:07:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:07:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:07:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:07:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:07:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:07:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:08:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:08:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:08:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:08:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:08:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:08:46 (#:amount 44942000 #:time 284)) (heartbeat 2015-06-20T06:08:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:09:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:09:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:09:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:09:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:09:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:09:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:10:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:10:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:10:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:10:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:10:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:10:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:11:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:11:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:11:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:11:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:11:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:11:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:12:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:12:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:12:22 (#:amount 44768704 #:time 277)) (heartbeat 2015-06-20T06:12:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:12:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:12:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:12:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:13:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:13:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:13:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:13:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:13:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:13:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:14:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:14:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:14:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:14:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:14:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:14:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:15:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:15:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:15:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:15:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:15:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:15:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:16:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:16:03 (#:amount 44607480 #:time 280)) (heartbeat 2015-06-20T06:16:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:16:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:16:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:16:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:16:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:17:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:17:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:17:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:17:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:17:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:17:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:18:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:18:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:18:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:18:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:18:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:18:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:19:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:19:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:19:18 (#:amount 45150408 #:time 277)) (heartbeat 2015-06-20T06:19:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:19:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:19:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:19:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:20:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:20:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:20:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:20:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:20:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:20:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:21:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:21:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:21:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:21:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:21:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:21:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:22:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:22:11 (#:amount 45069408 #:time 239)) (heartbeat 2015-06-20T06:22:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:22:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:22:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:22:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:22:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:23:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:23:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:23:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:23:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:23:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:23:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:24:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:24:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:24:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:24:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:24:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:24:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:25:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:25:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:25:21 (#:amount 44630440 #:time 275)) (heartbeat 2015-06-20T06:25:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:25:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:25:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:25:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:26:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:26:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:26:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:26:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:26:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:26:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:27:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:27:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:27:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:27:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:27:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:27:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:28:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:28:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:28:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:28:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:28:41 (#:amount 44316568 #:time 276)) (heartbeat 2015-06-20T06:28:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:28:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:29:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:29:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:29:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:29:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:29:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:29:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:30:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:30:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:30:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:30:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:30:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:30:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:31:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:31:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:31:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:31:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:31:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:31:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:31:59 (#:amount 44740944 #:time 237)) (heartbeat 2015-06-20T06:32:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:32:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:32:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:32:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:32:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:32:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:33:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:33:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:33:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:33:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:33:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:33:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:34:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:34:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:34:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:34:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:34:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:34:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:35:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:35:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:35:22 (#:amount 44339688 #:time 276)) (heartbeat 2015-06-20T06:35:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:35:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:35:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:35:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:36:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:36:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:36:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:36:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:36:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:36:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:37:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:37:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:37:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:37:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:37:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:37:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:38:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:38:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:38:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:38:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:38:39 (#:amount 44217320 #:time 275)) (heartbeat 2015-06-20T06:38:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:38:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:39:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:39:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:39:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:39:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:39:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:39:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:40:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:40:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:40:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:40:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:40:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:40:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:41:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:41:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:41:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:41:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:41:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:41:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:42:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:42:10 (#:amount 45630976 #:time 251)) (heartbeat 2015-06-20T06:42:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:42:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:42:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:42:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:42:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:43:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:43:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:43:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:43:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:43:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:43:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:44:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:44:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:44:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:44:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:44:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:44:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:45:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:45:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:45:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:45:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:45:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:45:44 (#:amount 44224392 #:time 282)) (heartbeat 2015-06-20T06:45:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:46:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:46:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:46:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:46:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:46:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:46:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:47:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:47:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:47:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:47:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:47:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:47:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:48:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:48:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:48:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:48:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:48:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:48:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:49:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:49:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:49:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:49:25 (#:amount 44559608 #:time 278)) (heartbeat 2015-06-20T06:49:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:49:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:49:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:50:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:50:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:50:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:50:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:50:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:50:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:51:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:51:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:51:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:51:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:51:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:51:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:52:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:52:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:52:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:52:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:52:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:52:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:53:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:53:05 (#:amount 45530272 #:time 278)) (heartbeat 2015-06-20T06:53:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:53:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:53:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:53:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:53:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:54:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:54:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:54:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:54:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:54:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:54:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:55:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:55:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:55:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:55:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:55:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:55:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:56:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:56:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:56:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:56:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T06:56:41 (#:amount 44438576 #:time 275)) (heartbeat 2015-06-20T06:56:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:56:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:57:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:57:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:57:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:57:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:57:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:57:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:58:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:58:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:58:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:58:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:58:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:58:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:59:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:59:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:59:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:59:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:59:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T06:59:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:00:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:00:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:00:14 (#:amount 43973280 #:time 274)) (heartbeat 2015-06-20T07:00:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:00:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:00:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:00:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:01:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:01:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:01:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:01:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:01:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:01:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:02:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:02:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:02:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:02:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:02:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:02:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:03:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:03:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:03:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:03:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:03:39 (#:amount 45080072 #:time 281)) (heartbeat 2015-06-20T07:03:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:03:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:04:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:04:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:04:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:04:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:04:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:04:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:05:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:05:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:05:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:05:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:05:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:05:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:06:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:06:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:06:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:06:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:06:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:06:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:07:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:07:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:07:15 (#:amount 44283864 #:time 275)) (heartbeat 2015-06-20T07:07:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:07:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:07:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:07:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:08:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:08:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:08:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:08:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:08:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:08:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:09:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:09:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:09:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:09:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:09:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:09:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:10:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:10:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:10:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:10:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:10:43 (#:amount 45560384 #:time 236)) (heartbeat 2015-06-20T07:10:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:10:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:11:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:11:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:11:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:11:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:11:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:11:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:12:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:12:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:12:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:12:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:12:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:12:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:13:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:13:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:13:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:13:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:13:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:13:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:14:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:14:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:14:16 (#:amount 44891392 #:time 275)) (heartbeat 2015-06-20T07:14:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:14:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:14:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:14:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:15:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:15:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:15:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:15:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:15:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:15:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:16:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:16:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:16:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:16:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:16:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:16:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:17:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:17:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:17:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:17:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:17:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:17:55 (#:amount 44755568 #:time 275)) (heartbeat 2015-06-20T07:17:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:18:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:18:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:18:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:18:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:18:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:18:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:19:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:19:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:19:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:19:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:19:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:19:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:20:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:20:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:20:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:20:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:20:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:20:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:21:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:21:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:21:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:21:28 (#:amount 44777472 #:time 237)) (heartbeat 2015-06-20T07:21:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:21:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:21:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:22:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:22:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:22:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:22:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:22:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:22:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:23:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:23:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:23:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:23:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:23:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:23:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:24:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:24:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:24:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:24:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:24:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:24:46 (#:amount 44391552 #:time 238)) (heartbeat 2015-06-20T07:24:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:25:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:25:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:25:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:25:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:25:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:25:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:26:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:26:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:26:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:26:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:26:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:26:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:27:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:27:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:27:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:27:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:27:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:27:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:27:57 (#:amount 44165792 #:time 238)) (heartbeat 2015-06-20T07:28:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:28:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:28:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:28:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:28:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:28:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:29:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:29:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:29:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:29:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:29:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:29:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:30:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:30:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:30:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:30:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:30:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:30:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:31:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:31:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:31:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:31:29 (#:amount 45706080 #:time 285)) (heartbeat 2015-06-20T07:31:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:31:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:31:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:32:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:32:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:32:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:32:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:32:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:32:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:33:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:33:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:33:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:33:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:33:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:33:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:34:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:34:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:34:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:34:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:34:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:34:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:35:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:35:05 (#:amount 44075472 #:time 237)) (heartbeat 2015-06-20T07:35:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:35:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:35:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:35:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:35:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:36:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:36:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:36:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:36:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:36:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:36:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:37:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:37:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:37:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:37:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:37:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:37:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:38:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:38:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:38:24 (#:amount 44935440 #:time 276)) (heartbeat 2015-06-20T07:38:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:38:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:38:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:38:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:39:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:39:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:39:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:39:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:39:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:39:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:40:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:40:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:40:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:40:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:40:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:40:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:41:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:41:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:41:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:41:32 (#:amount 45421608 #:time 281)) (heartbeat 2015-06-20T07:41:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:41:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:41:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:42:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:42:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:42:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:42:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:42:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:42:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:43:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:43:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:43:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:43:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:43:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:43:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:44:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:44:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:44:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:44:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:44:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:44:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:45:00 (#:amount 44598168 #:time 275)) (heartbeat 2015-06-20T07:45:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:45:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:45:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:45:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:45:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:45:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:46:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:46:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:46:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:46:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:46:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:46:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:47:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:47:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:47:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:47:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:47:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:47:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:48:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:48:08 (#:amount 44485368 #:time 275)) (heartbeat 2015-06-20T07:48:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:48:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:48:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:48:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:48:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:49:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:49:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:49:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:49:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:49:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:49:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:50:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:50:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:50:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:50:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:50:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:50:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:51:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:51:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:51:23 (#:amount 45122040 #:time 276)) (heartbeat 2015-06-20T07:51:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:51:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:51:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:51:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:52:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:52:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:52:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:52:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:52:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:52:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:53:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:53:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:53:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:53:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:53:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:53:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:54:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:54:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:54:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:54:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:54:46 (#:amount 44965064 #:time 279)) (heartbeat 2015-06-20T07:54:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:54:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:55:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:55:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:55:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:55:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:55:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:55:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:56:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:56:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:56:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:56:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:56:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:56:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:57:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:57:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:57:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:57:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:57:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:57:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:58:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:58:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T07:58:26 (#:amount 45249936 #:time 277)) (heartbeat 2015-06-20T07:58:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:58:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:58:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:58:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:59:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:59:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:59:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:59:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:59:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T07:59:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:00:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:00:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:00:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:00:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:00:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:00:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:01:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:01:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:01:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:01:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:01:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:01:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:02:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:02:12 (#:amount 45103256 #:time 280)) (heartbeat 2015-06-20T08:02:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:02:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:02:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:02:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:02:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:03:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:03:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:03:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:03:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:03:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:03:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:04:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:04:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:04:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:04:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:04:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:04:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:05:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:05:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:05:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:05:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:05:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:05:49 (#:amount 44762240 #:time 277)) (heartbeat 2015-06-20T08:05:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:06:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:06:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:06:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:06:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:06:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:06:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:07:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:07:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:07:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:07:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:07:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:07:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:08:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:08:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:08:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:08:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:08:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:08:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:09:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:09:09 (#:amount 44843368 #:time 278)) (heartbeat 2015-06-20T08:09:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:09:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:09:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:09:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:09:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:10:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:10:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:10:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:10:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:10:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:10:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:11:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:11:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:11:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:11:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:11:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:11:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:12:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:12:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:12:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:12:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:12:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:12:49 (#:amount 44022392 #:time 275)) (heartbeat 2015-06-20T08:12:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:13:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:13:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:13:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:13:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:13:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:13:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:14:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:14:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:14:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:14:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:14:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:14:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:15:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:15:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:15:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:15:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:15:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:15:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:16:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:16:09 (#:amount 44563800 #:time 273)) (heartbeat 2015-06-20T08:16:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:16:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:16:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:16:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:16:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:17:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:17:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:17:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:17:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:17:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:17:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:18:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:18:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:18:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:18:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:18:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:18:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:19:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:19:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:19:27 (#:amount 43960672 #:time 277)) (heartbeat 2015-06-20T08:19:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:19:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:19:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:19:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:20:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:20:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:20:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:20:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:20:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:20:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:21:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:21:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:21:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:21:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:21:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:21:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:22:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:22:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:22:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:22:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:22:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:22:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:23:05 (#:amount 44461552 #:time 260)) (heartbeat 2015-06-20T08:23:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:23:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:23:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:23:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:23:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:23:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:24:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:24:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:24:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:24:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:24:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:24:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:25:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:25:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:25:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:25:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:25:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:25:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:26:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:26:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:26:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:26:34 (#:amount 44840576 #:time 276)) (heartbeat 2015-06-20T08:26:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:26:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:26:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:27:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:27:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:27:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:27:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:27:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:27:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:28:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:28:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:28:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:28:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:28:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:28:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:29:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:29:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:29:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:29:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:29:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:29:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:30:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:30:16 (#:amount 44886016 #:time 278)) (heartbeat 2015-06-20T08:30:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:30:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:30:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:30:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:30:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:31:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:31:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:31:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:31:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:31:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:31:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:32:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:32:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:32:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:32:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:32:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:32:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:33:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:33:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:33:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:33:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:33:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:33:54 (#:amount 44759880 #:time 277)) (heartbeat 2015-06-20T08:33:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:34:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:34:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:34:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:34:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:34:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:34:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:35:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:35:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:35:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:35:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:35:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:35:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:36:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:36:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:36:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:36:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:36:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:36:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:37:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:37:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:37:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:37:34 (#:amount 44168408 #:time 275)) (heartbeat 2015-06-20T08:37:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:37:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:37:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:38:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:38:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:38:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:38:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:38:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:38:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:39:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:39:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:39:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:39:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:39:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:39:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:40:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:40:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:40:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:40:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:40:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:40:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:41:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:41:16 (#:amount 44773040 #:time 276)) (heartbeat 2015-06-20T08:41:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:41:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:41:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:41:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:41:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:42:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:42:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:42:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:42:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:42:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:42:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:43:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:43:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:43:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:43:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:43:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:43:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:44:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:44:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:44:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:44:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:44:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:44:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:45:01 (#:amount 44426824 #:time 282)) (heartbeat 2015-06-20T08:45:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:45:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:45:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:45:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:45:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:45:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:46:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:46:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:46:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:46:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:46:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:46:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:47:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:47:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:47:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:47:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:47:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:47:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:48:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:48:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:48:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:48:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:48:40 (#:amount 44672192 #:time 282)) (heartbeat 2015-06-20T08:48:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:48:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:49:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:49:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:49:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:49:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:49:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:49:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:50:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:50:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:50:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:50:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:50:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:50:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:51:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:51:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:51:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:51:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:51:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:51:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:52:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:52:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:52:20 (#:amount 44042312 #:time 277)) (heartbeat 2015-06-20T08:52:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:52:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:52:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:52:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:53:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:53:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:53:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:53:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:53:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:53:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:54:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:54:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:54:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:54:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:54:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:54:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:55:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:55:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:55:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:55:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:55:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:55:58 (#:amount 45104184 #:time 277)) (heartbeat 2015-06-20T08:55:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:56:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:56:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:56:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:56:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:56:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:56:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:57:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:57:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:57:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:57:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:57:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:57:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:58:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:58:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:58:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:58:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:58:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:58:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:59:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:59:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:59:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T08:59:29 (#:amount 45653704 #:time 278)) (heartbeat 2015-06-20T08:59:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:59:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T08:59:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:00:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:00:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:00:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:00:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:00:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:00:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:01:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:01:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:01:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:01:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:01:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:01:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:02:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:02:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:02:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:02:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:02:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:02:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:03:07 (#:amount 44727704 #:time 281)) (heartbeat 2015-06-20T09:03:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:03:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:03:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:03:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:03:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:03:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:04:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:04:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:04:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:04:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:04:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:04:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:05:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:05:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:05:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:05:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:05:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:05:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:06:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:06:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:06:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:06:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:06:42 (#:amount 45224864 #:time 284)) (heartbeat 2015-06-20T09:06:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:06:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:07:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:07:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:07:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:07:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:07:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:07:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:08:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:08:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:08:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:08:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:08:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:08:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:09:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:09:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:09:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:09:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:09:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:09:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:10:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:10:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:10:23 (#:amount 44314952 #:time 278)) (heartbeat 2015-06-20T09:10:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:10:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:10:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:10:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:11:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:11:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:11:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:11:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:11:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:11:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:12:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:12:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:12:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:12:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:12:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:12:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:13:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:13:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:13:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:13:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:13:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:13:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:14:03 (#:amount 44434968 #:time 277)) (heartbeat 2015-06-20T09:14:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:14:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:14:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:14:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:14:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:14:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:15:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:15:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:15:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:15:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:15:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:15:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:16:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:16:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:16:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:16:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:16:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:16:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:17:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:17:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:17:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:17:32 (#:amount 43936456 #:time 273)) (heartbeat 2015-06-20T09:17:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:17:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:17:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:18:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:18:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:18:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:18:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:18:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:18:59 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:19:09 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:19:19 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:19:29 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:19:39 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:19:49 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:20:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:20:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:20:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:20:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:20:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:20:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:21:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:21:00 (#:amount 45097384 #:time 282)) (heartbeat 2015-06-20T09:21:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:21:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:21:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:21:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:21:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:22:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:22:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:22:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:22:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:22:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:22:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:23:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:23:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:23:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:23:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:23:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:23:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:24:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:24:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:24:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:24:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:24:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:24:43 (#:amount 44923560 #:time 276)) (heartbeat 2015-06-20T09:24:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:25:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:25:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:25:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:25:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:25:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:25:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:26:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:26:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:26:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:26:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:26:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:26:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:27:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:27:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:27:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:27:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:27:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:27:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:28:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:28:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:28:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:28:24 (#:amount 44235760 #:time 276)) (heartbeat 2015-06-20T09:28:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:28:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:28:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:29:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:29:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:29:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:29:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:29:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:29:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:30:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:30:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:30:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:30:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:30:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:30:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:31:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:31:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:31:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:31:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:31:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:31:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:31:54 (#:amount 44411496 #:time 276)) (heartbeat 2015-06-20T09:32:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:32:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:32:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:32:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:32:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:32:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:33:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:33:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:33:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:33:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:33:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:33:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:34:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:34:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:34:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:34:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:34:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:34:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:35:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:35:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:35:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:35:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:35:32 (#:amount 45065200 #:time 278)) (heartbeat 2015-06-20T09:35:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:35:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:36:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:36:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:36:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:36:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:36:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:36:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:37:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:37:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:37:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:37:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:37:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:37:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:38:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:38:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:38:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:38:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:38:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:38:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:38:57 (#:amount 45537232 #:time 279)) (heartbeat 2015-06-20T09:39:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:39:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:39:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:39:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:39:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:39:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:40:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:40:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:40:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:40:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:40:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:40:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:41:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:41:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:41:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:41:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:41:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:41:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:42:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:42:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:42:18 (#:amount 44754880 #:time 277)) (heartbeat 2015-06-20T09:42:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:42:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:42:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:42:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:43:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:43:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:43:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:43:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:43:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:43:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:44:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:44:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:44:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:44:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:44:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:44:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:45:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:45:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:45:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:45:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:45:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:45:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:45:51 (#:amount 45441320 #:time 239)) (heartbeat 2015-06-20T09:46:00 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:46:10 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:46:20 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:46:30 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:46:40 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:46:50 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:47:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:47:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:47:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:47:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:47:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:47:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:48:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:48:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:48:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:48:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:48:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:48:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:49:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:49:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:49:15 (#:amount 44717008 #:time 276)) (heartbeat 2015-06-20T09:49:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:49:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:49:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:49:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:50:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:50:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:50:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:50:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:50:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:50:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:51:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:51:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:51:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:51:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:51:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:51:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:52:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:52:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:52:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:52:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:52:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:52:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:52:54 (#:amount 44675464 #:time 279)) (heartbeat 2015-06-20T09:53:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:53:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:53:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:53:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:53:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:53:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:54:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:54:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:54:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:54:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:54:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:54:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:55:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:55:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:55:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:55:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:55:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:55:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:56:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:56:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:56:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:56:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T09:56:35 (#:amount 44376304 #:time 277)) (heartbeat 2015-06-20T09:56:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:56:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:57:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:57:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:57:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:57:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:57:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:57:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:58:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:58:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:58:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:58:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:58:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:58:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:59:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:59:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:59:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:59:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:59:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T09:59:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:00:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:00:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:00:16 (#:amount 45420104 #:time 279)) (heartbeat 2015-06-20T10:00:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:00:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:00:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:00:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:01:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:01:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:01:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:01:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:01:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:01:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:02:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:02:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:02:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:02:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:02:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:02:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:03:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:03:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:03:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:03:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:03:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:03:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:03:54 (#:amount 45895944 #:time 279)) (heartbeat 2015-06-20T10:04:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:04:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:04:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:04:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:04:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:04:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:05:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:05:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:05:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:05:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:05:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:05:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:06:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:06:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:06:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:06:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:06:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:06:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:07:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:07:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:07:16 (#:amount 44949072 #:time 235)) (heartbeat 2015-06-20T10:07:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:07:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:07:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:07:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:08:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:08:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:08:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:08:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:08:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:08:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:09:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:09:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:09:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:09:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:09:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:09:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:10:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:10:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:10:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:10:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:10:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:10:46 (#:amount 44580856 #:time 275)) (heartbeat 2015-06-20T10:10:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:11:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:11:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:11:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:11:31 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:11:41 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:11:51 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:12:01 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:12:11 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:12:21 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:12:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:12:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:12:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:13:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:13:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:13:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:13:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:13:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:13:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:14:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:14:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:14:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:14:29 (#:amount 44503584 #:time 277)) (heartbeat 2015-06-20T10:14:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:14:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:14:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:15:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:15:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:15:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:15:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:15:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:15:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:16:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:16:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:16:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:16:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:16:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:16:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:17:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:17:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:17:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:17:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:17:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:17:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:18:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:18:09 (#:amount 43970016 #:time 275)) (heartbeat 2015-06-20T10:18:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:18:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:18:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:18:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:18:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:19:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:19:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:19:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:19:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:19:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:19:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:20:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:20:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:20:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:20:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:20:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:20:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:21:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:21:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:21:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:21:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:21:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:21:46 (#:amount 44887608 #:time 283)) (heartbeat 2015-06-20T10:21:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:22:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:22:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:22:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:22:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:22:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:22:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:23:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:23:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:23:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:23:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:23:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:23:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:24:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:24:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:24:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:24:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:24:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:24:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:25:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:25:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:25:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:25:29 (#:amount 44791720 #:time 276)) (heartbeat 2015-06-20T10:25:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:25:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:25:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:26:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:26:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:26:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:26:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:26:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:26:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:27:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:27:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:27:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:27:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:27:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:27:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:28:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:28:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:28:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:28:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:28:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:28:47 (#:amount 46119848 #:time 279)) (heartbeat 2015-06-20T10:28:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:29:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:29:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:29:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:29:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:29:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:29:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:30:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:30:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:30:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:30:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:30:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:30:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:31:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:31:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:31:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:31:27 (#:amount 45078304 #:time 240)) (heartbeat 2015-06-20T10:31:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:31:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:31:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:32:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:32:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:32:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:32:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:32:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:32:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:33:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:33:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:33:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:33:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:33:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:33:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:34:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:34:05 (#:amount 43975552 #:time 235)) (heartbeat 2015-06-20T10:34:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:34:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:34:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:34:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:34:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:35:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:35:12 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:35:22 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:35:32 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:35:42 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:35:52 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:36:02 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:36:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:36:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:36:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:36:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:36:44 (#:amount 45353056 #:time 238)) (heartbeat 2015-06-20T10:36:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:37:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:37:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:37:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:37:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:37:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:37:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:38:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:38:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:38:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:38:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:38:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:38:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:39:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:39:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:39:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:39:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:39:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:39:45 (#:amount 44144464 #:time 274)) (heartbeat 2015-06-20T10:39:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:40:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:40:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:40:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:40:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:40:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:40:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:41:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:41:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:41:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:41:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:41:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:41:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:42:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:42:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:42:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:42:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:42:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:42:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:43:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:43:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:43:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:43:24 (#:amount 44062816 #:time 275)) (heartbeat 2015-06-20T10:43:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:43:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:43:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:44:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:44:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:44:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:44:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:44:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:44:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:45:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:45:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:45:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:45:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:45:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:45:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:46:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:46:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:46:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:46:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:46:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:46:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:47:02 (#:amount 45558968 #:time 277)) (heartbeat 2015-06-20T10:47:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:47:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:47:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:47:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:47:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:47:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:48:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:48:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:48:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:48:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:48:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:48:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:49:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:49:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:49:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:49:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:49:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:49:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:50:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:50:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:50:18 (#:amount 43999224 #:time 273)) (heartbeat 2015-06-20T10:50:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:50:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:50:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:50:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:51:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:51:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:51:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:51:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:51:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:51:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:52:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:52:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:52:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:52:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:52:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:52:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:53:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:53:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:53:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:53:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:53:40 (#:amount 44242488 #:time 280)) (heartbeat 2015-06-20T10:53:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:53:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:54:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:54:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:54:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:54:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:54:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:54:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:55:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:55:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:55:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:55:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:55:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:55:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:56:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:56:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:56:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:56:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:56:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:56:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T10:57:00 (#:amount 45412968 #:time 236)) (heartbeat 2015-06-20T10:57:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:57:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:57:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:57:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:57:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:57:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:58:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:58:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:58:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:58:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:58:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:58:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:59:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:59:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:59:23 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:59:33 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:59:43 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T10:59:53 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:00:03 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:00:13 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:00:22 (#:amount 44316688 #:time 275)) (heartbeat 2015-06-20T11:00:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:00:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:00:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:00:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:01:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:01:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:01:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:01:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:01:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:01:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:02:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:02:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:02:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:02:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:02:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:02:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:03:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:03:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:03:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:03:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:03:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:03:45 (#:amount 43973264 #:time 236)) (heartbeat 2015-06-20T11:03:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:04:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:04:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:04:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:04:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:04:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:04:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:05:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:05:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:05:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:05:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:05:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:05:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:06:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:06:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:06:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:06:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:06:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:06:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:07:01 (#:amount 45155952 #:time 238)) (heartbeat 2015-06-20T11:07:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:07:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:07:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:07:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:07:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:07:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:08:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:08:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:08:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:08:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:08:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:08:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:09:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:09:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:09:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:09:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:09:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:09:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:10:04 (#:amount 44820064 #:time 239)) (heartbeat 2015-06-20T11:10:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:10:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:10:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:10:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:10:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:10:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:11:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:11:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:11:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:11:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:11:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:11:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:12:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:12:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:12:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:12:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:12:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:12:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:13:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:13:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:13:22 (#:amount 44253792 #:time 279)) (heartbeat 2015-06-20T11:13:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:13:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:13:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:13:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:14:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:14:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:14:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:14:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:14:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:14:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:15:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:15:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:15:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:15:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:15:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:15:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:16:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:16:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:16:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:16:24 (#:amount 45723808 #:time 236)) (heartbeat 2015-06-20T11:16:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:16:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:16:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:17:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:17:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:17:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:17:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:17:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:17:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:18:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:18:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:18:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:18:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:18:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:18:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:19:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:19:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:19:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:19:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:19:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:19:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:20:02 (#:amount 44501936 #:time 277)) (heartbeat 2015-06-20T11:20:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:20:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:20:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:20:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:20:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:20:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:21:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:21:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:21:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:21:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:21:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:21:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:22:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:22:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:22:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:22:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:22:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:22:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:23:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:23:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:23:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:23:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:23:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:23:45 (#:amount 45268960 #:time 279)) (heartbeat 2015-06-20T11:23:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:24:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:24:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:24:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:24:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:24:44 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:24:54 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:25:04 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:25:14 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:25:24 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:25:34 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:25:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:25:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:26:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:26:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:26:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:26:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:26:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:26:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:27:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:27:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:27:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:27:26 (#:amount 45557096 #:time 277)) (heartbeat 2015-06-20T11:27:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:27:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:27:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:28:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:28:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:28:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:28:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:28:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:28:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:29:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:29:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:29:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:29:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:29:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:29:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:30:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:30:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:30:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:30:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:30:35 (#:amount 45619344 #:time 277)) (heartbeat 2015-06-20T11:30:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:30:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:31:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:31:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:31:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:31:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:31:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:31:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:32:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:32:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:32:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:32:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:32:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:32:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:33:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:33:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:33:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:33:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:33:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:33:46 (#:amount 44732504 #:time 237)) (heartbeat 2015-06-20T11:33:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:34:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:34:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:34:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:34:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:34:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:34:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:35:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:35:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:35:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:35:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:35:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:35:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:36:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:36:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:36:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:36:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:36:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:36:51 (#:amount 45339392 #:time 236)) (heartbeat 2015-06-20T11:36:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:37:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:37:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:37:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:37:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:37:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:37:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:38:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:38:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:38:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:38:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:38:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:38:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:39:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:39:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:39:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:39:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:39:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:39:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:40:00 (#:amount 44948112 #:time 235)) (heartbeat 2015-06-20T11:40:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:40:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:40:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:40:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:40:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:40:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:41:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:41:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:41:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:41:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:41:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:41:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:42:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:42:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:42:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:42:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:42:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:42:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:43:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:43:12 (#:amount 44899376 #:time 276)) (heartbeat 2015-06-20T11:43:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:43:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:43:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:43:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:43:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:44:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:44:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:44:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:44:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:44:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:44:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:45:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:45:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:45:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:45:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:45:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:45:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:46:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:46:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:46:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:46:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:46:43 (#:amount 44590720 #:time 283)) (heartbeat 2015-06-20T11:46:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:46:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:47:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:47:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:47:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:47:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:47:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:47:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:48:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:48:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:48:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:48:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:48:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:48:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:49:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:49:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:49:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:49:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:49:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:49:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:50:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:50:15 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:50:21 (#:amount 44940288 #:time 237)) (heartbeat 2015-06-20T11:50:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:50:35 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:50:45 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:50:55 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:51:05 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:51:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:51:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:51:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:51:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:51:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:52:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:52:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:52:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:52:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:52:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:52:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:53:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:53:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:53:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:53:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:53:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:53:53 (#:amount 44786512 #:time 278)) (heartbeat 2015-06-20T11:53:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:54:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:54:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:54:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:54:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:54:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:54:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:55:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:55:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:55:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:55:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:55:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:55:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:56:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:56:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:56:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:56:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:56:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:56:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:57:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:57:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:57:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T11:57:31 (#:amount 44877960 #:time 279)) (heartbeat 2015-06-20T11:57:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:57:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:57:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:58:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:58:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:58:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:58:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:58:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:58:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:59:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:59:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:59:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:59:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:59:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T11:59:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:00:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:00:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:00:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:00:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:00:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:00:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:01:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:01:08 (#:amount 45424560 #:time 275)) (heartbeat 2015-06-20T12:01:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:01:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:01:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:01:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:01:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:02:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:02:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:02:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:02:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:02:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:02:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:03:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:03:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:03:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:03:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:03:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:03:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:04:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:04:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:04:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:04:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:04:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:04:52 (#:amount 45600848 #:time 283)) (heartbeat 2015-06-20T12:04:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:05:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:05:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:05:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:05:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:05:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:05:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:06:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:06:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:06:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:06:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:06:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:06:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:07:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:07:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:07:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:07:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:07:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:07:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:08:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:08:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:08:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:08:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:08:37 (#:amount 45427632 #:time 278)) (heartbeat 2015-06-20T12:08:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:08:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:09:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:09:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:09:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:09:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:09:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:09:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:10:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:10:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:10:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:10:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:10:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:10:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:11:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:11:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:11:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:11:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:11:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:11:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:12:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:12:09 (#:amount 44621808 #:time 277)) (heartbeat 2015-06-20T12:12:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:12:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:12:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:12:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:12:56 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:13:06 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:13:16 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:13:26 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:13:36 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:13:46 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:13:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:14:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:14:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:14:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:14:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:14:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:14:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:15:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:15:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:15:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:15:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:15:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:15:49 (#:amount 45329152 #:time 277)) (heartbeat 2015-06-20T12:15:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:16:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:16:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:16:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:16:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:16:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:16:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:17:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:17:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:17:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:17:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:17:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:17:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:18:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:18:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:18:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:18:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:18:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:18:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:19:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:19:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:19:26 (#:amount 44201576 #:time 275)) (heartbeat 2015-06-20T12:19:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:19:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:19:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:19:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:20:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:20:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:20:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:20:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:20:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:20:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:21:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:21:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:21:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:21:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:21:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:21:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:22:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:22:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:22:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:22:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:22:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:22:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:23:01 (#:amount 44606008 #:time 275)) (heartbeat 2015-06-20T12:23:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:23:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:23:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:23:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:23:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:23:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:24:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:24:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:24:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:24:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:24:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:24:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:25:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:25:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:25:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:25:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:25:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:25:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:26:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:26:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:26:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:26:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:26:40 (#:amount 45391232 #:time 277)) (heartbeat 2015-06-20T12:26:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:26:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:27:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:27:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:27:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:27:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:27:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:27:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:28:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:28:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:28:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:28:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:28:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:28:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:29:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:29:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:29:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:29:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:29:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:29:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:30:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:30:13 (#:amount 44568640 #:time 276)) (heartbeat 2015-06-20T12:30:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:30:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:30:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:30:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:30:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:31:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:31:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:31:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:31:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:31:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:31:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:32:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:32:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:32:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:32:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:32:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:32:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:33:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:33:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:33:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:33:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:33:47 (#:amount 44260144 #:time 274)) (heartbeat 2015-06-20T12:33:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:33:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:34:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:34:17 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:34:27 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:34:37 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:34:47 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:34:57 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:35:07 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:35:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:35:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:35:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:35:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:35:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:36:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:36:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:36:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:36:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:36:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:36:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:37:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:37:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (gc-major 2015-06-20T12:37:20 (#:amount 45157384 #:time 276)) (heartbeat 2015-06-20T12:37:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:37:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:37:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:37:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:38:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:38:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:38:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:38:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:38:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:38:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:39:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:39:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:39:28 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:39:38 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:39:48 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:39:58 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:40:08 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (heartbeat 2015-06-20T12:40:18 (#:model "poly-stlc-8" #:type ordered-brutally-unfair)) (finished 2015-06-20T12:40:25 (#:model "poly-stlc-8" #:type ordered-brutally-unfair #:time-ms 86400001 #:attempts 300630338 #:num-counterexamples 0 #:rate-terms/s 3479.5177606537295 #:attempts/cexp N/A))
false
5d39498c292134300c45390fd3f1bd0f1ddd9be7
27b8bd009ac901c88b7d6dc82014abcf8e5fefda
/compiler.rkt
7dc5e2374b86b45fcfdd382ae7f2de539346681f
[]
no_license
ashton314/lambda-x86
e900ec7ae540717c2d68a5f06d6bc5a3928f547a
fd5ff01cb09be10eddd6f3f3d0a5fa6ba5274e80
refs/heads/master
2021-03-31T20:08:46.046883
2020-06-14T04:53:21
2020-06-14T04:53:21
248,128,831
6
0
null
2020-05-15T02:55:44
2020-03-18T03:23:22
Racket
UTF-8
Racket
false
false
14,383
rkt
compiler.rkt
#lang racket (require "ast.rkt") (require "type_checker.rkt") (require "x86_asm.rkt") (module+ test (require rackunit)) ;; Constants (define asm-file "compiler-output.s") (define-syntax-rule (c expr) ;; Macro to make this easier (compile (quote expr))) (define (compile expr) ;; Parse, and then compile the resulting expression (delete-file asm-file) (global-prelude) (compile-ast (parse expr) (- wordsize) '()) (emit (ret))) (define (compile-ast ast stack env) ;; Primary copmiler dispatch: each AST node is matched here and ;; either compiled inline or compiled separately by the respective ;; routines (match ast ;; Constants [(node/immediate _ num) (emit (movq (immediate num) (reg 'ret-val)))] ;; Primitives [(node/prim _ name arity args) (compile-primitive stack env name arity args)] ;; Let bindings [(node/let _ bindings body) (compile-let* stack env bindings body)] ;; Variable references [(node/var _ name) (emit (movq (or (env/lookup env name) (error 'undefined-variable)) (reg 'ret-val)))] ;; Conditionals [(node/if _ condition t-case f-case) (compile-if stack env condition t-case f-case)] ;; Labels [(node/labels _ bindings body) (compile-labels stack env bindings body)] ;; Closures [(node/closure _ label bindings) (compile-closure stack env label bindings)] ;; Function calls [(node/app _ func-expr args) (compile-application stack env func-expr args)] )) (define (compile-primitive stack-bottom env name arity args) ;; Compile our primitive operations: unary operators like `add1' and ;; `zero?', as well as our binary operators (match name ['add1 (compile-ast (car args) stack-bottom env) (emit (addq (immediate 1) (reg 'ret-val)))] ['zero? (compile-ast (car args) stack-bottom env) (emit (num-equals (immediate 0) (reg 'ret-val)))] ['cons (compile-ast (car args) stack-bottom env) (emit (movq (reg 'ret-val) (stack stack-bottom))) (compile-ast (cadr args) (- stack-bottom wordsize) env) (emit (movq (reg 'ret-val) (heap wordsize))) (emit (movq (stack stack-bottom) (reg 'ret-val))) (emit (movq (reg 'ret-val) (heap 0))) (emit (movq (reg 'heap) (reg 'ret-val))) (emit (orq (raw-immediate 1) (reg 'ret-val))) ; tag our return value as pointing to a pair (emit (addq (raw-immediate (* 2 wordsize)) (reg 'heap)))] ['car (compile-ast (car args) stack-bottom env) (emit (movq (mem #:offset -1 #:reg-b (reg 'ret-val)) (reg 'ret-val)))] ['cdr (compile-ast (car args) stack-bottom env) (emit (movq (mem #:offset 7 #:reg-b (reg 'ret-val)) (reg 'ret-val)))] [(? (λ (o) (member o '(+ - * /))) op) ;; Funny order because of `-` (compile-ast (cadr args) stack-bottom env) (emit (movq (reg 'ret-val) (stack stack-bottom))) (compile-ast (car args) (- stack-bottom wordsize) env) (emit ((prim-bin-op op) (stack stack-bottom) (reg 'ret-val)))] )) (define (compile-let* stack-bottom env bindings body) (if (null? bindings) (compile-ast body stack-bottom env) ;; Emit code for one binding ;; Remember: we asssume stack-bottom is always free (let ([binding (car bindings)]) (compile-ast (node/let-binding-value binding) stack-bottom env) (emit (movq (reg 'ret-val) (stack stack-bottom))) (compile-let* (- stack-bottom wordsize) (env/extend env (node/let-binding-variable binding) (stack stack-bottom)) (cdr bindings) body)))) (define (compile-if stack-bottom env condition t-case f-case) (let ([l-false (gensym 'false_branch)] [l-end (gensym 'if_end)]) (compile-ast condition stack-bottom env) (emit (cmpq (immediate #f) (reg 'ret-val))) (emit (je l-false)) (compile-ast t-case stack-bottom env) (emit (jmp l-end)) (emit (label l-false)) (compile-ast f-case stack-bottom env) (emit (label l-end)))) (define (compile-labels stack-bottom env bindings body) (let ([defs-end (gensym 'definition_end)]) (emit (jmp defs-end)) (let-values ([(new-stack new-env) (compile-bindings stack-bottom env bindings)]) (emit (label defs-end)) (compile-ast body new-stack new-env)))) (define (compile-bindings stack-bottom env bindings) ;; Labels bindings---the `code' form from "Incremental Approach" (if (null? bindings) (values stack-bottom env) (let* ([bind (car bindings)] [func-label (function-label (node/lvar-name bind))] [new-env (env/extend env (node/lvar-name bind) func-label)] ; I might have troubles here later when I try doing closure stuff coupled with recursion [body-stack-start (- (* wordsize (+ 1 (length (node/lvar-params bind)))))]) (emit (label func-label)) (let* ([closure-env (for/fold ([closure-env new-env]) ([i (in-naturals 1)] [p (node/lvar-free-vars bind)]) (env/extend closure-env p (mem #:offset (* wordsize i) #:reg-b (reg 'closure))))] [body-env (for/fold ([body-env closure-env]) ([i (in-naturals 1)] [p (node/lvar-params bind)]) (env/extend body-env p (stack (- (* wordsize i)))))]) (compile-ast (node/lvar-body bind) body-stack-start body-env) (emit (ret))) (compile-bindings stack-bottom new-env (cdr bindings))))) (define (compile-closure stack-bottom env fun-label bindings) ;; Compile bindings (for ([arg bindings] [i (in-naturals 0)]) (compile-ast arg (- stack-bottom (* wordsize (+ 1 (length bindings)))) env) (emit (movq (reg 'ret-val) (stack (- stack-bottom (* wordsize i)))))) ;; Move all the bindings into place (for ([arg bindings] [i (in-naturals 0)]) (emit (movq (stack (- stack-bottom (* wordsize i))) (reg 'ret-val))) (emit (movq (reg 'ret-val) (heap (* wordsize (+ i 1)))))) ;; Move the label into place, return pointer, tag as closure, and increment heap free pointer (emit (move-func-rax (or (env/lookup env fun-label) (error 'undefined-function)))) (emit (movq (reg 'ret-val) (heap 0))) (emit (movq (reg 'heap) (reg 'ret-val))) (emit (orq (raw-immediate 6) (reg 'ret-val))) (emit (addq (raw-immediate (* (+ 1 (length bindings)) wordsize)) (reg 'heap)))) (define (compile-application stack-bottom env func args) ;; Compile arguments (for ([arg args] [i (in-naturals 2)]) (compile-ast arg (- stack-bottom (* wordsize (+ 3 (length args)))) env) (emit (movq (reg 'ret-val) (stack (- stack-bottom (* wordsize i)))))) ;; Save the current closure pointer (emit (movq (reg 'closure) (stack stack-bottom))) ;; Compile the function (returns a closure) (compile-ast func (- stack-bottom (* wordsize (+ 3 (length args)))) env) (emit (xorq (raw-immediate 6) (reg 'ret-val))) ; untag (emit (movq (reg 'ret-val) (reg 'closure))) ;; Emit call (emit (addq (raw-immediate stack-bottom) (reg 'stack))) (emit (call-indirect (reg 'closure))) (emit (subq (raw-immediate stack-bottom) (reg 'stack))) ;; Restore closure pointer (emit (movq (stack stack-bottom) (reg 'closure)))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Environment manipulation ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define (env/new) '()) (define (env/extend env var location) (cons (cons var location) env)) (define (env/lookup env var) (match env ['() #f] [(cons (cons v l) rest-env) (if (eq? v var) l (env/lookup rest-env var))])) [module+ test (let ([ctx (env/extend (env/new) 'foo 'integer)]) (check-eq? (env/lookup ctx 'foo) 'integer) (check-eq? (env/lookup (env/extend ctx 'bar 'string) 'foo) 'integer) (check-eq? (env/lookup (env/extend ctx 'bar 'string) 'bar) 'string))] ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Tests ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; [module+ test ;; Compile constants (check-equal? (crc 42) "42") (check-equal? (crc 45) "45") ;; Primitive unary operators (check-equal? (crc '(add1 5)) "6") (check-equal? (crc '(zero? 5)) "#f") (check-equal? (crc '(zero? 0)) "#t") ;; Primitive binary operators (check-equal? (crc '(+ 1 2)) "3") (check-equal? (crc '(+ (+ 1 2) (+ 3 4))) "10") (check-equal? (crc '(- 2 1)) "1") (check-equal? (crc '(- (* 2 3) 1)) "5") ;; Let bindings (check-equal? (crc '(let ((x 1)) x)) "1") (check-equal? (crc '(let ((x (+ 1 2))) x)) "3") (check-equal? (crc '(let ((x (+ 1 2))) (* x 2))) "6") (check-equal? (crc '(let ((x 1) (y 2)) (+ x y))) "3") (check-equal? (crc '(let ((x 2) (y 3)) (- (* x y) (+ x y)))) "1") (check-equal? (crc '(let ((x 2)) (+ x (let ((y 3) (z 4)) (+ (* x y) z))))) "12") ;; check shadowing (check-equal? (crc '(let ((x 2) (y 3)) (+ (+ x y) (let ((y 10)) (* x y))))) "25") ;; Conditionals (check-equal? (crc '(if #t 1 2)) "1") (check-equal? (crc '(if #f 1 2)) "2") (check-equal? (crc '(if (zero? (- 2 1)) 1 2)) "2") (check-equal? (crc '(if (zero? (- 2 2)) 1 2)) "1") (check-equal? (crc '(let ((x 2) (y 3)) (let ((z (if (zero? (- (* x y) 6)) 1 2))) (* z 100)))) "100") ;; Cons, car, cdr (check-equal? (crc '(cons 1 2)) "(1 . 2)") (check-equal? (crc '(cons 1 (+ 1 2))) "(1 . 3)") (check-equal? (crc '(cons (* 2 3) (+ 1 2))) "(6 . 3)") (check-equal? (crc '(let ((foo (cons (* 2 3) (+ 1 7)))) (cons foo 1))) "((6 . 8) . 1)") (check-equal? (crc '(let ((foo (cons (* 2 3) (+ 1 7)))) (car foo))) "6") (check-equal? (crc '(let ((foo (cons (* 2 3) (+ 1 7)))) (cdr foo))) "8") (check-equal? (crc '(let ((foo (cons (* 2 3) (+ 1 7)))) (car (cons foo 1)))) "(6 . 8)") (check-equal? (crc '(let ((foo (cons (* 2 3) (+ 1 7)))) (cdr (cons foo 1)))) "1") (check-equal? (crc '(cons 1 (cons 2 (cons 3 (cons 4 5))))) "(1 . (2 . (3 . (4 . 5))))") ;; Functions (check-equal? (crc '(labels ((f (code (n) () (+ n 1)))) (app (closure f) 3))) "4") (check-equal? (crc '(labels ((f (code (a b) () (+ (* a 2) (* 2 b))))) (app (closure f) 2 3))) "10") (check-equal? (crc '(labels ((f (code (n) () (if (zero? n) 1 (* n (app (closure f) (- n 1))))))) (app (closure f) 5))) "120") (check-equal? (crc '(labels ((f (code (n acc) () (if (zero? n) acc (app (closure f) (- n 1) (* n acc)))))) (app (closure f) 5 1))) "120") (check-equal? (crc '(labels ((f (code (a b) () (+ a (* 2 b))))) (app (closure f) 2 3))) "8") (check-equal? (crc '(labels ((f (code (a b) () (+ a (* 2 b))))) (let ((a 2) (b 3)) (app (closure f) a b)))) "8") (check-equal? (crc '(labels ((f (code (a b) () (+ a (* 2 b))))) (let ((a 2) (b 3)) (cons (app (closure f) a b) a)))) "(8 . 2)") (check-equal? (crc '(labels ((f (code (a b) () (+ a (* 2 b))))) (let ((a 2) (b 3)) (cons (app (closure f) a b) b)))) "(8 . 3)") (check-equal? (crc '(labels ((f (code (a b) () (+ a (* 2 b))))) (let ((a 2) (b 3)) (cons a (app (closure f) a b))))) "(2 . 8)") (check-equal? (crc '(labels ((f (code (a b) () (+ a (* 2 b))))) (let ((a 2) (b 3)) (cons b (app (closure f) a b))))) "(3 . 8)") (check-equal? (crc '(labels ((f1 (code (n) () (if (zero? n) 1 (* n (app (closure f1) (- n 1)))))) (f2 (code (n) () (if (zero? (- n 1)) n (* n (app (closure f2) (- n 1)))))) (f3 (code (n acc) () (if (zero? n) acc (app (closure f3) (- n 1) (* acc n))))) (f4 (code (acc n) () (if (zero? n) acc (app (closure f4) (* acc n) (- n 1))))) (f5 (code (n) () (app (closure f3) n 1)))) (let ((r-f1 (app (closure f1) 5)) (r-f2 (app (closure f2) 5)) (r-f3 (app (closure f3) 5 1)) (r-f4 (app (closure f4) 1 5)) (r-f5 (app (closure f5) 5))) (cons (cons (app (closure f5) (- (app (closure f5) 3) 1)) (cons (cons r-f1 r-f2) r-f3)) (cons (* 12 (+ 2 8)) (cons r-f4 (cons (let ((x 4)) (app (closure f2) (+ x 1))) r-f5))))))) "((120 . ((120 . 120) . 120)) . (120 . (120 . (120 . 120))))") ;; Closures with closed-over values (check-equal? (crc '(labels ((f (code (n) (m o) (cons (* n m) (+ o n))))) (let ((y 4) (z 12)) (app (closure f 3 7) y)))) "(12 . 11)") (check-equal? (crc '(labels ((f (code (n) (m o) (cons (* n m) (+ o n))))) (let ((y 4) (z 12)) (cons (app (closure f 3 7) y) (app (closure f 2 1) z))))) "((12 . 11) . (24 . 13))") (check-equal? (crc '(labels ((adder_core (code (n) (a) (+ a n))) (make_adder (code (init-a) () (closure adder_core init-a)))) (let ((add_5 (app (closure make_adder) 5))) (app add_5 1)))) "6") ] ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Testing utilities ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define (crc expr) ;; CRC: *C*ompile, *R*un, *C*apture output (compile expr) (system "gcc compiler-output.s driver.c") (with-output-to-string (lambda () (system "./a.out")))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Output routines ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define (write-to-asm thing) (with-output-to-file asm-file (λ () (if (not (string-suffix? thing ":")) (display "\t") (void)) (displayln thing)) #:exists 'append)) (define (emit-string thing [writer write-to-asm]) (writer thing)) (define (emit thing) (emit-string thing)) (define (global-prelude [emitter emit-string]) (emitter ".text .p2align 4,,15 .globl _scheme_entry _scheme_entry: movq %rdi, %r15"))
true
d3489dd3c9ca25a95eb9bc4aaac38ae6e829d75c
52c2225c9f44c0da28ca1fd44606a8d197c8eac8
/EOPL/ch1/1.21-test.rkt
aa621bd502b6d9852e6f6eee3ac1d9aa0e93edc9
[]
no_license
alanzplus/EOPL
c74c1e9dd27c0580107fd860b88016320a6f231c
d7b06392d26d93df851d0ca66d9edc681a06693c
refs/heads/master
2021-06-20T00:59:21.685904
2019-08-15T06:18:10
2019-08-15T07:06:53
147,045,798
8
0
null
null
null
null
UTF-8
Racket
false
false
264
rkt
1.21-test.rkt
#lang eopl (require rackunit "1.21.rkt") (require rackunit/text-ui) (define product-test (test-suite "Tests for (product sos1 sos2" (check-equal? (product '(a b c) '(x y)) '((a x) (a y) (b x) (b y) (c x) (c y))))) (run-tests product-test)
false
fce59224cfdac552d2c69bcd2839cf7b39729f7c
d755de283154ca271ef6b3b130909c6463f3f553
/htdp-test/tests/stepper/right-redex.rktl
011497ab4d8adafb942030fe236c28351afa24bf
[ "LicenseRef-scancode-unknown-license-reference", "MIT", "Apache-2.0" ]
permissive
racket/htdp
2953ec7247b5797a4d4653130c26473525dd0d85
73ec2b90055f3ab66d30e54dc3463506b25e50b4
refs/heads/master
2023-08-19T08:11:32.889577
2023-08-12T15:28:33
2023-08-12T15:28:33
27,381,208
100
90
NOASSERTION
2023-07-08T02:13:49
2014-12-01T13:41:48
Racket
UTF-8
Racket
false
false
24
rktl
right-redex.rktl
(+ #t (if #t #t #t) #t)
false
07ff1681ca29dbf46aeacb7c278fe0bb502a7d6d
0d545e1a9bdd6732aa7da5ffc70bb6fddfd7ce27
/my_project/8-qeen-problem.rkt
9ddd5c479a0f4f2b61d77f80d207c82927b26bfd
[ "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
1,685
rkt
8-qeen-problem.rkt
#lang racket ;; 8-Queen (require berkeley) (provide (all-defined-out)) ;; 學到CS61AS Nested Mappings 就可以解決這個問題,而且實作後更了解HOF of list ;; 最大的收穫就是,map一定會自帶一層list無法消除,巢狀map就會一層又一層 ;; 要消除嵌套就要靠在map外面的fold類函數,用append消除 ;; ;; 解決的方法是首先寫出函數可以創造n個排列組合的list,用map一個個元素加上去 ;; 每增加一個就用filter檢查一次合不合規則,就可以把八皇后給做出來了 ;; data struct: add new queen to first atom, easy for recursive ;; last line equl to 1 (define (ck-ur-ll atm lst) (cond ((null? lst) #t) ((= atm (add1 (car lst))) #f) (else (ck-ur-ll (sub1 atm) (cdr lst))))) (define (ck-ul-lr atm lst) (cond ((null? lst) #t) ((= atm (sub1 (car lst))) #f) (else (ck-ul-lr (add1 atm) (cdr lst))))) (define (ck-total atm lst) (and (not (member? atm lst)) (ck-ul-lr atm lst) (ck-ur-ll atm lst))) (define (flatmap proc seq) (accumulate append nil (map proc seq))) (define (n-queen n m list-of-list) (cond ((= n 0) list-of-list) (else (n-queen (sub1 n) m (filter (lambda (f) (ck-total (car f) (cdr f))) (flatmap (lambda (x) (map (lambda (y) (append (list x) y)) list-of-list)) (enumerate-interval 1 m))))))) ;; map vs flatmap test (map (lambda (y) (map (lambda (x) (cons x (list y))) (enumerate-interval 1 4))) (enumerate-interval 1 4))
false