public_html/GUESTBOO.KPL010064400017520000001000000321150712642301000162210ustar00matthewsother00001460002002#!/usr/local/bin/perl # ------------------------------------------------------------------------- # GUESTBOO.KPL - Based on the HTML file, E:\Arch543p\addguest.html # Perl CGI generated using Guest*Star - to process the input from a WWW Form # E_mail Technical support from : support@webgenie.com # ------------------------------------------------------------------------- # WARNING: Alterations to this file must be done very carefully. # Any introduced error will render this script useless. # Also, # 1. Transfer this file to the WWW server in ASCII mode. # 2. Set the CGI file protection to world read, execute (e.g. chmod 755 filename) # 3. Set the HTML DIRECTORY protection to world read, write, execute (e.g. chmod 777 dirname) # ------------------------------------------------------------------------- # Test the script on the server: # As a quick test, simply type the name of this file as a shell command # and see if any compilation error is reported. If none, try your HTML file to record a guest book entry. # ------------------------------------------------------------------------- # Start of the Perl script: # ------------------------------------------------------------------------- # Procedure to write guestlog sub do_writelog { #Get the dir and filename to create the guestbook log file $guestbook_dir = $ENV{'HTTP_REFERER'}; $htdocs = $ENV{'DOCUMENT_ROOT'}; @path = split (/\//, "$guestbook_dir"); pop @path; # Remove the referring HTML filename $gb_dir = pop @path; #Get the dirname. May be used later push (@path, "$gb_dir"); #Put it back # Remove the base HREF, http://www.company.com/, which is represented by a singe forward slash (/) shift @path; shift @path; shift @path; $guestlog_dir = join ("/", @path); #Only the relative pathname to browse the HTML $guestlog_dir = "$htdocs/$guestlog_dir"; $img_dir = join ("/", @path); $img_dir = "/$img_dir"; push (@path, "guestlog.html"); # Add the guestlog filename $guestlog_html = join ("/", @path); #Only the relative pathname to browse the HTML $guestlog_html = "/$guestlog_html"; #Add a leading slash to complete the filename $guestbook = "$guestlog_dir/guestlog.html"; #The full pathname to write the HTML $tmplog = "$guestlog_dir/gbtmp.log"; $mailfile = "$guestlog_dir/gbmail.txt"; $gbtxtfile = "$guestlog_dir/guestlog.txt"; open(TMPINP,"<$guestbook"); open(TMPOUT,">$tmplog"); $count = ; if (!$count) { print "$guestbook does not exist.
Creating it with the first entry.
"; #Check if the dir is writeable open (TMP, ">$guestbook"); print TMP "0\n"; close (TMP); open (TMP, "<$guestbook"); $line = ; close (TMP); if ($line eq "0\n") { print "Dir is writeable
"; unlink ($guestbook); } else { # Try setting the prot with chmod print "Directory is NOT writeable.
Attempting to set the correct permissions
"; `/usr/bin/chmod 777 $guestlog_dir`; $err = $?; if ($err) { `/bin/chmod 777 $guestlog_dir`; $err = $?; if ($err) { $chmod = `/usr/bin/whereis chmod`; $chmod =~ s/\n//g; `$chmod 777 $guestlog_dir`; $err = $?; if ($err) { $chmod = `/usr/ucb/whereis chmod`; $chmod =~ s/\n//g; `$chmod 777 $guestlog_dir`; $err = $?; if ($err) # Giveup { print "Unable to set directory protections. Please set it manually as follows:\n"; print "
\n"; exit (0); } } } } } } # $count = $count + 1; while ($line = ) { print TMPOUT "$line"; } close (TMPINP); close (TMPOUT); unlink ($guestbook); open(TLOG,">$guestbook"); print TLOG "$count\n"; open(TFILE,">$mailfile"); open(PFILE,">>$gbtxtfile"); # >>>>> Start of User configurable section 1 of 2 >>>>> if ($Visitor_Name eq "") { $Visitor_Name = "No_Name"; } if ($Email eq "") { $Email = "No_Address"; } print TFILE "From: \"$Visitor_Name\" <$Email>\n"; print TFILE "To: $mailreceiver \n"; print TFILE "Subject: \"\" \n"; print TLOG "
\n"; print PFILE "-----------------------\n"; if ($city ne "") { print TLOG "\n
city= "; @words = split (/ /, "$city"); while (@words) { $word = shift @words; if ($word =~ /\b\w*@\w*./) { print TLOG "$word"; } else { if ($word =~ m|http://|) { print TLOG "$word"; } else { if ($word =~ m|www.|) { print TLOG "$word"; } else { print TLOG "$word "; } } } } print TFILE "city= $city\n"; print PFILE "city= $city\n"; } if ($state ne "") { print TLOG "\n
state= "; @words = split (/ /, "$state"); while (@words) { $word = shift @words; if ($word =~ /\b\w*@\w*./) { print TLOG "$word"; } else { if ($word =~ m|http://|) { print TLOG "$word"; } else { if ($word =~ m|www.|) { print TLOG "$word"; } else { print TLOG "$word "; } } } } print TFILE "state= $state\n"; print PFILE "state= $state\n"; } if ($country ne "") { print TLOG "\n
country= "; @words = split (/ /, "$country"); while (@words) { $word = shift @words; if ($word =~ /\b\w*@\w*./) { print TLOG "$word"; } else { if ($word =~ m|http://|) { print TLOG "$word"; } else { if ($word =~ m|www.|) { print TLOG "$word"; } else { print TLOG "$word "; } } } } print TFILE "country= $country\n"; print PFILE "country= $country\n"; } if ($comments ne "") { print TLOG "\n
comments= "; @words = split (/ /, "$comments"); while (@words) { $word = shift @words; if ($word =~ /\b\w*@\w*./) { print TLOG "$word"; } else { if ($word =~ m|http://|) { print TLOG "$word"; } else { if ($word =~ m|www.|) { print TLOG "$word"; } else { print TLOG "$word "; } } } } print TFILE "comments= $comments\n"; print PFILE "comments= $comments\n"; } print TLOG "
Visitor is from:
$ENV{'REMOTE_HOST'} at $ProcessTime\n"; print TFILE "Visitor is from $ENV{'REMOTE_HOST'} at $ProcessTime\n"; print PFILE "Visitor is from $ENV{'REMOTE_HOST'} at $ProcessTime\n"; close(PFILE); open(TMPOUT,"<$tmplog"); while ($line = ) { print TLOG "$line"; } close (TMPOUT); unlink ("$tmplog"); close (TLOG); close(TFILE); `/usr/lib/sendmail $mailreceiver < $mailfile`; $mailstatus = $?; unlink("$mailfile"); } # <<<<< End of User configurable section <<<<< # >>>>> Do not alter anything in the following section >>>>> # convert %20 to a space and other %dd to a character sub reformat { local($tmp) = $_[0] ; $tmp =~ s/\+/ /g ; while ($tmp =~ /%([0-9A-Fa-f][0-9A-Fa-f])/) { $num = $1; $dec = hex($num); $chr = pack("c",$dec); $chr =~ s/&/and/g; # Replace if it is the & char. $tmp =~ s/%$num/$chr/g; } return($tmp); } sub vcv { $cv = 0; @edt = (20, 2); $sysdate = `/bin/date`; $err = $?; if ($err) { $sysdate = `/usr/bin/date`; $err = $?; if ($err) { #Give up safe $cv = 1; return; } } @mnt = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"); @msg = ("CGI", "on", "Expires", "This", "Expired", "Has"); @sd0 = split (/ /, "$sysdate"); $j=0; print "
@msg[3] @msg[0] @msg[2] @msg[1] @mnt[@edt[1]] @edt[0]

"; #Find the current month while (@sd0[1] ne @mnt[$j] && $j <= 11) #If @sd0[1] == @mnt[$j] Then @rd[2]/4 must be == $j { $j++; } if ($j == @edt[1]) { #CGI expires Same month. Then the current date must be le recorded date if (@sd0[2] <= @edt[0]) { $cv = 1; } } else # Different month. If it is $j + 1 { if ($j == 11) {$j = 0;} else { $j++; } if ($j == @edt[1]) { #CGI expires Next month. Then the current date must be gt recorded date if (@sd0[2] >= @edt[0]) { $cv = 1; } } } } # Main body of the script sub do_main { $guestbookPage = $ENV{'HTTP_REFERER'}; $cl = $ENV{'CONTENT_LENGTH'}; print "Content-type: text/html\n\n"; &vcv; if ($cl > 0) { read(STDIN, $_, $cl); $_ .= "&"; # Append an & char so that the last item is not ignored $pquery = &reformat($_); while ($pquery =~ /city=([^&]*)&/) { if (!$city) { $city = $1; } else { $city = $city."\n ".$1; } $pquery =~ s/city=([^&]*)//; } $city = &reformat($city); while ($pquery =~ /state=([^&]*)&/) { if (!$state) { $state = $1; } else { $state = $state."\n ".$1; } $pquery =~ s/state=([^&]*)//; } $state = &reformat($state); while ($pquery =~ /country=([^&]*)&/) { if (!$country) { $country = $1; } else { $country = $country."\n ".$1; } $pquery =~ s/country=([^&]*)//; } $country = &reformat($country); while ($pquery =~ /comments=([^&]*)&/) { if (!$comments) { $comments = $1; } else { $comments = $comments."\n ".$1; } $pquery =~ s/comments=([^&]*)//; } $comments = &reformat($comments); # <<<<< Do not alter anything in the above section <<<<< # >>>>> Start of User configurable section 2 of 2 >>>>> print "\n"; print "Acknowledgement\n"; print "\n"; print "\n"; print "


\n"; print "

Acknowledgement

\n"; print "Thank you for signing my guest book

\n"; print "


\n"; &do_writelog; if ($mailstatus == 0) { print "

Guestbook entry successfully added.

\n"; } else { print "

An error occurred when sending the mail.


\n"; print "Please try again and/or write to $mailreceiver to notify the error.
\n"; } print "

Form accessed at $ProcessTime from $ENV{'REMOTE_HOST'}\n"; # Although the next line can be removed without causing an error, we request you to kindly retain it. print "


This guestbook and its CGI were auto-generated by Guest*Star\n"; print "\n"; } } # <<<<< End of User configurable section 2 of 2 <<<<< $misterwolf = `/bin/date`; $misterwolf =~ s/\n//g ; $ProcessTime = `/bin/date`; $ProcessTime =~ s/\n//g ; $mailreceiver = "arch\543p@pratt.edu"; $|=1; eval '&do_main'; sleep(1); # ***** End of the Perl Script file. ***** { print "Unable to set directory protections. Please set it manually as follows:
    "; print "
  • Telnet to the webserver and login with your username and password.\n"; print "
  • Change dir to where the guestbook.html resides. (e.g. cd public_html/guestbook_dir).\n"; print "
  • Type chmod 777 ../guestbook_dir.\n"; public_html/Italian_passport.html010064400017520000001000000016560712642301100206330ustar00matthewsother00001460002002 Italian Passport

    Document 1:

    The Italian Passport

     

    public_html/Neta.html010064400017520000001000000332020712642301100161760ustar00matthewsother00001460002002 Reactivating Geometry
         

     

    Reactivating Geometry
    by Neta Katz

     

    PART ONE:

    ".... Is a science like geometry possible? How as a systematic, endlessly growing stratified structure of idealities, can it maintain its original meaningfulness through living reactivability, if its cognitive thinking is supposed to produce something new without being able to reactivate the previous levels of knowledge back to the first?"

    What Husserl is asking is where does one begin, where does one start in the challenge of understanding geometry? How far back do you have to go to make geometry self evident? Husserl suggests to go to the origin of geometry, to find out how and for what purpose geometry developed, but in doing so, Husserl cautions us from the historicism that doesn't go beyond the usual facts. The reactivating of geometry must include in it a personal vision, because it "involves a lively productively advancing formation of meaning." Geometry, Husserl says, "is not a handed down ready made in the form of documented sentences." To be meaningful, geometry must have I think that this means that there is room in geometry for interpretation. Serres does what Husserl suggests, by realizing that "beneath the theorem of Thales (involving the pyramids) a corps was hurried." Serres connects two parallel lines by bringing ritual back in to the history of geometry. Husserl brings ritual back to the act of trying to understand geometry, in the present. He writes, "it is something special...to have the intention to explicate, to engage in the activity which articulates what has been read, extracting one by one, in separation from what has been vaguely, passively received as a unity, the elements of meaning, thus bringing the total validity to active performance in a new way on the basis of the individual validities. What was a passive meaning - pattern has now become one constructed through active production. This activity is a peculiar sort of self evidence; the structure arising out of it is in the mode of having been originally produced." (Later in this paper, this will become the definition for drawing, it also sound to me like a definition of abstracting (?)). So in order to reactivate geometry, one must go to the absolute origin of it but still somehow "originify" the past by a kind of invention. Geometry, I think, exists only if we are conscious of it, and for one to be wakefully conscious of geometry, geometry must touch on more levels of our lives than just logic. How does geometry mean more? Could the deaths of Hippasus of Metapontum, Parmenides, and Theaetetus (which Serres suggests were related to the crisis of irrational numbers) mean more to the development, and present existence of geometry than we are ready to admit? If so, should we document more closely the deaths of those flirting with the fifth postulate?

     

    PART TWO:

    Lets go to Euclid's five postulates written in about 300 B.C.

    Let the following be postulated:

    1. To draw a straight line from any point to any point.
    2. To produce a finite straight line continuously in a straight line.
    3. To describe a circle with any center and any distance
    4. That all right angles are equal to each other.
    5. That, if a straight line falling on two straight lines makes the interior angles on same line less than two right angles, the two straight lines, if produced indefinitely, meet on that side on which are the angles less than two right angles.

     

     

    In other words, through a point outside a given line it is possible to draw only one line that is parallel to the given line. Euclid wasn't satisfied with the fifth postulate because straight lines were infinite. Many struggled to prove the fifth postulate (the new crisis). The elder Bolyai, in a letter written in 1820, warned his son against any obsessive interest in postulate five. "You should detest it as much as lewd intercourse, it can deprive you of all your leisure, your health, your rest, and the whole happiness of your life." But young Bolyai did work on the fifth postulate and he wrote his father, "I was astounded...out of nothing I have created a strange new world." What led him to this strange new world was assuming that the fifth postulate was wrong. The way that I understand it is that Bolyai and those who followed him were reading geometry three dimensionally, and so those two lines that are on the side on which the angles are less than two right angles, don't have to meet (one can be above the other).

     

    PART THREE:

    What does it take to visualize non-Euclidean geometry? We must try to visualize non-Euclidean geometry within the three dimensional domain (the two dimensional diagram doesn't allow for point of view (we are not talking about perspective), in the three dimensional, choosing a point of view is necessary). Reichenbach says that we need to adjust our conception of congruence because "congruence is a matter of definition." "The adjustment necessary for visualization of a curved space consists in projecting congruence differently into three dimensional space." Basically the process that I see that the Euclidean mind should go through to see non - Euclidean is as follows: say something "wrong" about a "fact" and now find a way to project three dimensionally in such a way that makes the "wrong" possible, with out having to change the original "fact", or diagram. Euclidean geometry assumes a certain definition of congruence - don't, and you're in the non-Euclidean.

     

    Three Models:

    1. Bolyai – Lobachevsky

     
         
      2. Lines: Length
         
    3. Torus: inbetweeness  

     

    The postulate that now replaces Euclid’s fifth postulate is, that through any point not on a given straight line, an infinite number of parallels, to the given line can be drawn. That is, that these lines will never have to meet (later the mathematician Riemann showed these lines will always meet because there are no parallels).

     

    PART FOUR:

    It is possible to visualize non - Euclidean geometry, so the question that I have now is how can one draw, or can one draw non - Euclidean geometry? If Poincare write that non - Euclidean geometry is about "the movement of variable solids", and the putting together of different perspectives of the same body, seeing several points of view so that "the object and the sensory being considered ... form a single body", can this geometry be frozen, can/should it be drawn? In the true sense of the word to draw (as in water from a well, or as in Husserl's reactivation), yes, because to draw means to reactivate. So, it is possible to draw this geometry if the viewer reactivates the drawing. But, this drawing as an end in itself is completely meaningless. The drawing must be drawn.

    I think that Cubism was an attempt at abandoning Euclidean geometry, but by reassembling fragments according to classical geometric principles. Still, in my opinion, the cubist painting assists us in acting non-Euclideanly.

     

    PART FIVE:

    What does it mean to act non-Euclideanly? Vertov wrote: " I am the cinema eye, I am a mechanical eye. I, a machine, I can show you the world as only I can see it ... I ascend with aeroplanes, I fall and rise together with falling bodies." This, to me is a description of non-Euclidean action - the "I" plays a crucial role. Engaging in non-Euclidean geometry, or in a drawing - activating these, requires a point of view, an "I". Point of view can't be completely objective. Euclidean geometry, as I understand it, doesn't require more than one "flat" point of view, there is only one way to read it. Lines that look like they meet, do meet. Non -Euclidean geometry, because it moves, demands of us to be "I"s, to be narcissistic. Merleau - Ponty says, "since the seer is caught up in what he sees: there is a fundamental narcissism of all vision. I am not sure that all vision is narcissistic, (or equally narcissistic) but, Drawing and reactivating has to be, with out "I", non - Euclidean geometry wouldn't exist.

     

    © 1996 Neta Katz

    public_html/Wren.html010064400017520000001000000424710712642301100162320ustar00matthewsother00001460002002 Extended Bodies in Space
         

     

    Extended Bodies in Space

    The Figure Skating Event

    by Lawrence McDonald
    Fall 1996

     

    Extension of the body in space

    A single shower of glittering spray, all that remains of the angels great fall. Down deep, a frozen descent, a realm of ice, a white void waiting to be conquered, waiting to be ruled. She ran her fingers along the black laces, smoothing them out perfectly,. Each end precisely twined through the holes, no hesitation. Like the most beautiful Lucifer, his image vanishing beneath a cascade of scales and coils that became his flesh, she too descended into new form. No sparkles, no vibrant hues, no medal winning smile with gleaming white inside. Black leather, bare legs. She set out to conquer the ice, to make it more than just a canvas, to make it her slave, a landscape that would absorb the slices, the grooves, the digs of her blades and would yield with each swift turn and spin. She would not offer it the devotion of grace, only that passion that erupts from some dark place in each of us...

    "Chaos does not exist" asserts Deleuze; it is an abstraction, it is inseparable from a scene which makes something - something rather than nothing - emerge from it. Chaos would be a pure many, a purely disjunctive diversity, while the something is a net a pre-given unity, but instead the indefinite article that designates a certain singularity. a or an, that does not fix the identity of the noun modified. How can the many become the one? A screen has to be placed in-between them.

     

    The Interface with Timaeus

    ...She breathed in deep at the gate. The cool air rushing down into her lungs and she felt it course through her body. She launched out onto the ice, a flawless, seamless beauty; so pure. It welcomed her to the challenge. Her blades cut sweetly and smoothly through the first slick layer, was flying to the center. In the heart of the rink, she dug her heel lightly into the ice; a hold that fixed her entire body still. First waming. She in turn was given her own. The buckles and straps that held the leather fragment against her breasts and groin were icy against her skin. But anticipation began to thaw her. The crowd waited silently, oddly. They watched a mistress, hair teased wildly, eyes rimmed again and again in thick black lines, her lips, thick and vicious red. A leather teddy wrapped tight, almost cruelly around the perfect, leanest body. DeRant! Almost dating the crowd to watch. A woman with black skates, more a raven than any preffy peacock that had previously skirted so daintily along the ice.

    Leibniz has been able to ascribe several approximations to chaos. A cosmological approximation, chaos is the sum of all possibilities, all individual essences in so far as each tends to exist on its own account; but the screen only allows for the best combination of possibilities, or compossibles.

     

    Leibniz's Monads Confront the Screen

    She sensed the beat, heard it calling somewhere in her mind, instigating the power in her limbs and the madness in her imagination. She breathed in, knowing at the moment of exhale the beat would come and urge her on and on until the ice was a tatter of dust and shards and cuts and grooves. The bass was deep, she felt it kicking in her heart and began her trial. She gained momentum slicing around the corners in sharp and angry swift movements. Leaping up into the air, she spun and twisted wildly, tightly like some maniac left crazed in his straitjacket.

    Chaos is composed of elements, each of which is extended over the following ones. This notion of extension is the first component of both Leibniz and Whitehead's definition of the event. "Extension exists when one element is stretched over the following ones such that it is a whole and the following elements are its parts."(Deleuze, p.77) This extension of parts to whole forms an infinite series that does not contain a final term nor a limit.

    "Time and Space are not limits but abstract coordinates of all series, that are themselves in extension, the minute the second the tenth of a second."(Deleuze, p77) This now leads us to the properties of extensive series in the event, these too are in extension. But, extensive series, when saturated to there limits offer relations and conjunctions. These are no longer extensions! It has become something rather than nothing, but also this rather than that: no longer the indefinite article but the demonstrative pronoun. A demonstrative pronoun specifies or singles out the person or thing referred to: the demonstrative pronouns these and…that. The images below can be seen in this light as temporal sections of an event which contain intrinsic properties and characteristics unique to that particular moment -yet born in fluvia.

       

       

     

     

    PREHENSION DATUMS

     

     

    The Nexus of Prehension and The Individual

    The crowd's whoops and whoas came and then descended into applause as she deliberately crashed her blades back into the ice. And then up again, thrashing and rigid, she beat her arms against the cold air. She caught a glimpse of a spectator's face, awe, surprise; in fact, confusion. She was attacking the ice, she was beating it down in front of their wondering faces, breaking their expectations of some pink lady with the grace of elegance and stance. She was raw energy, it surged through her muscles making them tight as she raced along. She leapt up, her legs kicking out. All of the power reaching out and out from the blades which she brought down and across on the ice. And there she looped and spun, bringing her body low approaching the challenger face to face and then brought herself back up. She brought her arms from above, flexed with fists clenched and sent them crashing down as she raced again...

    The individual is creativity according to Whitehead. It is the formation of the new. It is no longer the indefinite article nor the demonstrative pronoun but a "personal mood." The individual is a concrescence of elements. Further it is a prehensions: "An element is the given, the datum of another element that prehends it by degrees. Prehension is individual unity. The vector of prehension moves from the world to the subject, from the prehended datum to the prehending one. Thus, the data of prehension are public elements, while the subject is the intimate or private that expresses intimacy & individuality. But, the datum, is itself a preexisting or coexisting prehension, such that all prehensions are prehension of prehension (See attached video stills). The event thus becomes a nexus of prehension. I.e. the entire sequence played as one continuous movement. Each new prehension becomes a datum. It becomes public." (Deleuze, p.78) We can see now that the event is the objectification of one prehension and the subjectification of another (the subjective intent/contemplation/planning of the next move, however slight) it is at once public and private -THE SKATER THINKS, THE AUDIENCE GASPS.

     

    Teleological Records

    . . . The bass and the beats pounded so loudly now, they bled into her ears, so profusely, she could hear nothing else. So loud, it became all she saw and felt and she no longer controlled her body. It was all bass and fury that moved her. She was blind beyond thought Only movement, simply spins and leaps and blades, she was the device of something higher, used to etch a bit of fire and insanity into the ice. She was numb, almost out of body, carried away by the passion. . .

    Beyond the video still there is another element to the event, the Record. The record hear is a direct mapping of the skaters movements. It is the impressions and scratches left on the ice. It is an example of a physical prehension come eternal object. The scratch is a trace of what has been born in fluvia, a pure virtuality actualized in prehensions/datum's and recorded as eternal artifact and record. Figures, temporal sections and mapped traces on ice..

    "determine extension and are inseparable from the process of actualization or realization into which they enter and gain a limited permanence, within the limits of the flux which creates them, or the prehensions which actualize them. They are eternal objects that have ceased becoming incarnate, just as a new thing, it has found its condition."(Deleuze, p.). The scratches represent a measurement. They are the intentional transmission of information onto the ice, albeit, a byproduct of the event, nevertheless these vectors of prehension are teleological, that is, they had a purpose and where brought about not simply by a causal relationship, but as man made artifact. Each skater, the identifiable source, will know his own record, the variance of different records is infinite.

    . . . Then, agony. In full leap, in mid air, the light flooded into her eyes, hundreds of waiting eyes melted into her own. The beat had left her body, and floated somewhere above her. Her limbs felt almost sectioned off, parts amputated and sewn back in new places. Her blades, as if her claws, somehow detached from herself. The impending white god rushed faster and faster at her, its face absorbing all sense; devouring her as it gleamed its revenge for the blasphemy. Her body broke against it The crowd gasped, their voices drowning out the last of the beat The dark maiden acknowledged her defeat in front of this court's curiosity and concern. The thought of another day came in the instance before black out as peacocks and pink ladies alike glided mellifluous to lift her dark carcass from the ice.

     

    © 1996 Lawrence McDonald

    es such that it is a whole and the following elements are its parts."(Deleuze, p.77) This extension of parts to whole forms an infinite series that does not contain a final term nor a limit. vti_timelastmodified:TR|20 Feb 1997 06:14:28 -0500 public_html/_vti_cnf/anicn281322.gif010064400017520000001000000003020712642300200204440ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 00:01:57 +0200 vti_timelastmodified:TR|14 Feb 1997 00:01:57 +0200 public_html/_vti_cnf/background.jpg010064400017520000001000000003020712642300200210240ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_timelastmodified:TR|13 Feb 1997 10:35:56 +0200 public_html/_vti_cnf/Ball7271.gif010064400017520000001000000003020712642300200200650ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:03 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:03 +0200 public_html/_vti_cnf/Berkeley.html010064400017520000001000000023060712642300200206410ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 07:04:08 -0500 vti_cachedtitle:SR|Criticism of Newton's Doctrines on Space vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html H|http://acnet.pratt.edu/~arch543p/help/Berkeley.html K|Berkeley.html K|Berkeley.html K|Berkeley.html K|Berkeley.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 07:04:05 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 07:04:05 -0500 public_html/_vti_cnf/biology.html010064400017520000001000000013040712642300200205400ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Biology vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|biology.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/bkgrn1622C3.gif010064400017520000001000000003020712642300200204760ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 23:42:01 +0200 vti_timelastmodified:TR|13 Feb 1997 23:42:01 +0200 public_html/_vti_cnf/bkgrn168241.gif010064400017520000001000000003020712642300300204640ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 22:40:51 +0200 vti_timelastmodified:TR|13 Feb 1997 22:40:51 +0200 public_html/_vti_cnf/bkgrn6D252.gif010064400017520000001000000003200712642300300204210ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|miatopia vti_modifiedby:SR|miatopia vti_timecreated:TR|14 Feb 1997 02:43:08 +0200 vti_timelastmodified:TR|14 Feb 1997 02:43:08 +0200 public_html/_vti_cnf/Blue_BallD163.gif010064400017520000001000000003020712642300300210520ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 03:52:07 -0500 vti_timelastmodified:TR|14 Feb 1997 03:52:07 -0500 public_html/_vti_cnf/Blue_Line21F2.gif010064400017520000001000000003020712642300300210640ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 03:52:12 -0500 vti_timelastmodified:TR|14 Feb 1997 03:52:12 -0500 public_html/_vti_cnf/bureau.tif010064400017520000001000000003020712642300300201730ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:59 +0200 vti_timelastmodified:TR|13 Feb 1997 10:35:59 +0200 public_html/_vti_cnf/bureau_diploma.html010064400017520000001000000007310712642300300220700ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|21 Feb 1997 20:54:04 -0500 vti_cachedtitle:SR|Bureau Diploma vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif S|images/bureau.GIF vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|21 Feb 1997 18:57:49 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 18:57:49 -0500 public_html/_vti_cnf/Burgin.html010064400017520000001000000020760712642300300203320ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 07:05:26 -0500 vti_cachedtitle:SR|Geometry and Abjection vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 07:05:23 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 07:05:23 -0500 public_html/_vti_cnf/BurstaniA024.gif010064400017520000001000000003020712642300300210110ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:03 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:03 +0200 public_html/_vti_cnf/card.GIF010064400017520000001000000003020712642300300174440ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:02 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:02 +0200 public_html/_vti_cnf/card.JPG010064400017520000001000000003020712642300300174570ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:57 +0200 vti_timelastmodified:TR|13 Feb 1997 10:35:57 +0200 public_html/_vti_cnf/CHPT1.HTM010064400017520000001000000006350712642300300174060ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:56 +0200 vti_cachedlinkinfo:VX|K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:55 +0200 public_html/_vti_cnf/CHPT2.HTM010064400017520000001000000007150712642300300174060ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:56 +0200 vti_cachedlinkinfo:VX|K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:55 +0200 public_html/_vti_cnf/CHPT3.HTM010064400017520000001000000006350712642300300174100ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:56 +0200 vti_cachedlinkinfo:VX|K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:55 +0200 public_html/_vti_cnf/CHRONO.HTM010064400017520000001000000013320712642300300175520ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:56 +0200 vti_cachedtitle:SR|a Superstructuralist Chronology vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|CHRONO.HTM H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:55 +0200 public_html/_vti_cnf/Craig.html010064400017520000001000000022330712642300300201240ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Craig Bacheller vti_cacheddtm:TX|21 Feb 1997 20:54:00 -0500 vti_cachedtitle:SR|Craig Bacheller vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html vti_modifiedby:SR|? vti_timecreated:TR|17 Feb 1997 03:27:39 -0500 vti_nexttolasttimemodified:TR|19 Feb 1997 20:59:48 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:26:59 -0500 public_html/_vti_cnf/CustTags.tag010064400017520000001000000003020712642300300204360ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/document1.html010064400017520000001000000007570712642300300210070ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|21 Feb 1997 20:54:04 -0500 vti_cachedtitle:SR|Document 1 vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif S|images/passport1.GIF S|images/passport2.GIF vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|21 Feb 1997 18:47:28 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 18:47:28 -0500 public_html/_vti_cnf/ethics.html010064400017520000001000000013020712642300300203520ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Ethics vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|ethics.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 thics.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +020public_html/_vti_cnf/frames4.htm010064400017520000001000000005210712642300300202620ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 01:59:22 -0500 vti_cachedtitle:SR|Frameset 4 vti_cachedlinkinfo:VX|F|logo.htm F|toc.htm F|index.html vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:36:02 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 01:59:22 -0500 public_html/_vti_cnf/frames4.html010064400017520000001000000003350712642300300204410ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 04:03:34 -0500 vti_cachedtitle:SR|Frameset 4 vti_cachedlinkinfo:VX|F|logo.htm F|toc.htm F|index.html vti_cachedbodystyle:SR| public_html/_vti_cnf/guestbook.html010064400017520000001000000024340712642300300211040ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect addguest.html 2 0 99 22 vti_botmap3:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Comments vti_cacheddtm:TX|21 Feb 1997 20:54:02 -0500 vti_cachedtitle:SR|Comments vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html M|images/add.GIF L|addguest.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html S|images/Blue_Line.gif H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|20 Feb 1997 06:14:14 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|20 Feb 1997 06:17:08 -0500 public_html/_vti_cnf/guestbook.pl.txt010064400017520000001000000003020712642300300213610ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/guestlog.html010064400017520000001000000006100712642300300207250ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|20 Feb 1997 05:20:58 -0500 vti_cachedtitle:SR|Guestbook Short Log vti_cachedlinkinfo:VX| vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|13 Feb 1997 10:35:58 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|20 Feb 1997 05:20:56 -0500 public_html/_vti_cnf/head_trauma_clinic.html010064400017520000001000000023740712642300300227000ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Head Trauma Clinic vti_cacheddtm:TX|21 Feb 1997 20:53:56 -0500 vti_cachedtitle:SR|Head Trauma Clinic vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html K|head_trauma_clinic.html K|head_trauma_clinic.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|17 Feb 1997 22:33:31 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:26:29 -0500 public_html/_vti_cnf/help.html010064400017520000001000000040050712642300300200260ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Help vti_cacheddtm:TX|21 Feb 1997 20:53:56 -0500 vti_cachedtitle:SR|Help vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html H|http://acnet.pratt.edu/~arch543p/addguest.html H|file:///help/reference_pages.html H|http://humanitas.ucsb.edu/shuttle/philo.html H|http://www.utm.edu/research/iep/p/parmenid.htm H|http://www.io.org/~randall/Parmenides/Parm-comment.html H|http://sun.soci.niu.edu/~phildept/Dye/Parmenides.html H|http://www.io.org/~randall/Parmenides/Parmenides.html H|http://www.dm.uniba.it/psiche/bas3/node3.html H|http://www.shu.edu/~wachsmut/reals/history/zeno.html H|http://www-groups.dcs.st-andrews.ac.uk/~history/Mathematicians/Euclid.html H|http://www-groups.dcs.st-andrews.ac.uk/~history/HistTopics/Non-Euclidean_geometry.html H|http://www.geom.umn.edu//docs/research/ieee94/node12.html H|http://www-mitpress.mit.edu:80/City_of_Bits/contents.html H|http://www.lycos.com H|http://www.altavista.digital.com H|http://www.yahoo.com H|http://the-tech.mit.edu/Classics/ M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|19 Feb 1997 21:19:40 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|20 Feb 1997 01:33:46 -0500 public_html/_vti_cnf/HTACCESS.TXT010064400017520000001000000003020712642300300200020ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/HTPASSWD.TXT010064400017520000001000000003020712642300300200420ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/index for dbucsesc.html010064400017520000001000000010610712642300300225270ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|17 Feb 1997 06:39:56 -0500 vti_cachedtitle:SR|We have moved! vti_cachedlinkinfo:VX|S|images/background.gif H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:59 +0200 vti_nexttolasttimemodified:TR|13 Feb 1997 10:36:00 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|17 Feb 1997 06:39:55 -0500 public_html/_vti_cnf/INDEX.GIF010064400017520000001000000003020712642300400174030ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_timelastmodified:TR|13 Feb 1997 10:35:56 +0200 public_html/_vti_cnf/index.htm010064400017520000001000000020630712642300400200340ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:04 +0200 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|background.jpg S|card.jpg H|/help/history_of_mathematics.html H|/help/art.html H|/help/philosophy.html H|/help/aesthetics.html H|/help/ethics.html H|/help/history_of_mathematics.html H|/help/history_of_geometry.html H|/help/physics.html H|/help/biology.html H|/help/sociology.html H|/help/psychology.html H|/help/literarary_criticism.html H|/help/political_science.html H|/help/Friedman.html H|head_trauma_clinic.html H|/help/machine.html H|/help/biology.html H|/help/language.html H|/readings/Monod.html H|/help/Vico.html H|/readings/Monod.html H|outline.html H|/help/Cezanne.html H|/readings/Monod.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:02 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:02 +0200 public_html/_vti_cnf/index.html010064400017520000001000000042670712642300400202200ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Paragone vti_cacheddtm:TX|21 Feb 1997 20:53:52 -0500 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html H|stage_manager.html H|help/history_of_mathematics.html H|help/art.html H|help/philosophy.html H|help/aesthetics.html H|help/ethics.html H|help/history_of_mathematics.html H|help/geometry.html H|help/physics.html H|help/biology.html H|help/sociology.html H|help/psychology.html H|help/literary_criticism.html H|help/political_science.html H|help/Friedman.html H|help/Merleau-Ponty.html H|causality.html H|help/philosophy.html H|help/phenomenology.html H|myth_of_essences.html H|help/language.html H|help/deconstruction.html H|help/materialism.html H|help/Barthes.html H|readings/origin_of_geometry.html H|head_trauma_clinic.html H|help/machine.html H|help/biology.html H|help/language.html H|outline.html H|readings/Monod.html H|readings/Monod.html H|help/Vico.html H|help/Cezanne.html H|who_am_I.html H|head_trauma_clinic.html H|head_trauma_clinic.html H|readings/Deleuze.html H|readings/Whitehead.html H|readings/Leibniz.html H|head_trauma_clinic.html K|projects.html S|images/Blue_Ball.gif H|stage_manager.html S|images/Blue_Ball.gif M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html S|images/Blue_Line.gif H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|21 Feb 1997 20:49:23 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 20:53:51 -0500 ml M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html H|stage_manager.html H|help/history_of_mathematics.html H|help/art.html H|help/philosophy.html H|help/aesthetics.html H|help/ethics.html H|help/history_of_mathematics.html H|help/geometry.html H|help/physics.html H|help/biology.html H|help/sociologpublic_html/_vti_cnf/index_for_dbucsesc.html010064400017520000001000000005560712642300400227360ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|17 Feb 1997 06:39:56 -0500 vti_cachedtitle:SR|We have moved! vti_cachedlinkinfo:VX|S|images/background.gif H|http://acnet.pratt.edu/~arch543p/ vti_cachedbodystyle:SR| public_html/_vti_cnf/indexnew.html010064400017520000001000000015140712642300400207220ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Introductory Remarks vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|indexnew.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ H|http://acnet.pratt.edu/~arch543p/mainpage.html H|http://acnet.pratt.edu/~arch543p/syllabus.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/intro.gif010064400017520000001000000003020712642300400200270ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 14:48:21 +0200 vti_timelastmodified:TR|13 Feb 1997 14:48:21 +0200 public_html/_vti_cnf/toc.htm010064400017520000001000000007430712642300400175150ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:04 +0200 vti_cachedtitle:SR|index vti_cachedlinkinfo:VX|S|tstreak.jpg S|Purpleba.gif H|file:///E|/Dan\ Bucsescu/Web\ Pages/frames4.htm S|Purpleba.gif S|Purpleba.gif S|Purpleba.gif vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:03 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:03 +0200 public_html/_vti_cnf/introduction.html010064400017520000001000000004440712642300400216230ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:58 -0500 vti_cachedlinkinfo:VX|K|introduction.html vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:58 -0500 public_html/_vti_cnf/Italian_passport.html010064400017520000001000000010570712642300400224170ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|21 Feb 1997 20:54:04 -0500 vti_cachedtitle:SR|Italian Passport vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif S|images/passport1.GIF S|images/passport2.GIF vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|21 Feb 1997 18:51:04 -0500 vti_nexttolasttimemodified:TR|21 Feb 1997 18:47:28 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 18:51:04 -0500 public_html/_vti_cnf/language.html010064400017520000001000000012610712642300400206630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 -0500 vti_cachedtitle:SR|Language vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|language.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:02 -0500 public_html/_vti_cnf/literary_criticism.html010064400017520000001000000013320712642300400230000ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Literary Criticism vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|literary_criticism.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/logo.htm010064400017520000001000000031140712642300400176630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.acnet.pratt.edu/ 82 1 267 16 rect http://acnet.pratt.edu/~dbucsesc/ 266 125 370 142 rect index.html 39 170 238 180 vti_botmap1:SX| rect help.html 0 118 99 142 rect projects.html 0 79 99 105 rect outline.html 0 38 99 65 rect index.html 0 0 99 26 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Paragone vti_cacheddtm:TX|14 Feb 1997 01:59:18 -0500 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|bkgrn1622C3.gif M|Untitled-2.gif L|http://www.acnet.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|buttons1.gif L|help.html L|projects.html L|outline.html L|index.html H|/help/history_of_mathematics.html H|/help/art.html H|/help/philosophy.html H|/help/aesthetics.html H|/help/ethics.html H|/help/history_of_mathematics.html H|/help/history_of_geometry.html H|/help/physics.html H|/help/biology.html H|/help/sociology.html H|/help/psychology.html H|/help/literarary_criticism.html H|/help/political_science.html H|/help/Friedman.html H|head_trauma_clinic.html H|/help/machine.html H|/help/biology.html H|/help/language.html H|outline.html H|/readings/Monod.html H|/readings/Monod.html H|/help/Vico.html H|/help/Cezanne.html H|projects.html H|projects.html H|theory.html H|readings/Deleuze.html H|readings/Whitehead.html H|readings/Leibniz.html H|/readings/Monod.html H|mailto:vico65@aol.com vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:36:03 +0200 vti_nexttolasttimemodified:TR|14 Feb 1997 01:31:20 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 01:59:18 -0500 public_html/_vti_cnf/logo.html010064400017520000001000000026070712642300400200450ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.acnet.pratt.edu/ 82 1 267 16 rect http://acnet.pratt.edu/~dbucsesc/ 266 125 370 142 rect index.html 39 170 238 180 vti_botmap1:SX| rect help.html 0 118 99 142 rect projects.html 0 79 99 105 rect outline.html 0 38 99 65 rect index.html 0 0 99 26 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 04:03:34 -0500 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|bkgrn1622C3.gif M|Untitled-2.gif L|http://www.acnet.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|buttons1.gif L|help.html L|projects.html L|outline.html L|index.html H|/help/history_of_mathematics.html H|/help/art.html H|/help/philosophy.html H|/help/aesthetics.html H|/help/ethics.html H|/help/history_of_mathematics.html H|/help/history_of_geometry.html H|/help/physics.html H|/help/biology.html H|/help/sociology.html H|/help/psychology.html H|/help/literarary_criticism.html H|/help/political_science.html H|/help/Friedman.html H|head_trauma_clinic.html H|/help/machine.html H|/help/biology.html H|/help/language.html H|outline.html H|/readings/Monod.html H|/readings/Monod.html H|/help/Vico.html H|/help/Cezanne.html H|projects.html H|projects.html H|theory.html H|readings/Deleuze.html H|readings/Whitehead.html H|readings/Leibniz.html H|/readings/Monod.html H|mailto:vico65@aol.com vti_cachedbodystyle:SR| public_html/_vti_cnf/Logonew.gif010064400017520000001000000003020712642300400203060ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/machine.html010064400017520000001000000013040712642300400205020ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Machine vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|machine.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/mainpage.html010064400017520000001000000016230712642300400206630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:58 -0500 vti_cachedtitle:SR|Architectural Event vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|mainpage.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ H|http://acnet.pratt.edu/~arch543p/theory.html H|http://acnet.pratt.edu/~arch543p/other.html H|http://acnet.pratt.edu/~arch543p/markers.html H|http://acnet.pratt.edu/~arch543p/terminals.html H|mailto:vico65@aol.com vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:58 -0500 public_html/_vti_cnf/markers.html010064400017520000001000000022310712642300400205420ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Markers vti_cacheddtm:TX|14 Feb 1997 06:48:02 -0500 vti_cachedtitle:SR|Markers vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html H|head_trauma_clinic.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|14 Feb 1997 06:47:46 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 06:48:01 -0500 public_html/_vti_cnf/Neta.html010064400017520000001000000023630712642300400177730ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Reactivating Geometry vti_cacheddtm:TX|21 Feb 1997 20:53:56 -0500 vti_cachedtitle:SR|Reactivating Geometry vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html S|images/neta1.GIF S|images/neta2.GIF S|images/neta3.GIF S|images/neta4.GIF M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html vti_modifiedby:SR|? vti_timecreated:TR|17 Feb 1997 03:28:21 -0500 vti_nexttolasttimemodified:TR|19 Feb 1997 20:55:53 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:28:32 -0500 public_html/_vti_cnf/new index for arch543p.html010064400017520000001000000021530712642300400230430ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:04 +0200 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|../background.jpg S|file:///E:/tstreak.jpg S|file:///E:/tstreak.jpg S|card.jpg H|/help/history_of_mathematics.html H|/help/art.html H|/help/philosophy.html H|/help/aesthetics.html H|/help/ethics.html H|/help/history_of_mathematics.html H|/help/history_of_geometry.html H|/help/physics.html H|/help/biology.html H|/help/sociology.html H|/help/psychology.html H|/help/literarary_criticism.html H|/help/political_science.html H|/help/Friedman.html H|head_trauma_clinic.html H|/help/machine.html H|/help/biology.html H|/help/language.html H|/readings/Monod.html H|/help/Vico.html H|/readings/Monod.html H|outline.html H|/help/Cezanne.html H|/readings/Monod.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:02 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:02 +0200 public_html/_vti_cnf/other.html010064400017520000001000000022350712642300400202230ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Other Related Concepts vti_cacheddtm:TX|14 Feb 1997 06:41:52 -0500 vti_cachedtitle:SR|Other Related Concepts vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_nexttolasttimemodified:TR|31 Dec 1969 19:00:00 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 06:41:50 -0500 public_html/_vti_cnf/outline.html010064400017520000001000000032450712642300400205630