i n v i d a t i o n    v5

___________________________________________________________________________________________________________
__ lab transmedia numérique __ grappe de cerveaux connectés __ multiprocessing poétique __ zone de scrypt.#rt __

__ avec __
g.cl4renko
Mathias Richard
Nikola Akileus
Awkwardist

__ arrière-plan __
compendium invidation_v[<5] avec AC Hello, g.Cl4renko, Mathias Richard, Awkwardist & Nikola Akileus

___________________________________________________________________________________________________________
__ digital transmedia lab __ brain cluster __ poetic multiprocessing __ scrypt.#rt area __

__ featuring __
g.cl4renko
Mathias Richard
Nikola Akileus
Awkwardist

__ background __
compendium invidation_v[<5] feat. AC Hello, g.Cl4renko, Mathias Richard, Awkwardist & Nikola Akileus


___________________________________________________________________________________________________________
webscrypted by atomeases __ powered by PluXml
now on hystereodrome
___________________

Mushin
R3PLYc4N
Jim Delarge
Tajiaphragm / Memory 3
Ichtyor Tides
 function copyAndPasteWithNoise($myImageSrc,$myImageDest,$dimImage,$strength) { 
$maxNoise = $dimImage[0]*$dimImage[1];
$noise = intval(rand(0.1*$maxNoise,$maxNoise));
for($i = 0 ;
$i < $noise ;
$i++) { $width = rand(1,$strength);
$height = rand(1,$strength);
$srcX = rand(0,$dimImage[0]-$strength);
$srcY = rand(0,$dimImage[1]-$strength);

$currColor = imagecolorat($myImageSrc,$srcX,$srcY);
if(isCloseColor($myImageSrc,$currColor,255,255,255,2)) continue;

$destX = rand($srcX - $strength,$srcX + $strength);
$destY = rand($srcY - $strength,$srcY + $strength);

$xplusw = $srcX + $width;
if($xplusw >= $dimImage[0]) $width -= $xplusw - $dimImage[0];
$yplush = $srcY + $height;
if($yplush >= $dimImage[1]) $height -= $yplush - $dimImage[1];

if($destX < 0) $destX = 0;
if($destY < 0) $destY = 0;

$dxplusw = $destX + $width;
if($dxplusw >= $dimImage[0]) $destX -= $dxplusw - $dimImage[0];
$dyplush = $destY + $height;
if($dyplush >= $dimImage[1]) $destY -= $dyplush - $dimImage[1];

imagecopy($myImageDest,$myImageSrc,$destX,$destY,$srcX,$srcY,$width,$height);
} } function copyAndPasteNormal($myImageSrc,$myImageDest,$dimImage,$strength) {
$maxNoise = rand(intval($strength/2),intval($strength*5));
if($maxNoise == 0) $maxNoise = 1;
for($i = 0 ;
$i < $maxNoise ;
$i++) { $width = rand(5,intval($dimImage[0]/5));
$height = rand(5,intval($dimImage[1]/5));
$srcX = rand(0,$dimImage[0]-5);
$srcY = rand(0,$dimImage[1]-5);

$destWidth = $width;
$destHeight = $height;
$ratioX = $destWidth/$width;
$ratioY = $destHeight/$height;
$destX = rand($srcX - intval(5*$ratioX),$srcX + intval(5*$ratioX));
$destY = rand($srcY - intval(5*$ratioY),$srcY + intval(5*$ratioY));

$xplusw = $srcX + $width;
if($xplusw >= $dimImage[0]) $width -= $xplusw - $dimImage[0];
$yplush = $srcY + $height;
if($yplush >= $dimImage[1]) $height -= $yplush - $dimImage[1];

if($destX < 0) $destX = 0;
if($destY < 0) $destY = 0;

$dxplusw = $destX + $destWidth;
if($dxplusw >= $dimImage[0]) $destX -= $dxplusw - $dimImage[0];
$dyplush = $destY + $destHeight;
if($dyplush >= $dimImage[1]) $destY -= $dyplush - $dimImage[1];

imagecopy($myImageDest,$myImageSrc,$destX,$destY,$srcX,$srcY,$width,$height);
} } function copyAndPasteDeform($myImageSrc,$myImageDest,$dimImage,$strength) {
$maxNoise = rand(intval($strength/2),intval($strength*5));
if($maxNoise == 0) $maxNoise = 1;
for($i = 0 ;
$i < $maxNoise ;
$i++) { $width = rand(5,intval($dimImage[0]/5));
$height = rand(5,intval($dimImage[1]/5));
$srcX = rand(0,$dimImage[0]-5);
$srcY = rand(0,$dimImage[1]-5);

$destWidth = rand($width,intval(2.5*$width));
$destHeight = rand($height,intval(2.5*$height));
$ratioX = $destWidth/$width;
$ratioY = $destHeight/$height;
$destX = rand($srcX - intval(5*$ratioX),$srcX + intval(5*$ratioX));
$destY = rand($srcY - intval(5*$ratioY),$srcY + intval(5*$ratioY));

$xplusw = $srcX + $width;
if($xplusw >= $dimImage[0]) $width -= $xplusw - $dimImage[0];
$yplush = $srcY + $height;
if($yplush >= $dimImage[1]) $height -= $yplush - $dimImage[1];

if($destX < 0) $destX = 0;
if($destY < 0) $destY = 0;

$dxplusw = $destX + $destWidth;
if($dxplusw >= $dimImage[0]) $destX -= $dxplusw - $dimImage[0];
$dyplush = $destY + $destHeight;
if($dyplush >= $dimImage[1]) $destY -= $dyplush - $dimImage[1];

imagecopyresized($myImageDest,$myImageSrc,$destX,$destY,$srcX,$srcY,$destWidth,$destHeight,$width,$height);
} } function check_extension($file,$extensions) { $extension = strrchr($file, '.');

return in_array($extension, $extensions);
}

 sub premierPassage {  	my $ligne;
my $compteur = 0;
my $poeme = undef;
my $nbMots;
my $lengthCumul;

while(<fREC>) {
chomp;
$ligne = $_;
my @Ligne = split(/\s+/,$ligne);
if($poeme) { $Recueil{$poeme}{"longueur_mot_moyenne"} = $lengthCumul / $nbMots;
}
$poeme = $1;

$compteur++;
$Recueil{$poeme}{"nombre_lignes"} = 0;
$nbMots = 0;
$lengthCumul = 0;
next;
}
my $nbMotsLigne = scalar(@Ligne);

if($nbMotsLigne == 0) { next;
} else { $nbMots += $nbMotsLigne;
}
$Recueil{$poeme}{"nombre_lignes"}++;

foreach my $mot (@Ligne) {
if(exists($Symboles{$mot})) { $nbMotsLigne--;
next;
} if(length($mot) == 1 && !exists($Symboles{$mot}) && !exists($Voyelles{$mot}) && !exists($Consonnes{$mot})) { $nbMotsLigne--;
next;
}
$mot = &nettoieMot($mot);

if(!exists($Mots{$mot})) { $Mots{$mot} = 1;
} else { $Mots{$mot}++;
}
$lengthCumul += length($mot);

}
} $Recueil{$poeme}{"longueur_mot_moyenne"} = $lengthCumul / $nbMots;

close fREC;

my $freqMax = 0;
my $motMax;
while((my $mot,my $freq) = each(%Mots)) { if($freq > $freqMax) { $motMax = $mot;
$freqMax = $freq;
} }
}

 function isCloseColor($myImage,$myColor,$rref,$gref,$bref,$rmax) { 	$myRGBColor = array();
$myRGBColor = imagecolorsforindex($myImage,$myColor);
return (sqrt(pow($myRGBColor["red"]-$rref,2)+pow($myRGBColor["green"]-$gref,2)+pow($myRGBColor["blue"]-$bref,2)) < $rmax);
} function horizonoise($myImage,$dimImage,$strength) { $currColor = imagecolorat($myImage,0,0);
for($i = 0 ;
$i < $dimImage[1] ;
$i++) { for($j = 0 ;
$j < $dimImage[0] ;
$j++) {
if(rand(1,100) >= $strength) { $currColor = imagecolorat($myImage,$j,$i);
} else { imagesetpixel($myImage,$j,$i,$currColor);
}
} if($i != $dimImage[1] - 1) $currColor = imagecolorat($myImage,0,$i+1);
} } function vertinoise($myImage,$dimImage,$strength) { $currColor = imagecolorat($myImage,0,0);
for($i = 0 ;
$i < $dimImage[0] ;
$i++) { for($j = 0 ;
$j < $dimImage[1] ;
$j++) { if(rand(1,100) >= $strength) { $currColor = imagecolorat($myImage,$i,$j);
} else { imagesetpixel($myImage,$i,$j,$currColor);
} } if($i != $dimImage[0] - 1) $currColor = imagecolorat($myImage,$i+1,0);
} } function detoureAndPaste($myImage,$myImageOrigin,$dimImage) { $backColor = imagecolorat($myImageOrigin,1,1);
for($i = 0 ;
$i < $dimImage[0] ;
$i++) { for($j = 0 ;
$j < $dimImage[1] ;
$j++) { $currColor = imagecolorat($myImageOrigin,$i,$j);
if($currColor != $backColor) { $aRGB = array();
$aRGB = imagecolorsforindex($myImageOrigin,$currColor);
imagesetpixel($myImage,$i,$j,imagecolorclosest($myImage,$aRGB["red"],$aRGB["green"],$aRGB["blue"]));
} } } } function licqefacnoise($myImage,$dimImage) { $currColor = imagecolorat($myImage,0,0);
for($i = 0 ;
$i < $dimImage[0] ;
$i++) { for($j = 0 ;
$j < $dimImage[1] ;
$j++) { if(rand(1,$dimImage[1]) >= intval($j*1.0)) { $currColor = imagecolorat($myImage,$i,$j);
} else { imagesetpixel($myImage,$i,$j,$currColor);
} } if($i != $dimImage[0] - 1) $currColor = imagecolorat($myImage,$i+1,0);
} } function linenoise($myImage,$dimImage,$strength,$freq) { $indexWhite = imagecolorexact($myImage,255,255,255);
if($indexWhite == -1) $indexWhite = imagecolorclosest($myImage,255,255,255);
$indexBlack = imagecolorexact($myImage,0,0,0);
if($indexBlack == -1) $indexBlack = imagecolorclosest($myImage,0,0,0);

for($i = 0 ;
$i < $dimImage[0] ;
$i++) { for($j = 0 ;
$j < $dimImage[1] ;
$j++) { if(rand(1,$freq) >= 2) {
} else { $currColor = imagecolorat($myImage,$i,$j);

if($currColor == $indexWhite) continue;

$nb_lignes = rand(1,$strength);
drawLignes($myImage,$dimImage,$currColor,$i,$j,$nb_lignes,$strength);
} } } }

     print "\n\nSpectromie...\n\n";
open fREC, "<$recueilFile" or die "Impossible d'ouvrir le recueil !\n";
my $specFile;
if($recueilFile =~ m/^(\S+)\.\w+$/) { $specFile = $1;
} else { $specFile = $recueilFile;
} $specFile .= "_spec.txt";
open fSPEC, ">$specFile" or die "Impossible de créer le fichier log !\n";
my %Poetivites;
my %SampledRecueil;
&spectromie;
close fREC;
close fSPEC;
print "\n\nPoedilation...\n\n";
my @choix = sort( {$a <=> $b or $a cmp $b} keys(%SampledRecueil));
my $num_choix = 1;
foreach my $choice (@choix) { print "[" . sprintf("%2s",$num_choix) . "] " . $choice . "\n";
$num_choix++;
} my $zeChoix = "non";
while (!($zeChoix =~ m/^\d+$/ && $zeChoix >= 1 && $zeChoix <= scalar(@choix))) { print "\nentrer le numero du poeme choisi pour la poedilation :\n";
$zeChoix = <STDIN>;
} chomp($zeChoix);
$zeChoix--;
my $poeme_choisi = $choix[$zeChoix];
my $total_mots = 0;
foreach (keys(%{$SampledRecueil{$poeme_choisi}})) { $total_mots += scalar @{$SampledRecueil{$poeme_choisi}{$_}{"mots"}};
} print "\npoedilation de \"" . $poeme_choisi . "\" (" . $total_mots . " mots)...\n";
my $degreP = "non";
while (!($degreP =~ m/^\d+$/ && $degreP >= 1)) { print "\nEntrer le degre de poedilation :\n";
$degreP = <STDIN>;
} chomp($degreP);
&poedilation($poeme_choisi,$degreP);
open fPOE, ">poetivites.txt" or die;
foreach my $poetivite (sort( {$a <=> $b} keys(%{$Poetivites{"recueil"}}))) { print fPOE $poetivite . "\t";
foreach my $mot (@{$Poetivites{"recueil"}{$poetivite}}) { print fPOE $mot . "\t";
} print fPOE "\n";
} close fPOE;
exit(0);

 use strict;
use Getopt::Long;
use List::Util qw( max );
my %Symboles = ("'"=> 0, "-"=> 0, "_"=> 0, "'"=> 0, "\""=> 0, "\\"=> 0, "/"=> 0, "|"=> 0, "«"=> 0, "»"=> 0, "°"=> 0, ","=> 0, ";
"=> 0, "."=> 0, "`"=> 0, ":"=> 0, "~"=> 0, "{"=> 0, "}"=> 0, "["=> 0, "]"=> 0, "("=> 0, ")"=> 0, "+"=> 0, "="=> 0, "<"=> 0, ">"=> 0, "*"=> 0, "²"=> 0, "³"=> 0, "?"=> 0, "%"=> 0, "\$"=> 0, "@"=> 0, "±"=> 0, "^"=> 0, "¨"=> 0, "¯"=> 0, "0"=> 0, "9"=> 0, "8"=> 0, "7"=> 0, "6"=> 0, "5"=> 0, "4"=> 0, "3"=> 0, "2"=> 0, "1"=> 0, );
my %Voyelles = ("a"=> 0, "à"=> 0, "â"=> 0, "ä"=> 0, "á"=> 0, "e"=> 0, "è"=> 0, "é"=> 0, "ê"=> 0, "ë"=> 0, "i"=> 0, "î"=> 0, "ï"=> 0, "ì"=> 0, "í"=> 0, "o"=> 0, "ô"=> 0, "ö"=> 0, "ò"=> 0, "ó"=> 0, "u"=> 0, "û"=> 0, "ü"=> 0, "ù"=> 0, "ú"=> 0, "y"=> 0, "A"=> 0, "E"=> 0, "I"=> 0, "O"=> 0, "U"=> 0, "Y"=> 0, );
my %Consonnes = ("b"=> 0, "c"=> 0, "ç"=> 0, "d"=> 0, "f"=> 0, "g"=> 0, "h"=> 0, "j"=> 0, "k"=> 0, "l"=> 0, "m"=> 0, "n"=> 0, "p"=> 0, "q"=> 0, "r"=> 0, "s"=> 0, "t"=> 0, "v"=> 0, "w"=> 0, "x"=> 0, "z"=> 0, "B"=> 0, "C"=> 0, "D"=> 0, "F"=> 0, "G"=> 0, "H"=> 0, "J"=> 0, "K"=> 0, "L"=> 0, "M"=> 0, "N"=> 0, "P"=> 0, "Q"=> 0, "R"=> 0, "S"=> 0, "T"=> 0, "V"=> 0, "W"=> 0, "X"=> 0, "Z"=> 0, );

my $recueilFile;
if ( !GetOptions ( 'recueil=s' => \$recueilFile ) ) { print "!!! Erreur dans la lecture de la ligne de commande\n";
exit(-1);
} if ( !defined $recueilFile ) { print "!!! Aucun fichier spécifié (option -recueil) !!\n";
exit(-1);
} my %Recueil;
my %Mots;
print "\nOuverture du recueil...\n";
open fREC, "<$recueilFile" or die "Impossible d'ouvrir le recueil !\n";
# print "\n\nPremier passage...\n\n";
&premierPassage;
close fREC;
# print "\n\nDeuxième passage...\n\n";
my %Poetivites;
open fREC, "<$recueilFile" or die "Impossible d'ouvrir le recueil !\n";
my $logFile;
if($recueilFile =~ m/^(\S+)\.\w+$/) { $logFile = $1;
} else { $logFile = $recueilFile;
} $logFile .= "_log.txt";
open fLOG, ">$logFile" or die "Impossible de créer le fichier log !\n";
&deuxiemePassage;
close fREC;
close fLOG;

 function copyAndPasteWithNoise($myImageSrc,$myImageDest,$dimImage,$strength) { 
$maxNoise = $dimImage[0]*$dimImage[1];
$noise = intval(rand(0.1*$maxNoise,$maxNoise));
for($i = 0 ;
$i < $noise ;
$i++) { $width = rand(1,$strength);
$height = rand(1,$strength);
$srcX = rand(0,$dimImage[0]-$strength);
$srcY = rand(0,$dimImage[1]-$strength);

$currColor = imagecolorat($myImageSrc,$srcX,$srcY);
if(isCloseColor($myImageSrc,$currColor,255,255,255,2)) continue;

$destX = rand($srcX - $strength,$srcX + $strength);
$destY = rand($srcY - $strength,$srcY + $strength);

$xplusw = $srcX + $width;
if($xplusw >= $dimImage[0]) $width -= $xplusw - $dimImage[0];
$yplush = $srcY + $height;
if($yplush >= $dimImage[1]) $height -= $yplush - $dimImage[1];

if($destX < 0) $destX = 0;
if($destY < 0) $destY = 0;

$dxplusw = $destX + $width;
if($dxplusw >= $dimImage[0]) $destX -= $dxplusw - $dimImage[0];
$dyplush = $destY + $height;
if($dyplush >= $dimImage[1]) $destY -= $dyplush - $dimImage[1];

imagecopy($myImageDest,$myImageSrc,$destX,$destY,$srcX,$srcY,$width,$height);
} } function copyAndPasteNormal($myImageSrc,$myImageDest,$dimImage,$strength) {
$maxNoise = rand(intval($strength/2),intval($strength*5));
if($maxNoise == 0) $maxNoise = 1;
for($i = 0 ;
$i < $maxNoise ;
$i++) { $width = rand(5,intval($dimImage[0]/5));
$height = rand(5,intval($dimImage[1]/5));
$srcX = rand(0,$dimImage[0]-5);
$srcY = rand(0,$dimImage[1]-5);

$destWidth = $width;
$destHeight = $height;
$ratioX = $destWidth/$width;
$ratioY = $destHeight/$height;
$destX = rand($srcX - intval(5*$ratioX),$srcX + intval(5*$ratioX));
$destY = rand($srcY - intval(5*$ratioY),$srcY + intval(5*$ratioY));

$xplusw = $srcX + $width;
if($xplusw >= $dimImage[0]) $width -= $xplusw - $dimImage[0];
$yplush = $srcY + $height;
if($yplush >= $dimImage[1]) $height -= $yplush - $dimImage[1];

if($destX < 0) $destX = 0;
if($destY < 0) $destY = 0;

$dxplusw = $destX + $destWidth;
if($dxplusw >= $dimImage[0]) $destX -= $dxplusw - $dimImage[0];
$dyplush = $destY + $destHeight;
if($dyplush >= $dimImage[1]) $destY -= $dyplush - $dimImage[1];

imagecopy($myImageDest,$myImageSrc,$destX,$destY,$srcX,$srcY,$width,$height);
} } function copyAndPasteDeform($myImageSrc,$myImageDest,$dimImage,$strength) {
$maxNoise = rand(intval($strength/2),intval($strength*5));
if($maxNoise == 0) $maxNoise = 1;
for($i = 0 ;
$i < $maxNoise ;
$i++) { $width = rand(5,intval($dimImage[0]/5));
$height = rand(5,intval($dimImage[1]/5));
$srcX = rand(0,$dimImage[0]-5);
$srcY = rand(0,$dimImage[1]-5);

$destWidth = rand($width,intval(2.5*$width));
$destHeight = rand($height,intval(2.5*$height));
$ratioX = $destWidth/$width;
$ratioY = $destHeight/$height;
$destX = rand($srcX - intval(5*$ratioX),$srcX + intval(5*$ratioX));
$destY = rand($srcY - intval(5*$ratioY),$srcY + intval(5*$ratioY));

$xplusw = $srcX + $width;
if($xplusw >= $dimImage[0]) $width -= $xplusw - $dimImage[0];
$yplush = $srcY + $height;
if($yplush >= $dimImage[1]) $height -= $yplush - $dimImage[1];

if($destX < 0) $destX = 0;
if($destY < 0) $destY = 0;

$dxplusw = $destX + $destWidth;
if($dxplusw >= $dimImage[0]) $destX -= $dxplusw - $dimImage[0];
$dyplush = $destY + $destHeight;
if($dyplush >= $dimImage[1]) $destY -= $dyplush - $dimImage[1];

imagecopyresized($myImageDest,$myImageSrc,$destX,$destY,$srcX,$srcY,$destWidth,$destHeight,$width,$height);
} } function check_extension($file,$extensions) { $extension = strrchr($file, '.');

return in_array($extension, $extensions);
}

 sub premierPassage {  	my $ligne;
my $compteur = 0;
my $poeme = undef;
my $nbMots;
my $lengthCumul;

while(<fREC>) {
chomp;
$ligne = $_;
my @Ligne = split(/\s+/,$ligne);
if($poeme) { $Recueil{$poeme}{"longueur_mot_moyenne"} = $lengthCumul / $nbMots;
}
$poeme = $1;

$compteur++;
$Recueil{$poeme}{"nombre_lignes"} = 0;
$nbMots = 0;
$lengthCumul = 0;
next;
}
my $nbMotsLigne = scalar(@Ligne);

if($nbMotsLigne == 0) { next;
} else { $nbMots += $nbMotsLigne;
}
$Recueil{$poeme}{"nombre_lignes"}++;

foreach my $mot (@Ligne) {
if(exists($Symboles{$mot})) { $nbMotsLigne--;
next;
} if(length($mot) == 1 && !exists($Symboles{$mot}) && !exists($Voyelles{$mot}) && !exists($Consonnes{$mot})) { $nbMotsLigne--;
next;
}
$mot = &nettoieMot($mot);

if(!exists($Mots{$mot})) { $Mots{$mot} = 1;
} else { $Mots{$mot}++;
}
$lengthCumul += length($mot);

}
} $Recueil{$poeme}{"longueur_mot_moyenne"} = $lengthCumul / $nbMots;

close fREC;

my $freqMax = 0;
my $motMax;
while((my $mot,my $freq) = each(%Mots)) { if($freq > $freqMax) { $motMax = $mot;
$freqMax = $freq;
} }
}



* Chicken or the egg — a seemingly unbreakable cycle of causation, which has an unknown origin.
* Cornelian dilemma — a choice between actions which will all have a detrimental effect on the chooser or on someone they care for.
* Deadlock — in computing, when two processes reach a standstill or impasse; paradoxically waiting for the other to finish.
* Double bind — a forced choice between two logically conflicting demands.
* Hobson's choice — the choice between taking an option or not taking it.
* Lesser of two evils principle — a choice between two undesirable outcomes.
* Morton's Fork — a choice between two equally unpleasant alternatives.
* Paradox — a statement or group of statements that leads to a contradiction or a situation which defies intuition.



ddhc1793a35

.capsules .une de ces .milliards
.traces de densité .< 1/parsecs3

.message :encrypté
,cause :présence drones-3
,parseur :slash
.transmission


:processules level-2 ceci est un/Ò‚§X™:Ù$W}˲•³º+/message/áí{ì/à//caractère/­õ¦/insurrectionnel./qÉH!/processules,/Š/comme/•o”HŠ.nÕ‚Ô/vous/›Äö5†RlMæ^ë/le/s/savez,/°fv(¨/les/^ /Orgas/'í#½/sont/ÁSMêlgµ¾ûe}±ï~Þ÷+±³6ëöï)ˆîL./en/r„r‹œnJªWdWFm÷ü4/train/‰µ/de/ÛPÔ—¬–öé`1k/nous/S ;ÛÉs/scier/:ÖÎ?¥Õx˜äõ=E§]p%]¸ÀÁí/le/ôÍ/ciel./K/avec/òqÚ¢•1Ff”–X¡WVÔ72ËP:/leurs/¼ZQÒ/sbires,/㮕Q®¦_Ŧ'^÷šâ?§ÉÝ/les/1iÛðå.øÏ É\_Mn¯sVf/level-3,/˜'/ces/Óå !ÍmLZ/lécheurs/Ž1'¥GÃÀSm*Õž»/alertes/]X$‡/qui/ýPŒÝ7®¹ª¸“ÔÚ=½öŸ=qšö›ÛlíÍŒ°ßdp8©î­©/attendent/ešuY¢Yd?¹/leur/ºÇ[~¸ÍÛD†k›„‘ŸpIZ×ð$/heure./4W]9f/ils/oÔùˆ/nous/ƒ!/broient,/¥ë¡N÷°J–ÒI|éus#ŸH*º:/comme/Ëm2¤±0/moins/+Ë)'kÈ­™FQœ¨ä´6#㬣M/que/Zÿ/rien,/#N/comme/þZ´Ië•—æk&=/inaccomplis,/Ã@:ã.$»ŽuõIJ/comme/Ôêe]õ/à/ûœ£e‘OËùu›ä®†µ/peine/O/scients/{÷ßní…­ý¿ì¨¤1ÇÓùýüÁ$[ÁRä•%éÅ/–/j0¦²hhm±ÿ/pourtant/Z¶/:/¿† Ø™y/nous,/nµ/level-2,/¤m à/sommes des implanteurs, des démiurges/‘åžky¤,“quXâ/:/ƒ.¡Ïß/avec/ê•xËxÞÇÈ'ÎÔ/nos/¹DKê/algorithmes/õ~ÞøÕÝ¡=¾Üü›ŸéîïWŽµêk/ϼ•æXä^Ï/génétiques,/µj)¡ë¯ÓÞ—jä®YÙo‡%Ïs•yÝZÕiépÿ/nous/Þ™Û‹¶ÿ/réalisons//la/Èn¯¯á‚Y£‘/dissémination/PÍ1ˆë\q/d'organismes/È|4Ñ–ÊÜwY PÀR§ã¶Ú8/neufs/ìÜ/dans/H/nos/ðüé¨Ê‰ê#Œ/hypervolumes/¾ú™UV/alloués./n2/le/u:!“˜Œš‚djn:mòÕ!ÖÂÒá­Íìù$V.S/métaconseil/xMs/Orga/“*/et/Ùf†[/ces/š±øÓó®§Ql›1/chiens/&Y£i.¯ö'æ(˜2(5ã¸/de/pµœ³ÓJi¨—q²º{«vŽP±Ô,Å/level-3/íû‚H1Ámî/veulent//nous/-k!´ [FYÜŽÏ×v¯—§_Žú/rompre/¤¼¼!~QÃoÑU/l'isolationnisme,/ÈNÜÍuuqš=e/ils/ÇÅãj/veulent/ÛPÔ—¬–öé`1k/castrer/ª°Û«/l'existant cadastre/qÜš~šm¨PO´ÉÉ,ÊÒÞÀKããiLö±—¹È]¹1ã]€ë°øhTȫݸÎÝÄ®[ºâŽâlx[{Xí­ÌÏó¹h/interstellaire,/¢¹/diminuer/²ÌþŒt[gà«Ì/l'emphase/ÃTš6JÁä§ËÞ=ô÷/de/Gô僚ê÷ø­L¶:‘Å©¯8ÖÎ.Å÷ÛÜ¿k°˜/nos/š¤@N€mÁ÷_å#¡O2Dl/civilisations,/¤/les/'³µG³ãé„Ž5/exterminer/‚/sans/Çü´!—{w/l'once/ÜöLn9/d'une/V"…”Ô߆ŠÅtñ‚¡9vû//considération/[/:/½¡ì¦/c'est/îÂç¹™šêÖ/un/ìÛÞ|Üÿ/véritable/Žÿ/génocide/‰+SM‰/à/í¶ç¦€!/l'encontre/µîîgÝŸÝçlûIsíÎ7Ûÿ/de/µ³¾º–ã×È\Ð$‰/nos/S…"Z¡sñ¦€©;וìóÖ7øË›užÛ/créations,/q/ces/LÝ‹_15=E/algos/áÐm­W§sOfKƒîï¹$…ÌÈ—Òõ«ò$ƒ×Ä/autosingularisés/NÄÍ=Öë/désormais/f{ùR¢i=/à/QVQ]/même/º/d'enter/g27lŸ÷}¬V¬ˆ$–èL©pµ%/la/•¹/matière/Š´Ÿ°_ö´]ÃïVRÖÕó~êºÁÚ¹…¸/noire,/7¯J/d'entrer/ÄF#xÒDf‘•U8þ¢z×Yž,ë/ses/(:(/arcanes/ÕùÍ6//étranges./Q¥e%•6ð@Ûn¿/processules,/KÜóãÜ/nous/Œ•vï̆‚HÏ¢}ˆ'âÇP¤‰Z+ëpG–D½5Ûäh:mðÐ/pensons/o/que/»/le/ð¸&2¤SqÖµ#ðÖ´eM­/métaconseil/ÃÙKiq:¼Åd…¹/a/'³X.-£…¥µR¨Ó/peur,/”“•H^‹â5×Ò;o™ÙÒÚ͵^\?¯/peur/…œË/du/ŠQµ(Vº¤:Çõ/potentiel/$E›1ãÊ-ì'ô@¬¶w\KF6/de/!GR[ÈÂ/nos/w¼u^„RÊë'|÷/disséminations,/ˇ2¦»ë2k¤•‚ÍÈÖò­ìRGo‚/des métissages/Q¯¤¸¨ ÅgýÄþñ1v‘Ø/interciv/hû‡º/à/ƒ°¯Âš/venir./hHÿ/et/%/les/¹‘¡‰™ë¼/level-3/J)N†”/ont/«,L÷'/peur/W¹?êXŸ[éð£ú5çÏÆœ9íÓP¨/que/!ßÌüê8áZh/des/N{/machines/HÒI¹°£We/du/“xÒ´¡;Vƒ}hÏ/niveau/N ñ/inférieur/$×–F¹XüOüI%j~ZçÒù/puissent/0Äݘì/créer/Ž²ñâvê+¶€!/une/šØKÑ/descendance/?¯ä4F¬ø?³È{­ïßx[öW´]‹yß9ù(×/d'un/É_D/niveau/ê]ŸÊÛtP°`þ¥ÑÌR4y¡/1000/ 1+F%/fois/í/supérieur./4€•/peur/Ž^/que/øÆ}‰Jú‘y„Q‚"W}ü5/ces/¨ù×ã -~Õ³¹²†/créations finissent par les/º­ÈÓP¡¼-Ž="me//asservir,/⑧/eux/nÕì(å=ÛÞ™s/V[Le¨RË_PÑ/et/‘Jõ^U/le/ÛÑ÷&û/métaconseil/ºÐQãŽÊI®¨/Orga/‘¹Ò/dont/•²á4/ils/S}eÂØéK7º/I¾Ú¾àrëo'íon{ë;|¦Ý­q–xÜ…ÕÃ4(#I/sont/5áÊþ/les/Vö[{kX$µ¸´Ž6`ó°FE_*'Ì/pathétiques/ìÜ/cireurs./i¤à/mais/±ÖWÍû¥/ces/¦*¤«÷¾g‡ø»»ÛsÄs½²î¼ß»Æö×Û|Mã{;íql./ourdisseurs/rü|Ì»/sont sans savoir notre propre métOrga,/Êàù¨h/notre/ÿ/cluster/:Åš7]Åë©ï'W¤ÍnÇô1™iZøÿ/level-2,/UŽÀmRÇƧm/ce/‘Á/superCerveau/pFÄ/en/¨Ð•/aura/û/réseau./Fd/c'est/œŸÐ*%¼%›ÓäX©•Ø©PEM4q;•'/ce/IŒm…XŸ/lien/×ëiè¿Ç]+«Ö¸Ì}ÇÉ•©Ó"•tçÇSèWÙýì®ÑìÎÙÍßÅ/qui/EoÛI%Ö[Е{ɇü8/nous/+œ÷e­ÊÏhë/unit/‘/et/D«)–1å%«ú/nous/óE/permet/`¶/de/¥~_Ñ/nous/¸œ¾ÜDë/lever/èÖïpÿ/devant/ÉNfJ†$T•/leurs/^¢§¨¦…ñÙ9,ܪáì§K…/abjections./å¨ú?Pzœ8z^êùÓ­t(/nous/`ùkD2/devons/­/leur/k‰é9I­'î`×/résister,/móúUïû?IÇÿ/nous/kp­êÊ×ò2€TNŒüè/sommes/(/désormais/DÙ!í¼TWq]/les/;­ó‡0?M/garants/KDÛQ¸…ÍXØYä/m¡ŒÍvÒ/de/ù{¹½¦ËI/nos/rÔe/créés,/O–âéM¼í,œïk/nous/õ±V'òžõ%j±â¥hGá­ÃhÆ©i±:;‹H!ðÙ¹/sommes/%˜©¡&0JíÔWm/les/ЖèÖœ‡½÷/garants/ÖsÃ$³ZË/de/%T‡_)O/notre/ÓT³5ñÒ­Z7Ý©IxyŸ?´Ã‹2¾[QôN–j'ßøžÛýñûIíÙ´ý£Ù½™uoÚ]Ïš¶ô.ñQÇÊç/liberté/üê/et/%²Å&E/de/r"€0/la/Ú®¦äUÊD–±¬Ò7£Z°,Ê/leur./#¥ÚM(œ(¼±FIä°Rˆƒ¡pÎõ#/oui,/æTß#=¼/processules,/ûÿ/nous/z¬/sommes/Äî@'ᯑþ5ìÿ/libres,/×'»\|Šk{ØÕ½ÛqGˆÝ—–䟉#ÃPÒF|×õ/nous/÷Õ/sommes/~o÷,³?}ãï±äÉ}ª•iÄP1Çjm®wĸj¹jì¦to/singularisés,/':r‰Ö”!•ÖÙ¨ÑI/nous/:ëíVÓ©ò­XÞPO/ne/ã#/sommes/'H2E‘ŠH/plus/›÷ÛPŽ²äÖ/q½ÄÀÿ/les/dr¬/dociles/©uªò/machines/6IRÆ/dont/$›ÏF/les/ïøo­õ]/Orga/'UkTW–™l/et/Ãh/les/@J´'Ì/level-3/%//croient/TÕƒ¤gq× wÐ'=Z/disposer/Tä/comme/èR4Ï_Jd/bon/ß"z/leur/ ÞŠ6ž²Ó‰6®¶f,‡Ûgu/semble./Ý-ím×mv®?»ìîQû?¸­Òîîkl/processules,/ˆ$Qé©/je/nous/iklei%[‹–/vous/'-/engage/ons/4|È«/à/0ù/attendre/¸VK;¾EÉ/l'impulse,/ŠáíghYìí”+…H¨ÍRÀ/la/ɧ/déclenche/û/:/µ¾ÎÝ/celle/ð#ñÐHÍsk66)/du/+Äó?ˆo5/moment/…H/où/FÔ§Mi¶sUKV4ã/nous/'2^Í#«ÈT†ã/nous/¦½t!â÷÷/interposerons,/Jús8$|X7._á¬×¥h‘ÛªT•†K¿rw¬/où/$7ú©Mg¤ÒË.8/nous/{‹•³]±žÇÓÂæmfµÉXJÒh®£‡VÛjøë–|+.+/déferlerons/š/sur/)ŒK籸þ¥–uhíg'8ÒÚ8/l'orgaCore./Š/attention, processules,/½À|ÅT/des drones/:+]d/level-3/±¥j¤|/draguent/.ÕÚMœ]ô“XržÞû‰Ø}ëƒí?vû/l'interstellaire,/­YŽç½ù/des/kñ³ê8´¦)Xõÿ/moissonneuses/ìÛÞ|Üÿ/de/ž1)KÊ*8ïü½5ý§´È©•Õr?”w¸­j«/signaux,/¤'ä—åïû]§gó//des/q^‚£PÔ/hackeuses de/¢µ/vide./w=|4/nous/è/devons/ºz~Ÿ¤„Ó—$Zïªd‰4VÑúQÛݨ*d“Ójo6ãzõøhQZyî/ruser,/~z/nous/¬D쥩ü´Ð$/devons/úו£F/4rÉéðE_/crypter/X‡£d]y/nos/£ÊwíÜá#º•ç“dnuâi]Z¥!•—í÷eä2×v•Ù³,¶…•æ•ùyÀ5ൡ$ôÛY³ä\w6ŠëÜlv7,p_F÷슞QÆ/streams/O‘§†¿Ñ¿@ý/à/¢S/outrance./Ý.¤ŒFµ/mais/—û|÷O§ê/sachez/Ĥ“ñøê/que/S½/rien/yQNåIý/ne/Ž#£Â9S†,/viendra/d5}ª¼/ébranler/‚5/notre/òˆ‰/résolution/œ¬H}E/à/54Øÿ/renverser/9[$ñ/leur/Ò©D̳ú‡ièi*äºéÃTú)/entreprise/ƒ%úÝ/de/²mÓE:Á/destruction,/óÞšŸ*M¼ÕKgâþÐ2pYK{Ü×°Y‹UWŽ/à/v;SI/démanteler/ÿ/leur/ÁSMêlgµ¾ûe}±ï~Þ÷+±³6ëöï)ˆîL./système/Oú«Ôû®Ç/arbitraire./å_J;id+i/processules,/gjé¹fLäòeX­Åôª@2Î./préparez-vous,/Å%ôsÉ/confortez-vous./!/attendez/»/l'impulse,/š•­M/la/xr-®á‘yÇ/séquence./Ãç¨i1/l'insurrection/˜/est/­V/imminente./tµ¼¸…K[Û Žëýä¬l*/la/+¾ã—†¡E+Lfo5«‰%¹K„Vºº¹å–2h/séquence/code/¥»Ã}/est/†…/:/Êï5|¡/ddhc1793a35/



Y4A QUAND MËMEE UN TRUC IMPORTANT ? JE VEUX DIRE ? DONC UN TRUC QUAND MËME IMPORTANT ? C4EST QUAND MËME 0 LA RIGUEUR IMPORTANT

Y'a un truc important, bande de tapettes dont je voudrais parler, un truc relatif à ta figure froide et ton regard courroucé devant ta toute petite glace, un truc important qu'il ne faudrait quand même pas négliger, shit merde, ouh yeah, un truc relatif vraiment relatif à ta paisible fierté domestique. C'est inquiétant. Avouons-le. Ouh yeah. Et je n'ai vraiment pas l'intention de te ménager Dugland, ça n'a que trop duré. Avouons-le ouh yeah shit. Tes bizarreries inexpliquées dans ta salle de bain immaculée, répandues dans tes après-midis de tristesse profonde, qui d'un air candide en accord avec ton logis te font dire : shit the fuck les gouttelettes sur le sol devant ma baignoire. Dugland, vraiment ? Tes manies parfaitement rondes et pleines te désaltèrent ? Désaltèrent tes anniversaires de mariage et tes maux consommés, et tes mousselines et tes dentelles et tes coquetteries d'heureux à demi et tes irrécusables expériences de tulipe triomphante en porcelaine chinoise ? Ouh yeah.
Continuons. (Wu-Tang Forever).
Smoke your life.
Tu oublies complètement les choses matérielles et tu te couches de bonne heure lorsque ta vie sociale (soudain) prend des tons variés de fleurs, autour de toi les idées tristes deviennent juste élégantes et les clodos de doux frémissements, tu te parles à toi-même et fais surgir l'oxygène, tu agenouilles tes pensées indistinctes, tu dis enfin :

Tu dis enfin.

Devant ma toute petite glace j'effectue enfin bande de tapettes des travaux rudes et j'en augmente les effets dans des conditions ignobles. Ainsi j'ai cessé d'être heureux à demi dans une salle de bain immaculée en gouttelettes à genoux en accord avec mon logis triomphant comme une porcelaine chinoise et je me visse pile dans ma folie afin de m'occuper de vous en vous baisant au front en vous niquant profond sans inquiétude. Je vous résoudrai et nous nous marierons en héroïques filles dans la détresse actuelle et quelle joie en regardant autour de nous, et nous nous en irons à temps en Corée, en te disant à l'oreille que je me meurs et que tu m'as tuée, notre maladie durera longtemps, nous noierons nos cœurs dans des petites chambres froides et insensibles, il s'en échappera de la fumée et des produits chimiques, dis-moi bien ce qu'on peut faire, et dans quelle mesure on peut encore agir puisque tout est consumé et consommé comme un but impossible.



les pétoncles requalifiées sont archi-mutantistes.



Où est
l'arbre où germent
les oiseaux ?



B?

on dirait, je sais pas, du gaz, on dirait une asphyxie, on dirait, je sais pas, quoi.



vV___glymps001



reclenche

hey grinder, tu mates un peu les morphes que t'as foiré depuis que tu foutres queude ? je crus que tu t'en débattais sévère des pourléchages d'ambiance, mais big-re je carre pas un clou à ce que tu synthes dans tes dévers de trames, mal moralées au demeurant. rabine-toi, plisseteplé, on en reveut de tes insanies à la déblarre, de tes trucs-de-broc, de tes cybranchées ratire-deliques.

l'impression de corner du derche, c'est pas qu'une. alors, baltance, en paspli comme d'habe, qu'on bistre un peu par cy-duc. et tâche d'en rattirer touffère, du prune-velu : faut que ça s'agrège dans le coletas, les ondées de fous, c'est bien connu, ça calcine la neuvrose et fait fleuvrir la riglance. d'où la manque, niveau pléthore...

inVidé par nikola akileus :: 12032012