You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
(3) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(8) |
Jul
(9) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(1) |
2004 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2005 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2011 |
Jan
|
Feb
(1) |
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
(31) |
Apr
(6) |
May
(6) |
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Michael A. K. <ma...@ll...> - 2001-11-07 15:04:39
|
Hello all, 1. I have noticed that WITH-SLOTS used in conjunction with Matlisp and an object defined by DEFSTRUCT doesn't always find the requested slots. For example...if I start in package :USER all is well. (IN-PACKAGE :USER) ;;; a bunch of code to DEFSTRUCT etc (DEFUN DO-SOMETHING (PD) (WITH-SLOTS (HEADING PITCH GPS-LATITUDE GPS-LONGITUDE) PD ...)) (DO-SOMETHING A-PD) ; and all is well...no problems If I restart lisp (actually matlisp) and start in a different package, WITH-SLOTS will fail. E.G., (IN-PACKAGE :MATLISP-USER) ;;; everything else is the same up to (DO-SOMETHING A-PD) ; and this time I get approx: "NO OBJECT WITH SLOT NAMED PITCH" This can't be an expected result...whats going wrong here? mike -- ------------------------------------------------------------------- Dr Michael A. Koerber We child proofed our home 3 years ago MIT/Lincoln Laboratory and they're still getting in! ma...@ll... |
From: Michael A. K. <ma...@ll...> - 2001-10-29 15:41:55
|
The essential modification to the QR routines are support for column pivoting. The attached file GEQR.LISP is a replacement for the CVS'd file of the same name. In order to support this file, several other changes were required. 1. matlisp.mk.in.diff added the FORTRAN file needed 2. matrix.lisp.diff added DEFTYPE for INT4 FORTRAN Storage as well as the ALLOCATE-INTEGER4-STORE. (Please idiot check this for me...I've never used DEFTYPE related stuff before.) 3. lapack.lisp.diff addes the FORTRAN routine interface def's and modifies a couple of existing ones that seem to only have use in the QR routines. tnx mike -- ------------------------------------------------------------------- Dr Michael A. Koerber We child proofed our home 3 years ago MIT/Lincoln Laboratory and they're still getting in! ma...@ll... |
From: Michael A. K. <mic...@ea...> - 2001-10-27 10:52:55
|
The COPY! and the SETF (DIAG X) methods are broke under RH Linux/CMUCL. This appears to be due to removal of the FORTRAN-DSCAL command from BLAS.LISP and no corresponding changes to COPY! and SETF (DIAG X). I have edited my local files, recompiled and tested and all seems well. I request that these changes be added to CVS. tnx mike -- Dr Michael A. Koerber MIT/LL ========================================================== DIAG.LISP Diff's ================= To me it seems that the #+:ALLEGRO method is sufficient. I removed the #+:CMU method and all seems well. The diff's are [mak@koerber src]$ diff -u diag.lisp.orig diag.lisp --- diag.lisp.orig Tue Jul 11 14:02:03 2000 +++ diag.lisp Sat Oct 27 06:25:29 2001 @@ -64,8 +64,6 @@ #+nil (export 'diag) -;; note: here and in copy change fortran-dscal to dcopy. - (defgeneric diag (matrix) (:documentation " @@ -168,7 +166,6 @@ (zcopy p (store mat) (1+ n) (store result) 1) result))) - (defmethod (setf diag) ((new-diag complex-matrix) (mat complex-matrix)) (let* ((n (nrows mat)) (m (ncols mat)) @@ -181,31 +178,6 @@ (zcopy (min n m n-new m-new) (store new-diag) (1+ n-new) (store mat) (1+ n))) mat)) - -#+:cmu -(defmethod (setf diag) ((new-diag real-matrix) (mat complex-matrix)) - (let* ((n (nrows mat)) - (m (ncols mat)) - (n-new (nrows new-diag)) - (m-new (ncols new-diag)) - (nxm-new (number-of-elements new-diag))) - (declare (type fixnum n m n-new m-new nxm-new)) - - (if (row-or-col-vector-p new-diag) - (progn - (with-vector-data-addresses ((addr-mat (store mat))) - (incf-sap :double-float addr-mat) - (blas::fortran-dscal (min n m nxm-new) 0.0d0 addr-mat (+ 2 (* 2 n)))) - (dcopy (min n m nxm-new) (store new-diag) 1 (store mat) (+ 2 (* 2 n)))) - (progn - (with-vector-data-addresses ((addr-mat (store mat))) - (incf-sap :double-float addr-mat) - (blas::fortran-dscal (min n m n-new m-new) 0.0d0 addr-mat (+ 2 (* 2 n)))) - (dcopy (min n m n-new m-new) (store new-diag) (1+ n-new) (store mat) (+ 2 (* 2 n))))) - - mat)) - -#+:allegro (defmethod (setf diag) ((new-diag real-matrix) (mat complex-matrix)) (let* ((n (nrows mat)) (m (ncols mat)) COPY! DIFF's ============= Again, the #+:ALLEGRO code seems sufficient. The diff's are [mak@koerber src]$ diff -u copy.lisp.orig copy.lisp --- copy.lisp.orig Tue Jul 11 14:02:03 2000 +++ copy.lisp Sat Oct 27 06:14:05 2001 @@ -151,11 +151,6 @@ (nxm (min nxm-x nxm-y))) (declare (type fixnum nxm-x nxm-y nxm)) - #+:cmu - (with-vector-data-addresses ((addr-y (store y))) - (incf-sap :double-float addr-y) - (blas::fortran-dscal nxm 0.0d0 addr-y 2)) - #+:allegro (zdscal nxm 0.0d0 (store y) 1) (dcopy nxm (store x) 1 (store y) 2) |
From: Tunc S. <si...@ee...> - 2001-10-26 21:09:35
|
FYI: after the recent (yesterdays) batch of fixes (thanks!) I did a cvs update and now both Allegro and CMU on Solaris work fine w.r.t: i) installation ii) Michael's ZGEEV bug Regards, Tunc Tunc Simsek wrote: > > I just installed the latest cvs'ed matlisp on solaris. > The install went find for CMUCL. I saw earlier that > you mentioned a package problem with SAVE-MATLISP. > I did not get this; the saved image loads in a package > called MATLISP-USER that is using the MATLISP package; > I think that is ok. > > The script below, however, does reproduce the error with CMUCL. > > > I also installed using Allegro. The install did not work > because the f77-mangling.lisp and ffi-acl.lisp are not compatible. > However, replacing all "_" with "" in f77-mangling is a sufficient > hack to install using Allegro. SAVE-MATLISP also works for Allegro. > > The script below, again, does reproduce the error with Allegro. > > MATLISP-USER(1): :ld test > ; Loading /home/eclair3/varaiya/simsek/tmp/mk/test.lisp > ** On entry to ZGEEV parameter number 10 had an illegal value > ** On entry to ZGEEV parameter number 12 had an illegal value > > Regards, > Tunc > > "Michael A. Koerber" wrote: > > > > The command (EIG A) seems to be okay, but not (EIG A T). This > > results in ZGEEV complaints as well as inconsistant error reports > > for succesive calls. A script demonstrating this follows... > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;; Demo a ZGEEV bug in MATLISP with > > ;; > > ;; CMU Common Lisp 18c, running on koerber.llan.ll.mit.edu > > ;; Send questions and bug reports to your local CMU CL maintainer, > > ;; or to cmu...@co.... and cmu...@co.... respectively. > > ;; Loaded subsystems: > > ;; Python 1.0, target Intel x86 > > ;; CLOS based on PCL version: September 16 92 PCL (f) > > ;; MATLISP/Pre 2.0 > > > > (use-package :m) > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;; Okay read in a test array from the data set (see bottom of file) > > (with-open-file (in "tmp-ar.out" :direction :input) > > (defparameter tst-array (read in))) > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;;; BEGIN THE DEMO > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;; This first block runs through the computational process with no > > ;; errors. It is missing the MULTIPLE-VALUE-BIND blocks > > > > (setf tst-matrix (make-complex-matrix tst-array) > > tst-a (m* (ctranspose tst-matrix) tst-matrix)) > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;; Finally note the error > > (eig tst-a t) > > > > ;; ** On entry to ZGEEV parameter number 10 had an illegal value > > ;; ** On entry to ZGEEV parameter number 12 had an illegal value > > > > ;;; Running this interactive will yeild different results... > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;;; THE DATA FILE...save this as "tmp-ar.out" > > #2A((#C(16.005199412100566d0 47.07791625264504d0) > > #C(29.826457010016536d0 -35.54662313696197d0) [snip] |
From: Michael A. K. <ma...@ll...> - 2001-10-26 15:27:43
|
> Applied. (Please use context (-c) or unified (-u) diffs. They're > better than -e diffs.) Noted... tnx mike |
From: Raymond T. <to...@rt...> - 2001-10-26 15:25:45
|
>>>>> "Michael" == Michael A Koerber <ma...@ll...> writes: Michael> The error occurs in the determination of LWORK for both DGEEV and ZGEEV. Michael> When determining LWORK, if JOBVR is V, the LDVR must be >= N. This Michael> requires moving the (LET ((XXX ...)) to below the CASE statement for the JOB Michael> type. Michael> Diffs are as follows: Applied. (Please use context (-c) or unified (-u) diffs. They're better than -e diffs.) Ray |
From: Michael A. K. <ma...@ll...> - 2001-10-26 14:10:03
|
The error occurs in the determination of LWORK for both DGEEV and ZGEEV. When determining LWORK, if JOBVR is V, the LDVR must be >= N. This requires moving the (LET ((XXX ...)) to below the CASE statement for the JOB type. Diffs are as follows: -------------- snip, snip, snip -------------------- diff -e geev.lisp ~/fopen/geev.lisp 386,405c (let* ((ldvr (if (equal jobvr "V") n 1)) (xxx (allocate-complex-store ldvr))) (multiple-value-bind (store-a store-w store-vl store-vr work info) (zgeev jobvl jobvr n ; N xxx ; A n ; LDA xxx ; W xxx ; VL 1 ; LDVL xxx ; VR ldvr ; LDVR work ; WORK -1 ; LWORK xxx ; RWORK 0 ) ; INFO (declare (ignore store-a store-w store-vl store-vr info)) ;; The desired size in in work[0], which we convert to an ;; integer. (ceiling (aref work 0))))))) . 375,376c (let ((work (allocate-complex-store 1))) . 247,266c (let* ((ldvr (if (equal jobvr "V") n 1)) (xxx (allocate-complex-store ldvr))) (multiple-value-bind (store-a store-wr store-wi store-vl store-vr work info) (dgeev jobvl jobvr n ; N xxx ; A n ; LDA xxx ; WR xxx ; WI xxx ; VL 1 ; LDVL xxx ; VR ldvr ; LDVR work ; WORK -1 ; LWORK 0 ) ; INFO (declare (ignore store-a store-wr store-wi store-vl store-vr)) (assert (zerop info)) (ceiling (realpart (aref work 0)))))))) . 236,237c (let ((work (allocate-real-store 1))) . |
From: Tunc S. <si...@ee...> - 2001-10-25 23:42:35
|
(sending again because message was too big) Tunc Simsek wrote: > > I just installed the latest cvs'ed matlisp on solaris. > The install went find for CMUCL. I saw earlier that > you mentioned a package problem with SAVE-MATLISP. > I did not get this; the saved image loads in a package > called MATLISP-USER that is using the MATLISP package; > I think that is ok. > > The script below, however, does reproduce the error with CMUCL. > > > I also installed using Allegro. The install did not work > because the f77-mangling.lisp and ffi-acl.lisp are not compatible. > However, replacing all "_" with "" in f77-mangling is a sufficient > hack to install using Allegro. SAVE-MATLISP also works for Allegro. > > The script below, again, does reproduce the error with Allegro. > > MATLISP-USER(1): :ld test > ; Loading /home/eclair3/varaiya/simsek/tmp/mk/test.lisp > ** On entry to ZGEEV parameter number 10 had an illegal value > ** On entry to ZGEEV parameter number 12 had an illegal value > > Regards, > Tunc > > "Michael A. Koerber" wrote: > > > > The command (EIG A) seems to be okay, but not (EIG A T). This > > results in ZGEEV complaints as well as inconsistant error reports > > for succesive calls. A script demonstrating this follows... > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;; Demo a ZGEEV bug in MATLISP with > > ;; > > ;; CMU Common Lisp 18c, running on koerber.llan.ll.mit.edu > > ;; Send questions and bug reports to your local CMU CL maintainer, > > ;; or to cmu...@co.... and cmu...@co.... respectively. > > ;; Loaded subsystems: > > ;; Python 1.0, target Intel x86 > > ;; CLOS based on PCL version: September 16 92 PCL (f) > > ;; MATLISP/Pre 2.0 > > > > (use-package :m) > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;; Okay read in a test array from the data set (see bottom of file) > > (with-open-file (in "tmp-ar.out" :direction :input) > > (defparameter tst-array (read in))) > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;;; BEGIN THE DEMO > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;; This first block runs through the computational process with no > > ;; errors. It is missing the MULTIPLE-VALUE-BIND blocks > > > > (setf tst-matrix (make-complex-matrix tst-array) > > tst-a (m* (ctranspose tst-matrix) tst-matrix)) > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;; Finally note the error > > (eig tst-a t) > > > > ;; ** On entry to ZGEEV parameter number 10 had an illegal value > > ;; ** On entry to ZGEEV parameter number 12 had an illegal value > > > > ;;; Running this interactive will yeild different results... > > > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > > ;;; THE DATA FILE...save this as "tmp-ar.out" > > #2A((#C(16.005199412100566d0 47.07791625264504d0) > > #C(29.826457010016536d0 -35.54662313696197d0) > > #C(37.91375316204245d0 -19.17281260883403d0) > > #C(34. [snip] |
From: Tunc S. <si...@ee...> - 2001-10-25 23:39:49
|
I just installed the latest cvs'ed matlisp on solaris. The install went find for CMUCL. I saw earlier that you mentioned a package problem with SAVE-MATLISP. I did not get this; the saved image loads in a package called MATLISP-USER that is using the MATLISP package; I think that is ok. The script below, however, does reproduce the error with CMUCL. I also installed using Allegro. The install did not work because the f77-mangling.lisp and ffi-acl.lisp are not compatible. However, replacing all "_" with "" in f77-mangling is a sufficient hack to install using Allegro. SAVE-MATLISP also works for Allegro. The script below, again, does reproduce the error with Allegro. MATLISP-USER(1): :ld test ; Loading /home/eclair3/varaiya/simsek/tmp/mk/test.lisp ** On entry to ZGEEV parameter number 10 had an illegal value ** On entry to ZGEEV parameter number 12 had an illegal value Regards, Tunc "Michael A. Koerber" wrote: > > The command (EIG A) seems to be okay, but not (EIG A T). This > results in ZGEEV complaints as well as inconsistant error reports > for succesive calls. A script demonstrating this follows... > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > ;; Demo a ZGEEV bug in MATLISP with > ;; > ;; CMU Common Lisp 18c, running on koerber.llan.ll.mit.edu > ;; Send questions and bug reports to your local CMU CL maintainer, > ;; or to cmu...@co.... and cmu...@co.... respectively. > ;; Loaded subsystems: > ;; Python 1.0, target Intel x86 > ;; CLOS based on PCL version: September 16 92 PCL (f) > ;; MATLISP/Pre 2.0 > > (use-package :m) > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > ;; Okay read in a test array from the data set (see bottom of file) > (with-open-file (in "tmp-ar.out" :direction :input) > (defparameter tst-array (read in))) > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > ;;; BEGIN THE DEMO > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > ;; This first block runs through the computational process with no > ;; errors. It is missing the MULTIPLE-VALUE-BIND blocks > > (setf tst-matrix (make-complex-matrix tst-array) > tst-a (m* (ctranspose tst-matrix) tst-matrix)) > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > ;; Finally note the error > (eig tst-a t) > > ;; ** On entry to ZGEEV parameter number 10 had an illegal value > ;; ** On entry to ZGEEV parameter number 12 had an illegal value > > ;;; Running this interactive will yeild different results... > > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > ;;; THE DATA FILE...save this as "tmp-ar.out" > #2A((#C(16.005199412100566d0 47.07791625264504d0) > #C(29.826457010016536d0 -35.54662313696197d0) > #C(37.91375316204245d0 -19.17281260883403d0) > #C(34.078224268488945d0 67.62670766716862d0) > #C(38.13652518200501d0 -33.887006924403416d0) > #C(42.759393512198166d0 32.918173842750406d0) > #C(-71.39823869300109d0 -32.40367765926753d0) > #C(27.14470974654928d0 -73.75317137227977d0) > #C(16.448811595962425d0 63.0306188816642d0) > #C(41.241561727845394d0 41.5135501218996d0) > #C(5.937864642568172d0 54.01449571738566d0) > #C(-100.12720430100853d0 -34.382131284070695d0)) > (#C(23.198438739089735d0 -3.2958171922133435d0) > #C(-14.798689856548828d0 -15.525503203611864d0) > #C(17.905028974905527d0 -37.1099970013271d0) > #C(36.724388182668314d0 -3.4097968555987936d0) > #C(-8.202167726494334d0 -22.15776441397034d0) > #C(22.765402850974013d0 -14.246823450586142d0) > #C(-29.837503042439536d0 27.610590873165055d0) > #C(-27.69352908727416d0 -25.603429543977743d0) > #C(29.26292734178589d0 6.4705722866843915d0) > #C(25.28672247416617d0 -8.324469887780374d0) > #C(23.88214661871792d0 10.100304108596347d0) > #C(-36.97796513733695d0 26.918809687378666d0)) > (#C(-19.557419012822034d0 -16.01876797399043d0) > #C(-9.51687364032257d0 25.14721169586665d0) > #C(-35.46821117315311d0 4.116607731781016d0) > #C(-22.55925481925319d0 -40.20579281634353d0) > #C(-23.085928570747722d0 14.484677851031586d0) > #C(-17.4998584340949d0 -24.284469427255893d0) > #C(25.77614196159949d0 33.05447047033497d0) > #C(-29.979368594305065d0 24.089878113232864d0) > #C(16.2325585361298d0 -30.77869936446934d0) > #C(0.30727870340845903d0 -28.10171520956098d0) > #C(22.678763527863147d0 -15.955154218619441d0) > #C(3.8851448943308355d0 46.34968269847154d0)) > (#C(-22.937677533499805d0 12.761721168716882d0) > #C(21.315429264837444d0 18.83295518657326d0) > #C(-9.150000510781709d0 35.56094887921642d0) > #C(-46.94667929802831d0 7.678921173141417d0) > #C(4.844694486412525d0 28.737681603101393d0) > #C(-30.57106678163329d0 7.216650033376111d0) > #C(42.703123457005354d0 -11.533940863834651d0) > #C(12.167847498141589d0 39.47633922261261d0) > #C(-25.17568211763151d0 -26.531324192443176d0) > #C(-26.880513070024065d0 -10.8978923340387d0) > #C(-7.401550946912295d0 -28.458139382803562d0) > #C(46.757656411101294d0 12.249717138832954d0)) > (#C(-13.56814824052778d0 24.123790896398027d0) > #C(29.05381752991641d0 4.403849836500797d0) > #C(9.84951924595866d0 39.07668076500276d0) > #C(-41.97494945374203d0 31.663796739354957d0) > #C(20.75301717893658d0 22.06256309568527d0) > #C(-23.66768499463233d0 23.865238658995487d0) > #C(33.03702496188954d0 -37.73200787112589d0) > #C(34.05816832014353d0 29.6586879121717d0) > #C(-38.536506691388226d0 -11.85558712710001d0) > #C(-34.77192722069896d0 5.885893865952018d0) > #C(-21.59392776802898d0 -22.179506459891794d0) > #C(52.542098466081214d0 -10.813227449552333d0)) > (#C(20.36916910571722d0 3.5446044034764d0) > #C(-3.5859771169017205d0 -21.756925513783962d0) > #C(23.670942951988447d0 -16.06012387188525d0) > #C(31.81978046881639d0 20.25002685966308d0) > #C(10.628516075640219d0 -20.39792415229947d0) > #C(22.47721964638637d0 10.907253852484363d0) > #C(-32.9518303539806d0 -16.665469122363547d0) > #C(13.815002177173396d0 -30.368747441613984d0) > #C(0.7063684177762941d0 29.202053796469706d0) > #C(10.284557400745966d0 22.520655600536365d0) > #C(-10.93977441001412d0 20.693221232931364d0) > #C(-18.904000592002348d0 -31.78710325395103d0)) > (#C(30.46652312166895d0 -7.954182213026129d0) > #C(-18.28476861378651d0 -28.682737449328883d0) > #C(23.468407257697773d0 -40.2734815860169d0) > #C(61.097276708636635d0 7.440043455989577d0) > #C(2.124699597951931d0 -34.4674087761037d0) > #C(38.658719492073004d0 -0.4640322349085191d0) > #C(-55.06797925233883d0 4.166138081180903d0) > #C(-2.970001681596121d0 -50.0726743288685d0) > #C(21.107794356427465d0 40.252503164665455d0) > #C(30.824454285995248d0 21.188093829239005d0) > #C(0.17783263380597525d0 36.479763291975026d0) > #C(-53.69663365420271d0 -30.456233869541414d0)) > (#C(-11.143887328478538d0 20.79853099777082d0) > #C(25.42411902356644d0 4.381869277689784d0) > #C(9.480953113066764d0 32.63585615134894d0) > #C(-33.92788469899318d0 27.741374722242934d0) > #C(18.11765428905662d0 18.36795203800819d0) > #C(-19.51426927465894d0 20.698231810035146d0) > #C(27.55685967645361d0 -32.26699152575162d0) > #C(28.991681354917375d0 23.675938037740806d0) > #C(-32.52914943846797d0 -8.220192082169266d0) > #C(-26.875457076142787d0 5.866557848721024d0) > #C(-19.778632927020524d0 -18.082087110132754d0) > #C(42.80794264134054d0 -13.33975854129635d0)) > (#C(13.351731245561357d0 14.40178602909276d0) > #C(10.356586771940307d0 -18.639113042615573d0) > #C(27.30252929529623d0 2.6645900506457054d0) > #C(10.941327995705267d0 34.22799719621003d0) > #C(19.146344970196953d0 -8.362077718793147d0) > #C(10.687342474568803d0 20.79580320713312d0) > #C(-17.036403585521327d0 -29.863850016303964d0) > #C(26.49189934717548d0 -15.864105482994917d0) > #C(-15.783917237174197d0 21.94988184785033d0) > #C(-4.399255169412217d0 22.29785857257167d0) > #C(-18.497324257421294d0 9.337647442177557d0) > #C(4.611847412785996d0 -35.0083563604576d0)) > (#C(-20.427601090208906d0 -4.7827806408477205d0) > #C(4.2764960026941115d0 21.249017402286437d0) > #C(-22.96528846676614d0 19.302591691330665d0) > #C(-34.57945943175243d0 -20.635197055670748d0) > #C(-10.675683205197554d0 20.041160084144167d0) > #C(-23.686455112170933d0 -9.867695698100231d0) > #C(36.59189900906817d0 14.825760957058872d0) > #C(-12.146895431202907d0 31.699636240981505d0) > #C(-3.8350919084728545d0 -30.74838978746835d0) > #C(-14.975589460162508d0 -20.94157387708863d0) > #C(9.508959963440738d0 -24.074500373394567d0) > #C(24.1186358712507d0 32.1705116404263d0)) > (#C(-16.809229858652024d0 10.64614608834553d0) > #C(17.326394687551172d0 12.309759891314783d0) > #C(-6.440300562661456d0 29.68465271951954d0) > #C(-40.36217464737333d0 7.201264298006153d0) > #C(5.659591880888096d0 22.11147708933589d0) > #C(-23.744510928438427d0 9.086835677771031d0) > #C(36.16758933264222d0 -14.860877877641677d0) > #C(12.014924474276373d0 31.45389566041442d0) > #C(-22.589837196855772d0 -21.117735786032345d0) > #C(-25.795723680385592d0 -6.962180446580348d0) > #C(-8.082613602260205d0 -23.996552513370098d0) > #C(39.753967069192704d0 9.634421817109795d0)) > (#C(4.6639850364767135d0 -20.026791920386774d0) > #C(-22.772827078181287d0 3.2781370378143935d0) > #C(-19.73550205591679d0 -24.368811405764035d0) > #C(20.77892089344874d0 -34.32290108108991d0) > #C(-20.42872486396446d0 -10.85538500470752d0) > #C(11.364963451920733d0 -25.69669414489729d0) > #C(-13.989666464219805d0 34.82299400748158d0) > #C(-30.420531175138656d0 -11.337389924841414d0) > #C(30.78518769876881d0 -3.561045601021239d0) > #C(19.876800884382547d0 -13.666746170698532d0) > #C(23.959705431827203d0 10.084924984689255d0) > #C(-32.72128203326361d0 26.269919299328937d0)) > (#C(8.40042055640669d0 23.07388932527355d0) > #C(20.356970456110343d0 -17.84171440960684d0) > #C(34.824049988821045d0 14.288943821391573d0) > #C(-1.1975493782747595d0 49.37110134180481d0) > #C(27.560997714267337d0 -0.569753376667717d0) > #C(3.23633741438303d0 32.89137714179628d0) > #C(-7.618726350526517d0 -46.27057904835429d0) > #C(40.21722287275555d0 -7.347188429116369d0) > #C(-31.816618300979904d0 21.688908083405334d0) > #C(-13.797538768455448d0 28.155657943176998d0) > #C(-30.538474346489945d0 2.9895244366358895d0) > #C(20.74971482158006d0 -47.25660091014599d0)) > (#C(-7.126445159358812d0 18.797909175016795d0) > #C(21.26313358467199d0 0.019686058254233307d0) > #C(14.408978393641478d0 28.243053754310743d0) > #C(-27.553714746320686d0 31.73834160068036d0) > #C(17.02023605641506d0 14.593147998914493d0) > #C(-15.661796301636723d0 20.871398863728672d0) > #C(17.646410557224197d0 -31.60121079708061d0) > #C(27.402441364610983d0 16.605159624549763d0) > #C(-30.589414677739015d0 -4.092589045940567d0) > #C(-22.7860496859832d0 9.91228768911711d0) > #C(-18.600615488118017d0 -15.739081534167408d0) > #C(39.90151537635921d0 -16.32818944371095d0)) > (#C(-19.87520315057365d0 10.42991689484596d0) > #C(17.763845019337953d0 15.581969761958192d0) > #C(-8.651260396074676d0 32.82293589334493d0) > #C(-44.089617561051355d0 5.898863156325472d0) > #C(5.724601918488497d0 24.760430038165858d0) > #C(-27.804646283718583d0 7.061364750806994d0) > #C(38.81067282721568d0 -12.025597971875193d0) > #C(10.828422665452692d0 35.019337354281376d0) > #C(-23.077309402281298d0 -24.992996384688645d0) > #C(-27.452481089465106d0 -8.962683211685171d0) > #C(-6.736373148126053d0 -26.399626736757256d0) > #C(43.797374929409465d0 13.389296715683468d0)) > (#C(20.006089247505972d0 10.284227284026427d0) > #C(1.507388805478719d0 -22.625597105132563d0) > #C(30.678766309519073d0 -12.10465959138954d0) > #C(28.99229295829483d0 31.746697951116d0) > #C(16.923007298866096d0 -17.29162103699469d0) > #C(20.94194454737485d0 18.139557733135796d0) > #C(-32.263318650823535d0 -25.906192480017136d0) > #C(22.703284338818378d0 -27.938798424809104d0) > #C(-7.637357968736136d0 32.45277649168197d0) > #C(7.5255661618171255d0 27.45090394444313d0) > #C(-18.38569733093254d0 19.38017627661041d0) > #C(-10.874599886745848d0 -43.12682620595745d0)) > (#C(23.53339872007615d0 13.773313007350964d0) > #C(3.146552737658422d0 -28.425858797998302d0) > #C(39.19776299610373d0 -12.552203709344589d0) > #C(35.22044910619708d0 40.5205588814613d0) > #C(21.634664670030816d0 -23.24580280833951d0) > #C(26.36995507193284d0 25.19653386500839d0) > #C(-41.55793908105909d0 -32.81832210054749d0) > #C(28.097515861265826d0 -37.26233335108873d0) > #C(-8.459124863124769d0 42.38739040558611d0) > #C(11.3193040695607d0 34.40356048992171d0) > #C(-22.428604607719702d0 27.313449626749033d0) > #C(-16.789585655377067d0 -58.24703665346114d0)) > (#C(-0.6084970548442286d0 -29.532108853226916d0) > #C(-28.164036166697592d0 14.971133303000082d0) > #C(-33.226323177288684d0 -25.065269921844695d0) > #C(13.597051154408128d0 -51.12964370996891d0) > #C(-35.22367760241353d0 -5.990620128731898d0) > #C(5.83422965785773d0 -40.373262532659375d0) > #C(-6.954531988646704d0 55.527052860398925d0) > #C(-49.59561394170671d0 -2.376245806745374d0) > #C(42.272037196632816d0 -20.56963637714144d0) > #C(22.002155727740774d0 -28.458785576763194d0) > #C(38.766945656386476d0 0.6980734533018431d0) > #C(-33.59312544740101d0 49.830822837862385d0)) > (#C(-10.965856383178863d0 -20.098842883571784d0) > #C(-13.578151834955891d0 18.882764211902582d0) > #C(-33.572154393850305d0 -9.247101892200035d0) > #C(-7.1983955408958415d0 -44.74021366251536d0) > #C(-25.49195794016583d0 6.480992561130666d0) > #C(-7.801677260802088d0 -29.99322788410162d0) > #C(17.64699367607364d0 42.34057977382671d0) > #C(-37.47105499331694d0 14.466975595019427d0) > #C(26.410368987890138d0 -27.61329383342676d0) > #C(8.0125520259677d0 -32.332668354370135d0) > #C(28.345305080495482d0 -9.625657806045606d0) > #C(-15.813544063380162d0 49.38867992999511d0)) > (#C(-9.33137783968364d0 -18.663795611491395d0) > #C(-14.043145694604d0 17.524482151220464d0) > #C(-31.029495422489457d0 -5.2729071347279515d0) > #C(-7.502968858188858d0 -39.790186102180755d0) > #C(-24.25225866344128d0 5.43002868275967d0) > #C(-6.968793470393193d0 -27.767127106546535d0) > #C(12.847023596982307d0 35.56059110202828d0) > #C(-32.07505652985733d0 13.166106940820804d0) > #C(21.861224489547784d0 -24.77748267012699d0) > #C(5.099214186339811d0 -25.3011905708243d0) > #C(25.182794153209166d0 -9.514838415062272d0) > #C(-7.769372871030493d0 44.41429266419108d0)) > (#C(-1.6712447699758552d0 19.14818158504486d0) > #C(19.4860433234232d0 -6.277156617940156d0) > #C(20.96161933327692d0 20.166059769757148d0) > #C(-13.704945535038723d0 33.982807980964495d0) > #C(21.835308711286743d0 7.573203274621525d0) > #C(-8.398445647436912d0 24.936781175547164d0) > #C(7.9942716162507175d0 -35.225376453187565d0) > #C(32.985970999229316d0 6.537892064711723d0) > #C(-29.865047797605072d0 8.62597382434678d0) > #C(-16.61241281364779d0 17.91514252525286d0) > #C(-25.42137515199612d0 -4.582538744037608d0) > #C(30.277093698649185d0 -30.796266708389453d0)) > (#C(18.606415970124594d0 -17.79384385154076d0) > #C(-25.423436877653735d0 -10.684928604444178d0) > #C(-2.142176306648727d0 -37.578644136335356d0) > #C(44.020556724799384d0 -21.61449965356597d0) > #C(-14.718860631085006d0 -26.856275107723082d0) > #C(29.913989576033174d0 -16.563306618437068d0) > #C(-39.33653361607388d0 27.674950798706274d0) > #C(-25.63429948777225d0 -34.963793631723d0) > #C(36.165070599101895d0 19.31314337612928d0) > #C(32.20836485698857d0 -0.20578418201003057d0) > #C(18.201004027043247d0 27.165641682638526d0) > #C(-55.72477269910214d0 0.5943045229224698d0)) > (#C(11.45189400451073d0 -28.07289260642917d0) > #C(-32.247940317224455d0 -0.7549526190357849d0) > #C(-19.15819128796846d0 -41.40298370146726d0) > #C(38.99631340056976d0 -43.1608974898529d0) > #C(-28.176308003174693d0 -22.44479172765345d0) > #C(25.44901274243493d0 -31.923710261668965d0) > #C(-29.614840992657232d0 48.87854746012331d0) > #C(-44.942605933428034d0 -26.457634447959606d0) > #C(48.179706183881024d0 4.038430476343767d0) > #C(34.15021892230524d0 -16.598093066410534d0) > #C(33.91430307094719d0 19.645583948756776d0) > #C(-60.935267634905756d0 29.203545501276768d0)) > (#C(-1.2769142389579637d0 22.386381581072577d0) > #C(22.93516990210861d0 -7.481159696362845d0) > #C(23.818643041001355d0 24.586128288138674d0) > #C(-17.753873718698756d0 40.45064294290625d0) > #C(25.32313822836294d0 8.944620040152003d0) > #C(-10.583127435478964d0 29.024726924750606d0) > #C(11.649941994768884d0 -40.827082402250745d0) > #C(37.2709394058087d0 9.157524477667172d0) > #C(-35.38191714722737d0 8.043434907125535d0) > #C(-21.172379820825448d0 19.454488943243405d0) > #C(-28.597383823358108d0 -7.878283255366343d0) > #C(37.070024458331154d0 -32.50015192813096d0)) > (#C(8.88084461013064d0 22.41553698991546d0) > #C(19.231246585346845d0 -17.84597954528991d0) > #C(34.10976311525074d0 13.059255111966857d0) > #C(1.9813994196561207d0 47.59741309099087d0) > #C(29.096498306332528d0 -2.041486225892365d0) > #C(3.0493965133310024d0 32.94933711057265d0) > #C(-9.133226338784239d0 -43.541881979738534d0) > #C(40.80635649449653d0 -9.164962946505081d0) > #C(-31.17743844037981d0 24.6932942303004d0) > #C(-10.970120856340456d0 29.371452736712367d0) > #C(-32.4136679428261d0 5.747632603326573d0) > #C(20.81784744852716d0 -51.532310222281666d0)) > (#C(19.238554595648402d0 7.726289402272763d0) > #C(0.992839808191091d0 -22.468228518864628d0) > #C(29.989366333516323d0 -12.867613989473762d0) > #C(29.436119947782192d0 29.007523322621438d0) > #C(16.176348920224502d0 -18.5445126948348d0) > #C(21.167373119287344d0 18.537880518023528d0) > #C(-31.998639024851794d0 -22.685280924279866d0) > #C(20.723958490529938d0 -29.88778641743582d0) > #C(-5.349041315732679d0 33.42523356537456d0) > #C(10.75622410345887d0 25.51151427016397d0) > #C(-16.78668997650614d0 22.156677333829407d0) > #C(-15.851838973649041d0 -44.32081587766065d0)) > (#C(-4.559954623766297d0 18.530263083254674d0) > #C(19.813466244522928d0 -2.080316540822887d0) > #C(14.938153876833034d0 22.630847253220836d0) > #C(-19.25543780287901d0 31.108379496818657d0) > #C(18.979097339236134d0 12.244790195294778d0) > #C(-11.821920616969987d0 21.14531015225459d0) > #C(12.119230108674298d0 -30.980877557431608d0) > #C(30.288118008709585d0 11.733714209557272d0) > #C(-30.790724275261486d0 2.913114891482836d0) > #C(-18.501733076253174d0 14.495248106095358d0) > #C(-23.482943804891473d0 -9.02890749832166d0) > #C(32.52588928424212d0 -25.571870605703975d0)) > (#C(-12.93691438556375d0 20.975671984698764d0) > #C(25.324251655781094d0 5.835348936973398d0) > #C(9.516050135592842d0 35.45535997056422d0) > #C(-39.15251963624497d0 30.843263698220596d0) > #C(18.766455247989814d0 22.426566447919452d0) > #C(-23.318208260851875d0 22.39291632624824d0) > #C(29.11273367248906d0 -36.543054664241254d0) > #C(33.40150378850584d0 27.592516962342046d0) > #C(-38.42504422221019d0 -9.945888461269416d0) > #C(-29.926463048105806d0 9.847285840518618d0) > #C(-24.197501762235273d0 -20.836062777671067d0) > #C(53.25415630633831d0 -15.530663268396314d0)) > (#C(-19.75419433237322d0 -10.553588415665075d0) > #C(-3.031645693309517d0 24.16689835868181d0) > #C(-32.137217463128465d0 13.40719062007361d0) > #C(-33.53248755334185d0 -32.19781581430464d0) > #C(-20.082544933783254d0 18.736659407511887d0) > #C(-22.325359926423133d0 -21.49037993800623d0) > #C(32.827241614248344d0 24.351688312359244d0) > #C(-22.610254322033285d0 30.90398731956259d0) > #C(6.974715368425351d0 -36.30498407321026d0) > #C(-10.11267701900123d0 -26.337261313800955d0) > #C(20.863694810053826d0 -23.031182234527655d0) > #C(16.591608276409275d0 49.445900518801686d0)) > (#C(37.63202741306523d0 16.176211241294595d0) > #C(1.7513576299814333d0 -43.07975763378812d0) > #C(54.37692020178624d0 -26.79643445400149d0) > #C(60.697080019400325d0 52.35222042428679d0) > #C(31.21549204101368d0 -36.93523868390102d0) > #C(42.67199277562833d0 33.94919909319257d0) > #C(-64.25744144281298d0 -39.84325943839809d0) > #C(35.71776977614306d0 -59.62646936949104d0) > #C(-5.901312225768027d0 64.18637749922105d0) > #C(21.54280917499099d0 45.53117216150264d0) > #C(-29.584579535159158d0 44.57681646154522d0) > #C(-37.2155779475878d0 -82.41959732009526d0)) > (#C(14.524132780009195d0 13.623056881927784d0) > #C(8.162549447647276d0 -17.646876142768303d0) > #C(30.077203701928514d0 0.2540953738508839d0) > #C(17.647981237878366d0 37.71203353528246d0) > #C(18.701212535923368d0 -11.050195936325649d0) > #C(12.397249781302968d0 20.38427696089352d0) > #C(-25.833655082529923d0 -27.330242508986725d0) > #C(26.365166490401087d0 -21.565964614143944d0) > #C(-14.308552486380588d0 27.818702490537817d0) > #C(2.0150536946410513d0 26.16268618313825d0) > #C(-19.79531209736659d0 12.05620462600083d0) > #C(2.110572659546233d0 -45.22575477491056d0)) > (#C(0.0651105983111071d0 -23.710363391609654d0) > #C(-22.54571334271586d0 9.323112614311775d0) > #C(-26.293748098137357d0 -23.050562194377093d0) > #C(12.879277677458898d0 -42.35732811755458d0) > #C(-27.412292497883474d0 -7.566090072116373d0) > #C(8.040680593753182d0 -30.218955273331108d0) > #C(-8.108149525641632d0 42.315940713948144d0) > #C(-40.292048586659824d0 -6.602323067650219d0) > #C(36.32827704015976d0 -11.373662562965567d0) > #C(21.154695998857356d0 -22.210894957756725d0) > #C(31.463700139670895d0 6.2617850436389775d0) > #C(-37.32755015969687d0 37.360753778609116d0)) > (#C(-16.91179530575683d0 -13.008493803188003d0) > #C(-6.968026851858035d0 21.488433108679153d0) > #C(-30.826505908982092d0 4.485456598300678d0) > #C(-20.993508308743603d0 -36.24100328984831d0) > #C(-20.008508689317843d0 13.771498325700833d0) > #C(-15.685808087510008d0 -21.88534139265269d0) > #C(27.107519921770358d0 29.88797514744888d0) > #C(-26.900239086637256d0 24.709479616081907d0) > #C(11.96994160937588d0 -30.335577530236996d0) > #C(-3.3644542113168363d0 -26.1492617215737d0) > #C(19.593702948275048d0 -17.065044596768264d0) > #C(4.464246033554232d0 44.61211152606719d0)) > (#C(16.47922658060789d0 8.24196700348842d0) > #C(1.3754235929483114d0 -18.613441814569445d0) > #C(23.725735872666633d0 -12.876744934550725d0) > #C(25.36179610835923d0 22.907335071565534d0) > #C(14.56291841018876d0 -16.203429150505098d0) > #C(21.10073018461531d0 14.356477437760248d0) > #C(-29.71488963881536d0 -17.882543988249335d0) > #C(16.67127181943891d0 -27.158599342495123d0) > #C(0.3940785344197666d0 26.8237954228201d0) > #C(10.228848885594678d0 15.715734596458146d0) > #C(-8.934605227989202d0 22.34120219908364d0) > #C(-20.867288996391366d0 -34.46935429399547d0)) > (#C(0.9788014372851368d0 20.84384942284433d0) > #C(18.598443947527834d0 -9.235201957055825d0) > #C(26.69600440491243d0 18.79160670193516d0) > #C(-10.066756674313016d0 41.16492957735946d0) > #C(25.12806586113738d0 5.121219763817638d0) > #C(-4.19985853120954d0 30.197316782935985d0) > #C(0.9072159512787294d0 -40.22961495672622d0) > #C(38.18217673578897d0 0.5003747179633216d0) > #C(-30.60446070483478d0 16.293461515097984d0) > #C(-13.312872998161406d0 23.787379750352258d0) > #C(-29.479555453100197d0 -0.9456730418070203d0) > #C(31.227778481365895d0 -44.833933568777795d0)) > (#C(-23.47860866218026d0 13.792086215181875d0) > #C(20.01941267132026d0 15.79863350021831d0) > #C(-6.670337370580076d0 38.02130503284532d0) > #C(-50.71184912823191d0 9.792790657424263d0) > #C(8.41857575074038d0 30.316773929932683d0) > #C(-33.23583117333454d0 11.35402986810276d0) > #C(46.71691624566056d0 -20.217619297132277d0) > #C(18.20298348863441d0 43.2865782681384d0) > #C(-31.171739838938116d0 -25.152654385434552d0) > #C(-31.680290356509225d0 -3.663362797878526d0) > #C(-15.83197406158224d0 -31.6580180713909d0) > #C(61.501443382237966d0 10.840201382404173d0)) > (#C(0.10047329643357417d0 25.8016485914385d0) > #C(22.091811976455908d0 -10.069236564553844d0) > #C(25.331954761713327d0 20.787279328235055d0) > #C(-14.435733505689447d0 41.215958353750295d0) > #C(28.38112920713415d0 6.689665233886117d0) > #C(-4.251584627070743d0 33.53752766081943d0) > #C(5.7920341378935625d0 -48.299548705243154d0) > #C(42.46860621307887d0 5.032798142080736d0) > #C(-32.60600083456306d0 15.436528841084893d0) > #C(-17.578806483935438d0 22.815395868826627d0) > #C(-32.06377188415438d0 1.5923631713183966d0) > #C(31.766640420121046d0 -40.57704191322392d0)) > (#C(7.769961653339088d0 29.209317949727545d0) > #C(22.458971295648222d0 -16.80047439449538d0) > #C(38.227408067502175d0 18.687074245116026d0) > #C(-3.9902229830964386d0 55.803459409155685d0) > #C(34.78588187350524d0 0.17391737634724413d0) > #C(1.6867184272369964d0 40.20038466639097d0) > #C(-9.683586833715307d0 -56.00758545492581d0) > #C(51.36351375237134d0 -7.804157054345702d0) > #C(-36.88092483619934d0 28.26456964992201d0) > #C(-13.888915651885302d0 34.68460504535169d0) > #C(-38.17269242485322d0 7.286643599618525d0) > #C(31.764450524807547d0 -61.19285148585033d0)) > (#C(-18.667478607484018d0 -3.852051487669408d0) > #C(4.884199744126256d0 19.133474005211433d0) > #C(-21.530424245593412d0 18.908313525250563d0) > #C(-33.58659480205376d0 -19.75641483406408d0) > #C(-9.233499477585292d0 21.65329344725752d0) > #C(-27.11186732801051d0 -10.175297378866095d0) > #C(40.35974717017079d0 12.028666745791844d0) > #C(-10.07371796032676d0 35.45643878650669d0) > #C(-7.237185575554468d0 -31.176014268043094d0) > #C(-15.62176723167416d0 -19.82076914463089d0) > #C(4.492456416518198d0 -25.931864743064903d0) > #C(32.65654448126914d0 34.51540062289765d0)) > (#C(-19.877996171119793d0 6.847862647881454d0) > #C(13.233733156786268d0 15.932431869561295d0) > #C(-10.964251073924203d0 27.861189699625456d0) > #C(-38.65106835635165d0 -0.5187448541567896d0) > #C(0.8184733409339309d0 24.014275118417178d0) > #C(-27.27870048671639d0 3.3322287211073434d0) > #C(38.504884249497955d0 -7.31881491123686d0) > #C(6.106354948159545d0 34.72383859650756d0) > #C(-20.413222616825006d0 -24.667780600193705d0) > #C(-23.873743233396727d0 -8.402523925386616d0) > #C(-5.709332906134597d0 -26.093520952468463d0) > #C(39.380218669744636d0 20.673653784037484d0)) > (#C(-25.23645103340055d0 6.1446705059922575d0) > #C(15.85673396649326d0 21.613152295321548d0) > #C(-16.147582310414638d0 36.36788219506637d0) > #C(-50.99741685818256d0 -3.009798144845014d0) > #C(-1.1263291890398954d0 30.17523216125455d0) > #C(-37.2239742638276d0 1.4956094327135645d0) > #C(50.03803191175425d0 -5.771458825865462d0) > #C(5.500086455284813d0 45.008868526957144d0) > #C(-25.69655042386285d0 -33.9216721547608d0) > #C(-31.220684402858566d0 -11.718140444633868d0) > #C(-4.890160178613581d0 -35.749666887487535d0) > #C(55.52318825017169d0 26.369555926129536d0)) > (#C(-14.134077416083283d0 -25.03022942419842d0) > #C(-16.866994820068527d0 23.919695560000065d0) > #C(-44.55174180872987d0 -4.319630683859716d0) > #C(-13.174102590869953d0 -56.7352049924371d0) > #C(-32.78194045331086d0 10.293761106155355d0) > #C(-14.619512177542179d0 -39.01908531360173d0) > #C(25.42253160382149d0 50.98119574501915d0) > #C(-46.17726333913453d0 21.5895970412013d0) > #C(28.58906697080551d0 -39.261600517399835d0) > #C(2.094859912198201d0 -39.14175232281485d0) > #C(36.603640061148106d0 -17.197454090724108d0) > #C(-7.838304916664162d0 71.64644127992904d0)) > (#C(-19.22168864215866d0 -39.517803248804455d0) > #C(-29.110304421545642d0 33.09183319449663d0) > #C(-63.27268046854961d0 -14.260692311883252d0) > #C(-12.858484418826d0 -84.1291544452629d0) > #C(-49.46083558656674d0 8.438334760463086d0) > #C(-13.212397612119139d0 -60.04737440711269d0) > #C(24.68734248181108d0 79.92787709704048d0) > #C(-72.38374518662705d0 22.12282515511019d0) > #C(48.09939930448076d0 -51.84229437974023d0) > #C(12.199067944583817d0 -54.93317293527209d0) > #C(57.96716377035359d0 -16.987601358624556d0) > #C(-28.79276594522159d0 98.54388123546055d0)) > (#C(18.188382636032504d0 -10.16925174080693d0) > #C(-15.921462821588149d0 -14.692572738578647d0) > #C(7.196925633904898d0 -33.13499324488163d0) > #C(42.960253774612305d0 -8.149906939997694d0) > #C(-5.743822390395862d0 -25.175047491851142d0) > #C(30.71160896166991d0 -6.7766026111585695d0) > #C(-35.93271121340688d0 15.401892999204573d0) > #C(-15.431934743918566d0 -36.28867943896592d0) > #C(29.257686740368353d0 24.187054780462063d0) > #C(30.526474775978553d0 2.1212448096752268d0) > #C(9.799678846877466d0 29.48274216390205d0) > #C(-57.508031694431835d0 -9.241987226989396d0)) > (#C(23.82453549894591d0 9.76035109829465d0) > #C(-1.8500282743549634d0 -22.32404940490633d0) > #C(27.414179125933586d0 -21.151011261362463d0) > #C(39.54829728080921d0 27.765035631988553d0) > #C(12.52247164862034d0 -26.54106181243566d0) > #C(33.01840823349694d0 12.711354275815259d0) > #C(-46.26277283186393d0 -16.025730078665678d0) > #C(13.689725665352526d0 -40.914852816148496d0) > #C(9.52651586447311d0 35.8897373256374d0) > #C(19.300724402165603d0 21.874722867322163d0) > #C(-6.851409368745549d0 30.86669880902098d0) > #C(-39.7165617116595d0 -41.082106672199664d0)) > (#C(16.15322137718652d0 13.7424690672899d0) > #C(4.0896313068208805d0 -18.175412830335432d0) > #C(30.586416360144703d0 -7.739128567868834d0) > #C(20.79299831736634d0 38.075287780284576d0) > #C(18.520669659606956d0 -14.51809897105853d0) > #C(19.05919743147489d0 21.285919662656198d0) > #C(-30.390117648922732d0 -29.782933740495693d0) > #C(27.446944422302938d0 -24.05158389161799d0) > #C(-8.08030406326626d0 30.041457662526295d0) > #C(6.26409764836794d0 24.205237011890887d0) > #C(-18.46807124960667d0 19.71224496568477d0) > #C(-6.893953538316055d0 -48.11654990562017d0)) > (#C(45.02941567303659d0 -14.318972420035744d0) > #C(-30.767007751468217d0 -33.46605368845244d0) > #C(19.774948621442526d0 -63.07386042163265d0) > #C(90.83736290776831d0 -0.05821143355961311d0) > #C(-5.388683813928371d0 -53.57086338736182d0) > #C(67.07840492893222d0 -12.250613946520499d0) > #C(-89.18685624381455d0 19.18633375422205d0) > #C(-16.930916384405077d0 -79.95608299103853d0) > #C(49.490904786413935d0 51.94947715028759d0) > #C(53.835379156489935d0 18.082131605589165d0) > #C(16.92405483488318d0 60.14200886369383d0) > #C(-103.66318925130504d0 -32.409603661380146d0)) > (#C(22.316002506464123d0 19.5616511564433d0) > #C(8.595443693803185d0 -28.107948655481337d0) > #C(45.333694472931455d0 -9.717425912958719d0) > #C(32.028823549162716d0 53.65642640154502d0) > #C(27.893438877614635d0 -20.540310371787932d0) > #C(28.157203295314783d0 35.4855341999135d0) > #C(-42.59851935026242d0 -39.897726644022654d0) > #C(36.404486060755495d0 -38.07336643813199d0) > #C(-12.803085232273101d0 47.66117275020157d0) > #C(12.646695091680867d0 38.622329018872165d0) > #C(-29.723794924062133d0 26.925880128991754d0) > #C(-16.077485834023552d0 -75.06408284756402d0)) > (#C(-17.94438783115071d0 11.169760879262503d0) > #C(15.998252685912124d0 10.630844120672563d0) > #C(-2.0707000375689675d0 31.430198596314376d0) > #C(-42.600065588983334d0 10.064980260932817d0) > #C(7.8869208585511466d0 21.537695279009803d0) > #C(-26.866748339305765d0 11.571390711248464d0) > #C(36.0434228662842d0 -21.824709342541425d0) > #C(16.139099723299072d0 32.69785033553739d0) > #C(-26.99334778650327d0 -18.14583195161299d0) > #C(-26.29513906189075d0 -0.13608048332158873d0) > #C(-12.515618988689544d0 -24.584542794046314d0) > #C(52.30657712997232d0 5.953985078944284d0)) > (#C(21.833187239587772d0 -12.944769300887646d0) > #C(-21.624903070091552d0 -13.2084891032285d0) > #C(1.4920948105671672d0 -37.23841824289491d0) > #C(47.875163206353335d0 -12.351603696029681d0) > #C(-10.153897177183548d0 -28.395234560211765d0) > #C(35.85503132671266d0 -17.159174089954323d0) > #C(-44.58576297335098d0 20.76006955273774d0) > #C(-19.98529563613512d0 -39.32470170019464d0) > #C(34.78068132729803d0 20.00970009468559d0) > #C(31.33405312378919d0 0.9083591711059151d0) > #C(18.35400565035887d0 31.464000321464923d0) > #C(-60.990894749267675d0 -1.5204514821393116d0)) > (#C(-22.68340405312502d0 -13.554845748524526d0) > #C(-4.055773133779368d0 25.774547611386453d0) > #C(-33.96528282899564d0 17.734876351441983d0) > #C(-40.01230856716943d0 -36.515987231109676d0) > #C(-20.87242633069409d0 25.19435787118362d0) > #C(-33.438157666009246d0 -23.2837372743178d0) > #C(44.92429247334238d0 25.7522703659462d0) > #C(-23.350348917981957d0 42.84708089672137d0) > #C(-0.2146781639739821d0 -44.00887496026585d0) > #C(-16.962236950439753d0 -28.538654577921154d0) > #C(17.422417763451126d0 -32.711531474706476d0) > #C(35.245474368424574d0 58.402958438105586d0)) > (#C(1.070923003048033d0 -45.49976117851352d0) > #C(-40.31625238370431d0 15.804192248384858d0) > #C(-51.09039025725818d0 -40.005192401522066d0) > #C(29.108159712413745d0 -83.54446588763591d0) > #C(-50.50154666140998d0 -9.085090741705283d0) > #C(9.196650412326054d0 -61.65927303095956d0) > #C(-5.977790844396914d0 87.6977525267036d0) > #C(-77.93881964018594d0 -5.586544076512968d0) > #C(62.73369461560198d0 -28.990103814157667d0) > #C(33.85435634687581d0 -46.26719212824662d0) > #C(56.99749778751235d0 3.508096495371273d0) > #C(-64.84160198034354d0 85.66057778524589d0)) > (#C(31.354056662968617d0 28.17530830755009d0) > #C(9.121941286402791d0 -39.932105614700774d0) > #C(60.19966939705865d0 -14.134208717259202d0) > #C(39.50228253631242d0 71.44214230188284d0) > #C(39.27147068785536d0 -32.14683431829571d0) > #C(44.558944428208854d0 44.877939064068386d0) > #C(-61.193352355154865d0 -65.94725052200958d0) > #C(56.52801428959288d0 -55.01038133708272d0) > #C(-13.42560859043919d0 65.66914910156622d0) > #C(13.613755139995865d0 52.60519920597105d0) > #C(-36.17823026982208d0 45.03420481168524d0) > #C(-22.44632432533549d0 -96.85616087883803d0)) > (#C(38.141768004570714d0 5.861034195279016d0) > #C(-11.763945758836197d0 -35.724201570373594d0) > #C(43.75218310178621d0 -38.4983252759114d0) > #C(66.23398622149134d0 38.55183937454069d0) > #C(17.2569227574825d0 -40.84194616379694d0) > #C(53.475584616329854d0 18.212242185152768d0) > #C(-74.14726446998867d0 -22.762107688075925d0) > #C(22.263876926250934d0 -64.08155290647197d0) > #C(13.403157953308593d0 60.076544922747175d0) > #C(33.88976084038899d0 38.345374737501864d0) > #C(-15.079667076558772d0 49.049953422113525d0) > #C(-51.708667955632166d0 -75.42515680958502d0)) > (#C(-20.618212137123237d0 6.245711123924112d0) > #C(14.12649076005709d0 16.096117096617444d0) > #C(-5.853696553309987d0 29.93048635490058d0) > #C(-40.95882131895177d0 1.0457243638127274d0) > #C(2.779350105021541d0 25.82190199277796d0) > #C(-32.69702323099893d0 7.303165460963163d0) > #C(42.67678608867538d0 -5.861513117933312d0) > #C(6.856634898619923d0 37.64321760906541d0) > #C(-24.484218022394003d0 -23.801177241315465d0) > #C(-23.809456601004552d0 -7.892638100151767d0) > #C(-7.943955559468891d0 -29.490568405933196d0) > #C(49.84696684343599d0 11.572999871230085d0)) > (#C(-38.99794115091068d0 -1.825094247645259d0) > #C(13.8647138393366d0 34.96090972417087d0) > #C(-37.16048344436078d0 42.62232676697246d0) > #C(-71.07193617720822d0 -30.142033258216088d0) > #C(-10.790936633056111d0 41.41361489330593d0) > #C(-53.022744293980544d0 -11.287922118039969d0) > #C(73.92905624013825d0 10.785241646066044d0) > #C(-10.147699275076123d0 63.87212481458289d0) > #C(-20.054882531704312d0 -54.33288366464365d0) > #C(-36.92965843195169d0 -32.225101917174825d0) > #C(10.036591394542711d0 -46.404896058024455d0) > #C(60.73292429247196d0 62.74323529491393d0)) > (#C(-9.8707064547753d0 -20.875001645603312d0) > #C(-12.810690370323902d0 18.1350076206722d0) > #C(-31.977250851249824d0 -4.942610158412065d0) > #C(-5.386569997358912d0 -47.60282078583863d0) > #C(-25.708304765946036d0 6.866414284450209d0) > #C(-13.796152661592771d0 -28.878416294782454d0) > #C(20.6351417943136d0 45.7952191486022d0) > #C(-40.266653940222454d0 17.35671103346268d0) > #C(19.77228449324559d0 -28.40647489134292d0) > #C(5.072204841145442d0 -29.10574849235533d0) > #C(25.030848160107247d0 -15.849829820842308d0) > #C(-1.8310907425219263d0 54.01566559180748d0)) > (#C(-34.63239531015288d0 12.129880348945118d0) > #C(25.18016140956309d0 22.642662984341655d0) > #C(-12.450582502982801d0 49.774194342983d0) > #C(-70.29740275948649d0 -1.8519868144440634d0) > #C(5.964086014270739d0 39.01557068458193d0) > #C(-45.65170553572941d0 16.211534957529565d0) > #C(70.08638842100522d0 -15.87507596019865d0) > #C(12.06263990576474d0 61.5099899297673d0) > #C(-33.27471148715398d0 -36.997355434421976d0) > #C(-39.238213198737604d0 -17.510182483376326d0) > #C(-11.609238942222143d0 -41.83823076302034d0) > #C(75.69159789699715d0 28.518444598376178d0)) > (#C(-10.433589184452956d0 25.269795378746256d0) > #C(25.18503268498023d0 -0.7886715005188947d0) > #C(18.71885035410104d0 32.34950955568056d0) > #C(-35.07346990968247d0 39.04193951004829d0) > #C(26.27112075918271d0 13.656302616584146d0) > #C(-11.417346032093803d0 34.88822956814073d0) > #C(18.488360661800456d0 -54.55335042396361d0) > #C(43.60760931781651d0 17.50237708170321d0) > #C(-36.46296522523598d0 8.581174274980697d0) > #C(-26.640143635461783d0 20.047260429183275d0) > #C(-30.640161130257255d0 -5.29040030229155d0) > #C(41.24464333365612d0 -35.94946368608137d0)) > (#C(-30.434558439633335d0 -25.18459985593671d0) > #C(-13.952980326818956d0 37.98787627324587d0) > #C(-46.95718101694088d0 9.224281046665565d0) > #C(-40.92476846096808d0 -59.126489353657405d0) > #C(-33.573781152023344d0 29.117685245974247d0) > #C(-35.956206275217276d0 -35.9253577726309d0) > #C(56.99891562561358d0 44.75693047200474d0) > #C(-43.20004870138165d0 52.7989247752485d0) > #C(12.310666447534981d0 -56.682459948239966d0) > #C(-11.66098668571967d0 -45.91246969243745d0) > #C(29.933530909779478d0 -38.32666322757159d0) > #C(37.770059766451844d0 85.03167469125832d0)) > (#C(4.820374152340234d0 -33.31173006914203d0) > #C(-30.877397070183427d0 9.350302942781774d0) > #C(-32.077159843923965d0 -34.40486834359233d0) > #C(30.035997481513306d0 -50.92595769245476d0) > #C(-26.849117784344582d0 -15.391605648507609d0) > #C(18.519014716241873d0 -34.13381053406348d0) > #C(-21.870235681985264d0 41.7776622057138d0) > #C(-42.707124241474325d0 -24.662380841336333d0) > #C(48.14581575155745d0 1.0218928407120362d0) > #C(36.12893704606026d0 -19.554040105622583d0) > #C(41.995778497936485d0 24.899409603267873d0) > #C(-78.98214842285947d0 49.557780081898976d0)) > (#C(28.901132260240573d0 -2.633149627236893d0) > #C(-12.869166301154046d0 -23.146075205054267d0) > #C(18.869851057824718d0 -32.88340751468303d0) > #C(57.06971369970708d0 17.481903269867757d0) > #C(6.741152894113393d0 -32.522831659813306d0) > #C(39.29638979889809d0 2.619140658502996d0) > #C(-60.73201556211574d0 2.4662831279873565d0) > #C(3.2558722033821508d0 -55.37765184875339d0) > #C(19.99356166683056d0 43.12772414492073d0) > #C(34.867096744338454d0 23.57902350192204d0) > #C(2.3586060778351623d0 38.29132684039976d0) > #C(-67.39423763752791d0 -39.348247344970964d0)) > (#C(-21.96284033636547d0 -7.311736525485502d0) > #C(3.892865623322355d0 24.52905791414283d0) > #C(-27.917494685873326d0 20.670971300117685d0) > #C(-38.59844243859084d0 -27.37300402032812d0) > #C(-15.625126801885937d0 23.447045332306217d0) > #C(-32.818992169295704d0 -17.7081468232015d0) > #C(44.125522996773476d0 23.810038452393606d0) > #C(-18.838062911201995d0 43.196877707808156d0) > #C(-7.808937617673814d0 -40.94703252666546d0) > #C(-19.43121092223475d0 -25.354573258887292d0) > #C(9.73925749668594d0 -34.864010343105804d0) > #C(45.41536712431794d0 45.029349933125495d0)) > (#C(25.428224465779632d0 18.052892396477027d0) > #C(5.165006666633188d0 -30.4931489006622d0) > #C(43.521479057344735d0 -10.79045859993401d0) > #C(35.05096365774992d0 53.173604374047336d0) > #C(26.752611017492033d0 -21.723222126523495d0) > #C(30.539047918130965d0 31.04071179442749d0) > #C(-44.076922394802445d0 -36.95581978039401d0) > #C(36.643927652224995d0 -39.70428287509532d0) > #C(-11.207210378551839d0 45.82886706164861d0) > #C(9.926572024796219d0 36.87253472108956d0) > #C(-26.877781414034658d0 27.98469324074953d0) > #C(-18.509857650512746d0 -69.99487033207434d0)) > (#C(9.470643655197609d0 -19.05129624167745d0) > #C(-19.829625871825957d0 -0.76352227489566d0) > #C(-13.04128543913524d0 -26.326057842700045d0) > #C(28.501694265002644d0 -29.26655904682741d0) > #C(-17.747157633384166d0 -13.878811924812743d0) > #C(16.214298566999403d0 -22.52023222276995d0) > #C(-19.978192939322046d0 30.96274176440646d0) > #C(-29.365900575552207d0 -20.467911068284877d0) > #C(30.478057395803425d0 3.0881071812908836d0) > #C(24.47049289828323d0 -9.080190663908265d0) > #C(20.990443496426153d0 15.177046849993571d0) > #C(-46.288205002809235d0 20.92244126922704d0)) > (#C(-0.4138324197221319d0 -24.160801106932144d0) > #C(-20.44554992307933d0 11.473183843416265d0) > #C(-26.594851020000732d0 -20.238143907758097d0) > #C(14.307926392169568d0 -43.261063608898496d0) > #C(-26.54740677771045d0 -4.685330652086322d0) > #C(2.851598144181394d0 -33.011632457203206d0) > #C(-3.8135966273242152d0 43.95346971668886d0) > #C(-40.74039514134188d0 -0.9917913739661586d0) > #C(30.329613148625985d0 -15.85038076837922d0) > #C(15.706569467852606d0 -21.6060765509773d0) > #C(27.68771031852546d0 0.2479924173812238d0) > #C(-26.09609673015695d0 42.34502262522135d0)) > (#C(-15.230723427049004d0 20.970846332143402d0) > #C(23.3870428753159d0 1.863109891892151d0) > #C(14.412059725796112d0 34.67526541807474d0) > #C(-40.11964866350436d0 32.75161833727436d0) > #C(21.664170618455824d0 20.422208393326414d0) > #C(-23.045322319865885d0 31.735076582322865d0) > #C(35.18759324638856d0 -43.00340360555973d0) > #C(38.93678609523003d0 29.26745764343928d0) > #C(-41.21301250752561d0 -4.347918706757092d0) > #C(-32.6241701658587d0 11.845975381486237d0) > #C(-31.193079829672428d0 -21.215823539809655d0) > #C(63.13253285642941d0 -25.0171394145108d0)) > (#C(17.908740532829924d0 -36.41175435203371d0) > #C(-41.67728469330487d0 0.48817172564605027d0) > #C(-24.47999962428022d0 -49.87692827700089d0) > #C(60.078712041256466d0 -55.05501964440957d0) > #C(-35.30768843773428d0 -29.529843692416463d0) > #C(30.335774126866646d0 -42.03414472480202d0) > #C(-36.37018438918473d0 65.37698593350984d0) > #C(-59.19119178059873d0 -33.7848025685736d0) > #C(55.55813475120736d0 3.0060861892304405d0) > #C(45.83642297480066d0 -18.896307190608574d0) > #C(35.34415287889066d0 24.42048566393487d0) > #C(-75.95630177892846d0 31.469395354557555d0)) > (#C(-16.720882917105108d0 -31.221170695773626d0) > #C(-16.410892613327174d0 28.432569845428006d0) > #C(-49.495768039140025d0 0.27940519137694675d0) > #C(-30.663814159636498d0 -65.19919237125113d0) > #C(-34.19340580776849d0 25.38173768713125d0) > #C(-33.65868588954936d0 -34.68050327666633d0) > #C(47.556510686137656d0 39.09395626047178d0) > #C(-32.61462458323595d0 40.99848985305596d0) > #C(9.297444100144606d0 -39.51564452359716d0) > #C(-3.077145253963518d0 -32.12101792596819d0) > #C(25.258347785242243d0 -16.587317074794704d0) > #C(-1.1149663449015463d0 54.67303259108982d0)) > (#C(-29.519448846778406d0 -32.960954810604825d0) > #C(-13.206832267409984d0 42.5809895955687d0) > #C(-64.18014506935779d0 8.988017188161631d0) > #C(-41.50138378218779d0 -83.6745176547366d0) > #C(-45.62008665188961d0 30.692477910972272d0) > #C(-41.8323983043705d0 -48.2969499445668d0) > #C(62.91923501414777d0 61.11280378238048d0) > #C(-52.635618588304425d0 57.544857481749695d0) > #C(15.072092205378215d0 -60.3577050144724d0) > #C(-6.954814446216304d0 -49.85474295805166d0) > #C(35.02771405175301d0 -31.785540378941363d0) > #C(12.950297190472522d0 83.16289068505031d0)) > (#C(-52.253035869055054d0 -13.468293807620256d0) > #C(9.511128626756765d0 50.27064745375111d0) > #C(-54.17779996287664d0 44.35863820166044d0) > #C(-85.50479169220449d0 -56.261962282064594d0) > #C(-27.954222775701012d0 50.725445385793805d0) > #C(-61.33401961779744d0 -23.471001018728117d0) > #C(96.06862655758043d0 32.885278675666854d0) > #C(-30.56276179206109d0 85.87222541078455d0) > #C(-11.870252825898019d0 -73.56281863410814d0) > #C(-34.35969950563275d0 -53.80606292706412d0) > #C(17.9417478757436d0 -56.65447759019855d0) > #C(70.17530728200464d0 85.4178095898352d0)) > (#C(-19.762113525907175d0 10.158194664706262d0) > #C(17.389682519480775d0 9.149907607225007d0) > #C(1.961268469319975d0 32.746674505608496d0) > #C(-46.65975728919576d0 16.523403956097386d0) > #C(13.807787483308669d0 23.8362274746637d0) > #C(-23.8502371136519d0 20.27497775292117d0) > #C(39.430947446718285d0 -33.11629190050648d0) > #C(27.30552902427976d0 33.064950696585775d0) > #C(-31.694453803289168d0 -12.015919381658925d0) > #C(-28.19419965427059d0 -1.412520382461194d0) > #C(-19.49662944637945d0 -17.672103428695927d0) > #C(48.635327625456846d0 -5.817099966262813d0)) > (#C(-25.063424487664264d0 19.53871570363053d0) > #C(24.990427423564466d0 14.142109773227128d0) > #C(3.0952124429184136d0 39.45601460715797d0) > #C(-53.53300602350323d0 24.559573187993053d0) > #C(16.763493902242114d0 31.09422409317058d0) > #C(-32.914313674435576d0 25.290644059550495d0) > #C(45.56324558934089d0 -35.689919352135554d0) > #C(32.79947449223501d0 40.87323300851769d0) > #C(-39.73252046183502d0 -16.1434634848518d0) > #C(-34.07915983186448d0 -0.35367931967931265d0) > #C(-24.17691223139316d0 -28.45013187985803d0) > #C(66.70685283423418d0 -10.748624843970362d0)) > (#C(-8.329658905640894d0 24.004926213700557d0) > #C(24.89172078244279d0 -4.709324103177041d0) > #C(23.832687820748152d0 33.479655016505326d0) > #C(-35.358425941841304d0 46.82976828430387d0) > #C(26.475539258768592d0 16.511235717184206d0) > #C(-13.083152536907267d0 33.551285446571185d0) > #C(18.88916447533497d0 -53.67693243793628d0) > #C(46.22215780196523d0 16.55512136941239d0) > #C(-38.70675951665116d0 6.504968365250237d0) > #C(-25.520596343211466d0 17.355182831047426d0) > #C(-29.393484457953583d0 -8.539075460019786d0) > #C(45.38556179267652d0 -33.04589236403725d0)) > (#C(18.521647506132176d0 21.953745378506007d0) > #C(11.141659632980137d0 -25.37704340241747d0) > #C(38.859326162563185d0 3.212817989568339d0) > #C(18.74143510413178d0 53.56386152253509d0) > #C(31.156784406963876d0 -14.520984020213668d0) > #C(21.746511358701245d0 31.520211433436785d0) > #C(-33.014355791657366d0 -43.78940355948987d0) > #C(39.410271003707564d0 -29.94137477826621d0) > #C(-17.14942254668886d0 37.75688176691537d0) > #C(-0.5897284306765256d0 31.8257632079238d0) > #C(-24.4832279886303d0 23.384845215009907d0) > #C(-7.244612333498549d0 -54.21211516125954d0)) > (#C(38.05432094806907d0 -1.9965701749563003d0) > #C(-18.67758397054132d0 -32.58053173388286d0) > #C(29.069431234838788d0 -44.437154238917586d0) > #C(75.85669407186427d0 19.909252741059333d0) > #C(7.801565924768519d0 -44.14546457258959d0) > #C(49.594905204112024d0 3.6312488610367186d0) > #C(-74.88984018030386d0 5.713088619915948d0) > #C(-5.005175165822334d0 -69.39584977044144d0) > #C(28.19363783309493d0 49.83048943762397d0) > #C(39.75703290158077d0 27.279410987639956d0) > #C(2.2434224599568786d0 46.781049537442236d0) > #C(-76.7381203670061d0 -41.667153478218694d0)) > (#C(-21.87237658774182d0 25.441981283093412d0) > #C(32.11157618103899d0 8.778225956805153d0) > #C(11.38859734293333d0 37.193470651424235d0) > #C(-49.28064043954795d0 32.92075363393655d0) > #C(21.610682330925805d0 30.015860228484033d0) > #C(-31.769922039881198d0 27.356487717162697d0) > #C(36.08337579419779d0 -38.69550943631815d0) > #C(36.48415565058882d0 34.256461166417395d0) > #C(-39.75630438747879d0 -13.253096532710957d0) > #C(-32.89538797783722d0 3.8126070322983914d0) > #C(-24.65079673912789d0 -25.403837578404893d0) > #C(60.551961478362884d0 -22.595214379873024d0)) > (#C(-2.601075704663494d0 -21.77583625539779d0) > #C(-20.175371653652313d0 11.277521717261438d0) > #C(-18.419453684744262d0 -12.599189986051973d0) > #C(-1.3982638527949245d0 -39.60148568059701d0) > #C(-24.09268463287927d0 1.3295674780830158d0) > #C(-1.4324015269824872d0 -25.854296068206345d0) > #C(7.275813258471929d0 31.120983811264914d0) > #C(-31.113295365230854d0 6.142922288568926d0) > #C(21.535213878468337d0 -19.619033216881846d0) > #C(9.59887713968955d0 -23.175285598193962d0) > #C(23.701214384198256d0 -4.337319970628313d0) > #C(-13.554628421015678d0 44.654667242115494d0)) > (#C(30.702753741279448d0 -35.21364170186993d0) > #C(-37.94686593534519d0 -15.902053597285782d0) > #C(-14.261156504755363d0 -54.21201474235211d0) > #C(77.06310775923716d0 -49.32419079052036d0) > #C(-33.846823439227364d0 -42.17510854647049d0) > #C(47.92578586769071d0 -41.99478714535698d0) > #C(-57.94606725056936d0 62.19471185692093d0) > #C(-57.5285730083683d0 -54.33892039985521d0) > #C(65.73098420369759d0 16.228120586014036d0) > #C(56.877240020336316d0 -12.351658265171379d0) > #C(42.13368484386872d0 39.377555781096305d0) > #C(-98.74340274916692d0 29.846884470465273d0)) > (#C(-33.00972615800825d0 31.216537206620437d0) > #C(38.522421934176876d0 18.23231166295643d0) > #C(12.733270065553619d0 58.94161330024553d0) > #C(-84.15172720296295d0 37.82690559017644d0) > #C(25.45625331032939d0 46.471591362108136d0) > #C(-54.335439287380815d0 32.32121622642132d0) > #C(67.17647477108456d0 -51.824783836548235d0) > #C(48.06620596973454d0 63.099174049345955d0) > #C(-61.12148189506135d0 -28.606202894320987d0) > #C(-55.77734601677986d0 1.3897966343412715d0) > #C(-35.6981171731879d0 -47.132821298089716d0) > #C(103.95839003295353d0 -11.186432989671001d0)) > (#C(-23.30656944998713d0 5.408280177579011d0) > #C(16.216153965050648d0 14.979056675848053d0) > #C(-11.664602202032855d0 38.43765990635665d0) > #C(-50.58388198267216d0 -3.8856292574386764d0) > #C(1.1473600968223203d0 28.917717198251694d0) > #C(-30.607075468265574d0 -0.5854197446031364d0) > #C(42.9774396329391d0 -9.10870850105401d0) > #C(6.608346811466918d0 41.053474930555076d0) > #C(-20.649800199196914d0 -30.0264607243149d0) > #C(-27.965976252249966d0 -15.717989427603573d0) > #C(-2.2403836461169466d0 -27.586049712987105d0) > #C(50.38469844604356d0 24.569349390979507d0)) > (#C(-23.460839286966646d0 -5.277817403152877d0) > #C(7.87631497088617d0 20.896716587050186d0) > #C(-19.437148993621314d0 29.891475109037472d0) > #C(-47.295844583967d0 -16.651666325547282d0) > #C(-8.942532904344553d0 29.746173525397325d0) > #C(-33.23760845488699d0 -10.100790502337198d0) > #C(45.02737993024286d0 5.884945734609332d0) > #C(-5.939118481392832d0 43.7369249301687d0) > #C(-13.09478744301039d0 -36.06444814868297d0) > #C(-20.417592358938805d0 -23.225052222953526d0) > #C(4.947168873115732d0 -31.08443137543692d0) > #C(46.7842608557594d0 37.23366974784936d0)) > (#C(-16.79984147839345d0 -19.536273040526527d0) > #C(-7.768285462335109d0 25.878599302728848d0) > #C(-37.471942304153245d0 7.4881396294404015d0) > #C(-25.491708399024198d0 -42.823039161809405d0) > #C(-24.560325964145644d0 16.19832833807923d0) > #C(-18.04711253210599d0 -25.821032596405438d0) > #C(31.576154121461485d0 29.676360522139365d0) > #C(-30.221251121063556d0 28.931007790103955d0) > #C(11.949116923390802d0 -34.084457346596196d0) > #C(-2.3432616997277353d0 -30.884919592381216d0) > #C(21.375360120854353d0 -18.479092312923655d0) > #C(9.27528733880342d0 53.49506486132164d0)) > (#C(-15.633773410188725d0 21.9006300890728d0) > #C(29.250331360133284d0 1.369339889799491d0) > #C(15.65965905630474d0 34.662129546948634d0) > #C(-42.179376893038295d0 36.0619456596046d0) > #C(22.593986017262825d0 24.510401541066784d0) > #C(-23.908273134091953d0 27.829406387574615d0) > #C(30.64066908009727d0 -39.98877609606083d0) > #C(38.223692302784904d0 30.847134974085357d0) > #C(-39.594489935295734d0 -6.607107500437483d0) > #C(-32.666291071835865d0 8.22473012854445d0) > #C(-28.5266852216892d0 -21.660094006871972d0) > #C(61.19356713700386d0 -21.89865391784327d0)) > (#C(19.501657934425662d0 24.3999139670702d0) > #C(21.625801449756846d0 -27.797393683477083d0) > #C(38.97732645525977d0 -7.586295565081594d0) > #C(15.242398551591574d0 55.12238192537854d0) > #C(34.016897516230785d0 -13.570603107944674d0) > #C(14.569776435906382d0 37.084543058217875d0) > #C(-28.836169512223776d0 -47.91594917392004d0) > #C(46.106076184384875d0 -22.94533328213083d0) > #C(-27.903594038671002d0 33.973787926689326d0) > #C(-9.16960321639499d0 37.449869161327115d0) > #C(-35.29008516121928d0 15.773575666548513d0) > #C(14.903594979290952d0 -67.97428928543329d0)) > (#C(16.604102768007593d0 -19.173434998883906d0) > #C(-25.44257509861463d0 -4.719815073062424d0) > #C(-4.34853357780935d0 -23.883332814553956d0) > #C(41.9235660238632d0 -22.900968516854455d0) > #C(-15.278647953274568d0 -23.52480565550341d0) > #C(26.36551227077001d0 -16.35269543185695d0) > #C(-35.141252532163044d0 28.397400994874673d0) > #C(-26.189515294710368d0 -38.0414095878342d0) > #C(33.45848123347033d0 17.637239579817177d0) > #C(34.89020299707339d0 -3.071729149598954d0) > #C(19.822315410372283d0 27.246296228786232d0) > #C(-66.276639687873d0 6.067878696412417d0)) > (#C(30.342185893790788d0 1.090517832128676d0) > #C(-12.694855470392671d0 -26.445462131996255d0) > #C(31.134263091998037d0 -31.76448192077431d0) > #C(53.64740385756998d0 36.8066746874992d0) > #C(19.146963396402978d0 -33.8135718974868d0) > #C(38.72435629388532d0 21.94019968998657d0) > #C(-54.275596700351194d0 -22.051796817483314d0) > #C(24.428130413324062d0 -51.52983212425596d0) > #C(-1.2692840639881204d0 48.015437709494805d0) > #C(15.600871464682514d0 36.60031194587394d0) > #C(-20.380737391809397d0 35.18641613390375d0) > #C(-31.884735017822756d0 -68.21354837814347d0)) > (#C(13.071699939851142d0 35.13971243564858d0) > #C(30.346854346735224d0 -18.642517569433217d0) > #C(26.80731419376865d0 14.696473395491626d0) > #C(6.712538600860942d0 54.29672668675683d0) > #C(36.52832880174037d0 -8.49494934730215d0) > #C(8.828373328725718d0 41.56178072475435d0) > #C(-16.118998011950467d0 -54.039410589615784d0) > #C(51.654024625815495d0 -18.077213017788978d0) > #C(-30.260983687945487d0 33.19254993837926d0) > #C(-12.530050559427208d0 38.82989267100186d0) > #C(-37.870148916292436d0 12.548944913503004d0) > #C(14.951364177912057d0 -68.3787085598245d0)) > (#C(-2.9398216126826036d0 38.12483158521925d0) > #C(31.940065359647388d0 -6.822275145572181d0) > #C(37.835018286730275d0 25.92861392671397d0) > #C(-28.222781997674907d0 70.23898683402058d0) > #C(43.538137023515446d0 12.436920478893777d0) > #C(-12.258632954975909d0 49.14580692415894d0) > #C(4.613809957337834d0 -69.17453229548387d0) > #C(66.56669420241535d0 8.016097716176349d0) > #C(-51.73562208387817d0 18.057526846973463d0) > #C(-33.22584826479277d0 34.783635574103485d0) > #C(-44.45602974987527d0 -6.740954039300797d0) > #C(57.46105480897807d0 -62.09674301975206d0)) > (#C(0.30728239438675864d0 20.19531580211858d0) > #C(10.913971968689456d0 -20.998858421113482d0) > #C(22.05453393212482d0 4.338809339220882d0) > #C(-9.443586255276774d0 33.24429555009703d0) > #C(21.306088599150442d0 4.097993508118108d0) > #C(-5.90574414866445d0 23.51545641044791d0) > #C(5.828857948096298d0 -30.2266737938696d0) > #C(30.70040725109915d0 6.257368540072859d0) > #C(-24.52012340989803d0 9.618363601380171d0) > #C(-18.66160214819461d0 15.788903509161505d0) > #C(-20.223577812675373d0 -6.059241997959253d0) > #C(29.455642565272225d0 -25.83125873827528d0)) > (#C(4.648765902683199d0 -25.789204170004314d0) > #C(-17.55054555557373d0 8.457767921666616d0) > #C(-13.664130614912425d0 -16.091756026626634d0) > #C(20.13538212105213d0 -29.245303486628945d0) > #C(-22.146698063340786d0 -10.073706749387494d0) > #C(13.220215845306964d0 -24.305053809125575d0) > #C(-12.532421304208263d0 37.23611707500609d0) > #C(-35.239302429919746d0 -10.252779759476523d0) > #C(28.667907452141236d0 -4.9489294369913175d0) > #C(22.392872694078157d0 -17.58729456703041d0) > #C(25.42397406568116d0 8.92042418628292d0) > #C(-32.31185533416789d0 28.683071434462295d0)) > (#C(17.762537803269055d0 -41.17274713095345d0) > #C(-38.81010576430603d0 1.9600737132367776d0) > #C(-18.210748013241584d0 -45.26770906769136d0) > #C(52.5034682... [truncated message content] |
From: Michael A. K. <ma...@ll...> - 2001-10-25 20:43:15
|
The command (EIG A) seems to be okay, but not (EIG A T). This results in ZGEEV complaints as well as inconsistant error reports for succesive calls. A script demonstrating this follows... ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Demo a ZGEEV bug in MATLISP with ;; ;; CMU Common Lisp 18c, running on koerber.llan.ll.mit.edu ;; Send questions and bug reports to your local CMU CL maintainer, ;; or to cmu...@co.... and cmu...@co.... respectively. ;; Loaded subsystems: ;; Python 1.0, target Intel x86 ;; CLOS based on PCL version: September 16 92 PCL (f) ;; MATLISP/Pre 2.0 (use-package :m) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Okay read in a test array from the data set (see bottom of file) (with-open-file (in "tmp-ar.out" :direction :input) (defparameter tst-array (read in))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; BEGIN THE DEMO ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; This first block runs through the computational process with no ;; errors. It is missing the MULTIPLE-VALUE-BIND blocks (setf tst-matrix (make-complex-matrix tst-array) tst-a (m* (ctranspose tst-matrix) tst-matrix)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Finally note the error (eig tst-a t) ;; ** On entry to ZGEEV parameter number 10 had an illegal value ;; ** On entry to ZGEEV parameter number 12 had an illegal value ;;; Running this interactive will yeild different results... ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; THE DATA FILE...save this as "tmp-ar.out" #2A((#C(16.005199412100566d0 47.07791625264504d0) #C(29.826457010016536d0 -35.54662313696197d0) #C(37.91375316204245d0 -19.17281260883403d0) #C(34.078224268488945d0 67.62670766716862d0) #C(38.13652518200501d0 -33.887006924403416d0) #C(42.759393512198166d0 32.918173842750406d0) #C(-71.39823869300109d0 -32.40367765926753d0) #C(27.14470974654928d0 -73.75317137227977d0) #C(16.448811595962425d0 63.0306188816642d0) #C(41.241561727845394d0 41.5135501218996d0) #C(5.937864642568172d0 54.01449571738566d0) #C(-100.12720430100853d0 -34.382131284070695d0)) (#C(23.198438739089735d0 -3.2958171922133435d0) #C(-14.798689856548828d0 -15.525503203611864d0) #C(17.905028974905527d0 -37.1099970013271d0) #C(36.724388182668314d0 -3.4097968555987936d0) #C(-8.202167726494334d0 -22.15776441397034d0) #C(22.765402850974013d0 -14.246823450586142d0) #C(-29.837503042439536d0 27.610590873165055d0) #C(-27.69352908727416d0 -25.603429543977743d0) #C(29.26292734178589d0 6.4705722866843915d0) #C(25.28672247416617d0 -8.324469887780374d0) #C(23.88214661871792d0 10.100304108596347d0) #C(-36.97796513733695d0 26.918809687378666d0)) (#C(-19.557419012822034d0 -16.01876797399043d0) #C(-9.51687364032257d0 25.14721169586665d0) #C(-35.46821117315311d0 4.116607731781016d0) #C(-22.55925481925319d0 -40.20579281634353d0) #C(-23.085928570747722d0 14.484677851031586d0) #C(-17.4998584340949d0 -24.284469427255893d0) #C(25.77614196159949d0 33.05447047033497d0) #C(-29.979368594305065d0 24.089878113232864d0) #C(16.2325585361298d0 -30.77869936446934d0) #C(0.30727870340845903d0 -28.10171520956098d0) #C(22.678763527863147d0 -15.955154218619441d0) #C(3.8851448943308355d0 46.34968269847154d0)) (#C(-22.937677533499805d0 12.761721168716882d0) #C(21.315429264837444d0 18.83295518657326d0) #C(-9.150000510781709d0 35.56094887921642d0) #C(-46.94667929802831d0 7.678921173141417d0) #C(4.844694486412525d0 28.737681603101393d0) #C(-30.57106678163329d0 7.216650033376111d0) #C(42.703123457005354d0 -11.533940863834651d0) #C(12.167847498141589d0 39.47633922261261d0) #C(-25.17568211763151d0 -26.531324192443176d0) #C(-26.880513070024065d0 -10.8978923340387d0) #C(-7.401550946912295d0 -28.458139382803562d0) #C(46.757656411101294d0 12.249717138832954d0)) (#C(-13.56814824052778d0 24.123790896398027d0) #C(29.05381752991641d0 4.403849836500797d0) #C(9.84951924595866d0 39.07668076500276d0) #C(-41.97494945374203d0 31.663796739354957d0) #C(20.75301717893658d0 22.06256309568527d0) #C(-23.66768499463233d0 23.865238658995487d0) #C(33.03702496188954d0 -37.73200787112589d0) #C(34.05816832014353d0 29.6586879121717d0) #C(-38.536506691388226d0 -11.85558712710001d0) #C(-34.77192722069896d0 5.885893865952018d0) #C(-21.59392776802898d0 -22.179506459891794d0) #C(52.542098466081214d0 -10.813227449552333d0)) (#C(20.36916910571722d0 3.5446044034764d0) #C(-3.5859771169017205d0 -21.756925513783962d0) #C(23.670942951988447d0 -16.06012387188525d0) #C(31.81978046881639d0 20.25002685966308d0) #C(10.628516075640219d0 -20.39792415229947d0) #C(22.47721964638637d0 10.907253852484363d0) #C(-32.9518303539806d0 -16.665469122363547d0) #C(13.815002177173396d0 -30.368747441613984d0) #C(0.7063684177762941d0 29.202053796469706d0) #C(10.284557400745966d0 22.520655600536365d0) #C(-10.93977441001412d0 20.693221232931364d0) #C(-18.904000592002348d0 -31.78710325395103d0)) (#C(30.46652312166895d0 -7.954182213026129d0) #C(-18.28476861378651d0 -28.682737449328883d0) #C(23.468407257697773d0 -40.2734815860169d0) #C(61.097276708636635d0 7.440043455989577d0) #C(2.124699597951931d0 -34.4674087761037d0) #C(38.658719492073004d0 -0.4640322349085191d0) #C(-55.06797925233883d0 4.166138081180903d0) #C(-2.970001681596121d0 -50.0726743288685d0) #C(21.107794356427465d0 40.252503164665455d0) #C(30.824454285995248d0 21.188093829239005d0) #C(0.17783263380597525d0 36.479763291975026d0) #C(-53.69663365420271d0 -30.456233869541414d0)) (#C(-11.143887328478538d0 20.79853099777082d0) #C(25.42411902356644d0 4.381869277689784d0) #C(9.480953113066764d0 32.63585615134894d0) #C(-33.92788469899318d0 27.741374722242934d0) #C(18.11765428905662d0 18.36795203800819d0) #C(-19.51426927465894d0 20.698231810035146d0) #C(27.55685967645361d0 -32.26699152575162d0) #C(28.991681354917375d0 23.675938037740806d0) #C(-32.52914943846797d0 -8.220192082169266d0) #C(-26.875457076142787d0 5.866557848721024d0) #C(-19.778632927020524d0 -18.082087110132754d0) #C(42.80794264134054d0 -13.33975854129635d0)) (#C(13.351731245561357d0 14.40178602909276d0) #C(10.356586771940307d0 -18.639113042615573d0) #C(27.30252929529623d0 2.6645900506457054d0) #C(10.941327995705267d0 34.22799719621003d0) #C(19.146344970196953d0 -8.362077718793147d0) #C(10.687342474568803d0 20.79580320713312d0) #C(-17.036403585521327d0 -29.863850016303964d0) #C(26.49189934717548d0 -15.864105482994917d0) #C(-15.783917237174197d0 21.94988184785033d0) #C(-4.399255169412217d0 22.29785857257167d0) #C(-18.497324257421294d0 9.337647442177557d0) #C(4.611847412785996d0 -35.0083563604576d0)) (#C(-20.427601090208906d0 -4.7827806408477205d0) #C(4.2764960026941115d0 21.249017402286437d0) #C(-22.96528846676614d0 19.302591691330665d0) #C(-34.57945943175243d0 -20.635197055670748d0) #C(-10.675683205197554d0 20.041160084144167d0) #C(-23.686455112170933d0 -9.867695698100231d0) #C(36.59189900906817d0 14.825760957058872d0) #C(-12.146895431202907d0 31.699636240981505d0) #C(-3.8350919084728545d0 -30.74838978746835d0) #C(-14.975589460162508d0 -20.94157387708863d0) #C(9.508959963440738d0 -24.074500373394567d0) #C(24.1186358712507d0 32.1705116404263d0)) (#C(-16.809229858652024d0 10.64614608834553d0) #C(17.326394687551172d0 12.309759891314783d0) #C(-6.440300562661456d0 29.68465271951954d0) #C(-40.36217464737333d0 7.201264298006153d0) #C(5.659591880888096d0 22.11147708933589d0) #C(-23.744510928438427d0 9.086835677771031d0) #C(36.16758933264222d0 -14.860877877641677d0) #C(12.014924474276373d0 31.45389566041442d0) #C(-22.589837196855772d0 -21.117735786032345d0) #C(-25.795723680385592d0 -6.962180446580348d0) #C(-8.082613602260205d0 -23.996552513370098d0) #C(39.753967069192704d0 9.634421817109795d0)) (#C(4.6639850364767135d0 -20.026791920386774d0) #C(-22.772827078181287d0 3.2781370378143935d0) #C(-19.73550205591679d0 -24.368811405764035d0) #C(20.77892089344874d0 -34.32290108108991d0) #C(-20.42872486396446d0 -10.85538500470752d0) #C(11.364963451920733d0 -25.69669414489729d0) #C(-13.989666464219805d0 34.82299400748158d0) #C(-30.420531175138656d0 -11.337389924841414d0) #C(30.78518769876881d0 -3.561045601021239d0) #C(19.876800884382547d0 -13.666746170698532d0) #C(23.959705431827203d0 10.084924984689255d0) #C(-32.72128203326361d0 26.269919299328937d0)) (#C(8.40042055640669d0 23.07388932527355d0) #C(20.356970456110343d0 -17.84171440960684d0) #C(34.824049988821045d0 14.288943821391573d0) #C(-1.1975493782747595d0 49.37110134180481d0) #C(27.560997714267337d0 -0.569753376667717d0) #C(3.23633741438303d0 32.89137714179628d0) #C(-7.618726350526517d0 -46.27057904835429d0) #C(40.21722287275555d0 -7.347188429116369d0) #C(-31.816618300979904d0 21.688908083405334d0) #C(-13.797538768455448d0 28.155657943176998d0) #C(-30.538474346489945d0 2.9895244366358895d0) #C(20.74971482158006d0 -47.25660091014599d0)) (#C(-7.126445159358812d0 18.797909175016795d0) #C(21.26313358467199d0 0.019686058254233307d0) #C(14.408978393641478d0 28.243053754310743d0) #C(-27.553714746320686d0 31.73834160068036d0) #C(17.02023605641506d0 14.593147998914493d0) #C(-15.661796301636723d0 20.871398863728672d0) #C(17.646410557224197d0 -31.60121079708061d0) #C(27.402441364610983d0 16.605159624549763d0) #C(-30.589414677739015d0 -4.092589045940567d0) #C(-22.7860496859832d0 9.91228768911711d0) #C(-18.600615488118017d0 -15.739081534167408d0) #C(39.90151537635921d0 -16.32818944371095d0)) (#C(-19.87520315057365d0 10.42991689484596d0) #C(17.763845019337953d0 15.581969761958192d0) #C(-8.651260396074676d0 32.82293589334493d0) #C(-44.089617561051355d0 5.898863156325472d0) #C(5.724601918488497d0 24.760430038165858d0) #C(-27.804646283718583d0 7.061364750806994d0) #C(38.81067282721568d0 -12.025597971875193d0) #C(10.828422665452692d0 35.019337354281376d0) #C(-23.077309402281298d0 -24.992996384688645d0) #C(-27.452481089465106d0 -8.962683211685171d0) #C(-6.736373148126053d0 -26.399626736757256d0) #C(43.797374929409465d0 13.389296715683468d0)) (#C(20.006089247505972d0 10.284227284026427d0) #C(1.507388805478719d0 -22.625597105132563d0) #C(30.678766309519073d0 -12.10465959138954d0) #C(28.99229295829483d0 31.746697951116d0) #C(16.923007298866096d0 -17.29162103699469d0) #C(20.94194454737485d0 18.139557733135796d0) #C(-32.263318650823535d0 -25.906192480017136d0) #C(22.703284338818378d0 -27.938798424809104d0) #C(-7.637357968736136d0 32.45277649168197d0) #C(7.5255661618171255d0 27.45090394444313d0) #C(-18.38569733093254d0 19.38017627661041d0) #C(-10.874599886745848d0 -43.12682620595745d0)) (#C(23.53339872007615d0 13.773313007350964d0) #C(3.146552737658422d0 -28.425858797998302d0) #C(39.19776299610373d0 -12.552203709344589d0) #C(35.22044910619708d0 40.5205588814613d0) #C(21.634664670030816d0 -23.24580280833951d0) #C(26.36995507193284d0 25.19653386500839d0) #C(-41.55793908105909d0 -32.81832210054749d0) #C(28.097515861265826d0 -37.26233335108873d0) #C(-8.459124863124769d0 42.38739040558611d0) #C(11.3193040695607d0 34.40356048992171d0) #C(-22.428604607719702d0 27.313449626749033d0) #C(-16.789585655377067d0 -58.24703665346114d0)) (#C(-0.6084970548442286d0 -29.532108853226916d0) #C(-28.164036166697592d0 14.971133303000082d0) #C(-33.226323177288684d0 -25.065269921844695d0) #C(13.597051154408128d0 -51.12964370996891d0) #C(-35.22367760241353d0 -5.990620128731898d0) #C(5.83422965785773d0 -40.373262532659375d0) #C(-6.954531988646704d0 55.527052860398925d0) #C(-49.59561394170671d0 -2.376245806745374d0) #C(42.272037196632816d0 -20.56963637714144d0) #C(22.002155727740774d0 -28.458785576763194d0) #C(38.766945656386476d0 0.6980734533018431d0) #C(-33.59312544740101d0 49.830822837862385d0)) (#C(-10.965856383178863d0 -20.098842883571784d0) #C(-13.578151834955891d0 18.882764211902582d0) #C(-33.572154393850305d0 -9.247101892200035d0) #C(-7.1983955408958415d0 -44.74021366251536d0) #C(-25.49195794016583d0 6.480992561130666d0) #C(-7.801677260802088d0 -29.99322788410162d0) #C(17.64699367607364d0 42.34057977382671d0) #C(-37.47105499331694d0 14.466975595019427d0) #C(26.410368987890138d0 -27.61329383342676d0) #C(8.0125520259677d0 -32.332668354370135d0) #C(28.345305080495482d0 -9.625657806045606d0) #C(-15.813544063380162d0 49.38867992999511d0)) (#C(-9.33137783968364d0 -18.663795611491395d0) #C(-14.043145694604d0 17.524482151220464d0) #C(-31.029495422489457d0 -5.2729071347279515d0) #C(-7.502968858188858d0 -39.790186102180755d0) #C(-24.25225866344128d0 5.43002868275967d0) #C(-6.968793470393193d0 -27.767127106546535d0) #C(12.847023596982307d0 35.56059110202828d0) #C(-32.07505652985733d0 13.166106940820804d0) #C(21.861224489547784d0 -24.77748267012699d0) #C(5.099214186339811d0 -25.3011905708243d0) #C(25.182794153209166d0 -9.514838415062272d0) #C(-7.769372871030493d0 44.41429266419108d0)) (#C(-1.6712447699758552d0 19.14818158504486d0) #C(19.4860433234232d0 -6.277156617940156d0) #C(20.96161933327692d0 20.166059769757148d0) #C(-13.704945535038723d0 33.982807980964495d0) #C(21.835308711286743d0 7.573203274621525d0) #C(-8.398445647436912d0 24.936781175547164d0) #C(7.9942716162507175d0 -35.225376453187565d0) #C(32.985970999229316d0 6.537892064711723d0) #C(-29.865047797605072d0 8.62597382434678d0) #C(-16.61241281364779d0 17.91514252525286d0) #C(-25.42137515199612d0 -4.582538744037608d0) #C(30.277093698649185d0 -30.796266708389453d0)) (#C(18.606415970124594d0 -17.79384385154076d0) #C(-25.423436877653735d0 -10.684928604444178d0) #C(-2.142176306648727d0 -37.578644136335356d0) #C(44.020556724799384d0 -21.61449965356597d0) #C(-14.718860631085006d0 -26.856275107723082d0) #C(29.913989576033174d0 -16.563306618437068d0) #C(-39.33653361607388d0 27.674950798706274d0) #C(-25.63429948777225d0 -34.963793631723d0) #C(36.165070599101895d0 19.31314337612928d0) #C(32.20836485698857d0 -0.20578418201003057d0) #C(18.201004027043247d0 27.165641682638526d0) #C(-55.72477269910214d0 0.5943045229224698d0)) (#C(11.45189400451073d0 -28.07289260642917d0) #C(-32.247940317224455d0 -0.7549526190357849d0) #C(-19.15819128796846d0 -41.40298370146726d0) #C(38.99631340056976d0 -43.1608974898529d0) #C(-28.176308003174693d0 -22.44479172765345d0) #C(25.44901274243493d0 -31.923710261668965d0) #C(-29.614840992657232d0 48.87854746012331d0) #C(-44.942605933428034d0 -26.457634447959606d0) #C(48.179706183881024d0 4.038430476343767d0) #C(34.15021892230524d0 -16.598093066410534d0) #C(33.91430307094719d0 19.645583948756776d0) #C(-60.935267634905756d0 29.203545501276768d0)) (#C(-1.2769142389579637d0 22.386381581072577d0) #C(22.93516990210861d0 -7.481159696362845d0) #C(23.818643041001355d0 24.586128288138674d0) #C(-17.753873718698756d0 40.45064294290625d0) #C(25.32313822836294d0 8.944620040152003d0) #C(-10.583127435478964d0 29.024726924750606d0) #C(11.649941994768884d0 -40.827082402250745d0) #C(37.2709394058087d0 9.157524477667172d0) #C(-35.38191714722737d0 8.043434907125535d0) #C(-21.172379820825448d0 19.454488943243405d0) #C(-28.597383823358108d0 -7.878283255366343d0) #C(37.070024458331154d0 -32.50015192813096d0)) (#C(8.88084461013064d0 22.41553698991546d0) #C(19.231246585346845d0 -17.84597954528991d0) #C(34.10976311525074d0 13.059255111966857d0) #C(1.9813994196561207d0 47.59741309099087d0) #C(29.096498306332528d0 -2.041486225892365d0) #C(3.0493965133310024d0 32.94933711057265d0) #C(-9.133226338784239d0 -43.541881979738534d0) #C(40.80635649449653d0 -9.164962946505081d0) #C(-31.17743844037981d0 24.6932942303004d0) #C(-10.970120856340456d0 29.371452736712367d0) #C(-32.4136679428261d0 5.747632603326573d0) #C(20.81784744852716d0 -51.532310222281666d0)) (#C(19.238554595648402d0 7.726289402272763d0) #C(0.992839808191091d0 -22.468228518864628d0) #C(29.989366333516323d0 -12.867613989473762d0) #C(29.436119947782192d0 29.007523322621438d0) #C(16.176348920224502d0 -18.5445126948348d0) #C(21.167373119287344d0 18.537880518023528d0) #C(-31.998639024851794d0 -22.685280924279866d0) #C(20.723958490529938d0 -29.88778641743582d0) #C(-5.349041315732679d0 33.42523356537456d0) #C(10.75622410345887d0 25.51151427016397d0) #C(-16.78668997650614d0 22.156677333829407d0) #C(-15.851838973649041d0 -44.32081587766065d0)) (#C(-4.559954623766297d0 18.530263083254674d0) #C(19.813466244522928d0 -2.080316540822887d0) #C(14.938153876833034d0 22.630847253220836d0) #C(-19.25543780287901d0 31.108379496818657d0) #C(18.979097339236134d0 12.244790195294778d0) #C(-11.821920616969987d0 21.14531015225459d0) #C(12.119230108674298d0 -30.980877557431608d0) #C(30.288118008709585d0 11.733714209557272d0) #C(-30.790724275261486d0 2.913114891482836d0) #C(-18.501733076253174d0 14.495248106095358d0) #C(-23.482943804891473d0 -9.02890749832166d0) #C(32.52588928424212d0 -25.571870605703975d0)) (#C(-12.93691438556375d0 20.975671984698764d0) #C(25.324251655781094d0 5.835348936973398d0) #C(9.516050135592842d0 35.45535997056422d0) #C(-39.15251963624497d0 30.843263698220596d0) #C(18.766455247989814d0 22.426566447919452d0) #C(-23.318208260851875d0 22.39291632624824d0) #C(29.11273367248906d0 -36.543054664241254d0) #C(33.40150378850584d0 27.592516962342046d0) #C(-38.42504422221019d0 -9.945888461269416d0) #C(-29.926463048105806d0 9.847285840518618d0) #C(-24.197501762235273d0 -20.836062777671067d0) #C(53.25415630633831d0 -15.530663268396314d0)) (#C(-19.75419433237322d0 -10.553588415665075d0) #C(-3.031645693309517d0 24.16689835868181d0) #C(-32.137217463128465d0 13.40719062007361d0) #C(-33.53248755334185d0 -32.19781581430464d0) #C(-20.082544933783254d0 18.736659407511887d0) #C(-22.325359926423133d0 -21.49037993800623d0) #C(32.827241614248344d0 24.351688312359244d0) #C(-22.610254322033285d0 30.90398731956259d0) #C(6.974715368425351d0 -36.30498407321026d0) #C(-10.11267701900123d0 -26.337261313800955d0) #C(20.863694810053826d0 -23.031182234527655d0) #C(16.591608276409275d0 49.445900518801686d0)) (#C(37.63202741306523d0 16.176211241294595d0) #C(1.7513576299814333d0 -43.07975763378812d0) #C(54.37692020178624d0 -26.79643445400149d0) #C(60.697080019400325d0 52.35222042428679d0) #C(31.21549204101368d0 -36.93523868390102d0) #C(42.67199277562833d0 33.94919909319257d0) #C(-64.25744144281298d0 -39.84325943839809d0) #C(35.71776977614306d0 -59.62646936949104d0) #C(-5.901312225768027d0 64.18637749922105d0) #C(21.54280917499099d0 45.53117216150264d0) #C(-29.584579535159158d0 44.57681646154522d0) #C(-37.2155779475878d0 -82.41959732009526d0)) (#C(14.524132780009195d0 13.623056881927784d0) #C(8.162549447647276d0 -17.646876142768303d0) #C(30.077203701928514d0 0.2540953738508839d0) #C(17.647981237878366d0 37.71203353528246d0) #C(18.701212535923368d0 -11.050195936325649d0) #C(12.397249781302968d0 20.38427696089352d0) #C(-25.833655082529923d0 -27.330242508986725d0) #C(26.365166490401087d0 -21.565964614143944d0) #C(-14.308552486380588d0 27.818702490537817d0) #C(2.0150536946410513d0 26.16268618313825d0) #C(-19.79531209736659d0 12.05620462600083d0) #C(2.110572659546233d0 -45.22575477491056d0)) (#C(0.0651105983111071d0 -23.710363391609654d0) #C(-22.54571334271586d0 9.323112614311775d0) #C(-26.293748098137357d0 -23.050562194377093d0) #C(12.879277677458898d0 -42.35732811755458d0) #C(-27.412292497883474d0 -7.566090072116373d0) #C(8.040680593753182d0 -30.218955273331108d0) #C(-8.108149525641632d0 42.315940713948144d0) #C(-40.292048586659824d0 -6.602323067650219d0) #C(36.32827704015976d0 -11.373662562965567d0) #C(21.154695998857356d0 -22.210894957756725d0) #C(31.463700139670895d0 6.2617850436389775d0) #C(-37.32755015969687d0 37.360753778609116d0)) (#C(-16.91179530575683d0 -13.008493803188003d0) #C(-6.968026851858035d0 21.488433108679153d0) #C(-30.826505908982092d0 4.485456598300678d0) #C(-20.993508308743603d0 -36.24100328984831d0) #C(-20.008508689317843d0 13.771498325700833d0) #C(-15.685808087510008d0 -21.88534139265269d0) #C(27.107519921770358d0 29.88797514744888d0) #C(-26.900239086637256d0 24.709479616081907d0) #C(11.96994160937588d0 -30.335577530236996d0) #C(-3.3644542113168363d0 -26.1492617215737d0) #C(19.593702948275048d0 -17.065044596768264d0) #C(4.464246033554232d0 44.61211152606719d0)) (#C(16.47922658060789d0 8.24196700348842d0) #C(1.3754235929483114d0 -18.613441814569445d0) #C(23.725735872666633d0 -12.876744934550725d0) #C(25.36179610835923d0 22.907335071565534d0) #C(14.56291841018876d0 -16.203429150505098d0) #C(21.10073018461531d0 14.356477437760248d0) #C(-29.71488963881536d0 -17.882543988249335d0) #C(16.67127181943891d0 -27.158599342495123d0) #C(0.3940785344197666d0 26.8237954228201d0) #C(10.228848885594678d0 15.715734596458146d0) #C(-8.934605227989202d0 22.34120219908364d0) #C(-20.867288996391366d0 -34.46935429399547d0)) (#C(0.9788014372851368d0 20.84384942284433d0) #C(18.598443947527834d0 -9.235201957055825d0) #C(26.69600440491243d0 18.79160670193516d0) #C(-10.066756674313016d0 41.16492957735946d0) #C(25.12806586113738d0 5.121219763817638d0) #C(-4.19985853120954d0 30.197316782935985d0) #C(0.9072159512787294d0 -40.22961495672622d0) #C(38.18217673578897d0 0.5003747179633216d0) #C(-30.60446070483478d0 16.293461515097984d0) #C(-13.312872998161406d0 23.787379750352258d0) #C(-29.479555453100197d0 -0.9456730418070203d0) #C(31.227778481365895d0 -44.833933568777795d0)) (#C(-23.47860866218026d0 13.792086215181875d0) #C(20.01941267132026d0 15.79863350021831d0) #C(-6.670337370580076d0 38.02130503284532d0) #C(-50.71184912823191d0 9.792790657424263d0) #C(8.41857575074038d0 30.316773929932683d0) #C(-33.23583117333454d0 11.35402986810276d0) #C(46.71691624566056d0 -20.217619297132277d0) #C(18.20298348863441d0 43.2865782681384d0) #C(-31.171739838938116d0 -25.152654385434552d0) #C(-31.680290356509225d0 -3.663362797878526d0) #C(-15.83197406158224d0 -31.6580180713909d0) #C(61.501443382237966d0 10.840201382404173d0)) (#C(0.10047329643357417d0 25.8016485914385d0) #C(22.091811976455908d0 -10.069236564553844d0) #C(25.331954761713327d0 20.787279328235055d0) #C(-14.435733505689447d0 41.215958353750295d0) #C(28.38112920713415d0 6.689665233886117d0) #C(-4.251584627070743d0 33.53752766081943d0) #C(5.7920341378935625d0 -48.299548705243154d0) #C(42.46860621307887d0 5.032798142080736d0) #C(-32.60600083456306d0 15.436528841084893d0) #C(-17.578806483935438d0 22.815395868826627d0) #C(-32.06377188415438d0 1.5923631713183966d0) #C(31.766640420121046d0 -40.57704191322392d0)) (#C(7.769961653339088d0 29.209317949727545d0) #C(22.458971295648222d0 -16.80047439449538d0) #C(38.227408067502175d0 18.687074245116026d0) #C(-3.9902229830964386d0 55.803459409155685d0) #C(34.78588187350524d0 0.17391737634724413d0) #C(1.6867184272369964d0 40.20038466639097d0) #C(-9.683586833715307d0 -56.00758545492581d0) #C(51.36351375237134d0 -7.804157054345702d0) #C(-36.88092483619934d0 28.26456964992201d0) #C(-13.888915651885302d0 34.68460504535169d0) #C(-38.17269242485322d0 7.286643599618525d0) #C(31.764450524807547d0 -61.19285148585033d0)) (#C(-18.667478607484018d0 -3.852051487669408d0) #C(4.884199744126256d0 19.133474005211433d0) #C(-21.530424245593412d0 18.908313525250563d0) #C(-33.58659480205376d0 -19.75641483406408d0) #C(-9.233499477585292d0 21.65329344725752d0) #C(-27.11186732801051d0 -10.175297378866095d0) #C(40.35974717017079d0 12.028666745791844d0) #C(-10.07371796032676d0 35.45643878650669d0) #C(-7.237185575554468d0 -31.176014268043094d0) #C(-15.62176723167416d0 -19.82076914463089d0) #C(4.492456416518198d0 -25.931864743064903d0) #C(32.65654448126914d0 34.51540062289765d0)) (#C(-19.877996171119793d0 6.847862647881454d0) #C(13.233733156786268d0 15.932431869561295d0) #C(-10.964251073924203d0 27.861189699625456d0) #C(-38.65106835635165d0 -0.5187448541567896d0) #C(0.8184733409339309d0 24.014275118417178d0) #C(-27.27870048671639d0 3.3322287211073434d0) #C(38.504884249497955d0 -7.31881491123686d0) #C(6.106354948159545d0 34.72383859650756d0) #C(-20.413222616825006d0 -24.667780600193705d0) #C(-23.873743233396727d0 -8.402523925386616d0) #C(-5.709332906134597d0 -26.093520952468463d0) #C(39.380218669744636d0 20.673653784037484d0)) (#C(-25.23645103340055d0 6.1446705059922575d0) #C(15.85673396649326d0 21.613152295321548d0) #C(-16.147582310414638d0 36.36788219506637d0) #C(-50.99741685818256d0 -3.009798144845014d0) #C(-1.1263291890398954d0 30.17523216125455d0) #C(-37.2239742638276d0 1.4956094327135645d0) #C(50.03803191175425d0 -5.771458825865462d0) #C(5.500086455284813d0 45.008868526957144d0) #C(-25.69655042386285d0 -33.9216721547608d0) #C(-31.220684402858566d0 -11.718140444633868d0) #C(-4.890160178613581d0 -35.749666887487535d0) #C(55.52318825017169d0 26.369555926129536d0)) (#C(-14.134077416083283d0 -25.03022942419842d0) #C(-16.866994820068527d0 23.919695560000065d0) #C(-44.55174180872987d0 -4.319630683859716d0) #C(-13.174102590869953d0 -56.7352049924371d0) #C(-32.78194045331086d0 10.293761106155355d0) #C(-14.619512177542179d0 -39.01908531360173d0) #C(25.42253160382149d0 50.98119574501915d0) #C(-46.17726333913453d0 21.5895970412013d0) #C(28.58906697080551d0 -39.261600517399835d0) #C(2.094859912198201d0 -39.14175232281485d0) #C(36.603640061148106d0 -17.197454090724108d0) #C(-7.838304916664162d0 71.64644127992904d0)) (#C(-19.22168864215866d0 -39.517803248804455d0) #C(-29.110304421545642d0 33.09183319449663d0) #C(-63.27268046854961d0 -14.260692311883252d0) #C(-12.858484418826d0 -84.1291544452629d0) #C(-49.46083558656674d0 8.438334760463086d0) #C(-13.212397612119139d0 -60.04737440711269d0) #C(24.68734248181108d0 79.92787709704048d0) #C(-72.38374518662705d0 22.12282515511019d0) #C(48.09939930448076d0 -51.84229437974023d0) #C(12.199067944583817d0 -54.93317293527209d0) #C(57.96716377035359d0 -16.987601358624556d0) #C(-28.79276594522159d0 98.54388123546055d0)) (#C(18.188382636032504d0 -10.16925174080693d0) #C(-15.921462821588149d0 -14.692572738578647d0) #C(7.196925633904898d0 -33.13499324488163d0) #C(42.960253774612305d0 -8.149906939997694d0) #C(-5.743822390395862d0 -25.175047491851142d0) #C(30.71160896166991d0 -6.7766026111585695d0) #C(-35.93271121340688d0 15.401892999204573d0) #C(-15.431934743918566d0 -36.28867943896592d0) #C(29.257686740368353d0 24.187054780462063d0) #C(30.526474775978553d0 2.1212448096752268d0) #C(9.799678846877466d0 29.48274216390205d0) #C(-57.508031694431835d0 -9.241987226989396d0)) (#C(23.82453549894591d0 9.76035109829465d0) #C(-1.8500282743549634d0 -22.32404940490633d0) #C(27.414179125933586d0 -21.151011261362463d0) #C(39.54829728080921d0 27.765035631988553d0) #C(12.52247164862034d0 -26.54106181243566d0) #C(33.01840823349694d0 12.711354275815259d0) #C(-46.26277283186393d0 -16.025730078665678d0) #C(13.689725665352526d0 -40.914852816148496d0) #C(9.52651586447311d0 35.8897373256374d0) #C(19.300724402165603d0 21.874722867322163d0) #C(-6.851409368745549d0 30.86669880902098d0) #C(-39.7165617116595d0 -41.082106672199664d0)) (#C(16.15322137718652d0 13.7424690672899d0) #C(4.0896313068208805d0 -18.175412830335432d0) #C(30.586416360144703d0 -7.739128567868834d0) #C(20.79299831736634d0 38.075287780284576d0) #C(18.520669659606956d0 -14.51809897105853d0) #C(19.05919743147489d0 21.285919662656198d0) #C(-30.390117648922732d0 -29.782933740495693d0) #C(27.446944422302938d0 -24.05158389161799d0) #C(-8.08030406326626d0 30.041457662526295d0) #C(6.26409764836794d0 24.205237011890887d0) #C(-18.46807124960667d0 19.71224496568477d0) #C(-6.893953538316055d0 -48.11654990562017d0)) (#C(45.02941567303659d0 -14.318972420035744d0) #C(-30.767007751468217d0 -33.46605368845244d0) #C(19.774948621442526d0 -63.07386042163265d0) #C(90.83736290776831d0 -0.05821143355961311d0) #C(-5.388683813928371d0 -53.57086338736182d0) #C(67.07840492893222d0 -12.250613946520499d0) #C(-89.18685624381455d0 19.18633375422205d0) #C(-16.930916384405077d0 -79.95608299103853d0) #C(49.490904786413935d0 51.94947715028759d0) #C(53.835379156489935d0 18.082131605589165d0) #C(16.92405483488318d0 60.14200886369383d0) #C(-103.66318925130504d0 -32.409603661380146d0)) (#C(22.316002506464123d0 19.5616511564433d0) #C(8.595443693803185d0 -28.107948655481337d0) #C(45.333694472931455d0 -9.717425912958719d0) #C(32.028823549162716d0 53.65642640154502d0) #C(27.893438877614635d0 -20.540310371787932d0) #C(28.157203295314783d0 35.4855341999135d0) #C(-42.59851935026242d0 -39.897726644022654d0) #C(36.404486060755495d0 -38.07336643813199d0) #C(-12.803085232273101d0 47.66117275020157d0) #C(12.646695091680867d0 38.622329018872165d0) #C(-29.723794924062133d0 26.925880128991754d0) #C(-16.077485834023552d0 -75.06408284756402d0)) (#C(-17.94438783115071d0 11.169760879262503d0) #C(15.998252685912124d0 10.630844120672563d0) #C(-2.0707000375689675d0 31.430198596314376d0) #C(-42.600065588983334d0 10.064980260932817d0) #C(7.8869208585511466d0 21.537695279009803d0) #C(-26.866748339305765d0 11.571390711248464d0) #C(36.0434228662842d0 -21.824709342541425d0) #C(16.139099723299072d0 32.69785033553739d0) #C(-26.99334778650327d0 -18.14583195161299d0) #C(-26.29513906189075d0 -0.13608048332158873d0) #C(-12.515618988689544d0 -24.584542794046314d0) #C(52.30657712997232d0 5.953985078944284d0)) (#C(21.833187239587772d0 -12.944769300887646d0) #C(-21.624903070091552d0 -13.2084891032285d0) #C(1.4920948105671672d0 -37.23841824289491d0) #C(47.875163206353335d0 -12.351603696029681d0) #C(-10.153897177183548d0 -28.395234560211765d0) #C(35.85503132671266d0 -17.159174089954323d0) #C(-44.58576297335098d0 20.76006955273774d0) #C(-19.98529563613512d0 -39.32470170019464d0) #C(34.78068132729803d0 20.00970009468559d0) #C(31.33405312378919d0 0.9083591711059151d0) #C(18.35400565035887d0 31.464000321464923d0) #C(-60.990894749267675d0 -1.5204514821393116d0)) (#C(-22.68340405312502d0 -13.554845748524526d0) #C(-4.055773133779368d0 25.774547611386453d0) #C(-33.96528282899564d0 17.734876351441983d0) #C(-40.01230856716943d0 -36.515987231109676d0) #C(-20.87242633069409d0 25.19435787118362d0) #C(-33.438157666009246d0 -23.2837372743178d0) #C(44.92429247334238d0 25.7522703659462d0) #C(-23.350348917981957d0 42.84708089672137d0) #C(-0.2146781639739821d0 -44.00887496026585d0) #C(-16.962236950439753d0 -28.538654577921154d0) #C(17.422417763451126d0 -32.711531474706476d0) #C(35.245474368424574d0 58.402958438105586d0)) (#C(1.070923003048033d0 -45.49976117851352d0) #C(-40.31625238370431d0 15.804192248384858d0) #C(-51.09039025725818d0 -40.005192401522066d0) #C(29.108159712413745d0 -83.54446588763591d0) #C(-50.50154666140998d0 -9.085090741705283d0) #C(9.196650412326054d0 -61.65927303095956d0) #C(-5.977790844396914d0 87.6977525267036d0) #C(-77.93881964018594d0 -5.586544076512968d0) #C(62.73369461560198d0 -28.990103814157667d0) #C(33.85435634687581d0 -46.26719212824662d0) #C(56.99749778751235d0 3.508096495371273d0) #C(-64.84160198034354d0 85.66057778524589d0)) (#C(31.354056662968617d0 28.17530830755009d0) #C(9.121941286402791d0 -39.932105614700774d0) #C(60.19966939705865d0 -14.134208717259202d0) #C(39.50228253631242d0 71.44214230188284d0) #C(39.27147068785536d0 -32.14683431829571d0) #C(44.558944428208854d0 44.877939064068386d0) #C(-61.193352355154865d0 -65.94725052200958d0) #C(56.52801428959288d0 -55.01038133708272d0) #C(-13.42560859043919d0 65.66914910156622d0) #C(13.613755139995865d0 52.60519920597105d0) #C(-36.17823026982208d0 45.03420481168524d0) #C(-22.44632432533549d0 -96.85616087883803d0)) (#C(38.141768004570714d0 5.861034195279016d0) #C(-11.763945758836197d0 -35.724201570373594d0) #C(43.75218310178621d0 -38.4983252759114d0) #C(66.23398622149134d0 38.55183937454069d0) #C(17.2569227574825d0 -40.84194616379694d0) #C(53.475584616329854d0 18.212242185152768d0) #C(-74.14726446998867d0 -22.762107688075925d0) #C(22.263876926250934d0 -64.08155290647197d0) #C(13.403157953308593d0 60.076544922747175d0) #C(33.88976084038899d0 38.345374737501864d0) #C(-15.079667076558772d0 49.049953422113525d0) #C(-51.708667955632166d0 -75.42515680958502d0)) (#C(-20.618212137123237d0 6.245711123924112d0) #C(14.12649076005709d0 16.096117096617444d0) #C(-5.853696553309987d0 29.93048635490058d0) #C(-40.95882131895177d0 1.0457243638127274d0) #C(2.779350105021541d0 25.82190199277796d0) #C(-32.69702323099893d0 7.303165460963163d0) #C(42.67678608867538d0 -5.861513117933312d0) #C(6.856634898619923d0 37.64321760906541d0) #C(-24.484218022394003d0 -23.801177241315465d0) #C(-23.809456601004552d0 -7.892638100151767d0) #C(-7.943955559468891d0 -29.490568405933196d0) #C(49.84696684343599d0 11.572999871230085d0)) (#C(-38.99794115091068d0 -1.825094247645259d0) #C(13.8647138393366d0 34.96090972417087d0) #C(-37.16048344436078d0 42.62232676697246d0) #C(-71.07193617720822d0 -30.142033258216088d0) #C(-10.790936633056111d0 41.41361489330593d0) #C(-53.022744293980544d0 -11.287922118039969d0) #C(73.92905624013825d0 10.785241646066044d0) #C(-10.147699275076123d0 63.87212481458289d0) #C(-20.054882531704312d0 -54.33288366464365d0) #C(-36.92965843195169d0 -32.225101917174825d0) #C(10.036591394542711d0 -46.404896058024455d0) #C(60.73292429247196d0 62.74323529491393d0)) (#C(-9.8707064547753d0 -20.875001645603312d0) #C(-12.810690370323902d0 18.1350076206722d0) #C(-31.977250851249824d0 -4.942610158412065d0) #C(-5.386569997358912d0 -47.60282078583863d0) #C(-25.708304765946036d0 6.866414284450209d0) #C(-13.796152661592771d0 -28.878416294782454d0) #C(20.6351417943136d0 45.7952191486022d0) #C(-40.266653940222454d0 17.35671103346268d0) #C(19.77228449324559d0 -28.40647489134292d0) #C(5.072204841145442d0 -29.10574849235533d0) #C(25.030848160107247d0 -15.849829820842308d0) #C(-1.8310907425219263d0 54.01566559180748d0)) (#C(-34.63239531015288d0 12.129880348945118d0) #C(25.18016140956309d0 22.642662984341655d0) #C(-12.450582502982801d0 49.774194342983d0) #C(-70.29740275948649d0 -1.8519868144440634d0) #C(5.964086014270739d0 39.01557068458193d0) #C(-45.65170553572941d0 16.211534957529565d0) #C(70.08638842100522d0 -15.87507596019865d0) #C(12.06263990576474d0 61.5099899297673d0) #C(-33.27471148715398d0 -36.997355434421976d0) #C(-39.238213198737604d0 -17.510182483376326d0) #C(-11.609238942222143d0 -41.83823076302034d0) #C(75.69159789699715d0 28.518444598376178d0)) (#C(-10.433589184452956d0 25.269795378746256d0) #C(25.18503268498023d0 -0.7886715005188947d0) #C(18.71885035410104d0 32.34950955568056d0) #C(-35.07346990968247d0 39.04193951004829d0) #C(26.27112075918271d0 13.656302616584146d0) #C(-11.417346032093803d0 34.88822956814073d0) #C(18.488360661800456d0 -54.55335042396361d0) #C(43.60760931781651d0 17.50237708170321d0) #C(-36.46296522523598d0 8.581174274980697d0) #C(-26.640143635461783d0 20.047260429183275d0) #C(-30.640161130257255d0 -5.29040030229155d0) #C(41.24464333365612d0 -35.94946368608137d0)) (#C(-30.434558439633335d0 -25.18459985593671d0) #C(-13.952980326818956d0 37.98787627324587d0) #C(-46.95718101694088d0 9.224281046665565d0) #C(-40.92476846096808d0 -59.126489353657405d0) #C(-33.573781152023344d0 29.117685245974247d0) #C(-35.956206275217276d0 -35.9253577726309d0) #C(56.99891562561358d0 44.75693047200474d0) #C(-43.20004870138165d0 52.7989247752485d0) #C(12.310666447534981d0 -56.682459948239966d0) #C(-11.66098668571967d0 -45.91246969243745d0) #C(29.933530909779478d0 -38.32666322757159d0) #C(37.770059766451844d0 85.03167469125832d0)) (#C(4.820374152340234d0 -33.31173006914203d0) #C(-30.877397070183427d0 9.350302942781774d0) #C(-32.077159843923965d0 -34.40486834359233d0) #C(30.035997481513306d0 -50.92595769245476d0) #C(-26.849117784344582d0 -15.391605648507609d0) #C(18.519014716241873d0 -34.13381053406348d0) #C(-21.870235681985264d0 41.7776622057138d0) #C(-42.707124241474325d0 -24.662380841336333d0) #C(48.14581575155745d0 1.0218928407120362d0) #C(36.12893704606026d0 -19.554040105622583d0) #C(41.995778497936485d0 24.899409603267873d0) #C(-78.98214842285947d0 49.557780081898976d0)) (#C(28.901132260240573d0 -2.633149627236893d0) #C(-12.869166301154046d0 -23.146075205054267d0) #C(18.869851057824718d0 -32.88340751468303d0) #C(57.06971369970708d0 17.481903269867757d0) #C(6.741152894113393d0 -32.522831659813306d0) #C(39.29638979889809d0 2.619140658502996d0) #C(-60.73201556211574d0 2.4662831279873565d0) #C(3.2558722033821508d0 -55.37765184875339d0) #C(19.99356166683056d0 43.12772414492073d0) #C(34.867096744338454d0 23.57902350192204d0) #C(2.3586060778351623d0 38.29132684039976d0) #C(-67.39423763752791d0 -39.348247344970964d0)) (#C(-21.96284033636547d0 -7.311736525485502d0) #C(3.892865623322355d0 24.52905791414283d0) #C(-27.917494685873326d0 20.670971300117685d0) #C(-38.59844243859084d0 -27.37300402032812d0) #C(-15.625126801885937d0 23.447045332306217d0) #C(-32.818992169295704d0 -17.7081468232015d0) #C(44.125522996773476d0 23.810038452393606d0) #C(-18.838062911201995d0 43.196877707808156d0) #C(-7.808937617673814d0 -40.94703252666546d0) #C(-19.43121092223475d0 -25.354573258887292d0) #C(9.73925749668594d0 -34.864010343105804d0) #C(45.41536712431794d0 45.029349933125495d0)) (#C(25.428224465779632d0 18.052892396477027d0) #C(5.165006666633188d0 -30.4931489006622d0) #C(43.521479057344735d0 -10.79045859993401d0) #C(35.05096365774992d0 53.173604374047336d0) #C(26.752611017492033d0 -21.723222126523495d0) #C(30.539047918130965d0 31.04071179442749d0) #C(-44.076922394802445d0 -36.95581978039401d0) #C(36.643927652224995d0 -39.70428287509532d0) #C(-11.207210378551839d0 45.82886706164861d0) #C(9.926572024796219d0 36.87253472108956d0) #C(-26.877781414034658d0 27.98469324074953d0) #C(-18.509857650512746d0 -69.99487033207434d0)) (#C(9.470643655197609d0 -19.05129624167745d0) #C(-19.829625871825957d0 -0.76352227489566d0) #C(-13.04128543913524d0 -26.326057842700045d0) #C(28.501694265002644d0 -29.26655904682741d0) #C(-17.747157633384166d0 -13.878811924812743d0) #C(16.214298566999403d0 -22.52023222276995d0) #C(-19.978192939322046d0 30.96274176440646d0) #C(-29.365900575552207d0 -20.467911068284877d0) #C(30.478057395803425d0 3.0881071812908836d0) #C(24.47049289828323d0 -9.080190663908265d0) #C(20.990443496426153d0 15.177046849993571d0) #C(-46.288205002809235d0 20.92244126922704d0)) (#C(-0.4138324197221319d0 -24.160801106932144d0) #C(-20.44554992307933d0 11.473183843416265d0) #C(-26.594851020000732d0 -20.238143907758097d0) #C(14.307926392169568d0 -43.261063608898496d0) #C(-26.54740677771045d0 -4.685330652086322d0) #C(2.851598144181394d0 -33.011632457203206d0) #C(-3.8135966273242152d0 43.95346971668886d0) #C(-40.74039514134188d0 -0.9917913739661586d0) #C(30.329613148625985d0 -15.85038076837922d0) #C(15.706569467852606d0 -21.6060765509773d0) #C(27.68771031852546d0 0.2479924173812238d0) #C(-26.09609673015695d0 42.34502262522135d0)) (#C(-15.230723427049004d0 20.970846332143402d0) #C(23.3870428753159d0 1.863109891892151d0) #C(14.412059725796112d0 34.67526541807474d0) #C(-40.11964866350436d0 32.75161833727436d0) #C(21.664170618455824d0 20.422208393326414d0) #C(-23.045322319865885d0 31.735076582322865d0) #C(35.18759324638856d0 -43.00340360555973d0) #C(38.93678609523003d0 29.26745764343928d0) #C(-41.21301250752561d0 -4.347918706757092d0) #C(-32.6241701658587d0 11.845975381486237d0) #C(-31.193079829672428d0 -21.215823539809655d0) #C(63.13253285642941d0 -25.0171394145108d0)) (#C(17.908740532829924d0 -36.41175435203371d0) #C(-41.67728469330487d0 0.48817172564605027d0) #C(-24.47999962428022d0 -49.87692827700089d0) #C(60.078712041256466d0 -55.05501964440957d0) #C(-35.30768843773428d0 -29.529843692416463d0) #C(30.335774126866646d0 -42.03414472480202d0) #C(-36.37018438918473d0 65.37698593350984d0) #C(-59.19119178059873d0 -33.7848025685736d0) #C(55.55813475120736d0 3.0060861892304405d0) #C(45.83642297480066d0 -18.896307190608574d0) #C(35.34415287889066d0 24.42048566393487d0) #C(-75.95630177892846d0 31.469395354557555d0)) (#C(-16.720882917105108d0 -31.221170695773626d0) #C(-16.410892613327174d0 28.432569845428006d0) #C(-49.495768039140025d0 0.27940519137694675d0) #C(-30.663814159636498d0 -65.19919237125113d0) #C(-34.19340580776849d0 25.38173768713125d0) #C(-33.65868588954936d0 -34.68050327666633d0) #C(47.556510686137656d0 39.09395626047178d0) #C(-32.61462458323595d0 40.99848985305596d0) #C(9.297444100144606d0 -39.51564452359716d0) #C(-3.077145253963518d0 -32.12101792596819d0) #C(25.258347785242243d0 -16.587317074794704d0) #C(-1.1149663449015463d0 54.67303259108982d0)) (#C(-29.519448846778406d0 -32.960954810604825d0) #C(-13.206832267409984d0 42.5809895955687d0) #C(-64.18014506935779d0 8.988017188161631d0) #C(-41.50138378218779d0 -83.6745176547366d0) #C(-45.62008665188961d0 30.692477910972272d0) #C(-41.8323983043705d0 -48.2969499445668d0) #C(62.91923501414777d0 61.11280378238048d0) #C(-52.635618588304425d0 57.544857481749695d0) #C(15.072092205378215d0 -60.3577050144724d0) #C(-6.954814446216304d0 -49.85474295805166d0) #C(35.02771405175301d0 -31.785540378941363d0) #C(12.950297190472522d0 83.16289068505031d0)) (#C(-52.253035869055054d0 -13.468293807620256d0) #C(9.511128626756765d0 50.27064745375111d0) #C(-54.17779996287664d0 44.35863820166044d0) #C(-85.50479169220449d0 -56.261962282064594d0) #C(-27.954222775701012d0 50.725445385793805d0) #C(-61.33401961779744d0 -23.471001018728117d0) #C(96.06862655758043d0 32.885278675666854d0) #C(-30.56276179206109d0 85.87222541078455d0) #C(-11.870252825898019d0 -73.56281863410814d0) #C(-34.35969950563275d0 -53.80606292706412d0) #C(17.9417478757436d0 -56.65447759019855d0) #C(70.17530728200464d0 85.4178095898352d0)) (#C(-19.762113525907175d0 10.158194664706262d0) #C(17.389682519480775d0 9.149907607225007d0) #C(1.961268469319975d0 32.746674505608496d0) #C(-46.65975728919576d0 16.523403956097386d0) #C(13.807787483308669d0 23.8362274746637d0) #C(-23.8502371136519d0 20.27497775292117d0) #C(39.430947446718285d0 -33.11629190050648d0) #C(27.30552902427976d0 33.064950696585775d0) #C(-31.694453803289168d0 -12.015919381658925d0) #C(-28.19419965427059d0 -1.412520382461194d0) #C(-19.49662944637945d0 -17.672103428695927d0) #C(48.635327625456846d0 -5.817099966262813d0)) (#C(-25.063424487664264d0 19.53871570363053d0) #C(24.990427423564466d0 14.142109773227128d0) #C(3.0952124429184136d0 39.45601460715797d0) #C(-53.53300602350323d0 24.559573187993053d0) #C(16.763493902242114d0 31.09422409317058d0) #C(-32.914313674435576d0 25.290644059550495d0) #C(45.56324558934089d0 -35.689919352135554d0) #C(32.79947449223501d0 40.87323300851769d0) #C(-39.73252046183502d0 -16.1434634848518d0) #C(-34.07915983186448d0 -0.35367931967931265d0) #C(-24.17691223139316d0 -28.45013187985803d0) #C(66.70685283423418d0 -10.748624843970362d0)) (#C(-8.329658905640894d0 24.004926213700557d0) #C(24.89172078244279d0 -4.709324103177041d0) #C(23.832687820748152d0 33.479655016505326d0) #C(-35.358425941841304d0 46.82976828430387d0) #C(26.475539258768592d0 16.511235717184206d0) #C(-13.083152536907267d0 33.551285446571185d0) #C(18.88916447533497d0 -53.67693243793628d0) #C(46.22215780196523d0 16.55512136941239d0) #C(-38.70675951665116d0 6.504968365250237d0) #C(-25.520596343211466d0 17.355182831047426d0) #C(-29.393484457953583d0 -8.539075460019786d0) #C(45.38556179267652d0 -33.04589236403725d0)) (#C(18.521647506132176d0 21.953745378506007d0) #C(11.141659632980137d0 -25.37704340241747d0) #C(38.859326162563185d0 3.212817989568339d0) #C(18.74143510413178d0 53.56386152253509d0) #C(31.156784406963876d0 -14.520984020213668d0) #C(21.746511358701245d0 31.520211433436785d0) #C(-33.014355791657366d0 -43.78940355948987d0) #C(39.410271003707564d0 -29.94137477826621d0) #C(-17.14942254668886d0 37.75688176691537d0) #C(-0.5897284306765256d0 31.8257632079238d0) #C(-24.4832279886303d0 23.384845215009907d0) #C(-7.244612333498549d0 -54.21211516125954d0)) (#C(38.05432094806907d0 -1.9965701749563003d0) #C(-18.67758397054132d0 -32.58053173388286d0) #C(29.069431234838788d0 -44.437154238917586d0) #C(75.85669407186427d0 19.909252741059333d0) #C(7.801565924768519d0 -44.14546457258959d0) #C(49.594905204112024d0 3.6312488610367186d0) #C(-74.88984018030386d0 5.713088619915948d0) #C(-5.005175165822334d0 -69.39584977044144d0) #C(28.19363783309493d0 49.83048943762397d0) #C(39.75703290158077d0 27.279410987639956d0) #C(2.2434224599568786d0 46.781049537442236d0) #C(-76.7381203670061d0 -41.667153478218694d0)) (#C(-21.87237658774182d0 25.441981283093412d0) #C(32.11157618103899d0 8.778225956805153d0) #C(11.38859734293333d0 37.193470651424235d0) #C(-49.28064043954795d0 32.92075363393655d0) #C(21.610682330925805d0 30.015860228484033d0) #C(-31.769922039881198d0 27.356487717162697d0) #C(36.08337579419779d0 -38.69550943631815d0) #C(36.48415565058882d0 34.256461166417395d0) #C(-39.75630438747879d0 -13.253096532710957d0) #C(-32.89538797783722d0 3.8126070322983914d0) #C(-24.65079673912789d0 -25.403837578404893d0) #C(60.551961478362884d0 -22.595214379873024d0)) (#C(-2.601075704663494d0 -21.77583625539779d0) #C(-20.175371653652313d0 11.277521717261438d0) #C(-18.419453684744262d0 -12.599189986051973d0) #C(-1.3982638527949245d0 -39.60148568059701d0) #C(-24.09268463287927d0 1.3295674780830158d0) #C(-1.4324015269824872d0 -25.854296068206345d0) #C(7.275813258471929d0 31.120983811264914d0) #C(-31.113295365230854d0 6.142922288568926d0) #C(21.535213878468337d0 -19.619033216881846d0) #C(9.59887713968955d0 -23.175285598193962d0) #C(23.701214384198256d0 -4.337319970628313d0) #C(-13.554628421015678d0 44.654667242115494d0)) (#C(30.702753741279448d0 -35.21364170186993d0) #C(-37.94686593534519d0 -15.902053597285782d0) #C(-14.261156504755363d0 -54.21201474235211d0) #C(77.06310775923716d0 -49.32419079052036d0) #C(-33.846823439227364d0 -42.17510854647049d0) #C(47.92578586769071d0 -41.99478714535698d0) #C(-57.94606725056936d0 62.19471185692093d0) #C(-57.5285730083683d0 -54.33892039985521d0) #C(65.73098420369759d0 16.228120586014036d0) #C(56.877240020336316d0 -12.351658265171379d0) #C(42.13368484386872d0 39.377555781096305d0) #C(-98.74340274916692d0 29.846884470465273d0)) (#C(-33.00972615800825d0 31.216537206620437d0) #C(38.522421934176876d0 18.23231166295643d0) #C(12.733270065553619d0 58.94161330024553d0) #C(-84.15172720296295d0 37.82690559017644d0) #C(25.45625331032939d0 46.471591362108136d0) #C(-54.335439287380815d0 32.32121622642132d0) #C(67.17647477108456d0 -51.824783836548235d0) #C(48.06620596973454d0 63.099174049345955d0) #C(-61.12148189506135d0 -28.606202894320987d0) #C(-55.77734601677986d0 1.3897966343412715d0) #C(-35.6981171731879d0 -47.132821298089716d0) #C(103.95839003295353d0 -11.186432989671001d0)) (#C(-23.30656944998713d0 5.408280177579011d0) #C(16.216153965050648d0 14.979056675848053d0) #C(-11.664602202032855d0 38.43765990635665d0) #C(-50.58388198267216d0 -3.8856292574386764d0) #C(1.1473600968223203d0 28.917717198251694d0) #C(-30.607075468265574d0 -0.5854197446031364d0) #C(42.9774396329391d0 -9.10870850105401d0) #C(6.608346811466918d0 41.053474930555076d0) #C(-20.649800199196914d0 -30.0264607243149d0) #C(-27.965976252249966d0 -15.717989427603573d0) #C(-2.2403836461169466d0 -27.586049712987105d0) #C(50.38469844604356d0 24.569349390979507d0)) (#C(-23.460839286966646d0 -5.277817403152877d0) #C(7.87631497088617d0 20.896716587050186d0) #C(-19.437148993621314d0 29.891475109037472d0) #C(-47.295844583967d0 -16.651666325547282d0) #C(-8.942532904344553d0 29.746173525397325d0) #C(-33.23760845488699d0 -10.100790502337198d0) #C(45.02737993024286d0 5.884945734609332d0) #C(-5.939118481392832d0 43.7369249301687d0) #C(-13.09478744301039d0 -36.06444814868297d0) #C(-20.417592358938805d0 -23.225052222953526d0) #C(4.947168873115732d0 -31.08443137543692d0) #C(46.7842608557594d0 37.23366974784936d0)) (#C(-16.79984147839345d0 -19.536273040526527d0) #C(-7.768285462335109d0 25.878599302728848d0) #C(-37.471942304153245d0 7.4881396294404015d0) #C(-25.491708399024198d0 -42.823039161809405d0) #C(-24.560325964145644d0 16.19832833807923d0) #C(-18.04711253210599d0 -25.821032596405438d0) #C(31.576154121461485d0 29.676360522139365d0) #C(-30.221251121063556d0 28.931007790103955d0) #C(11.949116923390802d0 -34.084457346596196d0) #C(-2.3432616997277353d0 -30.884919592381216d0) #C(21.375360120854353d0 -18.479092312923655d0) #C(9.27528733880342d0 53.49506486132164d0)) (#C(-15.633773410188725d0 21.9006300890728d0) #C(29.250331360133284d0 1.369339889799491d0) #C(15.65965905630474d0 34.662129546948634d0) #C(-42.179376893038295d0 36.0619456596046d0) #C(22.593986017262825d0 24.510401541066784d0) #C(-23.908273134091953d0 27.829406387574615d0) #C(30.64066908009727d0 -39.98877609606083d0) #C(38.223692302784904d0 30.847134974085357d0) #C(-39.594489935295734d0 -6.607107500437483d0) #C(-32.666291071835865d0 8.22473012854445d0) #C(-28.5266852216892d0 -21.660094006871972d0) #C(61.19356713700386d0 -21.89865391784327d0)) (#C(19.501657934425662d0 24.3999139670702d0) #C(21.625801449756846d0 -27.797393683477083d0) #C(38.97732645525977d0 -7.586295565081594d0) #C(15.242398551591574d0 55.12238192537854d0) #C(34.016897516230785d0 -13.570603107944674d0) #C(14.569776435906382d0 37.084543058217875d0) #C(-28.836169512223776d0 -47.91594917392004d0) #C(46.106076184384875d0 -22.94533328213083d0) #C(-27.903594038671002d0 33.973787926689326d0) #C(-9.16960321639499d0 37.449869161327115d0) #C(-35.29008516121928d0 15.773575666548513d0) #C(14.903594979290952d0 -67.97428928543329d0)) (#C(16.604102768007593d0 -19.173434998883906d0) #C(-25.44257509861463d0 -4.719815073062424d0) #C(-4.34853357780935d0 -23.883332814553956d0) #C(41.9235660238632d0 -22.900968516854455d0) #C(-15.278647953274568d0 -23.52480565550341d0) #C(26.36551227077001d0 -16.35269543185695d0) #C(-35.141252532163044d0 28.397400994874673d0) #C(-26.189515294710368d0 -38.0414095878342d0) #C(33.45848123347033d0 17.637239579817177d0) #C(34.89020299707339d0 -3.071729149598954d0) #C(19.822315410372283d0 27.246296228786232d0) #C(-66.276639687873d0 6.067878696412417d0)) (#C(30.342185893790788d0 1.090517832128676d0) #C(-12.694855470392671d0 -26.445462131996255d0) #C(31.134263091998037d0 -31.76448192077431d0) #C(53.64740385756998d0 36.8066746874992d0) #C(19.146963396402978d0 -33.8135718974868d0) #C(38.72435629388532d0 21.94019968998657d0) #C(-54.275596700351194d0 -22.051796817483314d0) #C(24.428130413324062d0 -51.52983212425596d0) #C(-1.2692840639881204d0 48.015437709494805d0) #C(15.600871464682514d0 36.60031194587394d0) #C(-20.380737391809397d0 35.18641613390375d0) #C(-31.884735017822756d0 -68.21354837814347d0)) (#C(13.071699939851142d0 35.13971243564858d0) #C(30.346854346735224d0 -18.642517569433217d0) #C(26.80731419376865d0 14.696473395491626d0) #C(6.712538600860942d0 54.29672668675683d0) #C(36.52832880174037d0 -8.49494934730215d0) #C(8.828373328725718d0 41.56178072475435d0) #C(-16.118998011950467d0 -54.039410589615784d0) #C(51.654024625815495d0 -18.077213017788978d0) #C(-30.260983687945487d0 33.19254993837926d0) #C(-12.530050559427208d0 38.82989267100186d0) #C(-37.870148916292436d0 12.548944913503004d0) #C(14.951364177912057d0 -68.3787085598245d0)) (#C(-2.9398216126826036d0 38.12483158521925d0) #C(31.940065359647388d0 -6.822275145572181d0) #C(37.835018286730275d0 25.92861392671397d0) #C(-28.222781997674907d0 70.23898683402058d0) #C(43.538137023515446d0 12.436920478893777d0) #C(-12.258632954975909d0 49.14580692415894d0) #C(4.613809957337834d0 -69.17453229548387d0) #C(66.56669420241535d0 8.016097716176349d0) #C(-51.73562208387817d0 18.057526846973463d0) #C(-33.22584826479277d0 34.783635574103485d0) #C(-44.45602974987527d0 -6.740954039300797d0) #C(57.46105480897807d0 -62.09674301975206d0)) (#C(0.30728239438675864d0 20.19531580211858d0) #C(10.913971968689456d0 -20.998858421113482d0) #C(22.05453393212482d0 4.338809339220882d0) #C(-9.443586255276774d0 33.24429555009703d0) #C(21.306088599150442d0 4.097993508118108d0) #C(-5.90574414866445d0 23.51545641044791d0) #C(5.828857948096298d0 -30.2266737938696d0) #C(30.70040725109915d0 6.257368540072859d0) #C(-24.52012340989803d0 9.618363601380171d0) #C(-18.66160214819461d0 15.788903509161505d0) #C(-20.223577812675373d0 -6.059241997959253d0) #C(29.455642565272225d0 -25.83125873827528d0)) (#C(4.648765902683199d0 -25.789204170004314d0) #C(-17.55054555557373d0 8.457767921666616d0) #C(-13.664130614912425d0 -16.091756026626634d0) #C(20.13538212105213d0 -29.245303486628945d0) #C(-22.146698063340786d0 -10.073706749387494d0) #C(13.220215845306964d0 -24.305053809125575d0) #C(-12.532421304208263d0 37.23611707500609d0) #C(-35.239302429919746d0 -10.252779759476523d0) #C(28.667907452141236d0 -4.9489294369913175d0) #C(22.392872694078157d0 -17.58729456703041d0) #C(25.42397406568116d0 8.92042418628292d0) #C(-32.31185533416789d0 28.683071434462295d0)) (#C(17.762537803269055d0 -41.17274713095345d0) #C(-38.81010576430603d0 1.9600737132367776d0) #C(-18.210748013241584d0 -45.26770906769136d0) #C(52.50346823438937d0 -54.36323889411196d0) #C(-38.333311759882854d0 -26.555319680754124d0) #C(33.12251900468399d0 -40.141604818929274d0) #C(-39.91161375792694d0 63.08761890578544d0) #C(-61.89656264303997d0 -33.84597933942155d0) #C(58.27173032650935d0 3.4223286564951216d0) #C(49.63481449225485d0 -20.592687838571276d0) #C(42.940308723621065d0 24.988005397152204d0) #C(-76.3307400126429d0 39.90310894028744d0))) |
From: Michael A. K. <ma...@ll...> - 2001-10-22 20:48:04
|
I grabbed the CVS'd sources last night and built Matlisp for testing at work. I noted the following three minor items right off. 1. The is a new symbol in USER named TITLE. This caused a name conflict in one of my applications. I UNINTERNed it by hand are saved the core. 2. The SAVE-MATLISP.LISP will create a core that places you in the package MATLISP when it is used. (I believe this had been fixed before, but perhaps I just have a locally hacked copy of SAVE.LISP. 3. The matlisp core saved, leaves *GC-VERBOSE* = T. (This may be just personal preference, mine being NIL :-). tnx mike |
From: Michael A. K. S. <mic...@ea...> - 2001-10-13 18:11:52
|
Does someone have some insight to the following problem and how I should proceed to remedy the problem? 1. I have two seperate RH Linux boxes; one with RH 7.x and one with RH 6.x. 2. I'm running CMUCL-18C (glib2.1) on both. 3. I have built MATLISP (several versions routinely updated from CVS) on both of these RH boxes w/o incident. 4. I create an arbitrary complex matrix; call it CM. Under RH 6.X the commands (IMAG CM) and (FFT CM) result in the following SAP related error: > Error in function UNIX::SIGSEGV-HANDLER: Segmentation Violation at > >#x402F13D4. > Restarts: > 0: [ABORT] Return to Top-Level. > Debug (type H for help) > > (UNIX::SIGSEGV-HANDLER #<unused-arg> > #<unused-arg> > #.(SYSTEM:INT-SAP #x3FFFEAF0)) Under RH 7.x the commands the commands behave as expected...i.e., they produce the right answer and no error. Since this performance is consistant for various MATLISP builds, I tend to suspect either CMUCL-18C-glib2.1 or the glib-2.1.3 libraries...not MATLISP. Any specific help/ideas out there? tnx in advance mike -- Dr Michael A. Koerber MIT/LL |