From afc71795d1496d54ca46a042ecea2198b3cefc2e Mon Sep 17 00:00:00 2001 From: gauthiier Date: Tue, 21 Jan 2020 11:38:31 +0100 Subject: [PATCH] index(es) --- index.py | 75 + index.sh | 34 + index/1.Welcome-index.js | 1039 + index/10.Cyberfeminism-index.js | 5072 ++++ index/11.CODE-index.js | 5902 ++++ index/13.Post-digital-index.js | 8037 ++++++ index/14.MANIFESTO-index.js | 7353 +++++ index/15.LutherBlissett-index.js | 6879 +++++ index/16.NN-index.js | 21363 ++++++++++++++ index/17.Interviews-index.js | 23676 ++++++++++++++++ index/2.DeepEurope-index.js | 2894 ++ index/3.Network-index.js | 16602 +++++++++++ index/4.net.art-index.js | 9845 +++++++ index/5.Netzkritik-index.js | 4579 +++ index/6.FLOSS-index.js | 5835 ++++ index/7.Critique_Art_Politics-index.js | 4849 ++++ index/8.TacticalMedia-index.js | 11893 ++++++++ index/9.List_talking_to_List-index.js | 14346 ++++++++++ keywords/FoxStoplist.txt | 426 + keywords/oldrake.py | 168 + keywords/rake.py | 301 + www/routes.py | 119 +- www/static/indx.js | 10 + www/templates/indx.html | 28 + .../{xml_all.html => list_files_all.html} | 6 +- ...to List.xml => 9.List_talking_to_List.xml} | 0 26 files changed, 151318 insertions(+), 13 deletions(-) create mode 100644 index.py create mode 100755 index.sh create mode 100644 index/1.Welcome-index.js create mode 100644 index/10.Cyberfeminism-index.js create mode 100644 index/11.CODE-index.js create mode 100644 index/13.Post-digital-index.js create mode 100644 index/14.MANIFESTO-index.js create mode 100644 index/15.LutherBlissett-index.js create mode 100644 index/16.NN-index.js create mode 100644 index/17.Interviews-index.js create mode 100644 index/2.DeepEurope-index.js create mode 100644 index/3.Network-index.js create mode 100644 index/4.net.art-index.js create mode 100644 index/5.Netzkritik-index.js create mode 100644 index/6.FLOSS-index.js create mode 100644 index/7.Critique_Art_Politics-index.js create mode 100644 index/8.TacticalMedia-index.js create mode 100644 index/9.List_talking_to_List-index.js create mode 100644 keywords/FoxStoplist.txt create mode 100644 keywords/oldrake.py create mode 100644 keywords/rake.py create mode 100644 www/static/indx.js create mode 100644 www/templates/indx.html rename www/templates/{xml_all.html => list_files_all.html} (58%) rename xml/{9.List_talking_to List.xml => 9.List_talking_to_List.xml} (100%) diff --git a/index.py b/index.py new file mode 100644 index 0000000..e99bfc5 --- /dev/null +++ b/index.py @@ -0,0 +1,75 @@ +import argparse, os, sys, json, logging +from keywords import rake +from lxml import etree as et + +import yake + +logging.basicConfig(level=logging.DEBUG) + +def index(f): + + if not os.path.isfile(f): + logging.error(f + " is not a valid file.") + return None + + # filename should be of the type: N.xxxx.xml + #ex: 3.Network.xml + ch = os.path.basename(f).split('.')[0] + + indx = {} + + r = rake.Rake('keywords/FoxStoplist.txt', max_words_length=3, min_keyword_frequency=1) + + y = yake.KeywordExtractor(lan="en", top=40) + + root = et.parse(f).getroot() + + for m in root.findall('mails/mail'): + + nbr_str = m.find('nbr').text + content = m.find('content').text + + # format nbr + nbr_str = ch + '.' + nbr_str + + # yake + try: + kwy = y.extract_keywords(content) + for k in kwy: + kw = k[0] + if kw not in indx: + indx[kw] = [] + indx[kw].append(nbr_str) + except Exception as e: + print(e) + + # rake + try: + kwr = r.run(content) + kwr = [x for x in kwr if x[1] > 4.0] + for k in kwr: + kw = k[0] + if kw not in indx: + indx[kw] = [] + indx[kw].append(nbr_str) + except Exception as e: + print(e) + + return indx + + + +if __name__ == '__main__': + + p = argparse.ArgumentParser(description='Builds an index of emails') + p.add_argument('file', metavar="f", help="xml file to index") + + args = p.parse_args() + + ind = index(args.file) + ind_out = {'selected': {}, 'orphan': ind} + + print(json.dumps(ind_out, indent=4, sort_keys=True, ensure_ascii=False)) + + + diff --git a/index.sh b/index.sh new file mode 100755 index 0000000..296abea --- /dev/null +++ b/index.sh @@ -0,0 +1,34 @@ +#!/bin/sh + +echo "1.Welcome.xml -> 1.Welcome-index.js" +python index.py xml/1.Welcome.xml > index/1.Welcome-index.js +echo "2.DeepEurope.xml -> 2.DeepEurope-index.js" +python index.py xml/2.DeepEurope.xml > index/2.DeepEurope-index.js +echo "3.Network.xml -> 3.Network-index.js" +python index.py xml/3.Network.xml > index/3.Network-index.js +echo "4.net.art.xml -> 4.net.art-index.js" +python index.py xml/4.net.art.xml > index/4.net.art-index.js +echo "5.Netzkritik.xml -> 5.Netzkritik-index.js" +python index.py xml/5.Netzkritik.xml > index/5.Netzkritik-index.js +echo "6.FLOSS.xml -> 6.FLOSS-index.js" +python index.py xml/6.FLOSS.xml > index/6.FLOSS-index.js +echo "7.Critique_Art_Politics.xml -> 7.Critique_Art_Politics-index.js" +python index.py xml/7.Critique_Art_Politics.xml > index/7.Critique_Art_Politics-index.js +echo "8.TacticalMedia.xml -> 8.TacticalMedia-index.js" +python index.py xml/8.TacticalMedia.xml > index/8.TacticalMedia-index.js +echo "9.List_talking_to_List.xml -> 9.List_talking_to_List-index.js" +python index.py xml/9.List_talking_to_List.xml > index/9.List_talking_to_List-index.js +echo "10.Cyberfeminism.xml -> 10.Cyberfeminism-index.js" +python index.py xml/10.Cyberfeminism.xml > index/10.Cyberfeminism-index.js +echo "11.CODE.xml -> 11.CODE-index.js" +python index.py xml/11.CODE.xml > index/11.CODE-index.js +echo "13.Post-digital.xml -> 13.Post-digital-index.js" +python index.py xml/13.Post-digital.xml > index/13.Post-digital-index.js +echo "14.MANIFESTO.xml -> 14.MANIFESTO-index.js" +python index.py xml/14.MANIFESTO.xml > index/14.MANIFESTO-index.js +echo "15.LutherBlissett.xml -> 15.LutherBlissett-index.js" +python index.py xml/15.LutherBlissett.xml > index/15.LutherBlissett-index.js +echo "16.NN.xml -> 16.NN-index.js" +python index.py xml/16.NN.xml > index/16.NN-index.js +echo "17.Interviews.xml -> 17.Interviews-index.js" +python index.py xml/17.Interviews.xml > index/17.Interviews-index.js \ No newline at end of file diff --git a/index/1.Welcome-index.js b/index/1.Welcome-index.js new file mode 100644 index 0000000..43da4b2 --- /dev/null +++ b/index/1.Welcome-index.js @@ -0,0 +1,1039 @@ +{ + "orphan": { + "08:13": [ + "1.4.0" + ], + "08:13 est": [ + "1.4.0" + ], + "27feb96 geert lovink": [ + "1.2.0" + ], + "6feb98 geert lovink": [ + "1.3.0" + ], + "academically referenced": [ + "1.6.0" + ], + "ackers": [ + "1.1.0" + ], + "active cultural producers": [ + "1.2.0", + "1.3.0" + ], + "active from march": [ + "1.5.0" + ], + "address": [ + "1.0.0" + ], + "admisistrators": [ + "1.6.0" + ], + "admisistrators can discuss": [ + "1.6.0" + ], + "aggressive mailing list": [ + "1.7.0" + ], + "allowing regular": [ + "1.7.0" + ], + "andreas broeckmann": [ + "1.7.0" + ], + "andreas started administering": [ + "1.7.0" + ], + "anonymous mailing list": [ + "1.7.0" + ], + "archiving": [ + "1.5.0" + ], + "archiving or interpreting": [ + "1.5.0" + ], + "ars electronica center": [ + "1.7.0" + ], + "art": [ + "1.5.0", + "1.6.0" + ], + "art show": [ + "1.6.0" + ], + "artistic practice depends": [ + "1.7.0" + ], + "artists": [ + "1.6.0" + ], + "arts": [ + "1.6.0" + ], + "arts field": [ + "1.6.0" + ], + "august": [ + "1.7.0" + ], + "authors": [ + "1.3.0" + ], + "automatically via": [ + "1.0.0" + ], + "basic majordomo commands": [ + "1.7.0" + ], + "beryl graham": [ + "1.5.0" + ], + "bliss": [ + "1.5.0" + ], + "blurb explicitely reads": [ + "1.7.0" + ], + "body": [ + "1.3.0" + ], + "boys": [ + "1.0.0" + ], + "boys network": [ + "1.0.0" + ], + "case": [ + "1.2.0", + "1.3.0" + ], + "chaos computer": [ + "1.1.0" + ], + "claudia": [ + "1.1.0" + ], + "claudia reiche": [ + "1.1.0" + ], + "closed inner circle": [ + "1.1.0" + ], + "club": [ + "1.1.0" + ], + "club in berlin": [ + "1.1.0" + ], + "command word": [ + "1.0.0" + ], + "communication aspects": [ + "1.2.0" + ], + "community": [ + "1.7.0" + ], + "complete mail archive": [ + "1.7.0" + ], + "computer club": [ + "1.1.0" + ], + "conference": [ + "1.0.0" + ], + "content": [ + "1.0.0" + ], + "contrib.de": [ + "1.4.0" + ], + "cook": [ + "1.5.0" + ], + "core-group": [ + "1.1.0" + ], + "correct command address": [ + "1.0.0" + ], + "creating multiple options": [ + "1.7.0" + ], + "crumb": [ + "1.5.0" + ], + "crumb editors": [ + "1.5.0", + "1.5.0" + ], + "crumb web": [ + "1.5.0" + ], + "crumb web site": [ + "1.5.0", + "1.5.0" + ], + "cultural center": [ + "1.7.0" + ], + "cultural center pyramid": [ + "1.7.0" + ], + "cultural identity/identification": [ + "1.7.0" + ], + "cultural novi sad": [ + "1.7.0" + ], + "cultural producers": [ + "1.7.0" + ], + "culture": [ + "1.7.0" + ], + "curating": [ + "1.5.0" + ], + "curating list owners": [ + "1.5.0" + ], + "curatorial": [ + "1.5.0" + ], + "curatorial resource": [ + "1.5.0" + ], + "curators": [ + "1.6.0" + ], + "current": [ + "1.1.0" + ], + "current regulatory structure": [ + "1.1.0" + ], + "cyberfeminisms": [ + "1.0.0" + ], + "cyberfeminist": [ + "1.0.0" + ], + "cynical pessimism": [ + "1.2.0" + ], + "daily basis": [ + "1.7.0" + ], + "date": [ + "1.4.0" + ], + "de mailing list": [ + "1.0.0" + ], + "deeper knowledge": [ + "1.2.0" + ], + "digital": [ + "1.5.0" + ], + "digital video": [ + "1.5.0" + ], + "discuss": [ + "1.6.0" + ], + "discuss their projects": [ + "1.6.0" + ], + "discussion mailing list": [ + "1.0.0" + ], + "dominant euforia": [ + "1.2.0" + ], + "edi muka": [ + "1.7.0" + ], + "email": [ + "1.6.0" + ], + "email message": [ + "1.3.0" + ], + "email text works": [ + "1.6.0" + ], + "empyre": [ + "1.6.0" + ], + "est": [ + "1.4.0" + ], + "europe": [ + "1.7.0" + ], + "evident netiquette rules": [ + "1.7.0" + ], + "exhibiting": [ + "1.5.0" + ], + "experience": [ + "1.6.0" + ], + "explicitely formulate": [ + "1.7.0" + ], + "feb": [ + "1.2.0", + "1.3.0" + ], + "fellow syndicalists joined": [ + "1.7.0" + ], + "field": [ + "1.6.0" + ], + "flash art": [ + "1.6.0" + ], + "formulate an international": [ + "1.2.0" + ], + "forwarding via": [ + "1.2.0", + "1.3.0" + ], + "frantic life rhythm": [ + "1.7.0" + ], + "fri": [ + "1.3.0" + ], + "fri feb": [ + "1.3.0" + ], + "future reference": [ + "1.3.0" + ], + "geert lovink": [ + "1.2.0", + "1.3.0" + ], + "general": [ + "1.2.0", + "1.3.0" + ], + "general information": [ + "1.2.0", + "1.3.0" + ], + "general statements": [ + "1.2.0", + "1.3.0" + ], + "german hacker": [ + "1.1.0" + ], + "german hacker club": [ + "1.1.0" + ], + "good syndicate": [ + "1.7.0" + ], + "graham": [ + "1.5.0" + ], + "graham and sarah": [ + "1.5.0" + ], + "guest": [ + "1.6.0" + ], + "guests": [ + "1.6.0" + ], + "hacker club": [ + "1.1.0" + ], + "helene": [ + "1.1.0" + ], + "helene von": [ + "1.1.0" + ], + "helene von oldenburg": [ + "1.1.0", + "1.1.0" + ], + "highs ands lows": [ + "1.6.0" + ], + "hour grew": [ + "1.7.0" + ], + "imagined community": [ + "1.7.0" + ], + "imagined community inke": [ + "1.7.0" + ], + "including": [ + "1.5.0" + ], + "including net.art": [ + "1.5.0" + ], + "information": [ + "1.0.0" + ], + "initial email statement": [ + "1.6.0" + ], + "inke arns": [ + "1.7.0" + ], + "inke joined": [ + "1.7.0" + ], + "installations": [ + "1.5.0" + ], + "intellectuals working": [ + "1.2.0" + ], + "interactive": [ + "1.5.0" + ], + "interactive installations": [ + "1.5.0" + ], + "international": [ + "1.0.0", + "1.1.0" + ], + "international cyberfeminist": [ + "1.0.0" + ], + "international cyberfeminist alliance": [ + "1.0.0", + "1.0.0" + ], + "international discussion mailing": [ + "1.0.0" + ], + "interpreting new media": [ + "1.5.0" + ], + "invited guests": [ + "1.6.0" + ], + "involved in curating": [ + "1.5.0" + ], + "journlalists and intellectuals": [ + "1.2.0" + ], + "knowledge": [ + "1.6.0" + ], + "knowledge and experience": [ + "1.6.0" + ], + "kuni": [ + "1.1.0" + ], + "list": [ + "1.0.0", + "1.1.0", + "1.2.0", + "1.3.0", + "1.4.0", + "1.5.0", + "1.6.0", + "1.7.0" + ], + "list address": [ + "1.0.0" + ], + "list members": [ + "1.7.0" + ], + "list subscribers": [ + "1.7.0" + ], + "lists": [ + "1.7.0" + ], + "lively online communities": [ + "1.7.0" + ], + "mail": [ + "1.0.0", + "1.2.0", + "1.3.0" + ], + "mail to majordomo": [ + "1.3.0" + ], + "mailing": [ + "1.0.0", + "1.2.0", + "1.3.0", + "1.4.0", + "1.7.0" + ], + "mailing list": [ + "1.0.0", + "1.2.0", + "1.3.0", + "1.4.0", + "1.7.0", + "1.7.0" + ], + "mailing list developed": [ + "1.7.0" + ], + "mailing list imploded": [ + "1.7.0" + ], + "mailing list owned": [ + "1.0.0" + ], + "majordomo": [ + "1.3.0", + "1.4.0" + ], + "make": [ + "1.1.0" + ], + "make general": [ + "1.2.0", + "1.3.0" + ], + "make general statements": [ + "1.2.0", + "1.3.0" + ], + "march": [ + "1.5.0" + ], + "media": [ + "1.0.0", + "1.2.0", + "1.3.0", + "1.5.0", + "1.6.0", + "1.7.0" + ], + "media arts field": [ + "1.6.0", + "1.6.0" + ], + "media bliss": [ + "1.5.0" + ], + "media culture": [ + "1.7.0" + ], + "meetings": [ + "1.7.0" + ], + "message": [ + "1.0.0", + "1.3.0" + ], + "messages": [ + "1.0.0" + ], + "milosevic regime throughout": [ + "1.7.0" + ], + "money changes hands": [ + "1.0.0", + "1.2.0", + "1.3.0" + ], + "multiple channels": [ + "1.7.0" + ], + "net entity nn": [ + "1.7.0" + ], + "nettime": [ + "1.2.0", + "1.3.0", + "1.4.0" + ], + "nettime mailing": [ + "1.4.0" + ], + "nettime mailing list": [ + "1.4.0", + "1.4.0" + ], + "nettime-l": [ + "1.2.0", + "1.3.0" + ], + "nettime-l mailing": [ + "1.2.0", + "1.3.0" + ], + "nettime-l mailing list": [ + "1.2.0", + "1.3.0" + ], + "nettime-l nettime-archive": [ + "1.2.0", + "1.3.0" + ], + "network": [ + "1.0.0", + "1.7.0" + ], + "nn collective makes": [ + "1.7.0" + ], + "obn contributes": [ + "1.0.0" + ], + "obn creates": [ + "1.0.0" + ], + "obn creates real": [ + "1.0.0" + ], + "obn platforms": [ + "1.0.0" + ], + "obn platforms aim": [ + "1.0.0", + "1.0.0" + ], + "obn regularly": [ + "1.0.0" + ], + "oct": [ + "1.4.0" + ], + "oldboys": [ + "1.1.0" + ], + "oldboys-list": [ + "1.0.0" + ], + "oldenburg": [ + "1.1.0" + ], + "ollivier dyens": [ + "1.6.0" + ], + "online community": [ + "1.7.0" + ], + "open": [ + "1.1.0" + ], + "open list": [ + "1.1.0" + ], + "open mailing list": [ + "1.7.0" + ], + "order": [ + "1.1.0" + ], + "order to sell": [ + "1.2.0" + ], + "organic lifespan generating": [ + "1.6.0" + ], + "people": [ + "1.3.0", + "1.7.0" + ], + "personal performance space": [ + "1.7.0" + ], + "pit schultz": [ + "1.2.0", + "1.3.0" + ], + "please feel free": [ + "1.0.0" + ], + "please understand obn": [ + "1.1.0" + ], + "politically malevolent officials": [ + "1.7.0" + ], + "previous syndicate list": [ + "1.7.0" + ], + "proceedings": [ + "1.3.0" + ], + "producers": [ + "1.6.0" + ], + "producers and admisistrators": [ + "1.6.0" + ], + "productions": [ + "1.6.0" + ], + "promoting the dominant": [ + "1.2.0" + ], + "public announcements via": [ + "1.0.0" + ], + "publications": [ + "1.6.0" + ], + "publishing house autonomedia": [ + "1.0.0" + ], + "regular daily traffic": [ + "1.7.0" + ], + "reiche": [ + "1.1.0" + ], + "republishing": [ + "1.3.0" + ], + "request": [ + "1.0.0" + ], + "resource": [ + "1.5.0" + ], + "resource for upstart": [ + "1.5.0" + ], + "rise and decline": [ + "1.7.0" + ], + "rotterdam": [ + "1.7.0" + ], + "sarah": [ + "1.5.0" + ], + "sarah cook": [ + "1.5.0" + ], + "sell some product": [ + "1.2.0" + ], + "send": [ + "1.0.0", + "1.3.0" + ], + "send a message": [ + "1.0.0" + ], + "send mail": [ + "1.0.0", + "1.2.0", + "1.3.0" + ], + "sensible protection brought": [ + "1.7.0" + ], + "serb nationalist ideology": [ + "1.7.0" + ], + "server of ccc": [ + "1.1.0" + ], + "share": [ + "1.6.0" + ], + "share knowledge": [ + "1.6.0" + ], + "shifts": [ + "1.1.0" + ], + "situation": [ + "1.1.0" + ], + "sociable online environment": [ + "1.7.0" + ], + "social text filter": [ + "1.2.0", + "1.3.0" + ], + "soft": [ + "1.6.0" + ], + "soft space": [ + "1.6.0" + ], + "sometimes extremely funny": [ + "1.6.0" + ], + "space": [ + "1.6.0" + ], + "space obn": [ + "1.0.0" + ], + "space where invited": [ + "1.6.0" + ], + "specific communication": [ + "1.2.0" + ], + "specific communication aspects": [ + "1.2.0", + "1.2.0", + "1.3.0" + ], + "spectre": [ + "1.7.0" + ], + "spectre haunting europe": [ + "1.7.0" + ], + "spread by journlalists": [ + "1.2.0" + ], + "spreading self promotion": [ + "1.7.0" + ], + "structure": [ + "1.1.0" + ], + "subject": [ + "1.4.0" + ], + "subscriber base grew": [ + "1.7.0" + ], + "subscriber list": [ + "1.7.0" + ], + "subscriber list invisible": [ + "1.6.0" + ], + "subscribers": [ + "1.3.0", + "1.7.0" + ], + "subscribers feel responsible": [ + "1.0.0" + ], + "subscribers kept growing": [ + "1.7.0" + ], + "subscribers via desk": [ + "1.2.0", + "1.3.0" + ], + "subscribers whom iv": [ + "1.6.0" + ], + "subscription": [ + "1.0.0" + ], + "support edi muka": [ + "1.7.0" + ], + "surround media": [ + "1.6.0" + ], + "surround media arts": [ + "1.6.0", + "1.6.0" + ], + "susanne": [ + "1.1.0" + ], + "susanne ackers": [ + "1.1.0" + ], + "syndicate": [ + "1.7.0" + ], + "syndicate community": [ + "1.7.0" + ], + "syndicate initiative": [ + "1.7.0" + ], + "syndicate list": [ + "1.7.0" + ], + "syndicate mailing": [ + "1.7.0" + ], + "syndicate mailing list": [ + "1.7.0", + "1.7.0" + ], + "syndicate meetings": [ + "1.7.0" + ], + "syndicate network": [ + "1.7.0" + ], + "syndicate network grew": [ + "1.7.0" + ], + "syndicate project": [ + "1.7.0" + ], + "syndicate subscribers": [ + "1.7.0" + ], + "technical information": [ + "1.0.0" + ], + "technophile entity": [ + "1.7.0" + ], + "term deep europe": [ + "1.7.0" + ], + "textes": [ + "1.2.0", + "1.3.0" + ], + "theorists": [ + "1.6.0" + ], + "third international conference": [ + "1.1.0" + ], + "time": [ + "1.7.0" + ], + "tue": [ + "1.2.0", + "1.4.0" + ], + "tue feb": [ + "1.2.0" + ], + "understand obn": [ + "1.1.0" + ], + "unmoderated mailing lists": [ + "1.7.0", + "1.7.0" + ], + "unsubscribe nettime-l": [ + "1.2.0", + "1.3.0" + ], + "unsubscribe nettime-l nettime-archive": [ + "1.2.0", + "1.3.0" + ], + "upstart": [ + "1.5.0" + ], + "upstart media": [ + "1.5.0" + ], + "upstart media bliss": [ + "1.5.0" + ], + "verena": [ + "1.1.0" + ], + "verena kuni": [ + "1.1.0" + ], + "viable social online": [ + "1.7.0" + ], + "virtual space obn": [ + "1.0.0" + ], + "von oldenburg": [ + "1.1.0" + ], + "web": [ + "1.3.0" + ], + "web site": [ + "1.5.0" + ], + "website": [ + "1.1.0" + ], + "western europe active": [ + "1.7.0" + ], + "western european countries": [ + "1.7.0" + ], + "year": [ + "1.1.0" + ], + "zack": [ + "1.4.0" + ], + "zombie kept alive": [ + "1.7.0" + ], + "’very cyberfeminist international": [ + "1.0.0" + ] + }, + "selected": { + "chaos computer club": [ + "1.1.0", + "1.1.0" + ], + "cyberfeminist international": [ + "1.0.0", + "1.0.0", + "1.1.0" + ], + "deep europe": [ + "1.7.0", + "1.7.0" + ], + "desk.nl": [ + "1.2.0", + "1.3.0" + ], + "list server": [ + "1.1.0" + ], + "media art": [ + "1.5.0" + ], + "media arts": [ + "1.6.0" + ], + "net.art": [ + "1.5.0" + ], + "networked discourse": [ + "1.2.0" + ], + "obn": [ + "1.0.0", + "1.1.0" + ], + "paper media": [ + "1.3.0" + ] + } +} \ No newline at end of file diff --git a/index/10.Cyberfeminism-index.js b/index/10.Cyberfeminism-index.js new file mode 100644 index 0000000..2d73f80 --- /dev/null +++ b/index/10.Cyberfeminism-index.js @@ -0,0 +1,5072 @@ +{ + "orphan": { + "16:06": [ + "10.0.1" + ], + "1st cyberfeminist": [ + "10.6.0" + ], + "1st cyberfeminist international": [ + "10.6.0" + ], + "2nd floor east": [ + "10.4.1", + "10.4.2", + "10.4.4" + ], + "60s america": [ + "10.10.0" + ], + "88-94 wentworth": [ + "10.4.1" + ], + "88-94 wentworth street": [ + "10.4.1", + "10.4.4" + ], + ">> insisting otherwise": [ + "10.0.5" + ], + ">multimedia center kibersrcelab": [ + "10.0.1" + ], + ">political gesture": [ + "10.4.4" + ], + ">single term cyberfeminism": [ + "10.4.7" + ], + "academic male discourse": [ + "10.5.0" + ], + "access": [ + "10.5.0" + ], + "accidents": [ + "10.0.3" + ], + "acquired computer skills": [ + "10.8.0" + ], + "action": [ + "10.10.0" + ], + "activity": [ + "10.11.0" + ], + "actual performance": [ + "10.8.0" + ], + "actual practice cyberfeminism": [ + "10.6.0" + ], + "ada web": [ + "10.13.1" + ], + "adequate free time": [ + "10.8.0" + ], + "advanced computer techniques": [ + "10.8.0" + ], + "advanced skills": [ + "10.8.0" + ], + "aehm": [ + "10.4.5" + ], + "aesthetics": [ + "10.7.0" + ], + "affect social": [ + "10.9.0" + ], + "affinities": [ + "10.4.0", + "10.4.2" + ], + "afford medical services": [ + "10.4.2" + ], + "agree": [ + "10.0.2" + ], + "alla": [ + "10.9.0" + ], + "alla mitrofanova": [ + "10.9.0" + ], + "allowed maximum freedom": [ + "10.10.0" + ], + "allready called bad": [ + "10.0.0" + ], + "alluquere rosanne stone": [ + "10.6.0" + ], + "aloha": [ + "10.0.1" + ], + "am gagging": [ + "10.2.0" + ], + "am taking liberties": [ + "10.2.0" + ], + "amazing how current": [ + "10.1.0" + ], + "american feminist": [ + "10.12.0" + ], + "analyze feminist histories": [ + "10.6.0" + ], + "anatomical difference": [ + "10.0.8" + ], + "animals": [ + "10.0.1" + ], + "anna": [ + "10.1.0" + ], + "anne": [ + "10.13.0", + "10.13.1" + ], + "anne de haan": [ + "10.13.0", + "10.13.0" + ], + "anonymous ip address": [ + "10.14.0" + ], + "antiracist politics": [ + "10.4.0" + ], + "apologist": [ + "10.0.3" + ], + "approaches": [ + "10.4.6" + ], + "approaches to cyberfeminism": [ + "10.4.6" + ], + "appropriate analytical discourse": [ + "10.9.0" + ], + "area": [ + "10.13.1" + ], + "argumentation remain untouched": [ + "10.3.2" + ], + "ars": [ + "10.3.3" + ], + "art": [ + "10.0.0", + "10.0.2", + "10.0.7", + "10.2.0", + "10.4.6", + "10.12.0", + "10.13.0" + ], + "art and finance": [ + "10.2.0" + ], + "art dear": [ + "10.13.0" + ], + "art dear nettime": [ + "10.13.0" + ], + "art ensemble": [ + "10.10.0" + ], + "art ensemble cyberfeminism": [ + "10.10.0" + ], + "art institution": [ + "10.13.0" + ], + "art journal": [ + "10.4.6" + ], + "art movement": [ + "10.13.0" + ], + "art piece": [ + "10.0.8" + ], + "art projects": [ + "10.2.0" + ], + "art theory": [ + "10.4.4" + ], + "article": [ + "10.0.1", + "10.0.2", + "10.13.0" + ], + "article vagina": [ + "10.13.0" + ], + "artificial bodily changes": [ + "10.0.0" + ], + "artist": [ + "10.0.0" + ], + "artist group vns": [ + "10.0.0" + ], + "artist leon cmielewski": [ + "10.0.0" + ], + "artists": [ + "10.0.0" + ], + "artists from linz": [ + "10.3.3" + ], + "arts": [ + "10.0.2" + ], + "artwork": [ + "10.13.1" + ], + "aspect immediately evident": [ + "10.10.0" + ], + "attach": [ + "10.14.0" + ], + "attach an extra": [ + "10.14.0" + ], + "attitudes towards art": [ + "10.6.0" + ], + "australia": [ + "10.5.0" + ], + "authors": [ + "10.3.2" + ], + "autogasm self-unit": [ + "10.15.0" + ], + "automated information technology": [ + "10.8.0" + ], + "automated office technology": [ + "10.8.0" + ], + "avant garde members": [ + "10.11.0" + ], + "aware": [ + "10.1.0" + ], + "back": [ + "10.0.2", + "10.0.7", + "10.3.3" + ], + "back from ars": [ + "10.3.3" + ], + "background": [ + "10.4.3", + "10.5.0" + ], + "background info": [ + "10.4.3" + ], + "bad": [ + "10.0.7" + ], + "badly misrepresent feminism": [ + "10.0.3", + "10.0.4", + "10.0.5" + ], + "banners": [ + "10.4.7" + ], + "barbara drygulsky wright": [ + "10.8.0" + ], + "barbara gutek": [ + "10.8.0" + ], + "barbrook": [ + "10.14.0", + "10.14.1", + "10.15.0" + ], + "based on activity": [ + "10.4.5" + ], + "basic idea": [ + "10.4.5" + ], + "believe sexism exists": [ + "10.13.1" + ], + "benefits": [ + "10.0.6" + ], + "benefitted": [ + "10.0.5", + "10.0.6" + ], + "biases built": [ + "10.6.0" + ], + "big": [ + "10.14.0" + ], + "big daddy": [ + "10.14.0" + ], + "big daddy mainframe": [ + "10.0.0", + "10.14.0" + ], + "bio": [ + "10.4.3" + ], + "bio/professional background info": [ + "10.4.3", + "10.4.6" + ], + "birth control information": [ + "10.12.0" + ], + "bitch mo manifesto": [ + "10.0.0" + ], + "bitter": [ + "10.0.0" + ], + "bitter herb": [ + "10.0.0", + "10.0.0" + ], + "bitter herb menu": [ + "10.0.0", + "10.0.0" + ], + "bitter herb poisons": [ + "10.0.0" + ], + "bitter herb website": [ + "10.0.0" + ], + "biz": [ + "10.0.7" + ], + "blithely claim equality": [ + "10.6.0" + ], + "blood red weapons": [ + "10.7.0" + ], + "blue stockings": [ + "10.7.0" + ], + "bodies": [ + "10.12.0" + ], + "body": [ + "10.12.0" + ], + "body art": [ + "10.12.0", + "10.12.0" + ], + "body art bodies": [ + "10.12.0" + ], + "body art projects": [ + "10.12.0" + ], + "born feminist avant": [ + "10.7.0" + ], + "bossy": [ + "10.13.1" + ], + "bossy cunts": [ + "10.13.1" + ], + "bossy cunts online": [ + "10.13.1", + "10.13.1" + ], + "bossy cunts'": [ + "10.13.1" + ], + "bossy cunts' discussion": [ + "10.13.1" + ], + "boundaries": [ + "10.4.2" + ], + "boundary": [ + "10.11.0" + ], + "boundary maintenance": [ + "10.11.0" + ], + "boys": [ + "10.4.1", + "10.5.0" + ], + "braidotti feminist": [ + "10.3.2" + ], + "braidotti feminist footnoting": [ + "10.3.2" + ], + "brash disruptive politics": [ + "10.6.0" + ], + "briefly": [ + "10.0.3", + "10.0.4" + ], + "british": [ + "10.15.0" + ], + "british recite": [ + "10.15.0" + ], + "broadly understood": [ + "10.4.7" + ], + "broadway": [ + "10.13.1" + ], + "broude and garrard": [ + "10.13.0" + ], + "brutal feministic": [ + "10.0.0" + ], + "butt": [ + "10.4.1" + ], + "buxom gun moll": [ + "10.6.0" + ], + "buy printed": [ + "10.0.9" + ], + "buy printed matter": [ + "10.0.9", + "10.0.9" + ], + "bye bye borders": [ + "10.8.0" + ], + "byte of vns": [ + "10.5.0" + ], + "called badness": [ + "10.0.0" + ], + "called dentata": [ + "10.0.0" + ], + "called heartsease": [ + "10.0.0" + ], + "called witch": [ + "10.0.0" + ], + "calling sick": [ + "10.0.1" + ], + "camille paglia": [ + "10.0.1" + ], + "capital maintenance workers": [ + "10.8.0" + ], + "captive labor pool": [ + "10.8.0" + ], + "career": [ + "10.3.0", + "10.4.7" + ], + "career reasons": [ + "10.4.7" + ], + "careererism": [ + "10.4.7" + ], + "carnegie mellon": [ + "10.4.6" + ], + "carnegie mellon university": [ + "10.4.6", + "10.4.6", + "10.6.0" + ], + "case": [ + "10.4.5" + ], + "catechism": [ + "10.14.0", + "10.15.0" + ], + "centered art": [ + "10.12.0" + ], + "centrally self-reflexive": [ + "10.3.2" + ], + "centre": [ + "10.14.1" + ], + "change": [ + "10.0.6", + "10.0.7", + "10.9.0" + ], + "charity organization": [ + "10.10.0" + ], + "charles tolbert ii": [ + "10.8.0" + ], + "chatty mailing lists": [ + "10.6.0" + ], + "cheang": [ + "10.14.0", + "10.15.0" + ], + "check": [ + "10.1.0" + ], + "cheers": [ + "10.1.0" + ], + "clara": [ + "10.3.1", + "10.3.3" + ], + "clara and susanna": [ + "10.3.3" + ], + "class": [ + "10.11.0", + "10.12.0" + ], + "clerical": [ + "10.8.0" + ], + "clerical computer work": [ + "10.8.0" + ], + "clerical work": [ + "10.8.0" + ], + "clerical workers": [ + "10.8.0" + ], + "clit": [ + "10.0.7" + ], + "clit back": [ + "10.0.7" + ], + "closed mailinglist called": [ + "10.9.0" + ], + "cm urged feminists": [ + "10.4.2" + ], + "cmielewski": [ + "10.0.8" + ], + "cmielewski and josephine": [ + "10.0.8" + ], + "co-edit mute": [ + "10.4.1" + ], + "cold amsterdam": [ + "10.5.0" + ], + "collective writing project": [ + "10.6.0" + ], + "columbia": [ + "10.4.6" + ], + "columbia university": [ + "10.4.6" + ], + "comfortable gesture doesn": [ + "10.3.1", + "10.4.4", + "10.4.5" + ], + "comment": [ + "10.3.1" + ], + "comments": [ + "10.3.0" + ], + "committed political position": [ + "10.3.0" + ], + "common market": [ + "10.0.1", + "10.0.3" + ], + "communication": [ + "10.9.0" + ], + "communication via internet": [ + "10.0.0" + ], + "communication vns matrix": [ + "10.0.0" + ], + "communications": [ + "10.6.0", + "10.14.1" + ], + "communications and creative": [ + "10.14.1" + ], + "communications technologies": [ + "10.6.0" + ], + "community set ups": [ + "10.5.0" + ], + "competition": [ + "10.3.0" + ], + "complete version please": [ + "10.7.0" + ], + "computer": [ + "10.0.9", + "10.8.0" + ], + "computer chip": [ + "10.8.0" + ], + "computer development": [ + "10.8.0" + ], + "computer industry": [ + "10.8.0" + ], + "computer literacy": [ + "10.8.0" + ], + "computer mass culture": [ + "10.0.0" + ], + "computer networking": [ + "10.8.0" + ], + "computer science": [ + "10.12.0" + ], + "computer science department": [ + "10.6.0" + ], + "computer sciences": [ + "10.8.0" + ], + "computer simply represents": [ + "10.12.0" + ], + "computer users": [ + "10.8.0" + ], + "conditions": [ + "10.6.0", + "10.8.0" + ], + "conference": [ + "10.4.7" + ], + "conference talking": [ + "10.4.7" + ], + "confusing": [ + "10.3.2" + ], + "connected": [ + "10.9.0" + ], + "connecticut at storrs": [ + "10.4.6" + ], + "connie": [ + "10.3.0", + "10.3.1", + "10.3.3" + ], + "connie comments": [ + "10.3.1" + ], + "conscious feminist presence": [ + "10.12.0" + ], + "consciousness raising sessions": [ + "10.12.0" + ], + "consciousness raising site": [ + "10.12.0" + ], + "considerably shortened version": [ + "10.7.0", + "10.7.0" + ], + "contemporary": [ + "10.1.0", + "10.2.0" + ], + "contemporary conditions": [ + "10.6.0" + ], + "contemporary female office": [ + "10.8.0" + ], + "contemporary feminist projects": [ + "10.6.0" + ], + "contemporary networked anti": [ + "10.2.0" + ], + "contemporary networks": [ + "10.2.0" + ], + "contemporary social media": [ + "10.2.0" + ], + "contentbase": [ + "10.13.1" + ], + "context": [ + "10.4.5" + ], + "continue": [ + "10.0.8" + ], + "continue this nonsens": [ + "10.0.8" + ], + "contradictory contemporary positions": [ + "10.6.0" + ], + "contrast to haraway": [ + "10.4.0" + ], + "control strategies applied": [ + "10.4.2" + ], + "core priority": [ + "10.12.0" + ], + "counter rampant sexist": [ + "10.6.0" + ], + "countless feasts prepared": [ + "10.11.0" + ], + "create crucial solidarity": [ + "10.6.0" + ], + "creating": [ + "10.6.0" + ], + "creation": [ + "10.9.0" + ], + "creative": [ + "10.14.1" + ], + "creative industries": [ + "10.14.1" + ], + "critic lucy lippard": [ + "10.0.0" + ], + "critical": [ + "10.3.2", + "10.3.3" + ], + "critical feminist": [ + "10.12.0" + ], + "critical feminist analysis": [ + "10.12.0" + ], + "critical feminist discourse": [ + "10.12.0" + ], + "criticise": [ + "10.3.2" + ], + "criticism": [ + "10.3.2" + ], + "critique": [ + "10.3.0", + "10.3.1" + ], + "critique haraway": [ + "10.3.1" + ], + "critique on haraway": [ + "10.3.1" + ], + "critique sadie": [ + "10.3.1" + ], + "critique sadie plant": [ + "10.3.1" + ], + "critiquing net policy": [ + "10.6.0" + ], + "crowd": [ + "10.1.0" + ], + "cultural": [ + "10.12.0" + ], + "cultural resources": [ + "10.11.0" + ], + "cultural strategies": [ + "10.11.0" + ], + "cultural studies department": [ + "10.11.0" + ], + "culture": [ + "10.9.0" + ], + "cunt art": [ + "10.12.0", + "10.12.0" + ], + "cunts": [ + "10.0.7" + ], + "cunts online": [ + "10.13.1" + ], + "cunts'": [ + "10.13.1" + ], + "cunts' discussion": [ + "10.13.1" + ], + "current commercially available": [ + "10.6.0" + ], + "current conditions": [ + "10.6.0" + ], + "current gender structure": [ + "10.10.0" + ], + "current theoretical solution": [ + "10.11.0" + ], + "cyberfeminism": [ + "10.3.0", + "10.3.1", + "10.3.2", + "10.4.0", + "10.4.2", + "10.4.4", + "10.4.5", + "10.4.6", + "10.9.0", + "10.10.0", + "10.11.0" + ], + "cyberfeminism continued": [ + "10.11.0", + "10.12.0" + ], + "cyberfeminism eschewed": [ + "10.4.0" + ], + "cyberfeminism eschewed definitions": [ + "10.4.0", + "10.4.0", + "10.4.2" + ], + "cyberfeminism faith": [ + "10.10.0" + ], + "cyberfeminism faith wilding": [ + "10.10.0" + ], + "cyberfeminism goes beyond": [ + "10.5.0" + ], + "cyberfeminism lack": [ + "10.3.0" + ], + "cyberfeminism possibly stands": [ + "10.3.2" + ], + "cyberfeminist": [ + "10.1.0", + "10.3.3", + "10.4.7", + "10.5.0", + "10.6.0", + "10.7.0", + "10.12.0" + ], + "cyberfeminist activities": [ + "10.7.0" + ], + "cyberfeminist aesthetics": [ + "10.7.0" + ], + "cyberfeminist and netizens": [ + "10.1.0" + ], + "cyberfeminist artist": [ + "10.0.0" + ], + "cyberfeminist artists": [ + "10.6.0" + ], + "cyberfeminist artists experienced": [ + "10.8.0" + ], + "cyberfeminist body": [ + "10.12.0", + "10.12.0" + ], + "cyberfeminist body art": [ + "10.12.0", + "10.12.0" + ], + "cyberfeminist cell": [ + "10.6.0" + ], + "cyberfeminist education": [ + "10.12.0" + ], + "cyberfeminist education cyberfeminists": [ + "10.12.0" + ], + "cyberfeminist intervention": [ + "10.6.0" + ], + "cyberfeminist netpresence": [ + "10.10.0" + ], + "cyberfeminist origins": [ + "10.1.0" + ], + "cyberfeminist politics": [ + "10.4.7", + "10.6.0", + "10.7.0" + ], + "cyberfeminist practice": [ + "10.6.0", + "10.7.0" + ], + "cyberfeminist projects": [ + "10.7.0" + ], + "cyberfeminist projects deal": [ + "10.7.0", + "10.7.0" + ], + "cyberfeminist reader": [ + "10.7.0" + ], + "cyberfeminist reader,available": [ + "10.7.0" + ], + "cyberfeminist separatism": [ + "10.11.0" + ], + "cyberfeminist sites refer": [ + "10.7.0", + "10.7.0" + ], + "cyberfeminist theorists": [ + "10.8.0" + ], + "cyberfeminist theory": [ + "10.4.5" + ], + "cyberfeminist web": [ + "10.7.0" + ], + "cyberfeminist web projects": [ + "10.7.0", + "10.7.0" + ], + "cyberfeminist workdays": [ + "10.6.0" + ], + "cyberfeminists": [ + "10.4.0" + ], + "cyberfeminists attack patriarchy": [ + "10.9.0" + ], + "cyberfeminists followed haraway": [ + "10.4.0", + "10.4.0", + "10.4.2" + ], + "cybergrrls sometimes draw": [ + "10.6.0" + ], + "cybersalon cybersex": [ + "10.15.0" + ], + "cybersalon cybersex talk": [ + "10.15.0", + "10.15.0" + ], + "cybersex catechism": [ + "10.14.0", + "10.15.0" + ], + "cybersex cybersalon": [ + "10.14.1" + ], + "cybersex talk": [ + "10.15.0" + ], + "cyberspace": [ + "10.10.0", + "10.11.0", + "10.12.0" + ], + "cyborg fifteen": [ + "10.4.2" + ], + "cyborg fifteen years": [ + "10.4.2" + ], + "cyborg figures": [ + "10.4.2" + ], + "cyborg manifesto": [ + "10.4.0", + "10.4.2" + ], + "cyborg manisto": [ + "10.4.4" + ], + "cyborg theory": [ + "10.4.2" + ], + "daddy": [ + "10.14.0" + ], + "daddy mainframe": [ + "10.14.0" + ], + "daily collective interactions": [ + "10.6.0" + ], + "dark blue background": [ + "10.0.9" + ], + "day reading text": [ + "10.0.9" + ], + "dear": [ + "10.0.6", + "10.3.1", + "10.3.2", + "10.4.6", + "10.13.0", + "10.15.0" + ], + "dear maria": [ + "10.3.1" + ], + "dear mary": [ + "10.4.6" + ], + "dear mary jo": [ + "10.4.6" + ], + "dear nettime": [ + "10.13.0" + ], + "debate": [ + "10.3.2" + ], + "debbie shaw": [ + "10.4.2" + ], + "december": [ + "10.14.1" + ], + "december cybersex": [ + "10.14.1" + ], + "december cybersex cybersalon": [ + "10.14.1" + ], + "dedication to preserving": [ + "10.1.0" + ], + "define feminine subjectivity": [ + "10.11.0" + ], + "definition": [ + "10.6.0" + ], + "definition makes sense": [ + "10.7.0" + ], + "definitions": [ + "10.4.0" + ], + "dentata": [ + "10.0.0" + ], + "destroying male power": [ + "10.0.0" + ], + "developed": [ + "10.0.8" + ], + "developed by vns": [ + "10.0.8" + ], + "development": [ + "10.9.0" + ], + "difference": [ + "10.11.0" + ], + "digital machines": [ + "10.6.0" + ], + "digital women +": [ + "10.6.0" + ], + "dinner": [ + "10.11.0" + ], + "dinner parties": [ + "10.11.0", + "10.11.0" + ], + "dinner parties cyberfeminism": [ + "10.11.0" + ], + "dinner party": [ + "10.11.0", + "10.11.0" + ], + "dirty laundry nor": [ + "10.0.3", + "10.0.4", + "10.0.5" + ], + "dis": [ + "10.15.0" + ], + "disagree": [ + "10.0.9" + ], + "discourse": [ + "10.4.4", + "10.4.5" + ], + "discourse arises directly": [ + "10.12.0" + ], + "discuss common issues": [ + "10.6.0" + ], + "discussed net": [ + "10.2.0" + ], + "discussed net critique": [ + "10.2.0", + "10.2.0" + ], + "discussion": [ + "10.2.0", + "10.3.0" + ], + "discussion on feminism": [ + "10.2.0" + ], + "discussions on net": [ + "10.2.0" + ], + "disgusting girls": [ + "10.7.0" + ], + "dismiss politicizing discussions": [ + "10.13.1" + ], + "displaced women workers": [ + "10.8.0" + ], + "disrupting public life": [ + "10.10.0" + ], + "distinct cyberfeminist netpresence": [ + "10.10.0" + ], + "diverse understanding": [ + "10.4.7" + ], + "dobrila": [ + "10.0.5", + "10.0.9" + ], + "dobrila wrote": [ + "10.0.5", + "10.0.9" + ], + "documenta": [ + "10.6.0" + ], + "donna": [ + "10.4.2", + "10.4.4", + "10.4.5" + ], + "donna haraway asserts": [ + "10.4.2", + "10.4.2" + ], + "donna haraway manifesto": [ + "10.9.0" + ], + "donna haraway suggests": [ + "10.12.0" + ], + "donna haraway unveiled": [ + "10.4.2", + "10.4.2" + ], + "donna horaway characterized": [ + "10.7.0" + ], + "dos": [ + "10.0.9" + ], + "dos version": [ + "10.0.9" + ], + "doubled psychological subordination": [ + "10.8.0" + ], + "draft": [ + "10.14.1" + ], + "duration maintenance performance": [ + "10.8.0" + ], + "duration performance": [ + "10.8.0" + ], + "duration performances": [ + "10.8.0" + ], + "dutch artist mathilde": [ + "10.0.0" + ], + "early work": [ + "10.1.0" + ], + "east": [ + "10.4.1" + ], + "economic privation suffered": [ + "10.8.0" + ], + "economy": [ + "10.8.0" + ], + "educate ourselves thoroughly": [ + "10.8.0" + ], + "education": [ + "10.12.0" + ], + "education cyberfeminists": [ + "10.12.0" + ], + "educational tools cyberfeminists": [ + "10.12.0" + ], + "effective political action": [ + "10.6.0" + ], + "efficient domestic workers": [ + "10.10.0" + ], + "electronic": [ + "10.8.0", + "10.12.0" + ], + "electronic art based": [ + "10.6.0" + ], + "electronic factory workers": [ + "10.4.2" + ], + "electronic media theory": [ + "10.4.6", + "10.4.6" + ], + "emphasized according": [ + "10.0.0" + ], + "employed freelance": [ + "10.8.0" + ], + "empyre": [ + "10.1.0" + ], + "encouraging women": [ + "10.5.0" + ], + "end i wrote": [ + "10.0.4" + ], + "energy": [ + "10.4.6" + ], + "engage": [ + "10.3.2" + ], + "engaged political savvy": [ + "10.6.0" + ], + "enjoying": [ + "10.2.0" + ], + "enjoying the discussion": [ + "10.2.0" + ], + "ensemble": [ + "10.10.0" + ], + "ensemble cyberfeminism": [ + "10.10.0" + ], + "enter via hymen": [ + "10.7.0" + ], + "entirely white": [ + "10.6.0" + ], + "equality": [ + "10.0.5", + "10.0.6", + "10.0.7" + ], + "equitable labor economy": [ + "10.8.0" + ], + "eschewed definitions": [ + "10.4.0" + ], + "especially automated systems": [ + "10.6.0" + ], + "especially bad": [ + "10.8.0" + ], + "especially home telework": [ + "10.8.0" + ], + "especially useful": [ + "10.8.0" + ], + "essentialist identity categories": [ + "10.2.0" + ], + "essentialist philosophies enacted": [ + "10.12.0" + ], + "est la vie": [ + "10.0.0" + ], + "established communication chains": [ + "10.8.0" + ], + "ethnic minority": [ + "10.0.7" + ], + "eva wohlgemuth": [ + "10.9.0" + ], + "evelyn nakano glenn": [ + "10.8.0" + ], + "exchanging bodily fluids": [ + "10.14.0" + ], + "excuse": [ + "10.0.7" + ], + "exist": [ + "10.0.6" + ], + "exists": [ + "10.0.5", + "10.0.6" + ], + "expanding social perspective": [ + "10.9.0" + ], + "experiences": [ + "10.0.3" + ], + "explicit support": [ + "10.13.1" + ], + "extra": [ + "10.14.0" + ], + "extra hard drive": [ + "10.14.0" + ], + "extra port": [ + "10.14.0", + "10.14.0" + ], + "extravagant self articulations": [ + "10.9.0" + ], + "face": [ + "10.6.0" + ], + "face incredible problems": [ + "10.11.0" + ], + "fact": [ + "10.0.5", + "10.0.6", + "10.0.7" + ], + "failed to inter": [ + "10.15.0" + ], + "fair": [ + "10.4.7" + ], + "faith": [ + "10.3.0", + "10.10.0", + "10.13.0" + ], + "faith wilding": [ + "10.3.0", + "10.8.0", + "10.10.0", + "10.13.0", + "10.13.0" + ], + "faith wilding wrote": [ + "10.13.0", + "10.13.0" + ], + "faq": [ + "10.14.1" + ], + "fault": [ + "10.14.1" + ], + "feeling horny": [ + "10.14.0" + ], + "female": [ + "10.0.0", + "10.0.3", + "10.0.4", + "10.0.5", + "10.0.6", + "10.3.3", + "10.4.7", + "10.7.0", + "10.12.0" + ], + "female artists": [ + "10.0.0" + ], + "female artists inspired": [ + "10.0.0" + ], + "female construction": [ + "10.11.0" + ], + "female data set": [ + "10.7.0" + ], + "female empowerment": [ + "10.10.0" + ], + "female labor": [ + "10.8.0" + ], + "female misbehavior": [ + "10.10.0" + ], + "female rebellion": [ + "10.8.0" + ], + "female sexual body": [ + "10.0.7" + ], + "female sexuality": [ + "10.0.3", + "10.0.4", + "10.0.5" + ], + "female takeover": [ + "10.3.3" + ], + "female takeover etc": [ + "10.3.3" + ], + "female takeover panels": [ + "10.3.3", + "10.3.3" + ], + "feminine": [ + "10.11.0" + ], + "feminine subjectivity": [ + "10.11.0" + ], + "feminine subjectivity cyberfeminism": [ + "10.11.0" + ], + "feminised cybernetics based": [ + "10.12.0" + ], + "feminism": [ + "10.0.5", + "10.0.6", + "10.2.0", + "10.3.0", + "10.4.0", + "10.4.2", + "10.4.7", + "10.5.0", + "10.6.0", + "10.10.0", + "10.13.0", + "10.13.1" + ], + "feminism begins pushing": [ + "10.11.0" + ], + "feminism half": [ + "10.4.7" + ], + "feminist": [ + "10.0.1", + "10.0.2", + "10.0.3", + "10.0.4", + "10.0.5", + "10.0.6", + "10.2.0", + "10.3.0", + "10.3.2", + "10.3.3", + "10.4.2", + "10.4.7", + "10.5.0", + "10.6.0", + "10.7.0", + "10.10.0", + "10.11.0", + "10.12.0", + "10.13.0", + "10.13.1" + ], + "feminist activism": [ + "10.10.0", + "10.10.0" + ], + "feminist art dear": [ + "10.13.0" + ], + "feminist art institution": [ + "10.13.0" + ], + "feminist art movement": [ + "10.13.0", + "10.13.0" + ], + "feminist art programs": [ + "10.12.0", + "10.12.0" + ], + "feminist artist": [ + "10.0.2" + ], + "feminist artist don": [ + "10.0.2" + ], + "feminist artists": [ + "10.0.0", + "10.6.0" + ], + "feminist arts": [ + "10.0.1" + ], + "feminist artwork": [ + "10.13.1" + ], + "feminist assault": [ + "10.10.0" + ], + "feminist awakening": [ + "10.0.3", + "10.0.4" + ], + "feminist awakening involved": [ + "10.0.3" + ], + "feminist background": [ + "10.5.0" + ], + "feminist cultural": [ + "10.6.0", + "10.13.0" + ], + "feminist cultural creators": [ + "10.13.0", + "10.13.0" + ], + "feminist cycle": [ + "10.10.0" + ], + "feminist demands": [ + "10.12.0" + ], + "feminist education": [ + "10.12.0" + ], + "feminist educational program": [ + "10.12.0" + ], + "feminist embodiment": [ + "10.6.0" + ], + "feminist footnoting": [ + "10.3.2" + ], + "feminist goal": [ + "10.12.0" + ], + "feminist history": [ + "10.6.0" + ], + "feminist lists": [ + "10.6.0" + ], + "feminist maintenance art": [ + "10.8.0" + ], + "feminist movement": [ + "10.7.0" + ], + "feminist movements": [ + "10.6.0" + ], + "feminist net": [ + "10.6.0" + ], + "feminist net critique": [ + "10.6.0", + "10.6.0" + ], + "feminist net organis": [ + "10.6.0", + "10.6.0" + ], + "feminist net theory": [ + "10.6.0" + ], + "feminist organization": [ + "10.10.0" + ], + "feminist political": [ + "10.6.0" + ], + "feminist politics": [ + "10.6.0", + "10.6.0" + ], + "feminist politics implemented": [ + "10.6.0" + ], + "feminist pop": [ + "10.7.0" + ], + "feminist pop tarts": [ + "10.7.0", + "10.7.0" + ], + "feminist scholars": [ + "10.0.3", + "10.0.4" + ], + "feminist search engine": [ + "10.6.0" + ], + "feminist self": [ + "10.12.0" + ], + "feminist strategies": [ + "10.10.0" + ], + "feminist territories": [ + "10.10.0" + ], + "feminist theoretical insights": [ + "10.6.0" + ], + "feminist theory": [ + "10.3.2", + "10.3.3", + "10.12.0" + ], + "feminist thinking": [ + "10.10.0", + "10.10.0" + ], + "feminist waves": [ + "10.10.0" + ], + "feminist ‘net": [ + "10.2.0" + ], + "feministic art institutes": [ + "10.0.0" + ], + "feminists": [ + "10.0.1", + "10.0.3", + "10.0.4", + "10.4.2" + ], + "feminists are transplanting": [ + "10.0.3" + ], + "feminists interrogating technoscience": [ + "10.12.0" + ], + "feminists territorial decolonization": [ + "10.11.0" + ], + "feminized global electronic": [ + "10.12.0" + ], + "feminized home work": [ + "10.8.0" + ], + "feminized labor": [ + "10.8.0" + ], + "feminized maintenance work": [ + "10.8.0" + ], + "fernandez": [ + "10.4.3", + "10.4.6" + ], + "fernandez and malik": [ + "10.4.3", + "10.4.6" + ], + "field": [ + "10.7.0" + ], + "fight": [ + "10.0.6" + ], + "final version": [ + "10.4.1" + ], + "final version +": [ + "10.4.1" + ], + "finance": [ + "10.2.0" + ], + "find": [ + "10.0.3", + "10.0.4" + ], + "find more insidious": [ + "10.0.3", + "10.0.4" + ], + "fine art dept": [ + "10.4.4" + ], + "fine arts program": [ + "10.4.6" + ], + "firsts woman eve": [ + "10.0.0" + ], + "floor": [ + "10.4.1" + ], + "floor east": [ + "10.4.1", + "10.4.4" + ], + "following text reflects": [ + "10.7.0" + ], + "formulated goals": [ + "10.4.7" + ], + "fortunate women": [ + "10.3.3" + ], + "forty women participants": [ + "10.6.0" + ], + "forwarded": [ + "10.14.1" + ], + "found": [ + "10.3.2" + ], + "found past": [ + "10.3.2" + ], + "found past obn": [ + "10.3.2" + ], + "fragile real": [ + "10.9.0" + ], + "francesca da rimini": [ + "10.0.0" + ], + "francesca di rimini": [ + "10.5.0" + ], + "free exchange": [ + "10.6.0" + ], + "free mythical realm": [ + "10.8.0" + ], + "free space ready": [ + "10.6.0" + ], + "free time": [ + "10.8.0" + ], + "free trade zones": [ + "10.8.0" + ], + "freedom": [ + "10.9.0" + ], + "french": [ + "10.0.9" + ], + "french philosophers irigaray": [ + "10.9.0" + ], + "freud": [ + "10.0.4" + ], + "freud terrifyingly": [ + "10.0.4" + ], + "friend eva wohlgemuth": [ + "10.9.0" + ], + "friendliest online communications": [ + "10.11.0" + ], + "friendly girls guide": [ + "10.7.0" + ], + "fuck": [ + "10.14.0", + "10.15.0" + ], + "full": [ + "10.4.0" + ], + "full version": [ + "10.4.0", + "10.4.1" + ], + "fun": [ + "10.5.0" + ], + "fundraising dinner parties": [ + "10.11.0" + ], + "future is femail": [ + "10.7.0" + ], + "game": [ + "10.0.0" + ], + "garde philosophies": [ + "10.12.0" + ], + "geekgirl operator girl": [ + "10.7.0" + ], + "gender": [ + "10.0.5", + "10.0.6", + "10.10.0", + "10.12.0", + "10.13.1" + ], + "gender biases usual": [ + "10.6.0" + ], + "gender equity won": [ + "10.10.0" + ], + "gender roles": [ + "10.8.0" + ], + "gendered codes prevailing": [ + "10.6.0" + ], + "general": [ + "10.0.8" + ], + "general information": [ + "10.0.8" + ], + "genetic technologies suggest": [ + "10.4.2" + ], + "gertrude stein": [ + "10.0.1" + ], + "gesture": [ + "10.3.1", + "10.4.4", + "10.4.5" + ], + "girls": [ + "10.5.0" + ], + "give": [ + "10.0.2" + ], + "give it back": [ + "10.0.2" + ], + "global capital": [ + "10.8.0" + ], + "global communications networks": [ + "10.6.0" + ], + "global consumer": [ + "10.8.0" + ], + "global cyberfeminism": [ + "10.3.0" + ], + "global disappearance": [ + "10.8.0" + ], + "global economy": [ + "10.4.2" + ], + "global homework economy": [ + "10.12.0" + ], + "global labor": [ + "10.8.0" + ], + "global labor consciousness": [ + "10.4.2" + ], + "global market economy": [ + "10.8.0" + ], + "global sweatshop economy": [ + "10.8.0" + ], + "goal": [ + "10.4.7" + ], + "goals": [ + "10.3.0", + "10.4.7" + ], + "god condemned mankind": [ + "10.0.0" + ], + "good": [ + "10.0.1" + ], + "good explanation": [ + "10.0.1" + ], + "gorgeous interactive film": [ + "10.0.0" + ], + "government": [ + "10.0.6" + ], + "graphic feel": [ + "10.1.0" + ], + "grasped the importance": [ + "10.12.0" + ], + "great": [ + "10.0.4" + ], + "greatly desired freedom": [ + "10.9.0" + ], + "greene": [ + "10.13.1" + ], + "grew up surrounded": [ + "10.0.7" + ], + "group": [ + "10.6.0", + "10.11.0" + ], + "group vns matrix": [ + "10.0.0" + ], + "groups": [ + "10.11.0", + "10.12.0" + ], + "groups of women": [ + "10.9.0" + ], + "guaranteed annual income": [ + "10.8.0" + ], + "haan": [ + "10.13.0" + ], + "haan article": [ + "10.13.0" + ], + "hand": [ + "10.0.2" + ], + "hands-on technological education": [ + "10.12.0" + ], + "happened": [ + "10.4.0" + ], + "haraway a science": [ + "10.3.1" + ], + "haraway brought": [ + "10.4.4", + "10.4.7" + ], + "haraway cyborg": [ + "10.4.2" + ], + "haraway dear": [ + "10.3.1" + ], + "haraway dear maria": [ + "10.3.1" + ], + "haraway discerned": [ + "10.4.2" + ], + "haraway discerned society": [ + "10.4.2" + ], + "haraway feminist": [ + "10.4.0", + "10.4.2" + ], + "haraway formulation": [ + "10.4.0" + ], + "haraway ironic": [ + "10.3.1" + ], + "haraway ironic manifesto": [ + "10.3.1" + ], + "haraway lead": [ + "10.4.0" + ], + "haraway politics": [ + "10.4.2" + ], + "haraway unveiled": [ + "10.4.2" + ], + "haraway work": [ + "10.3.2" + ], + "haraway wrote": [ + "10.4.2" + ], + "haraway ’s cyborg": [ + "10.4.2" + ], + "hard labor": [ + "10.8.0" + ], + "harrow": [ + "10.14.1" + ], + "harrow ha1 3tp": [ + "10.14.1" + ], + "heavily": [ + "10.3.1" + ], + "heavily critique": [ + "10.3.1" + ], + "heavily critique sadie": [ + "10.3.1" + ], + "heavy manual labor": [ + "10.8.0" + ], + "heavy reader": [ + "10.0.9" + ], + "henri": [ + "10.14.1" + ], + "herb": [ + "10.0.0" + ], + "herb menu": [ + "10.0.0", + "10.0.0" + ], + "highly qualified women": [ + "10.0.5", + "10.0.6" + ], + "highly rewarded": [ + "10.8.0" + ], + "highly skilled engineers": [ + "10.8.0" + ], + "highly technically complex": [ + "10.9.0" + ], + "hiiya": [ + "10.4.4" + ], + "historian and sadie": [ + "10.3.1" + ], + "history": [ + "10.1.0", + "10.3.3", + "10.6.0", + "10.13.0" + ], + "hiya": [ + "10.4.1", + "10.14.1" + ], + "hiya old boys": [ + "10.4.1" + ], + "home": [ + "10.8.0" + ], + "home nor workplace": [ + "10.8.0" + ], + "home work": [ + "10.8.0" + ], + "home work school": [ + "10.8.0" + ], + "home working women": [ + "10.8.0" + ], + "homework economy": [ + "10.12.0" + ], + "hope": [ + "10.3.1", + "10.4.6" + ], + "hot chat": [ + "10.7.0" + ], + "hot hearts cold": [ + "10.7.0" + ], + "house": [ + "10.4.1" + ], + "html": [ + "10.1.0" + ], + "human": [ + "10.0.5", + "10.0.6", + "10.4.2" + ], + "hypermedia research": [ + "10.14.1" + ], + "hypermedia research centre": [ + "10.14.1", + "10.14.1" + ], + "ica in london": [ + "10.14.1" + ], + "idea": [ + "10.4.4", + "10.4.5" + ], + "ideas": [ + "10.4.5" + ], + "identify": [ + "10.0.4", + "10.0.5" + ], + "identify women": [ + "10.0.4" + ], + "identity": [ + "10.2.0", + "10.14.0" + ], + "identity maintenance recombine": [ + "10.12.0" + ], + "identity tactic": [ + "10.6.0" + ], + "impact communications technologies": [ + "10.6.0" + ], + "implied dangerous disruptions": [ + "10.6.0" + ], + "improved labor": [ + "10.8.0" + ], + "including feminism": [ + "10.4.0" + ], + "including strategic separatism": [ + "10.6.0" + ], + "inconstant figure able": [ + "10.4.2" + ], + "incorporate spiral dancers": [ + "10.4.2" + ], + "incredible problems": [ + "10.11.0" + ], + "indisputable groundbreaking contributions": [ + "10.6.0" + ], + "industrial": [ + "10.0.7" + ], + "industries": [ + "10.14.1" + ], + "info": [ + "10.4.3" + ], + "info on fernandez": [ + "10.4.3" + ], + "information": [ + "10.0.8", + "10.6.0", + "10.12.0" + ], + "informations": [ + "10.0.9" + ], + "infoseek search using": [ + "10.7.0" + ], + "initial interest": [ + "10.4.4" + ], + "innocence of michael": [ + "10.4.4" + ], + "insidious": [ + "10.0.3" + ], + "insidious and offensive": [ + "10.0.3", + "10.0.4" + ], + "inspired by erotics": [ + "10.0.0" + ], + "institution": [ + "10.13.0" + ], + "institutional academic structure": [ + "10.12.0" + ], + "institutionalized sexism brings": [ + "10.0.5" + ], + "institutions": [ + "10.10.0" + ], + "insurmountable odds": [ + "10.11.0" + ], + "intense daily living": [ + "10.6.0" + ], + "inter": [ + "10.15.0" + ], + "interaction surfing": [ + "10.0.0" + ], + "interest": [ + "10.4.4" + ], + "interested": [ + "10.13.1" + ], + "interested parties": [ + "10.13.1" + ], + "interface": [ + "10.0.8" + ], + "international": [ + "10.6.0" + ], + "international media festivals": [ + "10.11.0" + ], + "internet": [ + "10.0.0", + "10.0.1", + "10.6.0", + "10.9.0", + "10.13.1" + ], + "internet discourses": [ + "10.9.0" + ], + "internet mailing lists": [ + "10.9.0" + ], + "intrigued": [ + "10.3.1" + ], + "intrigued by connie": [ + "10.3.1" + ], + "invisible feminine": [ + "10.8.0" + ], + "invoking nostalgic homage": [ + "10.6.0" + ], + "involved": [ + "10.0.4", + "10.0.5" + ], + "issue": [ + "10.4.0", + "10.4.1" + ], + "issues": [ + "10.4.0" + ], + "issues concerning women": [ + "10.5.0" + ], + "java to html": [ + "10.1.0" + ], + "jobs": [ + "10.8.0" + ], + "join": [ + "10.0.6" + ], + "josephine": [ + "10.0.8", + "10.5.0" + ], + "josephine and leon": [ + "10.5.0" + ], + "josephine starrs": [ + "10.0.8", + "10.5.0" + ], + "judith halberstam proposes": [ + "10.7.0" + ], + "juxtaposing opposite": [ + "10.4.1" + ], + "juxtaposing opposite points": [ + "10.4.1" + ], + "kathy rae": [ + "10.9.0" + ], + "kathy rae huffman": [ + "10.9.0", + "10.9.0" + ], + "keeping women surpressed": [ + "10.0.0" + ], + "key feminist issues": [ + "10.10.0" + ], + "key importance": [ + "10.10.0" + ], + "kind": [ + "10.0.1", + "10.0.2", + "10.3.2", + "10.5.0" + ], + "klara zetkin wrote": [ + "10.0.6" + ], + "kneza koclja": [ + "10.0.1" + ], + "l890s women increasingly": [ + "10.8.0" + ], + "labor": [ + "10.8.0" + ], + "labor conditions": [ + "10.8.0" + ], + "labor economy": [ + "10.8.0", + "10.8.0" + ], + "labor leaders": [ + "10.8.0" + ], + "laboria": [ + "10.2.0" + ], + "laboria cuboniks": [ + "10.2.0" + ], + "laboria cuboniks radically": [ + "10.2.0" + ], + "laboria cuboniks,http": [ + "10.2.0" + ], + "laboring bodies": [ + "10.8.0" + ], + "laboring bodies invisible": [ + "10.8.0" + ], + "laboring female body": [ + "10.8.0" + ], + "lack of specificity": [ + "10.4.7" + ], + "language": [ + "10.9.0" + ], + "latest edition": [ + "10.9.0" + ], + "latin": [ + "10.4.6" + ], + "lea": [ + "10.14.0", + "10.15.0" + ], + "lea cheang": [ + "10.14.0", + "10.15.0" + ], + "leaf": [ + "10.0.2" + ], + "leaf meeting": [ + "10.0.2" + ], + "learning massive amounts": [ + "10.11.0" + ], + "legitimized academic territories": [ + "10.11.0" + ], + "length version": [ + "10.7.0" + ], + "leon": [ + "10.0.8" + ], + "leon cmielewski": [ + "10.0.8", + "10.5.0" + ], + "lesbian separatism": [ + "10.6.0" + ], + "life": [ + "10.9.0" + ], + "light": [ + "10.4.5" + ], + "linda dement": [ + "10.5.0" + ], + "lines": [ + "10.0.9" + ], + "link cyberfeminist websites": [ + "10.6.0" + ], + "link feminist net": [ + "10.6.0" + ], + "link peace activists": [ + "10.6.0" + ], + "linked chains": [ + "10.8.0" + ], + "linux operating": [ + "10.0.9" + ], + "linux operating system": [ + "10.0.9" + ], + "list": [ + "10.0.2", + "10.1.0", + "10.3.0", + "10.4.0", + "10.4.7" + ], + "little green creature": [ + "10.0.4", + "10.0.5" + ], + "lived experience changes": [ + "10.7.0" + ], + "liverpool this year": [ + "10.0.2" + ], + "local community centers": [ + "10.8.0" + ], + "london ec2a 3bx": [ + "10.9.0" + ], + "long": [ + "10.0.2", + "10.0.9" + ], + "long stories": [ + "10.0.2", + "10.0.9" + ], + "lot": [ + "10.4.6", + "10.5.0" + ], + "lot of positive": [ + "10.4.6" + ], + "low bandwidth version": [ + "10.14.0" + ], + "low skilled computer": [ + "10.8.0" + ], + "lucky women computers": [ + "10.6.0" + ], + "lucy lippard": [ + "10.13.0" + ], + "lynne": [ + "10.3.3" + ], + "mail": [ + "10.0.2", + "10.0.8" + ], + "mail box": [ + "10.0.2" + ], + "mails": [ + "10.0.2", + "10.0.8" + ], + "mails some general": [ + "10.0.8" + ], + "mainstream art": [ + "10.12.0" + ], + "maintenance labor": [ + "10.8.0" + ], + "maintenance labor visible": [ + "10.8.0" + ], + "maintenance whenever feminism": [ + "10.11.0" + ], + "maintenance work": [ + "10.8.0" + ], + "maintenance work faith": [ + "10.8.0" + ], + "major contributions": [ + "10.6.0" + ], + "majority": [ + "10.0.2" + ], + "majority in population": [ + "10.0.7" + ], + "make": [ + "10.0.1", + "10.5.0" + ], + "make feminist": [ + "10.0.2" + ], + "make feminist art": [ + "10.0.2" + ], + "make war": [ + "10.0.1" + ], + "make women labor": [ + "10.8.0" + ], + "making": [ + "10.0.1" + ], + "making women work": [ + "10.8.0" + ], + "male": [ + "10.0.5", + "10.0.6", + "10.9.0" + ], + "male academic traditions": [ + "10.9.0" + ], + "male netusers regard": [ + "10.7.0" + ], + "males": [ + "10.0.7" + ], + "malik": [ + "10.4.1", + "10.4.2", + "10.4.3", + "10.4.6" + ], + "managed free time": [ + "10.8.0" + ], + "manga pop": [ + "10.7.0" + ], + "manifesto": [ + "10.4.0", + "10.4.2", + "10.5.0" + ], + "manual labor harnessed": [ + "10.8.0" + ], + "manual maintenance": [ + "10.8.0" + ], + "map": [ + "10.0.7" + ], + "maria": [ + "10.3.1", + "10.3.3", + "10.4.0", + "10.4.1", + "10.4.4" + ], + "maria and connie": [ + "10.3.1" + ], + "maria can send": [ + "10.4.0" + ], + "maria fernandez": [ + "10.4.6" + ], + "maria wrote": [ + "10.3.1" + ], + "marie josé sat": [ + "10.0.0" + ], + "market": [ + "10.0.3" + ], + "market economy": [ + "10.8.0", + "10.8.0", + "10.12.0" + ], + "market economy based": [ + "10.8.0" + ], + "market economy worldwide": [ + "10.8.0" + ], + "marsian": [ + "10.0.4" + ], + "mary": [ + "10.4.6" + ], + "mary beth edelson": [ + "10.11.0" + ], + "matrix": [ + "10.0.0", + "10.0.8", + "10.1.0", + "10.2.0", + "10.13.1", + "10.15.0" + ], + "meaning that writers": [ + "10.3.2" + ], + "means starting": [ + "10.9.0" + ], + "media": [ + "10.0.9", + "10.4.6", + "10.9.0", + "10.10.0", + "10.12.0" + ], + "media studies departments": [ + "10.12.0" + ], + "media theory": [ + "10.4.6" + ], + "medium": [ + "10.4.4" + ], + "meeting": [ + "10.0.2" + ], + "melinda": [ + "10.1.0" + ], + "melinda rackham": [ + "10.1.0" + ], + "mellon university": [ + "10.4.6" + ], + "men": [ + "10.0.0", + "10.0.2", + "10.0.7" + ], + "menu": [ + "10.0.0" + ], + "metamute": [ + "10.4.1" + ], + "michael jackson": [ + "10.4.4" + ], + "middle ages": [ + "10.0.0" + ], + "middle ages according": [ + "10.0.0" + ], + "middle class": [ + "10.11.0" + ], + "middle class professional": [ + "10.11.0" + ], + "mind": [ + "10.4.1" + ], + "minority": [ + "10.0.7" + ], + "minority status": [ + "10.0.7" + ], + "mis-quote": [ + "10.15.0" + ], + "miss america pageant": [ + "10.10.0" + ], + "missed the beginning": [ + "10.3.0" + ], + "mistake": [ + "10.14.1" + ], + "misunderstandings": [ + "10.0.3" + ], + "mitrofanova": [ + "10.9.0" + ], + "mobile autogasm self": [ + "10.15.0" + ], + "mode": [ + "10.0.9" + ], + "moma collaboration": [ + "10.13.1" + ], + "mouth": [ + "10.15.0" + ], + "movement": [ + "10.0.5", + "10.0.6" + ], + "movement face incredible": [ + "10.11.0" + ], + "mute": [ + "10.4.0", + "10.4.1", + "10.4.2", + "10.4.4" + ], + "mutella": [ + "10.4.1" + ], + "mysterious wane": [ + "10.4.2" + ], + "mystified": [ + "10.4.4" + ], + "nagtive": [ + "10.4.6" + ], + "nagtive approaches": [ + "10.4.6" + ], + "naively assumed parochialism": [ + "10.4.2" + ], + "nearly insurmountable odds": [ + "10.11.0" + ], + "necesarely call themselves": [ + "10.5.0" + ], + "negative social representation": [ + "10.11.0" + ], + "net": [ + "10.2.0", + "10.6.0", + "10.9.0", + "10.12.0", + "10.13.0", + "10.14.0" + ], + "net art projects": [ + "10.2.0", + "10.2.0" + ], + "net art’": [ + "10.2.0" + ], + "net demonstrated": [ + "10.13.0" + ], + "net feminist": [ + "10.2.0", + "10.2.0" + ], + "net love": [ + "10.14.0" + ], + "net love pioneering": [ + "10.14.0" + ], + "net offers possibilities": [ + "10.12.0" + ], + "net politics": [ + "10.6.0" + ], + "net politics begin": [ + "10.7.0" + ], + "net practices": [ + "10.6.0" + ], + "net provides cyberfeminists": [ + "10.10.0" + ], + "net utopianism": [ + "10.6.0" + ], + "netactive women": [ + "10.10.0" + ], + "netizens crowd": [ + "10.1.0" + ], + "nettime": [ + "10.0.2", + "10.13.0", + "10.13.1", + "10.14.1" + ], + "nettime discusions": [ + "10.0.2" + ], + "nettime list": [ + "10.0.2" + ], + "nettime listserver": [ + "10.14.1" + ], + "network": [ + "10.2.0", + "10.9.0" + ], + "network culture ‘erected": [ + "10.2.0" + ], + "nina": [ + "10.3.3" + ], + "nineties van lamsweerde": [ + "10.0.0" + ], + "nonsens": [ + "10.0.8" + ], + "nonsens in private": [ + "10.0.8" + ], + "northwick park": [ + "10.14.1" + ], + "note": [ + "10.0.3" + ], + "note briefly": [ + "10.0.3", + "10.0.4" + ], + "notes": [ + "10.3.2" + ], + "now’": [ + "10.2.0" + ], + "numerous netactive women": [ + "10.10.0", + "10.10.0" + ], + "obn basic idea": [ + "10.4.4", + "10.4.5" + ], + "obn cyberfeminist": [ + "10.7.0" + ], + "obn cyberfeminist reader": [ + "10.7.0" + ], + "obn cyberfeminist reader,available": [ + "10.7.0" + ], + "obn discussing": [ + "10.4.7" + ], + "obn positions": [ + "10.3.0" + ], + "obn postings": [ + "10.3.2" + ], + "obn web site": [ + "10.3.0" + ], + "offensive": [ + "10.0.3", + "10.0.4" + ], + "oldboys": [ + "10.3.0" + ], + "oldboys list": [ + "10.3.0" + ], + "oldfashioned artistic enigmas": [ + "10.0.0" + ], + "online": [ + "10.5.0", + "10.9.0", + "10.13.1" + ], + "online parties via": [ + "10.9.0" + ], + "oooops": [ + "10.14.1" + ], + "open": [ + "10.14.0" + ], + "opinion": [ + "10.0.1", + "10.0.2" + ], + "opportunity": [ + "10.0.6" + ], + "opportunity to comment": [ + "10.4.7" + ], + "opposing viewpoint": [ + "10.4.1" + ], + "opposite points": [ + "10.4.1" + ], + "order": [ + "10.4.5" + ], + "order to shed": [ + "10.4.5" + ], + "organizing strategy politically": [ + "10.6.0" + ], + "original": [ + "10.0.8" + ], + "original mail": [ + "10.0.8" + ], + "origins": [ + "10.1.0" + ], + "outright": [ + "10.0.3" + ], + "outright simplistic": [ + "10.0.3", + "10.0.4" + ], + "overwhelmingly representative situation": [ + "10.10.0" + ], + "own computer equipment": [ + "10.6.0" + ], + "own designs": [ + "10.8.0" + ], + "own efficiency experts": [ + "10.8.0" + ], + "own intimate massage": [ + "10.14.0" + ], + "page": [ + "10.4.0", + "10.4.1" + ], + "page layouts": [ + "10.4.1" + ], + "paid employed women": [ + "10.8.0" + ], + "paid labor force": [ + "10.8.0" + ], + "pancapitalist labor economy": [ + "10.12.0" + ], + "pancapitalist technocracy": [ + "10.12.0" + ], + "panels with connie": [ + "10.3.3" + ], + "paper by faith": [ + "10.3.0" + ], + "park": [ + "10.14.1" + ], + "particular historical moment": [ + "10.4.2" + ], + "particularly disturbing effects": [ + "10.8.0" + ], + "parties should query": [ + "10.13.1" + ], + "partners": [ + "10.0.3" + ], + "partners into common": [ + "10.0.1" + ], + "past": [ + "10.3.2" + ], + "past feminist": [ + "10.6.0" + ], + "past feminist movements": [ + "10.6.0" + ], + "past feminist thinking": [ + "10.6.0" + ], + "past glory": [ + "10.6.0" + ], + "past obn": [ + "10.3.2" + ], + "past obn postings": [ + "10.3.2" + ], + "past or present": [ + "10.3.2" + ], + "patently absurd": [ + "10.0.5" + ], + "pauline": [ + "10.3.0", + "10.4.1", + "10.4.5", + "10.4.7" + ], + "pauline for sending": [ + "10.3.0" + ], + "pauline observes": [ + "10.3.0" + ], + "people": [ + "10.0.0", + "10.0.2", + "10.0.4", + "10.0.5", + "10.1.0", + "10.5.0", + "10.11.0" + ], + "people are aware": [ + "10.1.0" + ], + "perplexing question lies": [ + "10.6.0" + ], + "personal": [ + "10.0.1", + "10.0.3", + "10.4.7" + ], + "personal computer": [ + "10.6.0" + ], + "personal experiences": [ + "10.0.1", + "10.0.3" + ], + "personal pleasure machines": [ + "10.6.0" + ], + "personally": [ + "10.0.6" + ], + "peter": [ + "10.0.1", + "10.0.2", + "10.0.4", + "10.0.5", + "10.0.6", + "10.0.9" + ], + "peter tomaz": [ + "10.0.4", + "10.0.5", + "10.0.9" + ], + "peter tomaz dobrila": [ + "10.0.5", + "10.0.9" + ], + "piece": [ + "10.3.0", + "10.4.5" + ], + "piece and putting": [ + "10.4.5" + ], + "piece by leon": [ + "10.0.8" + ], + "plain": [ + "10.0.1" + ], + "plain gender": [ + "10.0.1" + ], + "plain personal": [ + "10.0.1" + ], + "plain racism": [ + "10.0.1" + ], + "planet": [ + "10.0.7" + ], + "plant": [ + "10.3.1" + ], + "plant a philosopher": [ + "10.3.1" + ], + "plant or haraway": [ + "10.3.2" + ], + "platform": [ + "10.3.3" + ], + "play": [ + "10.14.0" + ], + "playful counter": [ + "10.6.0" + ], + "pls": [ + "10.4.0" + ], + "point": [ + "10.11.0" + ], + "pointing": [ + "10.0.1" + ], + "points of view": [ + "10.4.1" + ], + "points re-emphasize haraway": [ + "10.4.4" + ], + "policy setting": [ + "10.6.0" + ], + "political": [ + "10.0.1", + "10.3.0", + "10.3.1", + "10.4.0", + "10.4.2", + "10.4.4", + "10.4.5", + "10.4.7", + "10.6.0", + "10.10.0" + ], + "political activities": [ + "10.3.0" + ], + "political affiliations": [ + "10.4.0" + ], + "political concern": [ + "10.3.0", + "10.4.7" + ], + "political consequences": [ + "10.8.0" + ], + "political considerations": [ + "10.3.0" + ], + "political cyberfeminism": [ + "10.3.1", + "10.4.4", + "10.4.5" + ], + "political effectiveness": [ + "10.4.0" + ], + "political gesture": [ + "10.3.1", + "10.3.1", + "10.4.4", + "10.4.5", + "10.4.5" + ], + "political movements": [ + "10.3.0" + ], + "political position": [ + "10.3.0" + ], + "political strategy": [ + "10.6.0" + ], + "political territories": [ + "10.10.0" + ], + "politically correct": [ + "10.6.0" + ], + "politically regressive consequences": [ + "10.8.0" + ], + "politicized feminist environment": [ + "10.6.0" + ], + "politics": [ + "10.3.0", + "10.4.7", + "10.6.0", + "10.7.0" + ], + "politics etc.": [ + "10.4.7" + ], + "politics for alienation": [ + "10.2.0" + ], + "polymorphous information system": [ + "10.4.2" + ], + "pop imagery": [ + "10.7.0" + ], + "popular feminist avatars": [ + "10.6.0" + ], + "population": [ + "10.0.7" + ], + "port": [ + "10.14.0" + ], + "position": [ + "10.3.0" + ], + "positive": [ + "10.4.6" + ], + "post/feminist decolonization": [ + "10.11.0" + ], + "postcolonial media theory": [ + "10.4.6", + "10.4.6" + ], + "postcolonial studies": [ + "10.4.6" + ], + "posting": [ + "10.4.5" + ], + "postings": [ + "10.3.2" + ], + "postmodern art": [ + "10.12.0" + ], + "power of feminist": [ + "10.13.0" + ], + "powerful tools possession": [ + "10.6.0" + ], + "practice": [ + "10.6.0" + ], + "practices": [ + "10.6.0", + "10.12.0" + ], + "precise": [ + "10.0.9" + ], + "presence": [ + "10.9.0" + ], + "preserving": [ + "10.1.0" + ], + "preserving history": [ + "10.1.0" + ], + "presumption": [ + "10.0.4" + ], + "primarily phantasmatic appropriation": [ + "10.4.2" + ], + "primary in haraway": [ + "10.4.0" + ], + "primary social variables": [ + "10.11.0" + ], + "print": [ + "10.9.0" + ], + "printed": [ + "10.0.9" + ], + "printed matter": [ + "10.0.9" + ], + "prior feminist waves": [ + "10.10.0" + ], + "prism": [ + "10.2.0" + ], + "prison programs": [ + "10.12.0" + ], + "private": [ + "10.0.8" + ], + "private free time": [ + "10.8.0" + ], + "private mails": [ + "10.0.8" + ], + "problem": [ + "10.11.0" + ], + "productive existential experiences": [ + "10.9.0" + ], + "professional": [ + "10.4.3" + ], + "professional background": [ + "10.4.3" + ], + "professional background info": [ + "10.4.3", + "10.4.6" + ], + "profoundly changed": [ + "10.8.0" + ], + "program at vermont": [ + "10.4.6" + ], + "projects": [ + "10.7.0" + ], + "promote equality": [ + "10.0.5" + ], + "prophecy": [ + "10.4.5" + ], + "provide refreshing moments": [ + "10.6.0" + ], + "psychic conditions arising": [ + "10.6.0" + ], + "public": [ + "10.10.0" + ], + "public safety net": [ + "10.12.0" + ], + "publishing cyberfeminist theory": [ + "10.6.0" + ], + "pure": [ + "10.0.1" + ], + "pussy": [ + "10.15.0" + ], + "pussy the matrix": [ + "10.14.0" + ], + "put": [ + "10.0.7", + "10.15.0" + ], + "put the clit": [ + "10.0.7" + ], + "put the words": [ + "10.15.0" + ], + "putting": [ + "10.4.5" + ], + "query the rhizome": [ + "10.13.1" + ], + "question mark hovering": [ + "10.4.2" + ], + "questioned cyberfeminism": [ + "10.3.0" + ], + "questioned cyberfeminism lack": [ + "10.3.0" + ], + "quick net browse": [ + "10.6.0" + ], + "quoting": [ + "10.4.5" + ], + "quoting in order": [ + "10.4.5" + ], + "rachel": [ + "10.13.1" + ], + "rachel greene": [ + "10.13.1" + ], + "racist textual construction": [ + "10.11.0" + ], + "racist white feminism": [ + "10.6.0" + ], + "rackham": [ + "10.1.0" + ], + "rackham who started": [ + "10.1.0" + ], + "radical theoretical openness": [ + "10.4.2" + ], + "rae huffman": [ + "10.9.0" + ], + "rapoport": [ + "10.0.0" + ], + "re-emphasize haraway": [ + "10.4.4", + "10.4.7" + ], + "read camille paglia": [ + "10.0.1", + "10.0.1" + ], + "read stuff": [ + "10.0.9" + ], + "reader": [ + "10.0.9" + ], + "reading": [ + "10.3.2" + ], + "reading text": [ + "10.0.9" + ], + "real": [ + "10.0.6", + "10.0.7", + "10.9.0" + ], + "real life": [ + "10.9.0", + "10.9.0" + ], + "real life situations": [ + "10.9.0" + ], + "real opportunity": [ + "10.0.6" + ], + "real world": [ + "10.0.0" + ], + "reasons": [ + "10.4.7" + ], + "recent cyberfeminist international": [ + "10.6.0" + ], + "recirculated commodified images": [ + "10.12.0" + ], + "recognised legal citizen": [ + "10.4.2" + ], + "refused": [ + "10.3.3" + ], + "refused theory": [ + "10.3.3" + ], + "reg": [ + "10.4.5" + ], + "regressive identity politics": [ + "10.6.0" + ], + "regressive labor": [ + "10.8.0" + ], + "regressive labor practices": [ + "10.8.0" + ], + "regular double pager": [ + "10.4.1" + ], + "reinforce equally naive": [ + "10.4.2" + ], + "reinvigorated feminist activism": [ + "10.10.0" + ], + "relative incomprehensibility outside": [ + "10.9.0" + ], + "remove": [ + "10.15.0" + ], + "remove this mis-quote": [ + "10.15.0" + ], + "repeat": [ + "10.0.5", + "10.0.6" + ], + "represent respective collectives": [ + "10.13.1" + ], + "represent sociological tendencies": [ + "10.11.0" + ], + "representation": [ + "10.7.0" + ], + "representation beyond representation": [ + "10.7.0" + ], + "represented": [ + "10.13.1" + ], + "reproduce existing patterns": [ + "10.8.0" + ], + "research": [ + "10.14.1" + ], + "research centre": [ + "10.14.1" + ], + "reserve labor force": [ + "10.8.0" + ], + "respective disciplines": [ + "10.3.1" + ], + "restrictive social phenomena": [ + "10.9.0" + ], + "resurgence": [ + "10.4.4" + ], + "resurgence in interest": [ + "10.4.4", + "10.4.5" + ], + "revived": [ + "10.1.0" + ], + "rhizome contentbase": [ + "10.13.1" + ], + "rhizome internet": [ + "10.13.1" + ], + "richard": [ + "10.14.0", + "10.14.1", + "10.15.0" + ], + "richard barbrook": [ + "10.14.0", + "10.14.1", + "10.15.0" + ], + "road": [ + "10.14.1" + ], + "rock": [ + "10.0.7" + ], + "rock biz": [ + "10.0.7" + ], + "role playing game": [ + "10.0.0" + ], + "running regular cybersalons": [ + "10.14.1" + ], + "sadie": [ + "10.3.1" + ], + "sadie plant claims": [ + "10.6.0" + ], + "safe sex": [ + "10.14.0" + ], + "safe streets goes": [ + "10.9.0" + ], + "salon": [ + "10.15.0" + ], + "salon remains": [ + "10.15.0" + ], + "school of communications": [ + "10.14.1" + ], + "send": [ + "10.3.0", + "10.4.0" + ], + "sender": [ + "10.14.0", + "10.15.0" + ], + "sending": [ + "10.3.0" + ], + "sending my piece": [ + "10.3.0" + ], + "separatism": [ + "10.11.0" + ], + "separatism and boundary": [ + "10.11.0" + ], + "separatist": [ + "10.11.0" + ], + "separatist activity": [ + "10.11.0" + ], + "separatist activity drops": [ + "10.11.0" + ], + "seperate": [ + "10.0.8" + ], + "seperate art": [ + "10.0.8" + ], + "seperate art piece": [ + "10.0.8", + "10.0.8" + ], + "seperate organ": [ + "10.0.8", + "10.0.8" + ], + "serve war technologies": [ + "10.6.0" + ], + "sex": [ + "10.0.5", + "10.0.6", + "10.14.0" + ], + "sexism": [ + "10.0.3", + "10.0.4", + "10.0.5", + "10.0.6" + ], + "sexism constitutes": [ + "10.0.3", + "10.0.4" + ], + "sexism constitutes neither": [ + "10.0.3" + ], + "sexism exists": [ + "10.0.5", + "10.0.6" + ], + "sexist": [ + "10.0.5", + "10.0.6", + "10.0.7" + ], + "sexless agenda leaves": [ + "10.13.1" + ], + "sexual": [ + "10.0.1", + "10.0.4" + ], + "sexuality": [ + "10.0.3", + "10.0.4", + "10.0.5" + ], + "sexuality beyond": [ + "10.7.0" + ], + "sexy biker bitches": [ + "10.7.0" + ], + "shed": [ + "10.4.5" + ], + "shed some light": [ + "10.4.5" + ], + "shift": [ + "10.14.0" + ], + "shift your identity": [ + "10.14.0" + ], + "shitty": [ + "10.0.2" + ], + "shitty men": [ + "10.0.2" + ], + "shitty women": [ + "10.0.2" + ], + "short": [ + "10.0.9" + ], + "short and precise": [ + "10.0.9" + ], + "shortcuts": [ + "10.4.0" + ], + "shortcuts page": [ + "10.4.0" + ], + "shu": [ + "10.14.0", + "10.15.0" + ], + "shu lea": [ + "10.14.0", + "10.15.0" + ], + "shu lea cheang": [ + "10.14.0", + "10.14.0", + "10.15.0", + "10.15.0" + ], + "sigmund freud": [ + "10.0.4" + ], + "significant historic moment": [ + "10.6.0" + ], + "silencing": [ + "10.3.3" + ], + "simplistic": [ + "10.0.3", + "10.0.4" + ], + "simplistic and apologist": [ + "10.0.3" + ], + "single person starting": [ + "10.9.0" + ], + "single term cyberfeminism": [ + "10.4.4" + ], + "sites provided": [ + "10.7.0" + ], + "slightly changed forms": [ + "10.8.0" + ], + "sluts": [ + "10.0.7" + ], + "sluts and cunts": [ + "10.0.7" + ], + "snergurutschka": [ + "10.3.3" + ], + "social": [ + "10.0.5", + "10.0.6", + "10.9.0", + "10.11.0" + ], + "social body": [ + "10.12.0" + ], + "social challenges": [ + "10.9.0" + ], + "social conditions created": [ + "10.6.0" + ], + "social interaction surfing": [ + "10.0.0" + ], + "social maintenance jobs": [ + "10.8.0" + ], + "social movement": [ + "10.0.5", + "10.0.6" + ], + "social wage": [ + "10.8.0" + ], + "social welfare tax": [ + "10.8.0" + ], + "socialist and antiracist": [ + "10.4.0" + ], + "socially productive jobs": [ + "10.8.0" + ], + "speak": [ + "10.3.3" + ], + "speaking": [ + "10.4.7" + ], + "specific cyberfeminist issue": [ + "10.9.0" + ], + "specific information": [ + "10.9.0" + ], + "specific to australia": [ + "10.2.0" + ], + "spend": [ + "10.4.6" + ], + "spice girls": [ + "10.0.1" + ], + "standard mass products": [ + "10.0.0" + ], + "star is born": [ + "10.4.5" + ], + "starrs": [ + "10.0.8", + "10.5.0" + ], + "started": [ + "10.1.0", + "10.4.5", + "10.5.0" + ], + "started empyre": [ + "10.1.0" + ], + "started postering cities": [ + "10.5.0" + ], + "started writing": [ + "10.5.0" + ], + "statement": [ + "10.0.3" + ], + "status in society": [ + "10.0.7" + ], + "stereotyping": [ + "10.0.6" + ], + "stories": [ + "10.0.9" + ], + "strategies": [ + "10.3.0", + "10.4.7" + ], + "street": [ + "10.4.1" + ], + "strictly ‘net": [ + "10.2.0" + ], + "strong creative obligations": [ + "10.9.0" + ], + "structural economic necessity": [ + "10.10.0" + ], + "struggle": [ + "10.10.0" + ], + "style": [ + "10.5.0" + ], + "style feminist rhetoric": [ + "10.7.0" + ], + "subjectivity": [ + "10.11.0" + ], + "substantially change traditional": [ + "10.8.0" + ], + "successful consciousness raising": [ + "10.11.0" + ], + "suck on vns": [ + "10.15.0" + ], + "suhail": [ + "10.4.1", + "10.4.2" + ], + "suhail malik": [ + "10.4.1", + "10.4.2", + "10.4.4" + ], + "suhail malik lectures": [ + "10.4.4", + "10.4.4" + ], + "suhail malik statement": [ + "10.4.2" + ], + "supersexed cyborg femme": [ + "10.6.0" + ], + "surfing": [ + "10.0.0" + ], + "susanna": [ + "10.3.3" + ], + "sweatshop labor": [ + "10.12.0" + ], + "sweatshop labor causes": [ + "10.8.0" + ], + "switch": [ + "10.1.0" + ], + "switch the java": [ + "10.1.0" + ], + "takeover": [ + "10.3.3" + ], + "takeover panels": [ + "10.3.3" + ], + "talk": [ + "10.15.0" + ], + "talking": [ + "10.5.0" + ], + "teachers": [ + "10.0.4", + "10.0.5", + "10.0.6" + ], + "technical avant garde": [ + "10.12.0" + ], + "techno evangelism coming": [ + "10.5.0" + ], + "technological tools": [ + "10.4.7" + ], + "technologies": [ + "10.6.0" + ], + "technology": [ + "10.5.0", + "10.6.0", + "10.8.0", + "10.10.0", + "10.12.0", + "10.14.0" + ], + "technology departments springing": [ + "10.6.0" + ], + "telework": [ + "10.8.0" + ], + "telling": [ + "10.3.1" + ], + "temporary tactical organization": [ + "10.10.0" + ], + "term": [ + "10.9.0" + ], + "term cyberfeminism": [ + "10.9.0" + ], + "term ‘net art": [ + "10.2.0" + ], + "terrifyingly absurd assumptions": [ + "10.0.3", + "10.0.4", + "10.0.5" + ], + "territories": [ + "10.10.0" + ], + "territory": [ + "10.10.0" + ], + "text": [ + "10.0.9", + "10.14.0" + ], + "text appeared": [ + "10.9.0" + ], + "text informations": [ + "10.0.9" + ], + "text mode": [ + "10.0.9" + ], + "themepark": [ + "10.0.0" + ], + "then’": [ + "10.2.0" + ], + "theory is centrally": [ + "10.3.2" + ], + "theory ultimately based": [ + "10.4.2" + ], + "thing": [ + "10.0.1", + "10.0.2", + "10.0.6", + "10.0.7", + "10.0.9", + "10.5.0" + ], + "things": [ + "10.0.2", + "10.0.6", + "10.0.7", + "10.4.4" + ], + "third international conference": [ + "10.4.7" + ], + "thought": [ + "10.5.0", + "10.13.1" + ], + "thought online": [ + "10.13.1" + ], + "three-way": [ + "10.2.0" + ], + "three-way prism": [ + "10.2.0" + ], + "ties obn": [ + "10.4.7" + ], + "tiles feminist pop": [ + "10.7.0" + ], + "time": [ + "10.4.6", + "10.5.0", + "10.8.0" + ], + "time and energy": [ + "10.4.6" + ], + "time privatized telework": [ + "10.8.0" + ], + "time quality time": [ + "10.8.0" + ], + "tiny little people": [ + "10.0.0" + ], + "tnx": [ + "10.4.5", + "10.4.7" + ], + "tnx pauline": [ + "10.4.5" + ], + "tollbooth guards access": [ + "10.12.0" + ], + "tomaz": [ + "10.0.4", + "10.0.5", + "10.0.9" + ], + "tomaz dobrila": [ + "10.0.5", + "10.0.9" + ], + "tomaz dobrila wrote": [ + "10.0.5", + "10.0.9" + ], + "tools": [ + "10.4.7" + ], + "top": [ + "10.14.0" + ], + "topical issue": [ + "10.4.1" + ], + "total quality woman": [ + "10.8.0" + ], + "tough political strategizing": [ + "10.6.0" + ], + "tradition": [ + "10.3.0", + "10.4.7" + ], + "traditional bounded stability": [ + "10.4.2" + ], + "traditional feminine roles": [ + "10.8.0" + ], + "traditional feminist territories": [ + "10.10.0", + "10.10.0" + ], + "traditional gender roles": [ + "10.8.0" + ], + "traditional gender structures": [ + "10.8.0" + ], + "translated": [ + "10.0.8" + ], + "translating feminist ideas": [ + "10.6.0" + ], + "transnational feminist": [ + "10.6.0" + ], + "transplanting": [ + "10.0.3" + ], + "transplanting their personal": [ + "10.0.1", + "10.0.3" + ], + "transpose feminist analysis": [ + "10.6.0" + ], + "tunnel": [ + "10.1.0" + ], + "ultimate patriarchal image": [ + "10.9.0" + ], + "understand": [ + "10.3.2" + ], + "understanding": [ + "10.3.0", + "10.4.7" + ], + "understanding of politics": [ + "10.3.0", + "10.4.7" + ], + "understood": [ + "10.4.4" + ], + "understood cyberfeminism": [ + "10.4.4", + "10.4.5" + ], + "undesired genderrelated social": [ + "10.9.0" + ], + "unfriendly": [ + "10.0.8" + ], + "unfriendly interface": [ + "10.0.8" + ], + "united": [ + "10.0.6" + ], + "united states": [ + "10.0.5", + "10.0.6" + ], + "universal": [ + "10.4.1" + ], + "universal house": [ + "10.4.1", + "10.4.4" + ], + "university": [ + "10.0.7", + "10.4.6" + ], + "university of westminster": [ + "10.14.1" + ], + "unmoderated mailing list": [ + "10.3.0" + ], + "unpaid household workers": [ + "10.8.0" + ], + "unpaid labor": [ + "10.8.0" + ], + "upgrading computer skills": [ + "10.8.0" + ], + "urban black women": [ + "10.8.0" + ], + "url": [ + "10.0.9" + ], + "usa": [ + "10.4.6", + "10.13.0" + ], + "useful political strategy": [ + "10.4.4", + "10.4.7" + ], + "user": [ + "10.0.8" + ], + "user unfriendly": [ + "10.0.8" + ], + "user unfriendly interface": [ + "10.0.0", + "10.0.8", + "10.0.8", + "10.5.0" + ], + "utopian promises claimed": [ + "10.8.0" + ], + "vagina": [ + "10.0.0", + "10.0.1", + "10.0.3", + "10.0.4", + "10.0.5", + "10.0.7", + "10.13.0" + ], + "vagina dentata": [ + "10.0.0" + ], + "vcr": [ + "10.14.0" + ], + "verena kuni": [ + "10.7.0" + ], + "verena kuni text": [ + "10.7.0" + ], + "vermont college": [ + "10.4.6" + ], + "version": [ + "10.4.0", + "10.4.1" + ], + "viewpoint": [ + "10.4.1" + ], + "viral pleasure world": [ + "10.0.0" + ], + "viral pleasureworld": [ + "10.0.0", + "10.0.0" + ], + "virginia barratt": [ + "10.5.0" + ], + "virtual": [ + "10.0.0" + ], + "virtual space": [ + "10.0.0" + ], + "virtual space linked": [ + "10.0.0" + ], + "virtual themepark": [ + "10.0.0" + ], + "virtual world": [ + "10.0.0" + ], + "visible": [ + "10.10.0" + ], + "visible female disruption": [ + "10.10.0" + ], + "vision": [ + "10.3.0" + ], + "visual": [ + "10.7.0" + ], + "vns": [ + "10.0.0", + "10.0.8", + "10.1.0", + "10.2.0", + "10.5.0", + "10.13.1", + "10.15.0" + ], + "vns matrix acts": [ + "10.0.0", + "10.0.0" + ], + "vns matrix located": [ + "10.2.0" + ], + "vns matrix mentioned": [ + "10.9.0" + ], + "wac": [ + "10.10.0" + ], + "wac immediately organized": [ + "10.10.0" + ], + "wac reinvigorated feminist": [ + "10.10.0" + ], + "waged labor": [ + "10.8.0" + ], + "waged labor market": [ + "10.8.0" + ], + "walter de gruyter": [ + "10.8.0" + ], + "wane": [ + "10.4.2" + ], + "wane and wane": [ + "10.4.2" + ], + "wanted": [ + "10.0.1", + "10.0.2", + "10.0.3" + ], + "wanted to note": [ + "10.0.3", + "10.0.4" + ], + "watford road": [ + "10.14.1" + ], + "wave": [ + "10.10.0" + ], + "wave *activity* peaked": [ + "10.12.0" + ], + "wave feminist movement": [ + "10.4.2", + "10.4.2" + ], + "weak points": [ + "10.3.1" + ], + "web": [ + "10.4.1", + "10.7.0", + "10.13.0" + ], + "web and moma": [ + "10.13.1" + ], + "web cyberfeminist": [ + "10.7.0" + ], + "web cyberfeminist grrlism": [ + "10.7.0", + "10.7.0" + ], + "wentworth street": [ + "10.4.1", + "10.4.4" + ], + "western european countries": [ + "10.8.0" + ], + "western world women": [ + "10.0.0" + ], + "westminster": [ + "10.14.1" + ], + "whatever medium": [ + "10.4.5" + ], + "whatever nice adverbs": [ + "10.4.5" + ], + "wide": [ + "10.7.0" + ], + "wide business center": [ + "10.7.0" + ], + "wide social indifference": [ + "10.8.0" + ], + "wide web": [ + "10.7.0" + ], + "wilding": [ + "10.3.0", + "10.4.0", + "10.10.0", + "10.13.0" + ], + "wilding and critical": [ + "10.10.0" + ], + "wilding wrote": [ + "10.13.0" + ], + "wildly utopian claims": [ + "10.8.0" + ], + "william kennedy smith": [ + "10.10.0" + ], + "windows": [ + "10.0.9" + ], + "woefully boring task": [ + "10.12.0" + ], + "woman": [ + "10.0.0", + "10.0.7" + ], + "woman technological training": [ + "10.6.0" + ], + "women": [ + "10.0.0", + "10.0.1", + "10.0.2", + "10.0.3", + "10.0.4", + "10.0.5", + "10.0.6", + "10.0.7", + "10.3.3", + "10.4.2", + "10.5.0", + "10.6.0", + "10.7.0", + "10.8.0", + "10.9.0", + "10.10.0", + "10.11.0", + "10.12.0" + ], + "women artists": [ + "10.3.3" + ], + "women belonged exclusively": [ + "10.4.2" + ], + "women changing labor": [ + "10.8.0" + ], + "women clerical workers": [ + "10.8.0" + ], + "women domestic work": [ + "10.8.0" + ], + "women entering college": [ + "10.6.0" + ], + "women groups": [ + "10.11.0" + ], + "women history": [ + "10.3.3" + ], + "women labor": [ + "10.8.0" + ], + "women online": [ + "10.9.0" + ], + "women online josephine": [ + "10.9.0" + ], + "women possess": [ + "10.9.0" + ], + "women students comprise": [ + "10.6.0" + ], + "women work": [ + "10.8.0" + ], + "wondering": [ + "10.1.0" + ], + "word girl": [ + "10.7.0" + ], + "words": [ + "10.15.0" + ], + "words worth": [ + "10.9.0" + ], + "work": [ + "10.1.0", + "10.3.2", + "10.3.3", + "10.4.4", + "10.4.5", + "10.5.0", + "10.6.0", + "10.8.0", + "10.12.0", + "10.13.0" + ], + "work but possess": [ + "10.0.7" + ], + "work faith": [ + "10.8.0" + ], + "work faith wilding": [ + "10.8.0" + ], + "work reinforces women": [ + "10.8.0" + ], + "workers": [ + "10.8.0" + ], + "workers involved": [ + "10.10.0" + ], + "working": [ + "10.3.2" + ], + "working class women": [ + "10.11.0" + ], + "working on writing": [ + "10.3.2" + ], + "world": [ + "10.0.0", + "10.0.4", + "10.0.5", + "10.0.6", + "10.3.3", + "10.4.2", + "10.7.0" + ], + "world dominated": [ + "10.0.0" + ], + "world history": [ + "10.3.3" + ], + "world populations": [ + "10.0.4" + ], + "world social environment": [ + "10.10.0" + ], + "world wide": [ + "10.7.0", + "10.7.0" + ], + "world word web": [ + "10.7.0", + "10.7.0" + ], + "worldwide labor crisis": [ + "10.8.0" + ], + "worldwide proliferation": [ + "10.8.0" + ], + "write": [ + "10.3.3" + ], + "writers situate": [ + "10.3.2" + ], + "writing": [ + "10.3.2", + "10.5.0", + "10.9.0" + ], + "writing and reading": [ + "10.3.2" + ], + "wrote": [ + "10.0.1", + "10.0.5", + "10.0.9", + "10.13.0" + ], + "wrote suggested otherwise": [ + "10.0.5", + "10.0.6" + ], + "year": [ + "10.5.0" + ], + "yesterday promise": [ + "10.4.2" + ], + "young women": [ + "10.3.3", + "10.6.0", + "10.12.0" + ], + "young women artists": [ + "10.3.3" + ], + "zeros + ones": [ + "10.6.0" + ], + "zine blue stockings": [ + "10.7.0" + ], + "’ve": [ + "10.2.0" + ] + }, + "selected": { + "amsterdam": [ + "10.5.0" + ], + "avant garde": [ + "10.11.0" + ], + "braidotti": [ + "10.3.2" + ], + "clitoris": [ + "10.0.3", + "10.0.4", + "10.0.5", + "10.0.6", + "10.0.7", + "10.15.0" + ], + "critical art ensemble": [ + "10.10.0", + "10.10.0" + ], + "cyberfeminist international": [ + "10.6.0", + "10.7.0" + ], + "cybersex": [ + "10.14.0", + "10.14.1", + "10.15.0" + ], + "cyborg": [ + "10.4.0", + "10.4.2", + "10.4.4" + ], + "donna haraway": [ + "10.4.2", + "10.4.2", + "10.4.4", + "10.4.5" + ], + "e-mail": [ + "10.0.7" + ], + "feminist art": [ + "10.0.2", + "10.12.0", + "10.13.0", + "10.13.0" + ], + "haraway": [ + "10.3.1", + "10.4.0", + "10.4.2", + "10.4.4", + "10.4.5", + "10.4.7" + ], + "henri lefebvre": [ + "10.14.1" + ], + "lefebvre": [ + "10.14.1" + ], + "linux": [ + "10.0.9" + ], + "linz": [ + "10.3.3" + ], + "listserver": [ + "10.14.1" + ], + "liverpool": [ + "10.0.2" + ], + "london": [ + "10.4.1", + "10.4.4" + ], + "maintenance": [ + "10.8.0", + "10.11.0" + ], + "net art": [ + "10.2.0" + ], + "net critique": [ + "10.2.0", + "10.2.0" + ], + "net culture": [ + "10.2.0", + "10.2.0" + ], + "net.art": [ + "10.2.0" + ], + "netizens": [ + "10.1.0" + ], + "obn": [ + "10.3.0", + "10.3.1", + "10.3.2", + "10.4.4", + "10.4.5", + "10.4.7" + ], + "penis": [ + "10.0.4", + "10.0.5", + "10.0.6" + ], + "postcolonial": [ + "10.4.6" + ], + "rhizome": [ + "10.13.1" + ], + "sadie plant": [ + "10.3.1", + "10.6.0", + "10.6.0" + ], + "theory": [ + "10.3.3", + "10.4.4", + "10.4.6", + "10.12.0", + "10.13.1" + ], + "vns matrix": [ + "10.0.0", + "10.0.8", + "10.1.0", + "10.2.0", + "10.13.0", + "10.13.1", + "10.15.0" + ], + "world wide web": [ + "10.0.0", + "10.7.0", + "10.7.0" + ] + } +} \ No newline at end of file diff --git a/index/11.CODE-index.js b/index/11.CODE-index.js new file mode 100644 index 0000000..6be703c --- /dev/null +++ b/index/11.CODE-index.js @@ -0,0 +1,5902 @@ +{ + "orphan": { + "&nrissue=3d28&nrsection=3d10&nrarticle=3d1397": [ + "11.7.0" + ], + "/ soca": [ + "11.8.7" + ], + "/vc%%%33cv/` ``/": [ + "11.8.7" + ], + "0400x schrieb rsg": [ + "11.8.8" + ], + "18th century classicist": [ + "11.9.0" + ], + "19th century": [ + "11.9.0" + ], + "1q virtual lan": [ + "11.8.8" + ], + "3g0$bgcx` ~8$g88/$ {": [ + "11.8.7" + ], + "7:36": [ + "11.8.9" + ], + "> packet data": [ + "11.8.8" + ], + "> packet output": [ + "11.8.8" + ], + "> single user": [ + "11.8.8" + ], + ">andreas broeckmann wrote": [ + "11.3.8" + ], + ">hypertext world mainly": [ + "11.6.7" + ], + ">original fbi apparatus": [ + "11.8.2" + ], + ">recasting art": [ + "11.8.2" + ], + "_because_ jo&di": [ + "11.5.5-p.523" + ], + "``digital photograph": [ + "11.9.0" + ], + "``web stalker": [ + "11.0.0" + ], + "aaron screensaver": [ + "11.7.0" + ], + "abramson": [ + "11.8.2" + ], + "abroeck": [ + "11.8.3" + ], + "absolutely essential dimension": [ + "11.7.0" + ], + "abstraction of language": [ + "11.5.5-p.523" + ], + "abstrakt": [ + "11.8.5" + ], + "academic literary": [ + "11.6.0" + ], + "academic literary community": [ + "11.5.0" + ], + "accept": [ + "11.3.12" + ], + "access carnivorepe data": [ + "11.8.3" + ], + "accidental concrete poetry": [ + "11.8.8" + ], + "act": [ + "11.3.2" + ], + "actual sniffing": [ + "11.8.8" + ], + "actually exposes concepts": [ + "11.9.0" + ], + "adapting dadaist poetry": [ + "11.9.0" + ], + "address": [ + "11.9.2" + ], + "address cultural": [ + "11.9.2" + ], + "address resolution protocol": [ + "11.8.8", + "11.8.8" + ], + "addressed": [ + "11.9.1" + ], + "addresses": [ + "11.9.2" + ], + "addresses cultural": [ + "11.9.2" + ], + "addresses cultural concepts": [ + "11.9.0", + "11.9.2", + "11.9.2" + ], + "adobe": [ + "11.3.10" + ], + "adopted annoying practices": [ + "11.4.0" + ], + "adrian ward": [ + "11.9.0" + ], + "advisable to form": [ + "11.3.0" + ], + "aesthetic": [ + "11.1.0", + "11.3.4", + "11.7.0" + ], + "aesthetic dimension": [ + "11.3.4" + ], + "aesthetic modes according": [ + "11.3.4" + ], + "aesthetic sniffing": [ + "11.8.8" + ], + "aestheticized": [ + "11.8.9" + ], + "aestheticized visualizations": [ + "11.8.9" + ], + "agency": [ + "11.3.11" + ], + "agency involved": [ + "11.8.6" + ], + "agree": [ + "11.3.9" + ], + "agree with sarah": [ + "11.3.9" + ], + "aim": [ + "11.3.7", + "11.3.8" + ], + "aim to encourage": [ + "11.3.7", + "11.3.8" + ], + "alan": [ + "11.6.2", + "11.6.3", + "11.6.4" + ], + "alan sondheim": [ + "11.6.2" + ], + "alan sondheim sometimes": [ + "11.6.0" + ], + "algorithm": [ + "11.3.4" + ], + "algorithm reduces": [ + "11.3.4" + ], + "algorithmic digital code": [ + "11.9.0" + ], + "algorithmic music": [ + "11.3.3" + ], + "algorithmic programming code": [ + "11.0.0" + ], + "algorithmically generated text": [ + "11.9.0" + ], + "alla biennale": [ + "11.4.0" + ], + "allow remote access": [ + "11.8.0" + ], + "allowed": [ + "11.3.10" + ], + "allowed to pass": [ + "11.3.10" + ], + "aloha": [ + "11.8.1" + ], + "alot": [ + "11.6.1", + "11.6.2" + ], + "alternative identities": [ + "11.5.0", + "11.6.0" + ], + "alto": [ + "11.8.1" + ], + "american": [ + "11.6.2" + ], + "american book": [ + "11.0.0" + ], + "american book review": [ + "11.0.0", + "11.0.0" + ], + "american concept artists": [ + "11.9.0" + ], + "americans hence aren": [ + "11.8.5" + ], + "amos tutualoa": [ + "11.6.3", + "11.6.4" + ], + "analog interfaces": [ + "11.9.0" + ], + "analog recording technology": [ + "11.9.0" + ], + "analog video": [ + "11.9.0" + ], + "analysis offered": [ + "11.8.3", + "11.8.8" + ], + "andreas": [ + "11.3.1", + "11.3.2", + "11.3.5", + "11.3.7", + "11.3.8", + "11.3.10", + "11.6.7", + "11.8.3" + ], + "andreas broeckmann": [ + "11.3.1", + "11.3.5", + "11.3.7", + "11.3.8", + "11.8.2", + "11.8.3", + "11.8.8" + ], + "andreas broeckmann wrote": [ + "11.3.1", + "11.3.1", + "11.3.7", + "11.3.7", + "11.3.8" + ], + "andreas referenced": [ + "11.3.2" + ], + "andreas writes": [ + "11.6.7" + ], + "andrew ross": [ + "11.8.0" + ], + "andrew ross explains": [ + "11.8.0" + ], + "anesthetized treatment": [ + "11.8.9" + ], + "answered": [ + "11.3.4" + ], + "ant pc planetary": [ + "11.5.0", + "11.6.0" + ], + "anthony": [ + "11.3.4" + ], + "anthony giddens": [ + "11.3.2" + ], + "anthony huberman": [ + "11.3.5" + ], + "anthony huberman puts": [ + "11.3.5" + ], + "antiorp writing": [ + "11.5.0" + ], + "antiorp writing emanated": [ + "11.5.0", + "11.6.0" + ], + "antivirus companies including": [ + "11.4.0" + ], + "antoine schmitt": [ + "11.3.4" + ], + "antoine schmitt vexation": [ + "11.3.4" + ], + "aol instant messenger": [ + "11.8.8" + ], + "application": [ + "11.3.1" + ], + "applied art project": [ + "11.8.6" + ], + "applying intense computer": [ + "11.8.0" + ], + "appreciated": [ + "11.3.5" + ], + "appreciating": [ + "11.3.5" + ], + "approaches": [ + "11.3.9" + ], + "appropriate programming expertise": [ + "11.8.2" + ], + "aquatic life forms": [ + "11.8.7" + ], + "arises": [ + "11.6.2" + ], + "arrangement": [ + "11.9.1" + ], + "ars electronica book": [ + "11.8.2" + ], + "art": [ + "11.0.0", + "11.1.0", + "11.2.0", + "11.3.0", + "11.3.1", + "11.3.2", + "11.3.3", + "11.3.4", + "11.3.5", + "11.3.6", + "11.3.11", + "11.4.0", + "11.5.0", + "11.5.5-p.523", + "11.6.0", + "11.7.0", + "11.8.0", + "11.8.4", + "11.9.0", + "11.9.1", + "11.9.2" + ], + "art applications sufficient": [ + "11.7.0" + ], + "art audience": [ + "11.8.2" + ], + "art award": [ + "11.0.0" + ], + "art collective": [ + "11.4.0" + ], + "art context": [ + "11.8.4" + ], + "art discourse": [ + "11.8.4" + ], + "art economies": [ + "11.9.1" + ], + "art festival": [ + "11.0.0" + ], + "art florian cramer": [ + "11.0.0", + "11.9.0" + ], + "art flynt": [ + "11.0.0" + ], + "art form": [ + "11.3.5", + "11.4.0", + "11.4.0" + ], + "art objects actually": [ + "11.0.0" + ], + "art scene": [ + "11.8.9" + ], + "art system": [ + "11.8.4" + ], + "art work": [ + "11.8.4" + ], + "art world": [ + "11.3.5", + "11.4.0", + "11.4.0" + ], + "art world context": [ + "11.3.5", + "11.3.5" + ], + "art-making": [ + "11.3.2", + "11.3.3" + ], + "artaud reference": [ + "11.6.3", + "11.6.4" + ], + "artaud sites": [ + "11.6.3", + "11.6.4" + ], + "artificial": [ + "11.3.6", + "11.3.11" + ], + "artificial intelligence": [ + "11.3.6", + "11.3.11" + ], + "artist": [ + "11.3.2", + "11.3.3", + "11.3.4", + "11.6.8", + "11.7.0" + ], + "artist harold": [ + "11.3.9" + ], + "artist harold cohen": [ + "11.3.9", + "11.3.9", + "11.7.0", + "11.7.0" + ], + "artist program users": [ + "11.7.0" + ], + "artist programmers": [ + "11.7.0" + ], + "artist sketchbook": [ + "11.6.8" + ], + "artist software": [ + "11.7.0" + ], + "artist software called": [ + "11.7.0" + ], + "artist ulrike gabriel": [ + "11.9.0" + ], + "artist-made": [ + "11.8.6" + ], + "artist-made diagnosic": [ + "11.8.6" + ], + "artist-made diagnosic clients": [ + "11.8.6" + ], + "artistic": [ + "11.3.0", + "11.3.4", + "11.5.5-p.523", + "11.6.7" + ], + "artistic codework": [ + "11.5.5-p.523", + "11.6.7" + ], + "artistic discourse centering": [ + "11.3.3" + ], + "artistic practice": [ + "11.3.0", + "11.3.0" + ], + "artistic process": [ + "11.3.4" + ], + "artists": [ + "11.1.0", + "11.3.0", + "11.3.2", + "11.3.3", + "11.3.5", + "11.3.9", + "11.4.0", + "11.7.0", + "11.8.6" + ], + "artists adrian ward": [ + "11.9.0" + ], + "artists developing": [ + "11.3.5" + ], + "artists have drawn": [ + "11.3.11" + ], + "artists intentions": [ + "11.3.9" + ], + "artists living": [ + "11.8.6" + ], + "artists paint": [ + "11.3.0" + ], + "artists programming": [ + "11.3.5", + "11.3.9" + ], + "artists programming computers": [ + "11.3.5", + "11.3.9" + ], + "arts": [ + "11.9.0" + ], + "artwork": [ + "11.2.0", + "11.3.0", + "11.3.9", + "11.3.10" + ], + "artwork part": [ + "11.3.0" + ], + "aspects": [ + "11.5.0", + "11.6.0" + ], + "assign codework texts": [ + "11.5.0", + "11.5.0", + "11.6.0", + "11.6.0" + ], + "assign discrete": [ + "11.5.0" + ], + "assign discrete flesh": [ + "11.6.0" + ], + "assistance": [ + "11.6.6" + ], + "assistance or col": [ + "11.6.6" + ], + "attributing ethernet": [ + "11.8.2" + ], + "audience": [ + "11.3.2", + "11.3.3" + ], + "audiences": [ + "11.3.2" + ], + "audiences understand art": [ + "11.3.2" + ], + "audio cds/mp3 files": [ + "11.9.0" + ], + "august": [ + "11.2.0" + ], + "australian codeworker mez": [ + "11.5.0", + "11.6.0" + ], + "author": [ + "11.5.5-p.523" + ], + "auto illustrator": [ + "11.9.0" + ], + "autopoietic machine process": [ + "11.3.4", + "11.3.4" + ], + "available including snort": [ + "11.8.3" + ], + "available software code": [ + "11.9.0" + ], + "avoid packet storms": [ + "11.8.3", + "11.8.8" + ], + "aware": [ + "11.3.10" + ], + "back": [ + "11.3.10" + ], + "back andreas": [ + "11.3.10" + ], + "bar-joseph": [ + "11.3.0" + ], + "based application software": [ + "11.7.0" + ], + "based art": [ + "11.3.11" + ], + "basic assembly structure": [ + "11.8.0" + ], + "basically": [ + "11.8.3" + ], + "basis": [ + "11.3.1" + ], + "beeing": [ + "11.8.4" + ], + "beeing secondary consumers": [ + "11.8.4" + ], + "beeing software": [ + "11.8.4" + ], + "beginning": [ + "11.6.3", + "11.6.4" + ], + "biennale": [ + "11.4.0" + ], + "bit": [ + "11.6.1" + ], + "bitstream channels knowledge": [ + "11.8.9" + ], + "blake": [ + "11.5.0", + "11.6.0" + ], + "blake work": [ + "11.6.0" + ], + "boggs": [ + "11.8.1", + "11.8.2" + ], + "boggs of xerox": [ + "11.8.1" + ], + "book pages giving": [ + "11.9.0" + ], + "book review": [ + "11.0.0" + ], + "borevitz": [ + "11.6.8" + ], + "borevitz earlier": [ + "11.6.8" + ], + "bottomline": [ + "11.8.9" + ], + "boundaries": [ + "11.3.3" + ], + "brad": [ + "11.6.8" + ], + "brad borevitz": [ + "11.6.8" + ], + "brad borevitz earlier": [ + "11.6.8", + "11.6.8" + ], + "branches of media": [ + "11.5.5-p.523" + ], + "branching": [ + "11.3.6" + ], + "brandenburg": [ + "11.8.2" + ], + "break": [ + "11.6.2" + ], + "breaks": [ + "11.5.5-p.523" + ], + "bring percussion instruments": [ + "11.8.7" + ], + "brings writing": [ + "11.5.5-p.523" + ], + "broad cultural": [ + "11.9.0" + ], + "broad disciplinary framework": [ + "11.1.0" + ], + "broeckmann": [ + "11.3.1", + "11.3.5", + "11.3.7", + "11.3.8", + "11.8.3", + "11.8.8" + ], + "broeckmann wrote": [ + "11.3.1", + "11.3.7", + "11.3.8" + ], + "broken software art": [ + "11.9.0" + ], + "bruce sterling": [ + "11.8.0", + "11.8.0" + ], + "bruce sterling writes": [ + "11.8.0", + "11.8.0" + ], + "bryce analogy": [ + "11.3.3" + ], + "build": [ + "11.8.4" + ], + "build for success": [ + "11.8.4" + ], + "build interpretive interfaces": [ + "11.8.0" + ], + "buy": [ + "11.3.10" + ], + "buy software": [ + "11.3.10" + ], + "buying": [ + "11.3.10" + ], + "buying the software": [ + "11.3.10" + ], + "cab calloway": [ + "11.6.1" + ], + "cabaret laws": [ + "11.8.7", + "11.8.7" + ], + "cabaret license": [ + "11.8.7" + ], + "called “alan sondheim": [ + "11.5.0" + ], + "calloway or kurt": [ + "11.6.1" + ], + "cambridge conference code": [ + "11.1.0" + ], + "campuses": [ + "11.8.1" + ], + "cantsin": [ + "11.8.9" + ], + "car racing game": [ + "11.9.0" + ], + "card": [ + "11.6.8" + ], + "carnivocre": [ + "11.8.4" + ], + "carnivore clients": [ + "11.8.6" + ], + "carnivore craze": [ + "11.8.7" + ], + "carnivore is technically": [ + "11.8.10" + ], + "carnivore offers": [ + "11.8.10" + ], + "carnivore personal": [ + "11.8.0", + "11.8.3" + ], + "carnivore personal edition": [ + "11.8.0", + "11.8.0", + "11.8.3", + "11.8.3", + "11.8.8", + "11.8.8" + ], + "carnivore program": [ + "11.8.3", + "11.8.8" + ], + "carnivore program offers": [ + "11.8.3", + "11.8.3", + "11.8.8", + "11.8.8" + ], + "carnivorepe": [ + "11.8.3" + ], + "case": [ + "11.3.3" + ], + "case to comment": [ + "11.3.11" + ], + "cases": [ + "11.3.3", + "11.3.4" + ], + "central organising =": [ + "11.7.0" + ], + "central processing system": [ + "11.7.0" + ], + "century which give": [ + "11.3.5" + ], + "checksum checksum": [ + "11.8.8" + ], + "checksum_bad bad checksum": [ + "11.8.8" + ], + "cheers": [ + "11.3.1" + ], + "chiamato biennale": [ + "11.4.0" + ], + "choose": [ + "11.3.7", + "11.3.8" + ], + "choose to withdraw": [ + "11.3.7", + "11.3.8" + ], + "christopher otto": [ + "11.6.8" + ], + "cited linker project": [ + "11.7.0" + ], + "city": [ + "11.8.7" + ], + "classic analysis": [ + "11.8.0" + ], + "classic computer art": [ + "11.7.0" + ], + "classical art": [ + "11.4.0" + ], + "clement": [ + "11.8.2" + ], + "clement thomas": [ + "11.8.2", + "11.8.2" + ], + "clement thomas wrote": [ + "11.8.2", + "11.8.2" + ], + "client-side": [ + "11.6.8" + ], + "clients": [ + "11.8.3", + "11.8.6" + ], + "clients created": [ + "11.8.6" + ], + "clients turn": [ + "11.8.6" + ], + "closed": [ + "11.3.7", + "11.3.8" + ], + "closed and proprietary": [ + "11.3.7", + "11.3.8" + ], + "closed source technologies": [ + "11.8.0" + ], + "clumsily constructed code": [ + "11.8.0" + ], + "coaxial cable network": [ + "11.8.1" + ], + "code": [ + "11.0.0", + "11.1.0", + "11.3.0", + "11.3.3", + "11.3.4", + "11.3.6", + "11.3.10", + "11.4.0", + "11.6.1", + "11.8.0", + "11.9.0", + "11.9.2" + ], + "code development environment": [ + "11.3.4" + ], + "code executed": [ + "11.3.6" + ], + "code listings step": [ + "11.9.0" + ], + "code processes code": [ + "11.0.0" + ], + "code programme covered": [ + "11.1.0" + ], + "codework": [ + "11.5.0", + "11.5.5-p.523", + "11.6.0", + "11.6.7" + ], + "codework draws attention": [ + "11.5.0", + "11.6.0" + ], + "codework examples.": [ + "11.5.5-p.523", + "11.6.7" + ], + "codework makes": [ + "11.5.5-p.523" + ], + "codework texts": [ + "11.5.0", + "11.6.0" + ], + "codework texts hover": [ + "11.5.0", + "11.5.0", + "11.6.0", + "11.6.0" + ], + "codework writings": [ + "11.5.0", + "11.6.0" + ], + "codework you reference": [ + "11.5.5-p.523" + ], + "codeworker proposes": [ + "11.5.0", + "11.6.0" + ], + "cohen": [ + "11.7.0" + ], + "col": [ + "11.6.6" + ], + "collaborations": [ + "11.6.6" + ], + "collaborative": [ + "11.5.5-p.523", + "11.6.7" + ], + "collaborative dance": [ + "11.6.6" + ], + "collaborative entity": [ + "11.5.5-p.523" + ], + "collaborative filtering": [ + "11.6.7" + ], + "collaborative practice": [ + "11.5.5-p.523" + ], + "collaborative practices": [ + "11.5.5-p.523", + "11.6.7" + ], + "collaborative process": [ + "11.6.7" + ], + "combinatory language speculations": [ + "11.9.0" + ], + "combinatory text systems": [ + "11.5.0", + "11.6.0" + ], + "coming": [ + "11.3.5" + ], + "coming into focus": [ + "11.3.5" + ], + "commercial bent": [ + "11.8.0" + ], + "commercial ownership": [ + "11.8.0" + ], + "commercial software products": [ + "11.8.0" + ], + "commercial user software": [ + "11.9.0" + ], + "commissed by mute": [ + "11.1.0" + ], + "common data visualisations": [ + "11.7.0" + ], + "commonplace packet sniffers": [ + "11.8.8" + ], + "community": [ + "11.8.5" + ], + "competition": [ + "11.2.0", + "11.3.1" + ], + "competition for software": [ + "11.2.0" + ], + "completely": [ + "11.3.10" + ], + "completely crazy": [ + "11.3.10" + ], + "compositional terms": [ + "11.9.1" + ], + "computer": [ + "11.0.0", + "11.3.3", + "11.3.4", + "11.4.0", + "11.7.0", + "11.8.0", + "11.9.0" + ], + "computer art programs": [ + "11.7.0" + ], + "computer based art": [ + "11.3.11" + ], + "computer code": [ + "11.3.3" + ], + "computer code makes": [ + "11.3.3" + ], + "computer companies trying": [ + "11.8.0" + ], + "computer fraud": [ + "11.4.0" + ], + "computer infected": [ + "11.4.0" + ], + "computer lib/dream machines": [ + "11.8.0" + ], + "computer make": [ + "11.7.0" + ], + "computer make art": [ + "11.7.0" + ], + "computer operating system": [ + "11.9.0" + ], + "computer operating systems": [ + "11.1.0" + ], + "computer program": [ + "11.9.0" + ], + "computer program code": [ + "11.9.0" + ], + "computer program looks": [ + "11.9.0" + ], + "computer scientist donald": [ + "11.9.0" + ], + "computer software": [ + "11.3.5" + ], + "computer software burnham": [ + "11.9.0" + ], + "computer software installations": [ + "11.0.0" + ], + "computer virus": [ + "11.4.0" + ], + "computer viruses": [ + "11.4.0" + ], + "computer viruses embody": [ + "11.4.0" + ], + "computers": [ + "11.3.9", + "11.8.0", + "11.9.0" + ], + "concept": [ + "11.0.0", + "11.3.0", + "11.9.0" + ], + "concept art": [ + "11.0.0", + "11.9.0" + ], + "concept art book": [ + "11.9.0", + "11.9.0" + ], + "concept notation": [ + "11.9.0" + ], + "concept notation art": [ + "11.9.0", + "11.9.0" + ], + "concept notations software": [ + "11.9.0" + ], + "concepts": [ + "11.9.0", + "11.9.1", + "11.9.2" + ], + "concepts of software": [ + "11.9.2" + ], + "conceptual": [ + "11.8.4", + "11.9.1" + ], + "conceptual art document": [ + "11.9.1" + ], + "conceptual form": [ + "11.8.0" + ], + "conceptual work begun": [ + "11.9.1" + ], + "conceptual works": [ + "11.9.1" + ], + "conceptual works addressed": [ + "11.9.1" + ], + "concerned with simulated": [ + "11.3.11" + ], + "conditions": [ + "11.3.6" + ], + "conditions for branching": [ + "11.3.6" + ], + "coney island": [ + "11.8.7" + ], + "coney island mermaid": [ + "11.8.7" + ], + "conference": [ + "11.1.0" + ], + "consequences": [ + "11.5.0", + "11.6.0" + ], + "constantly becoming randomized": [ + "11.6.0" + ], + "constructing program code": [ + "11.9.0" + ], + "contagious form": [ + "11.4.0" + ], + "contemporary art world": [ + "11.4.0" + ], + "contemporary culture": [ + "11.4.0" + ], + "contemporary digital aesthetic": [ + "11.7.0" + ], + "contemporary digital arts": [ + "11.9.0" + ], + "contemporary software art": [ + "11.9.0", + "11.9.0" + ], + "contents": [ + "11.8.2" + ], + "context": [ + "11.3.3", + "11.3.5", + "11.8.4" + ], + "context/existence et al": [ + "11.3.9" + ], + "contexts": [ + "11.9.1" + ], + "continue": [ + "11.3.4", + "11.3.7", + "11.3.8" + ], + "continue running": [ + "11.3.7", + "11.3.8" + ], + "control medical instruments": [ + "11.9.0" + ], + "control parameters": [ + "11.9.0" + ], + "control structures": [ + "11.9.0" + ], + "control systems": [ + "11.8.6" + ], + "conveniently editable parameters": [ + "11.7.0" + ], + "conventional": [ + "11.3.6" + ], + "conventional forms": [ + "11.3.6" + ], + "conventional programming languages": [ + "11.7.0" + ], + "coover and jeff": [ + "11.1.0" + ], + "copy": [ + "11.3.10" + ], + "copyrighted digital": [ + "11.1.0" + ], + "corporate spying": [ + "11.8.2" + ], + "corporate spying tend": [ + "11.8.2" + ], + "corrupted floppy disk": [ + "11.4.0" + ], + "costs": [ + "11.8.4" + ], + "costs of success": [ + "11.8.4" + ], + "cramer": [ + "11.8.9", + "11.8.10" + ], + "cramer provided": [ + "11.8.9" + ], + "cramer raises": [ + "11.8.10" + ], + "crazy": [ + "11.3.10" + ], + "create": [ + "11.3.3" + ], + "create a photoshop-like": [ + "11.3.1" + ], + "create art/text/etc etc": [ + "11.6.1" + ], + "create text": [ + "11.6.1" + ], + "created": [ + "11.8.6" + ], + "created by leading": [ + "11.8.6" + ], + "creating": [ + "11.8.9" + ], + "creating aestheticized": [ + "11.8.9" + ], + "creating aestheticized visualizations": [ + "11.8.8", + "11.8.9" + ], + "creation of professional": [ + "11.3.1" + ], + "creative": [ + "11.3.4" + ], + "creative agenda": [ + "11.0.0" + ], + "critically question media": [ + "11.8.8" + ], + "critique": [ + "11.3.5", + "11.8.5", + "11.8.6" + ], + "critique its presentation": [ + "11.3.5" + ], + "cultivate individual freedom": [ + "11.8.0" + ], + "cultural": [ + "11.3.3", + "11.9.2" + ], + "cultural and esthetical": [ + "11.9.2" + ], + "cultural approaches": [ + "11.6.1" + ], + "cultural aspect": [ + "11.9.0" + ], + "cultural building block": [ + "11.7.0" + ], + "cultural change": [ + "11.6.1" + ], + "cultural concepts": [ + "11.9.2" + ], + "cultural meme": [ + "11.7.0" + ], + "cultural sensibilities": [ + "11.7.0" + ], + "cultural variations": [ + "11.6.1" + ], + "culture": [ + "11.6.2" + ], + "curatorial practice": [ + "11.3.0" + ], + "curators": [ + "11.2.0" + ], + "cybernetic poet http": [ + "11.6.1" + ], + "cybernetic serendipity": [ + "11.3.11" + ], + "dada zurich artists": [ + "11.9.1" + ], + "damaging code": [ + "11.4.0" + ], + "damaging nyc": [ + "11.8.7" + ], + "dance": [ + "11.8.7" + ], + "dance culture": [ + "11.8.7" + ], + "dancing": [ + "11.8.7" + ], + "dancing nyc": [ + "11.8.7" + ], + "dancing nyc email": [ + "11.8.7" + ], + "danger": [ + "11.3.9" + ], + "data": [ + "11.1.0", + "11.8.2", + "11.8.3", + "11.8.8", + "11.8.10" + ], + "data art": [ + "11.8.4" + ], + "data format": [ + "11.1.0" + ], + "data streams": [ + "11.8.9" + ], + "data surveillance": [ + "11.8.0" + ], + "date": [ + "11.8.2" + ], + "david bohm": [ + "11.6.1" + ], + "david bohm wrote": [ + "11.6.1" + ], + "davis deal": [ + "11.6.3", + "11.6.4" + ], + "days": [ + "11.3.5" + ], + "dear florian": [ + "11.9.1" + ], + "death etc etc": [ + "11.6.1" + ], + "debord meets grand": [ + "11.6.1", + "11.6.2" + ], + "decent artaud": [ + "11.6.3", + "11.6.4" + ], + "decent artaud sites": [ + "11.6.3", + "11.6.4" + ], + "decision": [ + "11.3.1" + ], + "decision made": [ + "11.3.1" + ], + "deeper": [ + "11.8.5" + ], + "deeper critique": [ + "11.8.5", + "11.8.6" + ], + "define software art": [ + "11.0.0", + "11.0.0" + ], + "defined": [ + "11.9.2" + ], + "definition": [ + "11.3.9" + ], + "definitions": [ + "11.3.0" + ], + "della biennale": [ + "11.4.0" + ], + "demented “‘bot” programmed": [ + "11.5.0" + ], + "depicting sensitive subjects": [ + "11.3.3" + ], + "describe": [ + "11.3.5", + "11.9.1" + ], + "describe are machinic": [ + "11.6.7" + ], + "description": [ + "11.3.1" + ], + "description of software": [ + "11.3.1" + ], + "design": [ + "11.7.0" + ], + "design component": [ + "11.7.0" + ], + "designed aloha": [ + "11.8.1" + ], + "desktop based": [ + "11.7.0" + ], + "destination port": [ + "11.8.8", + "11.8.8" + ], + "details": [ + "11.8.5" + ], + "developed": [ + "11.3.1" + ], + "developed a description": [ + "11.3.1" + ], + "developers included": [ + "11.3.1" + ], + "diagnosic": [ + "11.8.6" + ], + "diagnosic clients": [ + "11.8.0", + "11.8.6" + ], + "diagnosic clients created": [ + "11.8.3", + "11.8.6", + "11.8.6", + "11.8.8" + ], + "dialogues—sometimes antagonistic ones—": [ + "11.5.0" + ], + "digital": [ + "11.0.0", + "11.1.0", + "11.3.0", + "11.3.6", + "11.6.1", + "11.9.0" + ], + "digital art": [ + "11.0.0", + "11.1.0", + "11.1.0", + "11.9.0" + ], + "digital artists": [ + "11.1.0" + ], + "digital artists appropriated": [ + "11.1.0" + ], + "digital arts": [ + "11.9.0", + "11.9.0" + ], + "digital code": [ + "11.1.0" + ], + "digital component": [ + "11.6.1" + ], + "digital culture": [ + "11.6.1" + ], + "digital data": [ + "11.1.0", + "11.1.0" + ], + "digital data implies": [ + "11.1.0" + ], + "digital ecology": [ + "11.1.0" + ], + "digital economy": [ + "11.1.0", + "11.1.0" + ], + "digital environment": [ + "11.3.0" + ], + "digital gaia": [ + "11.7.0" + ], + "digital images": [ + "11.9.0" + ], + "digital machines themselves": [ + "11.3.0" + ], + "digital media": [ + "11.6.1", + "11.6.2" + ], + "digital media alike": [ + "11.0.0" + ], + "digital media scene": [ + "11.6.1", + "11.6.1", + "11.6.2" + ], + "digital processes": [ + "11.3.0", + "11.3.0" + ], + "digital states": [ + "11.3.6" + ], + "digital technology": [ + "11.9.0" + ], + "digital zeros": [ + "11.9.0" + ], + "dimensions": [ + "11.3.0" + ], + "direction with indignation": [ + "11.8.1" + ], + "director": [ + "11.3.1", + "11.3.10" + ], + "director or shockwave": [ + "11.3.1" + ], + "discrete authors": [ + "11.5.0", + "11.6.0" + ], + "discrete hyperlinked nodes": [ + "11.5.0" + ], + "discuss": [ + "11.8.3" + ], + "discuss ``software art": [ + "11.9.0" + ], + "discuss the technical": [ + "11.8.3" + ], + "discussed": [ + "11.3.6" + ], + "discussed conventional": [ + "11.3.6" + ], + "discussed conventional forms": [ + "11.3.6", + "11.3.6" + ], + "discussion forum *nettime*": [ + "11.8.2" + ], + "display of data": [ + "11.8.9" + ], + "displayed": [ + "11.3.4" + ], + "distinctive approach": [ + "11.6.0" + ], + "distinctive dampening effect": [ + "11.7.0" + ], + "distinctive prose style": [ + "11.6.0" + ], + "distinctly male staff": [ + "11.8.0" + ], + "distinguishes program code": [ + "11.9.0" + ], + "distribute": [ + "11.2.0" + ], + "domains": [ + "11.3.11" + ], + "domains of fuzzy": [ + "11.3.11" + ], + "dotcom boom era": [ + "11.7.0" + ], + "double": [ + "11.6.3", + "11.6.4" + ], + "doubly useless scission": [ + "11.9.1" + ], + "downloads infected software": [ + "11.4.0" + ], + "dstport destination port": [ + "11.8.8" + ], + "earlier": [ + "11.6.8" + ], + "earlier painting practice": [ + "11.7.0" + ], + "earlier this year": [ + "11.6.8" + ], + "early": [ + "11.3.5", + "11.8.1" + ], + "early days": [ + "11.3.5" + ], + "eclipsed rote knowledge": [ + "11.8.0" + ], + "edition": [ + "11.6.3", + "11.6.4" + ], + "edition is rich": [ + "11.8.3" + ], + "eight variations": [ + "11.9.0" + ], + "elaborate instruction list": [ + "11.8.0" + ], + "electronic art festivals": [ + "11.7.0" + ], + "electronic writing": [ + "11.5.0", + "11.6.0", + "11.6.0" + ], + "electronic writing spaces": [ + "11.5.0", + "11.6.0", + "11.6.0" + ], + "electronica jury reviewed": [ + "11.8.8" + ], + "elegant": [ + "11.8.5" + ], + "email me personally": [ + "11.6.8" + ], + "emergent agency": [ + "11.3.11" + ], + "emerging electronic writing": [ + "11.6.0" + ], + "emerging world": [ + "11.6.0" + ], + "enables the creation": [ + "11.3.1" + ], + "enabling": [ + "11.2.0" + ], + "encoded sniffing rulesets": [ + "11.8.8" + ], + "encourage": [ + "11.3.7", + "11.3.8" + ], + "encourage open": [ + "11.3.7", + "11.3.8" + ], + "encourage open source": [ + "11.3.7", + "11.3.8" + ], + "encourages writers": [ + "11.6.0" + ], + "enforcement packet sniffing": [ + "11.8.8" + ], + "engage": [ + "11.8.5" + ], + "engagement": [ + "11.3.3" + ], + "engine replicates": [ + "11.8.6" + ], + "engine replicates network": [ + "11.8.6", + "11.8.6" + ], + "english": [ + "11.5.0", + "11.6.0" + ], + "english written": [ + "11.6.0" + ], + "entertaining": [ + "11.3.10" + ], + "entitled": [ + "11.6.3", + "11.6.4" + ], + "environmental sounds recorded": [ + "11.9.0" + ], + "equate": [ + "11.3.10" + ], + "er vs": [ + "11.9.0" + ], + "erik davis": [ + "11.6.3", + "11.6.4" + ], + "erik davis deal": [ + "11.6.3", + "11.6.3", + "11.6.4", + "11.6.4" + ], + "eschew formal education": [ + "11.8.0" + ], + "essential lens flares": [ + "11.7.0" + ], + "esthetical": [ + "11.9.2" + ], + "esthetical and technical": [ + "11.9.2" + ], + "estimation conceptual art": [ + "11.8.0" + ], + "etc.": [ + "11.6.6" + ], + "ethereal": [ + "11.8.8" + ], + "ethernet sniffer": [ + "11.8.8", + "11.8.8" + ], + "ethernet sniffer set": [ + "11.8.8" + ], + "ethernet sniffing": [ + "11.8.8" + ], + "ethernet sniffing programs": [ + "11.8.8", + "11.8.8" + ], + "ethernet sniffing tools": [ + "11.8.8", + "11.8.8" + ], + "ethernet technology": [ + "11.8.2" + ], + "ethernet was invented": [ + "11.8.1" + ], + "european net art": [ + "11.4.0" + ], + "eusocial.com": [ + "11.8.5" + ], + "event": [ + "11.3.2" + ], + "event called": [ + "11.3.2" + ], + "eventually demand access": [ + "11.7.0" + ], + "exactly opposite standpoints": [ + "11.9.0" + ], + "excellent historical analysis": [ + "11.8.0" + ], + "excludes": [ + "11.3.1" + ], + "executable code": [ + "11.9.0" + ], + "executable code exists": [ + "11.9.0" + ], + "executable formal instructions": [ + "11.9.0" + ], + "exhibits in cybernetic": [ + "11.3.11" + ], + "existing": [ + "11.8.10" + ], + "existing functionality": [ + "11.8.10" + ], + "expert computer user": [ + "11.7.0" + ], + "extends this idea": [ + "11.6.8" + ], + "extension": [ + "11.6.8" + ], + "extent": [ + "11.6.6" + ], + "faced": [ + "11.8.1" + ], + "faced a unique": [ + "11.8.1" + ], + "facts": [ + "11.8.1" + ], + "failed imperial powers": [ + "11.8.6" + ], + "false": [ + "11.3.6" + ], + "favour": [ + "11.3.9" + ], + "fbi": [ + "11.8.0", + "11.8.2", + "11.8.8", + "11.8.10" + ], + "fbi carnivore": [ + "11.8.8", + "11.8.10" + ], + "fbi counterpart": [ + "11.8.3" + ], + "fbi has made": [ + "11.8.9" + ], + "fbi software": [ + "11.8.0" + ], + "fbi software called": [ + "11.8.0" + ], + "features": [ + "11.3.1" + ], + "february": [ + "11.2.0" + ], + "ferdinand de saussure": [ + "11.5.0", + "11.6.0" + ], + "festival": [ + "11.2.0" + ], + "field": [ + "11.3.10" + ], + "fight nyc cabaret": [ + "11.8.7" + ], + "file": [ + "11.8.8" + ], + "file sharing tool": [ + "11.8.8" + ], + "financial times website": [ + "11.7.0" + ], + "fixed": [ + "11.3.6" + ], + "fixed conditions": [ + "11.3.6" + ], + "fixed rules": [ + "11.3.0" + ], + "flash": [ + "11.7.0" + ], + "flash actionscript": [ + "11.7.0" + ], + "flash actionscript tend": [ + "11.7.0" + ], + "flash art": [ + "11.7.0" + ], + "flash community ensured": [ + "11.7.0" + ], + "flash graphics =": [ + "11.7.0" + ], + "flash style": [ + "11.7.0", + "11.7.0" + ], + "florian": [ + "11.8.9", + "11.8.10", + "11.9.1" + ], + "florian cramer": [ + "11.8.9", + "11.8.10" + ], + "florian cramer provided": [ + "11.8.9" + ], + "florian cramer raises": [ + "11.8.10", + "11.8.10" + ], + "florida": [ + "11.6.1" + ], + "flourishing dance culture": [ + "11.8.7" + ], + "fluxus performance scores": [ + "11.0.0" + ], + "flynt": [ + "11.0.0" + ], + "flynt concept art": [ + "11.0.0" + ], + "focus": [ + "11.3.5" + ], + "follows _this_ diagnosis": [ + "11.8.6" + ], + "forgotten debates": [ + "11.7.0" + ], + "fork commands increases": [ + "11.9.1" + ], + "form": [ + "11.4.0", + "11.7.0" + ], + "form a set": [ + "11.3.0" + ], + "formal": [ + "11.9.1", + "11.9.2" + ], + "formal analysis": [ + "11.9.0" + ], + "formal experimentation": [ + "11.9.0" + ], + "formal instruction": [ + "11.9.2" + ], + "formal instruction code": [ + "11.9.0", + "11.9.0", + "11.9.2", + "11.9.2" + ], + "formal method": [ + "11.9.0" + ], + "formal poetics": [ + "11.9.0" + ], + "formal reflections": [ + "11.9.0" + ], + "formative cultural": [ + "11.7.0" + ], + "forms": [ + "11.3.6" + ], + "forms of software": [ + "11.3.6" + ], + "forthcoming mute": [ + "11.1.0" + ], + "forthcoming mute issue": [ + "11.1.0", + "11.1.0" + ], + "found themselves programmed": [ + "11.7.0" + ], + "frederic madre": [ + "11.8.2" + ], + "free": [ + "11.1.0" + ], + "free art": [ + "11.1.0" + ], + "free art license": [ + "11.1.0" + ], + "free software": [ + "11.1.0" + ], + "freedom fighters": [ + "11.8.0" + ], + "freie universität berlin": [ + "11.9.0" + ], + "friends": [ + "11.3.10" + ], + "friends or copy": [ + "11.3.10" + ], + "full": [ + "11.8.3" + ], + "full data targetting": [ + "11.8.3" + ], + "full packet": [ + "11.8.3" + ], + "full packet data": [ + "11.8.3" + ], + "full subject targetting": [ + "11.8.3" + ], + "fuller/harwood regard software": [ + "11.9.0" + ], + "fully": [ + "11.6.7" + ], + "fully respect": [ + "11.6.7" + ], + "functionality": [ + "11.8.10" + ], + "functionality including artist": [ + "11.8.0", + "11.8.2" + ], + "functions": [ + "11.3.3" + ], + "fundraiser july 17th": [ + "11.8.7" + ], + "funnelled flash actionscript": [ + "11.7.0" + ], + "fuzzy": [ + "11.3.11" + ], + "fuzzy logic": [ + "11.3.11" + ], + "gallery": [ + "11.3.4" + ], + "games application": [ + "11.3.1" + ], + "garb": [ + "11.8.5" + ], + "garbage": [ + "11.8.5" + ], + "garde american": [ + "11.6.0" + ], + "garde literary predecessors": [ + "11.5.0", + "11.6.0" + ], + "gates etc etc": [ + "11.6.4" + ], + "gates' signifying": [ + "11.6.2" + ], + "gates' signifying monkey": [ + "11.6.2" + ], + "gathering useful information": [ + "11.8.2" + ], + "gender imbalance": [ + "11.8.0" + ], + "gender neutral pseudonyms": [ + "11.8.0" + ], + "generally": [ + "11.9.2" + ], + "generally defined": [ + "11.9.2" + ], + "generate graphics": [ + "11.7.0" + ], + "generated score": [ + "11.9.0" + ], + "generative": [ + "11.3.3" + ], + "generative code exclusive": [ + "11.0.0" + ], + "generative music software": [ + "11.3.3", + "11.3.3" + ], + "generic instruction": [ + "11.9.0" + ], + "genetik": [ + "11.8.5" + ], + "genetik garb": [ + "11.8.5" + ], + "genetik garbage": [ + "11.8.5" + ], + "geoff cox": [ + "11.9.0" + ], + "getting 21c started": [ + "11.6.4" + ], + "give": [ + "11.6.6" + ], + "give precedents": [ + "11.3.5" + ], + "glancing ideas": [ + "11.3.3" + ], + "glowing steven levy": [ + "11.8.0" + ], + "gnu gpl": [ + "11.8.8" + ], + "golf hacker": [ + "11.8.0" + ], + "good": [ + "11.8.4" + ], + "gpl license file": [ + "11.8.8" + ], + "grain": [ + "11.8.3" + ], + "grand master": [ + "11.6.2" + ], + "grand master flash": [ + "11.6.1" + ], + "graphical computer ``demo": [ + "11.9.0" + ], + "graphical user interface": [ + "11.0.0" + ], + "great": [ + "11.6.1" + ], + "great that transmediale": [ + "11.3.5" + ], + "guardia della biennale": [ + "11.4.0" + ], + "guru richard stallman": [ + "11.8.0" + ], + "hacker crackdown": [ + "11.8.0" + ], + "hacker feels obligated": [ + "11.8.0" + ], + "hacker magazine phrack": [ + "11.8.0", + "11.8.0" + ], + "hacker tool": [ + "11.8.4" + ], + "hanging": [ + "11.5.5-p.523" + ], + "harold": [ + "11.3.9" + ], + "harold cohen": [ + "11.3.9", + "11.7.0", + "11.7.0" + ], + "harolds own rules": [ + "11.3.9" + ], + "hawaii": [ + "11.8.1" + ], + "hawaii designed": [ + "11.8.1" + ], + "hawaii designed aloha": [ + "11.8.1", + "11.8.1" + ], + "hear stallman reduce": [ + "11.1.0" + ], + "heico >idensen talks": [ + "11.6.7" + ], + "heico idensen talks": [ + "11.5.5-p.523" + ], + "hej taat gôrem": [ + "11.9.0" + ], + "henry flynt": [ + "11.0.0" + ], + "henry louis": [ + "11.6.2" + ], + "henry louis gates": [ + "11.6.1", + "11.6.2" + ], + "hey": [ + "11.6.3", + "11.6.4" + ], + "hey ken": [ + "11.6.3", + "11.6.4" + ], + "highly anesthetized": [ + "11.8.9" + ], + "highly anesthetized treatment": [ + "11.8.9" + ], + "highly concerned": [ + "11.0.0" + ], + "highly elaborate syntax": [ + "11.0.0" + ], + "highly personal activity": [ + "11.0.0" + ], + "himmlische libes=küsse": [ + "11.9.0" + ], + "hiring": [ + "11.3.10" + ], + "history": [ + "11.3.9" + ], + "history runs parallel": [ + "11.0.0" + ], + "huge cardiovascular system": [ + "11.8.7" + ], + "humanities research board": [ + "11.7.0" + ], + "hypertext author assumes": [ + "11.6.0" + ], + "hypertext system ``xanadu": [ + "11.9.0" + ], + "hypertext world": [ + "11.6.7" + ], + "hypertext writers tend": [ + "11.6.0" + ], + "hypertext writing": [ + "11.5.0", + "11.6.0" + ], + "idea": [ + "11.3.4", + "11.6.1" + ], + "idea regarding collaboration": [ + "11.1.0" + ], + "idensen talks": [ + "11.6.7" + ], + "identities i work": [ + "11.6.6" + ], + "identity oriented practice": [ + "11.5.5-p.523" + ], + "identity shell": [ + "11.5.5-p.523" + ], + "idlanguage=3d1&idpublication=3d1=": [ + "11.7.0" + ], + "illegal": [ + "11.3.7", + "11.3.8" + ], + "illegal for people": [ + "11.3.7", + "11.3.8" + ], + "illustration": [ + "11.8.6" + ], + "imaging lingo": [ + "11.3.1" + ], + "immensely fertile territory": [ + "11.3.2", + "11.3.3" + ], + "incorporating software": [ + "11.3.3" + ], + "indeed address cultural": [ + "11.9.2" + ], + "individual multimedia objects": [ + "11.7.0" + ], + "information forms contours": [ + "11.7.0" + ], + "information processing": [ + "11.7.0" + ], + "informed curatorial practice": [ + "11.3.0", + "11.3.0" + ], + "injecting emergent": [ + "11.3.11" + ], + "injecting emergent agency": [ + "11.3.11", + "11.3.11" + ], + "innovative or simply": [ + "11.8.10" + ], + "inseperable": [ + "11.6.8" + ], + "inspired": [ + "11.8.5" + ], + "installing carnivore willy": [ + "11.8.0" + ], + "instant mute design": [ + "11.7.0" + ], + "instruction": [ + "11.9.2" + ], + "instruction codes": [ + "11.9.0" + ], + "instruction looks": [ + "11.9.0" + ], + "instructions": [ + "11.3.6", + "11.9.0", + "11.9.1" + ], + "instructions eight times": [ + "11.9.0" + ], + "intellectual property": [ + "11.1.0" + ], + "intellectual property laws": [ + "11.8.0" + ], + "intellectual property rights": [ + "11.1.0" + ], + "intelligence": [ + "11.3.11", + "11.8.10" + ], + "intelligence in search": [ + "11.3.6", + "11.3.11" + ], + "interactive animation": [ + "11.3.1" + ], + "interest": [ + "11.3.11" + ], + "interesting": [ + "11.6.8", + "11.8.5" + ], + "interface design": [ + "11.7.0" + ], + "internal code": [ + "11.0.0" + ], + "internal control": [ + "11.0.0" + ], + "international art world": [ + "11.4.0" + ], + "internet media": [ + "11.5.0", + "11.6.0" + ], + "internet media theory": [ + "11.5.0", + "11.5.0", + "11.6.0", + "11.6.0" + ], + "internet relay chat": [ + "11.5.0", + "11.5.0", + "11.6.0", + "11.6.0" + ], + "intrepid explorers setting": [ + "11.7.0" + ], + "invented": [ + "11.8.1", + "11.8.2" + ], + "invented in hawai": [ + "11.8.2" + ], + "involved": [ + "11.2.0" + ], + "involving": [ + "11.3.0" + ], + "iod with webstalker": [ + "11.3.9" + ], + "island": [ + "11.8.7" + ], + "island mermaid": [ + "11.8.7" + ], + "island mermaid parade": [ + "11.8.7" + ], + "islands": [ + "11.8.1" + ], + "islands separated": [ + "11.8.1" + ], + "isolated computer artists": [ + "11.7.0" + ], + "issues": [ + "11.2.0" + ], + "issues are involved": [ + "11.2.0" + ], + "italian": [ + "11.4.0" + ], + "ittai": [ + "11.3.0" + ], + "ittai bar-joseph": [ + "11.3.0" + ], + "james joyce": [ + "11.9.0" + ], + "jana": [ + "11.3.0", + "11.3.2" + ], + "jana nothing sucks": [ + "11.4.0" + ], + "jana text": [ + "11.3.2" + ], + "jaron lanier": [ + "11.6.1" + ], + "java based multimedia": [ + "11.7.0" + ], + "jeff noon": [ + "11.1.0" + ], + "jodi approach": [ + "11.6.0" + ], + "jodi endeavors": [ + "11.6.0" + ], + "jodi produces hover": [ + "11.6.0" + ], + "jodi work": [ + "11.5.5-p.523" + ], + "john lee": [ + "11.6.3", + "11.6.4" + ], + "join legalize dancing": [ + "11.8.7" + ], + "josephine berry": [ + "11.1.0" + ], + "july": [ + "11.2.0" + ], + "jun": [ + "11.4.0", + "11.8.2" + ], + "jury": [ + "11.2.0" + ], + "jury likes ethereal": [ + "11.8.2" + ], + "jury statement": [ + "11.2.0" + ], + "ken": [ + "11.5.5-p.523", + "11.6.3", + "11.6.4" + ], + "kind": [ + "11.3.5", + "11.6.2", + "11.6.3", + "11.6.4" + ], + "kind of thing": [ + "11.6.3", + "11.6.4" + ], + "kinds": [ + "11.5.0", + "11.6.0" + ], + "kinds of art": [ + "11.3.9" + ], + "kittler defines software": [ + "11.8.0" + ], + "knight lightning": [ + "11.8.0", + "11.8.0" + ], + "knight lightning continued": [ + "11.8.0" + ], + "knowbotics": [ + "11.3.11" + ], + "knowbotics research": [ + "11.3.11" + ], + "kunst und computer": [ + "11.9.0" + ], + "kurt schwitters": [ + "11.6.1" + ], + "kurzweil cybernetic poet": [ + "11.6.1" + ], + "köln": [ + "11.9.0" + ], + "königstein/taunus": [ + "11.9.0" + ], + "la princess diana": [ + "11.6.1" + ], + "la realite virtuelle": [ + "11.6.3", + "11.6.4" + ], + "laboration": [ + "11.6.6" + ], + "landscape program bryce": [ + "11.3.3" + ], + "language": [ + "11.5.0", + "11.6.0", + "11.6.1", + "11.9.1" + ], + "lapidem clement thomas": [ + "11.8.2" + ], + "late eighties": [ + "11.8.0" + ], + "late twentieth century": [ + "11.8.0" + ], + "law enforcement": [ + "11.8.10" + ], + "law enforcement officials": [ + "11.8.0" + ], + "law enforcement strategy": [ + "11.8.10" + ], + "laws": [ + "11.8.7" + ], + "leading net": [ + "11.8.6" + ], + "leading net artists": [ + "11.8.3", + "11.8.6", + "11.8.6", + "11.8.8", + "11.8.10" + ], + "legal": [ + "11.3.10" + ], + "legal experts speaking": [ + "11.1.0" + ], + "legal field": [ + "11.3.10" + ], + "legalize": [ + "11.8.7" + ], + "legalize dance send": [ + "11.8.7" + ], + "legalize dancing": [ + "11.8.7", + "11.8.7" + ], + "legalize dancing nyc": [ + "11.8.7", + "11.8.7" + ], + "legitimate art form": [ + "11.4.0" + ], + "leonardo electronic almanach": [ + "11.0.0" + ], + "level of agency": [ + "11.8.6" + ], + "level sniffing": [ + "11.8.8" + ], + "lewitt": [ + "11.9.1" + ], + "lewitt work": [ + "11.9.1" + ], + "lewitt work exists": [ + "11.9.1" + ], + "liberatory writing strategy": [ + "11.6.0" + ], + "life": [ + "11.3.2", + "11.8.5" + ], + "life sharing": [ + "11.8.5" + ], + "linguistic": [ + "11.6.1" + ], + "linguistic systems": [ + "11.6.1" + ], + "linguistics": [ + "11.6.7" + ], + "link": [ + "11.5.0" + ], + "link discrete blocs": [ + "11.5.0", + "11.6.0" + ], + "linker": [ + "11.2.0", + "11.7.0" + ], + "lists": [ + "11.6.6" + ], + "literacy": [ + "11.6.2" + ], + "literary": [ + "11.6.7" + ], + "literary practices": [ + "11.5.5-p.523", + "11.6.7" + ], + "local business owners": [ + "11.8.7" + ], + "local networking protocol": [ + "11.8.0" + ], + "locally running webserver": [ + "11.8.8" + ], + "log": [ + "11.4.0" + ], + "logic": [ + "11.3.11" + ], + "logical": [ + "11.3.6" + ], + "logical states true": [ + "11.3.6" + ], + "london-based digital arts": [ + "11.0.0" + ], + "long standing interest": [ + "11.3.11" + ], + "lost": [ + "11.3.9", + "11.6.6" + ], + "lost history": [ + "11.3.5", + "11.3.9" + ], + "lot": [ + "11.6.2", + "11.6.7" + ], + "louis gates": [ + "11.6.2" + ], + "louis gates wrote": [ + "11.6.1", + "11.6.2" + ], + "love bug": [ + "11.4.0" + ], + "luther blissett": [ + "11.5.0", + "11.6.0" + ], + "luther blissett authors": [ + "11.5.0" + ], + "luther blissett project": [ + "11.5.0", + "11.6.0" + ], + "lévy": [ + "11.8.0" + ], + "machine": [ + "11.3.4" + ], + "machine code": [ + "11.0.0" + ], + "machine control code": [ + "11.0.0" + ], + "machine discharges murderous": [ + "11.5.0", + "11.6.0" + ], + "machine instructions": [ + "11.0.0" + ], + "machine process": [ + "11.3.4" + ], + "machine programmed": [ + "11.5.0" + ], + "machinic processes": [ + "11.6.7" + ], + "macromedia": [ + "11.3.10" + ], + "made": [ + "11.3.1", + "11.8.2", + "11.8.4", + "11.8.5" + ], + "mailing list ``eu": [ + "11.9.0" + ], + "mailto": [ + "11.4.0" + ], + "mainstream art": [ + "11.7.0" + ], + "mainstream software design": [ + "11.7.0" + ], + "major": [ + "11.6.2" + ], + "major software": [ + "11.4.0" + ], + "make": [ + "11.8.4" + ], + "makes": [ + "11.8.4" + ], + "makes artist programmers": [ + "11.7.0" + ], + "makes linker art": [ + "11.7.0", + "11.7.0" + ], + "makes random variations": [ + "11.9.0" + ], + "makes software": [ + "11.3.3" + ], + "making": [ + "11.3.7", + "11.3.8" + ], + "making art": [ + "11.8.4" + ], + "making it illegal": [ + "11.3.7", + "11.3.8" + ], + "man ethereal": [ + "11.8.8" + ], + "mangled machine english": [ + "11.5.0", + "11.6.0" + ], + "manipulate computer music": [ + "11.0.0" + ], + "manovich": [ + "11.7.0" + ], + "mapping internal functions": [ + "11.0.0" + ], + "march": [ + "11.8.7" + ], + "marilyn monroe": [ + "11.8.2" + ], + "market": [ + "11.3.7", + "11.3.8" + ], + "marxist question": [ + "11.3.3" + ], + "mass media information": [ + "11.9.0" + ], + "masters of deception": [ + "11.6.3", + "11.6.4" + ], + "material": [ + "11.6.1", + "11.9.2" + ], + "material is formal": [ + "11.9.2" + ], + "matthew fuller analysed": [ + "11.1.0" + ], + "max programming language": [ + "11.3.3" + ], + "maybe mean impossible": [ + "11.3.7", + "11.3.8" + ], + "mckenzie wark": [ + "11.0.0" + ], + "mckenzie wark essay": [ + "11.0.0" + ], + "meaning": [ + "11.8.3" + ], + "meaning carnivorepe": [ + "11.8.3" + ], + "meaning clients": [ + "11.8.3", + "11.8.3", + "11.8.8" + ], + "meaningfully called ``media": [ + "11.9.0" + ], + "means exclusive categories": [ + "11.0.0" + ], + "means limited": [ + "11.9.0" + ], + "media": [ + "11.5.0", + "11.5.5-p.523", + "11.6.0", + "11.6.1", + "11.6.2" + ], + "media art discourse": [ + "11.8.4" + ], + "media art theorists": [ + "11.4.0" + ], + "media repetitions": [ + "11.6.1" + ], + "media scene": [ + "11.6.1" + ], + "media sphere": [ + "11.6.1" + ], + "meets grand master": [ + "11.6.2" + ], + "mention plain dysfunctionality": [ + "11.9.0" + ], + "menu commands": [ + "11.7.0" + ], + "merely rehashing critiques": [ + "11.4.0" + ], + "mermaid": [ + "11.8.7" + ], + "mermaid march": [ + "11.8.7" + ], + "mermaid parade": [ + "11.8.7", + "11.8.7" + ], + "mermaid parade commences": [ + "11.8.7", + "11.8.7" + ], + "mermaid parade tomorrow": [ + "11.8.7", + "11.8.7" + ], + "metcalfe": [ + "11.8.1" + ], + "metcalfe and boggs": [ + "11.8.1" + ], + "metropolitan museum": [ + "11.6.0" + ], + "mez": [ + "11.5.5-p.523", + "11.6.7" + ], + "mez writings": [ + "11.6.0" + ], + "microsoft": [ + "11.3.10" + ], + "microsoft desktop computing": [ + "11.9.0" + ], + "microsoft word": [ + "11.1.0", + "11.9.0" + ], + "millennial flash period": [ + "11.7.0" + ], + "million": [ + "11.8.7" + ], + "million mermaid": [ + "11.8.7" + ], + "million mermaid march": [ + "11.8.7", + "11.8.7" + ], + "minimalist concept notation": [ + "11.9.0" + ], + "mobile painting device": [ + "11.7.0" + ], + "moderated mailing list": [ + "11.8.2" + ], + "modern age forms": [ + "11.8.0" + ], + "modified cuckoo clock": [ + "11.9.0" + ], + "monkey": [ + "11.6.2" + ], + "monte young software": [ + "11.9.0" + ], + "month": [ + "11.2.0", + "11.3.2" + ], + "morlock elloi": [ + "11.8.2" + ], + "moscow-jury": [ + "11.8.3", + "11.8.8" + ], + "movement that denotes": [ + "11.8.7" + ], + "mu ming foundation": [ + "11.5.0", + "11.6.0" + ], + "multi cultural takes": [ + "11.6.1" + ], + "multimedia scripting languages": [ + "11.7.0" + ], + "multiple": [ + "11.3.9" + ], + "multiple trajectories": [ + "11.5.0", + "11.6.0" + ], + "multiplicity": [ + "11.6.2" + ], + "murderous": [ + "11.5.0", + "11.6.0" + ], + "murderous consequences": [ + "11.5.0", + "11.6.0" + ], + "music": [ + "11.6.1" + ], + "music and cinema": [ + "11.5.5-p.523" + ], + "mute": [ + "11.1.0" + ], + "mute design": [ + "11.7.0" + ], + "mute issue": [ + "11.1.0" + ], + "mute people": [ + "11.1.0" + ], + "mutually interdependent layers": [ + "11.0.0" + ], + "name ``james joyce": [ + "11.9.0" + ], + "name luther blissett": [ + "11.5.0", + "11.6.0" + ], + "nervous system": [ + "11.3.9" + ], + "net art anymore": [ + "11.3.3" + ], + "net art collective": [ + "11.4.0" + ], + "net art scene": [ + "11.8.9", + "11.8.9" + ], + "net artists": [ + "11.8.6" + ], + "netochka nezvanova nezvanova": [ + "11.8.5" + ], + "nettime": [ + "11.6.6", + "11.8.2", + "11.8.5" + ], + "nettime accepts": [ + "11.6.6" + ], + "network": [ + "11.8.1", + "11.8.6", + "11.8.9" + ], + "network diagnostic tools": [ + "11.8.8" + ], + "network sniffing": [ + "11.8.9" + ], + "network sniffing software": [ + "11.8.8" + ], + "network surveillance": [ + "11.8.6" + ], + "network surveillance systems": [ + "11.8.6", + "11.8.6" + ], + "network surveillance technology": [ + "11.8.6" + ], + "networks": [ + "11.3.6", + "11.3.11" + ], + "networks or artificial": [ + "11.3.6", + "11.3.11" + ], + "neural": [ + "11.3.11" + ], + "neural networks": [ + "11.3.6", + "11.3.11" + ], + "newsgroups": [ + "11.6.6" + ], + "nezvanova nezvanova": [ + "11.8.5" + ], + "nikuko": [ + "11.6.6" + ], + "nominated": [ + "11.2.0" + ], + "nominated projects": [ + "11.2.0" + ], + "non-identity": [ + "11.5.5-p.523" + ], + "non-identity oriented": [ + "11.5.5-p.523" + ], + "non-identity oriented practice": [ + "11.5.5-p.523" + ], + "nonsense": [ + "11.8.1" + ], + "noon at tate": [ + "11.1.0" + ], + "notation creating": [ + "11.9.0" + ], + "notations": [ + "11.9.1" + ], + "notorious surveillance tool": [ + "11.8.0" + ], + "novel using": [ + "11.9.0" + ], + "number": [ + "11.6.6" + ], + "numbers": [ + "11.3.0" + ], + "ny streets smurfs": [ + "11.8.5" + ], + "nyc cabaret": [ + "11.8.7" + ], + "nyc cabaret laws": [ + "11.8.7", + "11.8.7" + ], + "nyc community": [ + "11.8.7", + "11.8.7" + ], + "nyc once-vibrant dance": [ + "11.8.7" + ], + "nyu law professor": [ + "11.8.7" + ], + "observing software code": [ + "11.9.0" + ], + "observing yields information": [ + "11.8.10" + ], + "oeuvres complčtes": [ + "11.9.0" + ], + "off-the shelf software": [ + "11.3.3" + ], + "older concept art": [ + "11.9.0" + ], + "olga goriunova posted": [ + "11.8.8" + ], + "olia": [ + "11.9.2" + ], + "ong": [ + "11.6.3", + "11.6.4" + ], + "ong deals": [ + "11.6.3", + "11.6.4" + ], + "ong ideas": [ + "11.6.3", + "11.6.4" + ], + "online writing": [ + "11.6.6" + ], + "online writing group": [ + "11.6.6" + ], + "open": [ + "11.1.0", + "11.3.0", + "11.3.7", + "11.3.8", + "11.5.5-p.523", + "11.6.7", + "11.8.0" + ], + "open code": [ + "11.1.0" + ], + "open digital": [ + "11.1.0" + ], + "open digital code": [ + "11.1.0" + ], + "open dimensions": [ + "11.3.0" + ], + "open processes": [ + "11.5.5-p.523" + ], + "open source programming": [ + "11.6.7" + ], + "open source projects": [ + "11.3.7", + "11.3.8" + ], + "open system": [ + "11.3.9" + ], + "operate": [ + "11.6.6" + ], + "operate or produce": [ + "11.6.6" + ], + "operation": [ + "11.9.1" + ], + "orality": [ + "11.6.2" + ], + "orality and literacy": [ + "11.6.3", + "11.6.4" + ], + "order": [ + "11.9.1" + ], + "organizational management style": [ + "11.8.0" + ], + "organizational structure": [ + "11.8.0" + ], + "organized the recent": [ + "11.3.2" + ], + "oriented practice": [ + "11.5.5-p.523" + ], + "original fbi apparatus": [ + "11.8.0" + ], + "original fbi software": [ + "11.8.0", + "11.8.0", + "11.8.2" + ], + "original meaning": [ + "11.8.0" + ], + "original message": [ + "11.8.2" + ], + "original mit hackers": [ + "11.8.0", + "11.8.0" + ], + "original source material": [ + "11.8.0" + ], + "others'": [ + "11.8.5" + ], + "others' garbage": [ + "11.8.5" + ], + "outline florian": [ + "11.8.9" + ], + "outline florian cramer": [ + "11.8.9" + ], + "output": [ + "11.3.6", + "11.8.3", + "11.8.8" + ], + "output channels": [ + "11.8.3" + ], + "own creative subjectivity": [ + "11.0.0" + ], + "own fascinating set": [ + "11.3.3" + ], + "own irony": [ + "11.9.0" + ], + "own machine": [ + "11.3.4" + ], + "own material complexity": [ + "11.9.0" + ], + "own questionable conceptions": [ + "11.1.0" + ], + "own technological development": [ + "11.8.0" + ], + "packer": [ + "11.8.10" + ], + "packet": [ + "11.8.2", + "11.8.3", + "11.8.8", + "11.8.9", + "11.8.10" + ], + "packet data": [ + "11.8.3", + "11.8.8" + ], + "packet headers": [ + "11.8.3", + "11.8.8" + ], + "packet sniffing program": [ + "11.8.10", + "11.8.10" + ], + "packet sniffing software": [ + "11.8.10" + ], + "pages displays": [ + "11.9.0" + ], + "paint": [ + "11.3.0" + ], + "paint by numbers": [ + "11.3.0" + ], + "palo": [ + "11.8.1" + ], + "panel and performance": [ + "11.3.2" + ], + "paper that extends": [ + "11.6.8" + ], + "parade": [ + "11.8.7" + ], + "parc": [ + "11.8.1" + ], + "parisian ircam studios": [ + "11.9.0" + ], + "part": [ + "11.3.0", + "11.9.1" + ], + "particular compositional terms": [ + "11.9.1" + ], + "particular multimedia =": [ + "11.7.0" + ], + "party program": [ + "11.8.8" + ], + "party software winpcap": [ + "11.8.8" + ], + "pass": [ + "11.3.10" + ], + "pastiche": [ + "11.8.4" + ], + "paul": [ + "11.6.2" + ], + "pay": [ + "11.3.10" + ], + "pc user software": [ + "11.0.0" + ], + "people": [ + "11.1.0", + "11.3.7", + "11.3.8", + "11.3.10" + ], + "people software": [ + "11.3.7", + "11.3.8" + ], + "people spontaneously knitting": [ + "11.8.0" + ], + "people to continue": [ + "11.3.7", + "11.3.8" + ], + "performance event": [ + "11.3.2" + ], + "performance event called": [ + "11.3.2", + "11.3.2" + ], + "personal behavior": [ + "11.8.0" + ], + "personal data privacy": [ + "11.8.8" + ], + "personal desktop systems": [ + "11.7.0" + ], + "personal edition": [ + "11.8.3" + ], + "personal gain": [ + "11.8.0" + ], + "personal investment": [ + "11.8.0" + ], + "peter": [ + "11.8.2" + ], + "peter von": [ + "11.8.2" + ], + "peter von brandenburg": [ + "11.8.2" + ], + "peters writes": [ + "11.8.0" + ], + "pfa habla horem": [ + "11.9.0" + ], + "photoshop-like": [ + "11.3.1" + ], + "photoshop-like application": [ + "11.3.1" + ], + "phrack": [ + "11.8.0" + ], + "physicist david bohm": [ + "11.6.1" + ], + "piece": [ + "11.3.4", + "11.6.8", + "11.8.4", + "11.8.8" + ], + "piece of art": [ + "11.8.4" + ], + "piece timeascolor": [ + "11.6.8" + ], + "pieces": [ + "11.3.5" + ], + "pierre lévy": [ + "11.8.0" + ], + "place": [ + "11.6.6" + ], + "platform diagnostic tool": [ + "11.8.2" + ], + "plewe ultima ratio": [ + "11.3.4" + ], + "poem": [ + "11.9.0" + ], + "poetry readings": [ + "11.9.0" + ], + "point": [ + "11.3.3", + "11.6.1" + ], + "politically coded construct": [ + "11.9.0" + ], + "politics of media": [ + "11.5.5-p.523" + ], + "popular language ``perl": [ + "11.9.0" + ], + "port source": [ + "11.8.8" + ], + "pose things": [ + "11.6.2" + ], + "position themselves": [ + "11.7.0" + ], + "possibly": [ + "11.6.8" + ], + "posted to nettime": [ + "11.9.1" + ], + "posting": [ + "11.3.4" + ], + "postmodern age forms": [ + "11.8.0" + ], + "potentially damaging code": [ + "11.4.0" + ], + "potentially means terror": [ + "11.9.0" + ], + "potentially overlooking": [ + "11.9.0" + ], + "practice": [ + "11.3.0", + "11.5.5-p.523", + "11.7.0" + ], + "practice rarely seen": [ + "11.8.0" + ], + "practices": [ + "11.5.5-p.523", + "11.6.6", + "11.6.7" + ], + "precedents for making": [ + "11.3.5" + ], + "predetermined ideal goal": [ + "11.7.0" + ], + "predictable": [ + "11.3.6" + ], + "present": [ + "11.6.8" + ], + "presentation": [ + "11.3.5" + ], + "pretty": [ + "11.8.6" + ], + "pretty images.": [ + "11.8.6" + ], + "prevailing visual style": [ + "11.7.0" + ], + "prevalent cultural sensibility": [ + "11.7.0" + ], + "prevent digital copies": [ + "11.9.0" + ], + "prima facie legal": [ + "11.8.0" + ], + "primarily formalist": [ + "11.9.1" + ], + "primary impediment hated": [ + "11.8.0" + ], + "princess diana": [ + "11.6.1" + ], + "princess diana death": [ + "11.6.1" + ], + "princeton art museum": [ + "11.8.0" + ], + "printed computer code": [ + "11.9.0" + ], + "problem": [ + "11.8.1" + ], + "process": [ + "11.3.3", + "11.3.4" + ], + "processes": [ + "11.3.0", + "11.3.4", + "11.5.5-p.523", + "11.6.7" + ], + "processes creates": [ + "11.0.0" + ], + "processes re": [ + "11.7.0" + ], + "produce": [ + "11.6.6" + ], + "produce alternative trajectories": [ + "11.5.0", + "11.6.0" + ], + "production": [ + "11.5.0", + "11.6.0" + ], + "products like director": [ + "11.3.10" + ], + "professional software": [ + "11.3.1" + ], + "program": [ + "11.7.0", + "11.8.10", + "11.9.1" + ], + "program code": [ + "11.0.0", + "11.9.0" + ], + "program offers": [ + "11.8.3" + ], + "program users": [ + "11.7.0" + ], + "programmatic title ``software": [ + "11.9.0" + ], + "programming": [ + "11.3.3", + "11.3.9", + "11.7.0" + ], + "programming computers": [ + "11.3.5", + "11.3.9" + ], + "programming richard wright": [ + "11.7.0" + ], + "programs called aaron": [ + "11.7.0" + ], + "project": [ + "11.8.6" + ], + "projects": [ + "11.2.0", + "11.3.7", + "11.3.8", + "11.9.2" + ], + "projects created": [ + "11.6.6" + ], + "promotion": [ + "11.3.7", + "11.3.8" + ], + "properly running code": [ + "11.9.0" + ], + "proprietary": [ + "11.3.7", + "11.3.8" + ], + "proprietary software": [ + "11.1.0" + ], + "proprietary softwares": [ + "11.3.7", + "11.3.8" + ], + "protocol code": [ + "11.9.0" + ], + "prove": [ + "11.8.5" + ], + "public domain": [ + "11.8.0" + ], + "public domain riff": [ + "11.8.0" + ], + "publication license http": [ + "11.9.0" + ], + "publish alan kay": [ + "11.8.0" + ], + "purpose": [ + "11.8.9" + ], + "py&hl=en": [ + "11.4.0" + ], + "pythagorean digital kitsch": [ + "11.9.0" + ], + "python computer": [ + "11.4.0" + ], + "python computer language": [ + "11.4.0" + ], + "query=sniffer&pp=10&": [ + "11.8.2" + ], + "question": [ + "11.3.3", + "11.7.0", + "11.8.10" + ], + "question that florian": [ + "11.8.10" + ], + "questionably licensed software": [ + "11.9.0" + ], + "questions": [ + "11.3.3" + ], + "radio packet network": [ + "11.8.1" + ], + "raised": [ + "11.3.4" + ], + "raised in relation": [ + "11.3.4" + ], + "raises": [ + "11.8.10" + ], + "randall packer": [ + "11.8.10" + ], + "randall packer points": [ + "11.8.10" + ], + "random score": [ + "11.9.0" + ], + "random score generated": [ + "11.9.0" + ], + "random value": [ + "11.9.0" + ], + "ray kurzweil cybernetic": [ + "11.6.1" + ], + "read": [ + "11.3.10" + ], + "read it. christopher": [ + "11.6.8" + ], + "read stallman": [ + "11.3.10" + ], + "reader exact instructions": [ + "11.9.0" + ], + "reading": [ + "11.8.4" + ], + "reading the artist": [ + "11.6.8" + ], + "real": [ + "11.3.0" + ], + "real artists": [ + "11.3.0" + ], + "real artists paint": [ + "11.3.0", + "11.3.0" + ], + "realise": [ + "11.3.10" + ], + "realite virtuelle": [ + "11.6.3", + "11.6.4" + ], + "recent panel": [ + "11.3.2" + ], + "recently posted": [ + "11.9.1" + ], + "recite haikus containing": [ + "11.1.0" + ], + "rediscovered": [ + "11.3.9" + ], + "reena": [ + "11.3.0", + "11.3.2" + ], + "reena jana": [ + "11.3.0", + "11.3.2", + "11.4.0" + ], + "reena jana text": [ + "11.3.2", + "11.3.2" + ], + "reena text": [ + "11.3.2" + ], + "reena text references": [ + "11.3.2" + ], + "referenced": [ + "11.3.2" + ], + "referenced the reena": [ + "11.3.2" + ], + "regarding randomness generated": [ + "11.9.0" + ], + "regulations": [ + "11.3.0" + ], + "relation": [ + "11.9.1" + ], + "relatively esoteric language": [ + "11.4.0" + ], + "remarks": [ + "11.6.2" + ], + "remember": [ + "11.3.12" + ], + "remote access": [ + "11.8.0" + ], + "rendering web sites": [ + "11.0.0" + ], + "repackaging": [ + "11.8.10" + ], + "repackaging existing": [ + "11.8.10" + ], + "repackaging existing functionality": [ + "11.8.10" + ], + "repair security holes": [ + "11.8.0" + ], + "replace": [ + "11.3.3", + "11.3.4" + ], + "replace the creative": [ + "11.3.4" + ], + "replicates network": [ + "11.8.6" + ], + "replicates network surveillance": [ + "11.8.6" + ], + "reported knight lightning": [ + "11.8.0" + ], + "representatives of open": [ + "11.6.7" + ], + "requires": [ + "11.6.6" + ], + "requires assistance": [ + "11.6.6" + ], + "research supported": [ + "11.7.0" + ], + "resolution protocol": [ + "11.8.8" + ], + "respect": [ + "11.6.7" + ], + "respectful": [ + "11.8.4" + ], + "responses": [ + "11.3.4" + ], + "restrict software art": [ + "11.9.0" + ], + "restricted colour palettes": [ + "11.7.0" + ], + "review was commissed": [ + "11.1.0" + ], + "rhizome carnivore": [ + "11.8.2" + ], + "richer conception": [ + "11.5.5-p.523" + ], + "robert coover": [ + "11.1.0" + ], + "robert farris thompson": [ + "11.6.3", + "11.6.3", + "11.6.4", + "11.6.4" + ], + "robert graham traces": [ + "11.8.0" + ], + "roberts": [ + "11.8.1" + ], + "rsa carnivore offers": [ + "11.8.10" + ], + "rsc": [ + "11.8.10" + ], + "rsc carnivore": [ + "11.8.10" + ], + "rsg": [ + "11.8.0", + "11.8.2", + "11.8.5", + "11.8.8", + "11.8.9" + ], + "rsg carnivore": [ + "11.8.0", + "11.8.2", + "11.8.8", + "11.8.9" + ], + "rsg carnivore levels": [ + "11.8.0", + "11.8.0", + "11.8.2", + "11.8.2" + ], + "rsg carnivore pe": [ + "11.8.8" + ], + "rsg carnivore ran": [ + "11.8.0", + "11.8.0" + ], + "rsg carnivore sought": [ + "11.8.0" + ], + "rsg released carnivore": [ + "11.8.0" + ], + "rule project": [ + "11.7.0" + ], + "rule sets inscribed": [ + "11.9.0" + ], + "rules": [ + "11.3.0" + ], + "running": [ + "11.3.7", + "11.3.8" + ], + "running their scripts": [ + "11.3.7" + ], + "salon data art": [ + "11.8.4", + "11.8.4" + ], + "sarah": [ + "11.3.9" + ], + "sarah thomson": [ + "11.3.9" + ], + "sasseure visualized": [ + "11.6.8" + ], + "sasseure visualized signified": [ + "11.6.8" + ], + "scene": [ + "11.6.1", + "11.6.2" + ], + "sch": [ + "11.8.5" + ], + "schmitt vexation": [ + "11.3.4" + ], + "schrieb rsg": [ + "11.8.8" + ], + "scientists": [ + "11.8.1" + ], + "screen saver art": [ + "11.8.2" + ], + "scripts": [ + "11.3.7", + "11.3.8" + ], + "scrupulous cultural analysis": [ + "11.9.0" + ], + "search": [ + "11.3.11" + ], + "search engines": [ + "11.8.9" + ], + "search of software": [ + "11.3.6", + "11.3.11" + ], + "secondary": [ + "11.6.2" + ], + "section": [ + "11.6.3", + "11.6.4" + ], + "section called": [ + "11.6.3", + "11.6.4" + ], + "section entitled": [ + "11.6.3", + "11.6.4" + ], + "sell people software": [ + "11.3.7", + "11.3.8" + ], + "separated": [ + "11.8.1" + ], + "separated by water": [ + "11.8.1" + ], + "series": [ + "11.3.6" + ], + "series of instructions": [ + "11.3.6" + ], + "serious style": [ + "11.6.0" + ], + "service code": [ + "11.9.0" + ], + "set": [ + "11.3.2", + "11.3.3" + ], + "shadow": [ + "11.6.3", + "11.6.4" + ], + "shelf": [ + "11.3.3" + ], + "shelf software": [ + "11.3.3" + ], + "shockwave": [ + "11.3.1", + "11.3.10" + ], + "short paper": [ + "11.6.8" + ], + "show": [ + "11.2.0", + "11.3.4" + ], + "sick": [ + "11.4.0" + ], + "sick art": [ + "11.4.0", + "11.4.0" + ], + "sides": [ + "11.6.8" + ], + "siggraph panel sessions": [ + "11.7.0" + ], + "sign": [ + "11.6.8" + ], + "sign system": [ + "11.9.0" + ], + "signified": [ + "11.6.8" + ], + "signifiers flow forth": [ + "11.0.0" + ], + "signifying": [ + "11.6.2" + ], + "signifying monkey": [ + "11.6.2" + ], + "signwave auto": [ + "11.9.0" + ], + "signwave auto illustrator": [ + "11.9.0", + "11.9.0" + ], + "simple": [ + "11.9.1" + ], + "simple formalist limit": [ + "11.9.1" + ], + "simplified menu commands": [ + "11.7.0" + ], + "simply": [ + "11.9.1" + ], + "simply allows users": [ + "11.7.0" + ], + "simply repackaging": [ + "11.8.10" + ], + "simply repackaging existing": [ + "11.8.10" + ], + "simply.permit": [ + "11.8.5" + ], + "simply.technical": [ + "11.8.5" + ], + "simulated agency": [ + "11.3.11", + "11.3.11" + ], + "simulated intelligence. tom": [ + "11.3.11" + ], + "simultaneously": [ + "11.6.8" + ], + "singular": [ + "11.3.9" + ], + "singular definition": [ + "11.3.9" + ], + "sites": [ + "11.6.3", + "11.6.4" + ], + "skimming": [ + "11.3.9" + ], + "slight movement": [ + "11.8.7" + ], + "slotted": [ + "11.8.1" + ], + "smile": [ + "11.8.5" + ], + "smoothly formatted pages": [ + "11.0.0" + ], + "snatch a rhythm": [ + "11.8.7" + ], + "sniffer": [ + "11.8.9" + ], + "sniffing": [ + "11.8.4", + "11.8.8", + "11.8.10" + ], + "sniffing engine": [ + "11.8.8" + ], + "sniffing program": [ + "11.8.10" + ], + "social": [ + "11.3.2", + "11.9.1" + ], + "software": [ + "11.0.0", + "11.1.0", + "11.2.0", + "11.3.0", + "11.3.1", + "11.3.2", + "11.3.3", + "11.3.4", + "11.3.5", + "11.3.6", + "11.3.7", + "11.3.8", + "11.3.9", + "11.3.10", + "11.3.11", + "11.7.0", + "11.8.0", + "11.8.2", + "11.8.4", + "11.8.5", + "11.8.8", + "11.9.0", + "11.9.1", + "11.9.2" + ], + "software art award": [ + "11.0.0" + ], + "software art cited": [ + "11.9.0" + ], + "software art example": [ + "11.7.0" + ], + "software art executable": [ + "11.9.0" + ], + "software art florian": [ + "11.0.0" + ], + "software art includes": [ + "11.9.0" + ], + "software art jury": [ + "11.0.0" + ], + "software art means": [ + "11.0.0" + ], + "software art nevertheless": [ + "11.0.0" + ], + "software art organised": [ + "11.7.0", + "11.7.0" + ], + "software art pieces": [ + "11.9.0" + ], + "software art plays": [ + "11.9.0", + "11.9.0" + ], + "software art presentations": [ + "11.9.0" + ], + "software art prize": [ + "11.9.0" + ], + "software art simply": [ + "11.9.0" + ], + "software art terror": [ + "11.9.0", + "11.9.0" + ], + "software art today": [ + "11.9.0" + ], + "software artists": [ + "11.3.2", + "11.3.3" + ], + "software arts meet": [ + "11.9.0" + ], + "software as art": [ + "11.2.0", + "11.3.3", + "11.3.6", + "11.3.11" + ], + "software called auto": [ + "11.7.0" + ], + "software code": [ + "11.9.0" + ], + "software eg code": [ + "11.3.6" + ], + "software formalism vs": [ + "11.9.0" + ], + "software is simply.technical": [ + "11.8.5" + ], + "software license agreements": [ + "11.3.8" + ], + "software maintain affect": [ + "11.3.2" + ], + "software products": [ + "11.8.0" + ], + "software user practice": [ + "11.7.0" + ], + "solution was nonsense": [ + "11.8.1" + ], + "sondheim": [ + "11.6.2", + "11.6.7" + ], + "soon carnivore clients": [ + "11.8.0" + ], + "sound": [ + "11.9.1" + ], + "source": [ + "11.3.7", + "11.3.8", + "11.8.0", + "11.8.8" + ], + "source code": [ + "11.4.0", + "11.8.0", + "11.9.0" + ], + "source programming": [ + "11.6.7" + ], + "source projects": [ + "11.3.7", + "11.3.8" + ], + "source software license": [ + "11.8.3", + "11.8.8" + ], + "space": [ + "11.5.0", + "11.6.0" + ], + "space of multimedia": [ + "11.5.5-p.523" + ], + "speaks english": [ + "11.6.0" + ], + "specific art issues": [ + "11.7.0" + ], + "specifically cultural forces": [ + "11.7.0" + ], + "specifically cultural perspective": [ + "11.7.0" + ], + "speed pc fear": [ + "11.6.0" + ], + "speed pc fear…": [ + "11.5.0" + ], + "spiritual ancestor": [ + "11.8.7" + ], + "spoken text": [ + "11.9.0" + ], + "spoken text based": [ + "11.9.0" + ], + "spying tool": [ + "11.8.2" + ], + "srcport source port": [ + "11.8.8" + ], + "stalker": [ + "11.0.0" + ], + "standard microsoft functionality": [ + "11.7.0" + ], + "start": [ + "11.2.0" + ], + "statement": [ + "11.2.0" + ], + "statement and nominated": [ + "11.2.0" + ], + "states": [ + "11.3.6" + ], + "states true": [ + "11.3.6" + ], + "stephen wilson": [ + "11.3.11" + ], + "sterling": [ + "11.8.0" + ], + "steven levy": [ + "11.8.0" + ], + "steven levy writes": [ + "11.8.0" + ], + "store arbitrary letters": [ + "11.9.0" + ], + "story telling workshops": [ + "11.7.0" + ], + "strategies": [ + "11.3.2", + "11.3.9" + ], + "strategies and approaches": [ + "11.3.9" + ], + "streets": [ + "11.8.5" + ], + "structural": [ + "11.6.7" + ], + "structural linguistics": [ + "11.6.7" + ], + "stuff": [ + "11.6.1" + ], + "stuff alot": [ + "11.6.1" + ], + "stumbling": [ + "11.8.5" + ], + "stumbling over technical": [ + "11.8.5" + ], + "stunning neo_adamseque landscapes": [ + "11.3.3" + ], + "stéphan barron": [ + "11.5.0", + "11.6.0" + ], + "subject": [ + "11.8.2" + ], + "subsequent files": [ + "11.8.8" + ], + "subsequent political rhetoric": [ + "11.8.8" + ], + "success": [ + "11.8.4" + ], + "success make": [ + "11.8.4" + ], + "successful": [ + "11.8.4" + ], + "successful art": [ + "11.8.4" + ], + "sun": [ + "11.8.3" + ], + "super": [ + "11.6.2" + ], + "super whitebread": [ + "11.6.1" + ], + "support": [ + "11.2.0" + ], + "supports safety codes": [ + "11.8.7" + ], + "supposedly precise machine": [ + "11.3.4" + ], + "surveillance": [ + "11.8.6" + ], + "surveillance engine": [ + "11.8.0" + ], + "surveillance saturation": [ + "11.8.0" + ], + "surveillance systems": [ + "11.8.6" + ], + "surveillance technology": [ + "11.8.6" + ], + "susan collins": [ + "11.3.9" + ], + "suspect": [ + "11.6.6" + ], + "system": [ + "11.3.9" + ], + "system design": [ + "11.7.0" + ], + "systems": [ + "11.0.0", + "11.3.6", + "11.8.6" + ], + "systems theory": [ + "11.1.0" + ], + "table of contents": [ + "11.8.2" + ], + "talk": [ + "11.8.4" + ], + "target software upside": [ + "11.9.0" + ], + "tate in london": [ + "11.3.9" + ], + "teaches media art": [ + "11.4.0" + ], + "technical": [ + "11.3.3", + "11.8.5", + "11.9.2" + ], + "technical analysis": [ + "11.8.3" + ], + "technical analysis offered": [ + "11.8.2", + "11.8.3", + "11.8.3", + "11.8.8", + "11.8.8" + ], + "technical background": [ + "11.8.8" + ], + "technical concepts": [ + "11.9.2", + "11.9.2" + ], + "technical details": [ + "11.8.3", + "11.8.5", + "11.8.8" + ], + "technical level": [ + "11.8.8" + ], + "technical outline": [ + "11.8.9" + ], + "technical outline florian": [ + "11.8.9" + ], + "technically": [ + "11.8.10" + ], + "technically innovative": [ + "11.8.10" + ], + "techno-idiot and reading": [ + "11.8.3", + "11.8.8" + ], + "technologically marvelous": [ + "11.3.4" + ], + "technologically motivated processes": [ + "11.7.0" + ], + "technology": [ + "11.8.0", + "11.8.6" + ], + "term ``digital art": [ + "11.9.0" + ], + "term hacker": [ + "11.8.0" + ], + "terms": [ + "11.9.1" + ], + "terms of injecting": [ + "11.3.11" + ], + "terror grounded": [ + "11.9.0" + ], + "terse mathematical expressions": [ + "11.7.0" + ], + "text": [ + "11.3.2", + "11.5.0", + "11.6.0", + "11.6.1", + "11.6.7", + "11.9.1" + ], + "text and visuals": [ + "11.6.8" + ], + "text etc etc": [ + "11.6.3", + "11.6.4" + ], + "text flow": [ + "11.6.3", + "11.6.4" + ], + "text in wired.com": [ + "11.3.2" + ], + "text references": [ + "11.3.2", + "11.3.2" + ], + "texts": [ + "11.5.0", + "11.6.0" + ], + "theater": [ + "11.6.3", + "11.6.4" + ], + "thei actual piece": [ + "11.8.8" + ], + "theme": [ + "11.2.0" + ], + "themed screensaver output": [ + "11.8.8" + ], + "theoretician geoff cox": [ + "11.9.0" + ], + "theory list": [ + "11.5.0" + ], + "thereby decreasing freedom": [ + "11.1.0" + ], + "thomas": [ + "11.8.2" + ], + "thomas wrote": [ + "11.8.2" + ], + "thomson": [ + "11.3.9" + ], + "thought": [ + "11.8.4" + ], + "thread": [ + "11.5.5-p.523" + ], + "thu": [ + "11.8.8" + ], + "time": [ + "11.3.3" + ], + "timeascolor": [ + "11.6.8" + ], + "timeascolor by brad": [ + "11.6.8" + ], + "today": [ + "11.3.1" + ], + "today director": [ + "11.3.1" + ], + "tom": [ + "11.3.10" + ], + "tom peters": [ + "11.8.0" + ], + "tompkins square park": [ + "11.8.7" + ], + "tool which enables": [ + "11.3.1" + ], + "trace": [ + "11.6.6" + ], + "trace online": [ + "11.6.6" + ], + "trace online writing": [ + "11.6.6" + ], + "tracing concept art": [ + "11.0.0" + ], + "track hackers follow": [ + "11.8.0" + ], + "traditional sense": [ + "11.6.6" + ], + "transformation algorithms themselves": [ + "11.9.0" + ], + "transmediale competition": [ + "11.3.1" + ], + "transmediale festival": [ + "11.2.0" + ], + "transmediale have acknowledged": [ + "11.3.5" + ], + "transmediale software art": [ + "11.0.0", + "11.7.0" + ], + "transmediale.de": [ + "11.8.3" + ], + "transport protocol filtering": [ + "11.8.0", + "11.8.2", + "11.8.3", + "11.8.8" + ], + "tremendous horror": [ + "11.5.0", + "11.6.0" + ], + "true": [ + "11.3.6", + "11.6.6" + ], + "tue": [ + "11.8.2" + ], + "tumba ba-umpf": [ + "11.9.0" + ], + "turn": [ + "11.8.6" + ], + "turtle graphics engine": [ + "11.7.0" + ], + "tutualoa or john": [ + "11.6.3", + "11.6.4" + ], + "twentieth century drew": [ + "11.6.0" + ], + "ulrike gabriel": [ + "11.0.0" + ], + "ulrike gabriel august": [ + "11.0.0" + ], + "ultimately allow programmers": [ + "11.7.0" + ], + "underlying algorithmic structure": [ + "11.7.0" + ], + "underpinned previous debates": [ + "11.7.0" + ], + "understand": [ + "11.3.2" + ], + "understanding": [ + "11.3.2" + ], + "underway": [ + "11.2.0" + ], + "unique": [ + "11.8.1" + ], + "unique individual style": [ + "11.7.0" + ], + "unique problem": [ + "11.8.1" + ], + "universal kinetic attribute": [ + "11.7.0" + ], + "universally valid concept": [ + "11.8.0" + ], + "university": [ + "11.8.1" + ], + "university hacker robert": [ + "11.8.0" + ], + "university of hawaii": [ + "11.8.1" + ], + "unmask": [ + "11.4.0" + ], + "unpredictable states": [ + "11.3.11" + ], + "unsubscribe": [ + "11.4.0" + ], + "unsubscribe mailto": [ + "11.4.0" + ], + "user": [ + "11.2.0", + "11.7.0" + ], + "user datagram protocol": [ + "11.8.8" + ], + "user input": [ + "11.8.9" + ], + "user interface": [ + "11.0.0", + "11.9.0" + ], + "user manual": [ + "11.9.0" + ], + "user support": [ + "11.2.0" + ], + "users": [ + "11.7.0" + ], + "using digital technology": [ + "11.9.0" + ], + "using free software": [ + "11.3.4", + "11.3.7", + "11.3.8" + ], + "using time slots": [ + "11.8.1" + ], + "usual scission": [ + "11.9.1" + ], + "utopian instinct": [ + "11.8.0" + ], + "utopian vision based": [ + "11.8.0" + ], + "vacuum": [ + "11.6.6" + ], + "valid": [ + "11.8.10" + ], + "vector graphics": [ + "11.7.0" + ], + "venice biennale": [ + "11.4.0" + ], + "vexation": [ + "11.3.4" + ], + "video": [ + "11.3.10" + ], + "video game developed": [ + "11.8.0" + ], + "viewer": [ + "11.6.8" + ], + "village voice articles": [ + "11.8.7" + ], + "virtuelle": [ + "11.6.3", + "11.6.4" + ], + "virus": [ + "11.4.0" + ], + "virus alla biennale": [ + "11.4.0" + ], + "virus chiamato biennale": [ + "11.4.0" + ], + "virus della biennale": [ + "11.4.0" + ], + "visual": [ + "11.6.1" + ], + "visual aesthetic": [ + "11.7.0" + ], + "visual basic instead": [ + "11.8.8" + ], + "visualizations": [ + "11.8.9" + ], + "visualized signified": [ + "11.6.8" + ], + "visuals": [ + "11.6.8" + ], + "volker grassmuck proposed": [ + "11.1.0" + ], + "von brandenburg": [ + "11.8.2" + ], + "walter ong": [ + "11.6.3", + "11.6.4" + ], + "walter ong ideas": [ + "11.6.3", + "11.6.4" + ], + "wark essay": [ + "11.0.0" + ], + "water": [ + "11.8.1" + ], + "web": [ + "11.0.0", + "11.5.0", + "11.6.0" + ], + "web browser plug": [ + "11.7.0" + ], + "web pages": [ + "11.5.0" + ], + "web site": [ + "11.5.0" + ], + "web site http": [ + "11.9.0" + ], + "web stalker": [ + "11.0.0", + "11.0.0" + ], + "web stalker displayed": [ + "11.0.0" + ], + "web stalker http": [ + "11.0.0" + ], + "web stalker shows": [ + "11.0.0" + ], + "web surfers send": [ + "11.5.0", + "11.6.0" + ], + "web unreadable": [ + "11.0.0" + ], + "webby-winning net art": [ + "11.4.0" + ], + "wed": [ + "11.8.2" + ], + "west 16th street": [ + "11.8.7" + ], + "wheeling intellectual exploration": [ + "11.8.0" + ], + "whitebread": [ + "11.6.2" + ], + "wide web browser": [ + "11.0.0" + ], + "william blake work": [ + "11.6.0" + ], + "windows operating system": [ + "11.8.0" + ], + "wired news reported": [ + "11.8.0" + ], + "withdraw": [ + "11.3.7", + "11.3.8" + ], + "withdraw their product": [ + "11.3.7", + "11.3.8" + ], + "word": [ + "11.6.3", + "11.6.4" + ], + "word of appreciation": [ + "11.8.9" + ], + "words": [ + "11.6.1", + "11.6.3", + "11.6.4" + ], + "words assign place": [ + "11.6.3", + "11.6.4" + ], + "work": [ + "11.3.3", + "11.3.4", + "11.3.5", + "11.5.0", + "11.6.0", + "11.6.6", + "11.7.0", + "11.8.4", + "11.9.1" + ], + "work exists": [ + "11.9.1" + ], + "work immediately": [ + "11.9.1" + ], + "work of art": [ + "11.8.4" + ], + "work often requires": [ + "11.6.6" + ], + "works": [ + "11.9.1" + ], + "works addressed": [ + "11.9.1" + ], + "world": [ + "11.4.0", + "11.6.2", + "11.6.7", + "11.8.6" + ], + "world economic forum": [ + "11.8.0" + ], + "world wildlife fund": [ + "11.1.0" + ], + "write sounds reads": [ + "11.8.8" + ], + "writes": [ + "11.6.7", + "11.8.0" + ], + "writes andrew ross": [ + "11.8.0" + ], + "writes free software": [ + "11.8.0" + ], + "writing": [ + "11.5.0", + "11.5.5-p.523", + "11.6.0", + "11.6.7" + ], + "writing conceived": [ + "11.5.5-p.523" + ], + "writing dada poems": [ + "11.9.0" + ], + "writing group": [ + "11.6.6" + ], + "writing practices": [ + "11.6.7" + ], + "writing text": [ + "11.5.0", + "11.6.0" + ], + "written instruction ``draw": [ + "11.9.0" + ], + "written theatre plays": [ + "11.0.0" + ], + "wrote": [ + "11.3.1", + "11.3.7", + "11.3.8", + "11.6.2", + "11.8.9" + ], + "year": [ + "11.2.0", + "11.6.8" + ], + "year transmediale": [ + "11.2.0" + ], + "year transmediale festival": [ + "11.2.0" + ], + "year venice biennale": [ + "11.4.0" + ], + "years": [ + "11.8.4" + ], + "york": [ + "11.8.0", + "11.8.7" + ], + "york city": [ + "11.8.7" + ], + "york jewish museum": [ + "11.0.0" + ], + "young software arts": [ + "11.9.0" + ], + "} $gg88%cccgg$bb00 {": [ + "11.8.7" + ], + "éditions la découverte": [ + "11.8.0" + ] + }, + "selected": { + "antiorp": [ + "11.5.0", + "11.5.5-p.523", + "11.6.7" + ], + "artaud": [ + "11.6.2", + "11.6.3", + "11.6.4" + ], + "biennale.py": [ + "11.4.0" + ], + "carnivore": [ + "11.8.0", + "11.8.2", + "11.8.3", + "11.8.5", + "11.8.6", + "11.8.8", + "11.8.9", + "11.8.10" + ], + "computer art": [ + "11.0.0", + "11.7.0" + ], + "conceptual art": [ + "11.8.0", + "11.8.0", + "11.9.1" + ], + "contemporary art": [ + "11.9.0" + ], + "copyright": [ + "11.8.8" + ], + "david rokeby": [ + "11.3.9", + "11.3.11" + ], + "email": [ + "11.6.6" + ], + "email lists": [ + "11.6.6" + ], + "ethernet": [ + "11.8.1", + "11.8.2", + "11.8.8" + ], + "executed": [ + "11.3.6" + ], + "generative art": [ + "11.3.3" + ], + "gnu": [ + "11.1.0" + ], + "gpl": [ + "11.8.8" + ], + "hacker": [ + "11.8.0", + "11.8.4" + ], + "hackers": [ + "11.8.0" + ], + "hypertext": [ + "11.5.0", + "11.6.0", + "11.6.7" + ], + "instruction code": [ + "11.9.0", + "11.9.0", + "11.9.2" + ], + "internet": [ + "11.5.0", + "11.6.0" + ], + "irc": [ + "11.6.6" + ], + "jodi": [ + "11.5.0", + "11.5.5-p.523", + "11.6.0", + "11.6.7" + ], + "john cage": [ + "11.6.1" + ], + "logical states": [ + "11.3.6" + ], + "mcluhan": [ + "11.6.2" + ], + "media art": [ + "11.0.0", + "11.5.0", + "11.5.5-p.523", + "11.6.0", + "11.8.4" + ], + "mongrel": [ + "11.2.0" + ], + "morse code": [ + "11.9.0" + ], + "mute magazine": [ + "11.7.0" + ], + "net art": [ + "11.0.0", + "11.4.0", + "11.8.9" + ], + "net.art": [ + "11.6.8", + "11.8.8" + ], + "netochka nezvanova": [ + "11.8.5" + ], + "nezvanova": [ + "11.8.5" + ], + "nyc": [ + "11.8.7" + ], + "open source": [ + "11.1.0", + "11.3.7", + "11.3.8", + "11.6.7", + "11.8.0" + ], + "packet sniffer": [ + "11.8.8", + "11.8.9" + ], + "packet sniffing": [ + "11.8.10" + ], + "palo alto": [ + "11.8.1" + ], + "perl": [ + "11.8.8" + ], + "protocol": [ + "11.8.8" + ], + "richard stallman": [ + "11.8.0" + ], + "signifier": [ + "11.6.8" + ], + "simulated": [ + "11.3.11" + ], + "software art": [ + "11.0.0", + "11.2.0", + "11.3.0", + "11.3.1", + "11.3.4", + "11.3.5", + "11.7.0", + "11.9.0", + "11.9.2" + ], + "stallman": [ + "11.1.0", + "11.3.8", + "11.3.10" + ], + "transmediale": [ + "11.2.0", + "11.3.1", + "11.3.5" + ], + "william blake": [ + "11.5.0", + "11.6.0" + ], + "wired": [ + "11.4.0" + ], + "wired.com": [ + "11.3.2" + ], + "xerox": [ + "11.8.1" + ], + "xerox parc": [ + "11.8.1" + ] + } +} \ No newline at end of file diff --git a/index/13.Post-digital-index.js b/index/13.Post-digital-index.js new file mode 100644 index 0000000..64db300 --- /dev/null +++ b/index/13.Post-digital-index.js @@ -0,0 +1,8037 @@ +{ + "orphan": { + "02:58": [ + "13.6.7" + ], + "09:51": [ + "13.7.8", + "13.7.9" + ], + "09:51 schrieb": [ + "13.7.8", + "13.7.9" + ], + "1995-2004": [ + "13.0.0" + ], + "19th century factories": [ + "13.3.3", + "13.3.5", + "13.3.6" + ], + "2005-2014": [ + "13.0.0" + ], + "30th chaos": [ + "13.6.5" + ], + "< human consciousness": [ + "13.8.0" + ], + "> systems analysis": [ + "13.3.5" + ], + "_computer music journal_": [ + "13.6.5" + ], + "_electronic book review_": [ + "13.6.5" + ], + "_mad max_ films": [ + "13.6.5" + ], + "_new media_ taxonomy": [ + "13.6.5" + ], + "_the circle": [ + "13.6.5" + ], + "_the guardian_": [ + "13.6.5" + ], + "_the language": [ + "13.6.5" + ], + "_the thing_ onwards": [ + "13.6.5" + ], + "_the transparent society_": [ + "13.6.18" + ], + "aarhus": [ + "13.1.3", + "13.1.9", + "13.1.12", + "13.5.0" + ], + "aarhus kunsthal": [ + "13.1.12" + ], + "aarhus post-digital": [ + "13.1.9" + ], + "aarhus post-digital writing": [ + "13.1.9" + ], + "aarhus university": [ + "13.3.0", + "13.5.0" + ], + "abolish slavery": [ + "13.7.10" + ], + "abolishing": [ + "13.7.10" + ], + "abolishing slavery": [ + "13.7.10" + ], + "absolute power corrupts": [ + "13.6.18" + ], + "academic backup": [ + "13.4.7" + ], + "academic initiative exploring": [ + "13.4.0" + ], + "accelerated instrumentalised forms": [ + "13.0.2" + ], + "accelerating technical change": [ + "13.0.2" + ], + "acceptable norm": [ + "13.8.0" + ], + "access content system": [ + "13.0.2" + ], + "accident integral": [ + "13.7.1" + ], + "account": [ + "13.1.13" + ], + "accumulate boundless riches": [ + "13.6.0" + ], + "active": [ + "13.3.1" + ], + "actively expanding frameworks": [ + "13.4.3" + ], + "actively exploring": [ + "13.4.3" + ], + "activist culture": [ + "13.6.11" + ], + "activist culture delivered": [ + "13.6.11" + ], + "actually _was_ digital": [ + "13.6.5" + ], + "adam": [ + "13.3.4", + "13.3.6" + ], + "adam hyde": [ + "13.3.3" + ], + "adam hyde jumped": [ + "13.3.3", + "13.3.3" + ], + "adam smith": [ + "13.3.3" + ], + "add": [ + "13.0.0", + "13.1.7" + ], + "add a historical": [ + "13.0.0" + ], + "add features": [ + "13.6.18" + ], + "added dependence matters": [ + "13.6.18" + ], + "added surveillance sauce": [ + "13.6.8" + ], + "address": [ + "13.1.8", + "13.1.9" + ], + "address the gendered": [ + "13.1.8" + ], + "addressed western conceptions": [ + "13.1.9" + ], + "addressing": [ + "13.1.7" + ], + "adhd diagnoses": [ + "13.4.6" + ], + "admit": [ + "13.7.8", + "13.7.9" + ], + "advanced access content": [ + "13.0.2" + ], + "advertising": [ + "13.6.0" + ], + "advice": [ + "13.6.11" + ], + "advice schools": [ + "13.6.3" + ], + "advice schools give": [ + "13.6.3" + ], + "aesthetic": [ + "13.1.4" + ], + "aesthetic immaterialism": [ + "13.1.0" + ], + "aesthetic practices": [ + "13.1.4" + ], + "aesthetically": [ + "13.7.0" + ], + "aestheticism": [ + "13.7.6" + ], + "aestheticism posited": [ + "13.7.6" + ], + "aesthetics": [ + "13.6.5" + ], + "aesthetics while today": [ + "13.0.0" + ], + "age": [ + "13.4.0", + "13.4.1", + "13.6.5", + "13.7.5" + ], + "age and wisdom": [ + "13.7.5" + ], + "age of global": [ + "13.6.2" + ], + "agency": [ + "13.3.6" + ], + "agent": [ + "13.3.6" + ], + "ago": [ + "13.1.13" + ], + "agro-business": [ + "13.6.15", + "13.6.17" + ], + "aka": [ + "13.7.1" + ], + "akin to hegel": [ + "13.1.6" + ], + "ala carr": [ + "13.4.6" + ], + "alan": [ + "13.1.10" + ], + "aldje van meer": [ + "13.6.5" + ], + "alessandro": [ + "13.3.0", + "13.3.1", + "13.3.3", + "13.3.5", + "13.3.6" + ], + "alessandro calls agency": [ + "13.3.6", + "13.3.6" + ], + "alessandro ludovico": [ + "13.3.0" + ], + "alessandros": [ + "13.3.2" + ], + "alessandros opening": [ + "13.3.2" + ], + "alessandros opening points": [ + "13.3.2" + ], + "algorithmic": [ + "13.4.7" + ], + "algorithms": [ + "13.4.7" + ], + "alleged typewriter hipster": [ + "13.6.5" + ], + "allgemeine": [ + "13.6.0" + ], + "allgemeine zeitung": [ + "13.6.0" + ], + "allowed": [ + "13.6.8" + ], + "alternatives": [ + "13.1.9" + ], + "alzheimers": [ + "13.4.6" + ], + "am particularly fond": [ + "13.6.18" + ], + "am strongly recognizing": [ + "13.7.8" + ], + "amazon": [ + "13.4.5" + ], + "ame": [ + "13.7.5" + ], + "ame rican": [ + "13.7.5" + ], + "ame rican sense": [ + "13.7.5", + "13.7.5" + ], + "american psycho": [ + "13.4.7" + ], + "amsterdam": [ + "13.1.0", + "13.1.3", + "13.1.12", + "13.4.6" + ], + "analog": [ + "13.3.6", + "13.6.5" + ], + "analog material properties": [ + "13.6.5" + ], + "analog technologies": [ + "13.1.0" + ], + "analogical follows principles": [ + "13.8.0" + ], + "analogue": [ + "13.8.0" + ], + "analogue mediums": [ + "13.3.7" + ], + "analogue systems": [ + "13.3.3", + "13.3.5" + ], + "analysis": [ + "13.3.3", + "13.3.5" + ], + "andreas": [ + "13.6.10" + ], + "andreas'": [ + "13.6.11" + ], + "andreas' fact": [ + "13.6.11" + ], + "andreas' fact check": [ + "13.6.11" + ], + "andrew jofey": [ + "13.7.12" + ], + "andrews": [ + "13.6.5" + ], + "android open source": [ + "13.0.2" + ], + "angela genusa": [ + "13.2.0" + ], + "announced": [ + "13.1.13" + ], + "anonymous": [ + "13.7.10" + ], + "anonymous creations": [ + "13.6.5" + ], + "anonymous history": [ + "13.7.10" + ], + "anymore": [ + "13.4.7" + ], + "apologies": [ + "13.3.2", + "13.3.3" + ], + "apologies to subscribers": [ + "13.3.3" + ], + "app": [ + "13.4.2" + ], + "appears strongly led": [ + "13.1.12" + ], + "applying network cultural": [ + "13.1.0", + "13.1.0" + ], + "appreciated by artists": [ + "13.8.0" + ], + "aprja articulate": [ + "13.1.4", + "13.1.9" + ], + "aprja articulate conceptions": [ + "13.1.4", + "13.1.9" + ], + "aprja transmediale newspaper": [ + "13.5.0" + ], + "aram bartholl": [ + "13.6.6" + ], + "aram bartholl practice": [ + "13.6.6" + ], + "arch-conservative editors": [ + "13.6.12" + ], + "architecture": [ + "13.4.2" + ], + "archived list": [ + "13.6.3" + ], + "arduino hardware hacking": [ + "13.6.5" + ], + "argument": [ + "13.3.5", + "13.3.6" + ], + "armin": [ + "13.6.9", + "13.6.14", + "13.6.15", + "13.6.17" + ], + "armin medosch": [ + "13.6.9", + "13.6.17" + ], + "armin medosch wrote": [ + "13.6.9", + "13.6.9", + "13.6.17", + "13.6.17" + ], + "ars": [ + "13.8.0" + ], + "ars electronica": [ + "13.8.0", + "13.8.0" + ], + "art": [ + "13.4.0", + "13.4.1", + "13.4.3", + "13.4.4", + "13.5.1", + "13.6.5" + ], + "art academies": [ + "13.6.5" + ], + "art and media": [ + "13.1.0" + ], + "art center": [ + "13.4.1" + ], + "art contexts": [ + "13.4.3" + ], + "art curator": [ + "13.6.5" + ], + "art practices": [ + "13.4.4" + ], + "art school": [ + "13.5.1", + "13.6.5" + ], + "art shelf": [ + "13.4.1", + "13.4.1" + ], + "art student": [ + "13.6.5" + ], + "art students": [ + "13.5.1" + ], + "art today": [ + "13.4.4" + ], + "artclub involving discussions": [ + "13.4.0" + ], + "article": [ + "13.6.10" + ], + "articulate conceptions": [ + "13.1.9" + ], + "artist book": [ + "13.4.1" + ], + "artist books": [ + "13.2.0" + ], + "arts": [ + "13.4.0" + ], + "arts practices": [ + "13.4.0" + ], + "ascii": [ + "13.0.0" + ], + "asiatic": [ + "13.7.1" + ], + "asked my friend": [ + "13.4.6" + ], + "assembled en masse": [ + "13.6.18" + ], + "associate": [ + "13.7.11" + ], + "associate google": [ + "13.6.12" + ], + "associated mainly": [ + "13.6.5" + ], + "association": [ + "13.7.11" + ], + "assure": [ + "13.6.12" + ], + "attention": [ + "13.4.6", + "13.7.11" + ], + "audio cassette": [ + "13.6.5" + ], + "audio cassette production": [ + "13.6.5" + ], + "audio cassettes": [ + "13.6.5" + ], + "audio tape": [ + "13.6.5" + ], + "augmented": [ + "13.4.2", + "13.4.5" + ], + "augmented reality": [ + "13.4.0", + "13.4.0", + "13.4.2", + "13.4.5" + ], + "augmented reality interactions": [ + "13.4.2", + "13.4.2" + ], + "augmented reality software": [ + "13.4.0" + ], + "australian sound": [ + "13.6.5" + ], + "authors": [ + "13.4.1" + ], + "auto insurance": [ + "13.6.18" + ], + "avatar": [ + "13.0.1" + ], + "avatar label": [ + "13.0.1" + ], + "average web page": [ + "13.6.18" + ], + "avid consumers mainly": [ + "13.5.1" + ], + "avoid": [ + "13.6.0" + ], + "aztecs": [ + "13.1.6" + ], + "babel-ism": [ + "13.7.6" + ], + "back": [ + "13.4.7" + ], + "background": [ + "13.4.3" + ], + "background information": [ + "13.4.3" + ], + "bad": [ + "13.6.9", + "13.6.15", + "13.6.17" + ], + "bad books welcoming": [ + "13.4.1" + ], + "bad overwhelmingly dominate": [ + "13.6.18" + ], + "bad thing": [ + "13.6.9" + ], + "badly informed": [ + "13.6.2" + ], + "bank counter instead": [ + "13.6.11" + ], + "banking": [ + "13.6.3" + ], + "banking system via": [ + "13.6.11" + ], + "baraona": [ + "13.4.2" + ], + "based": [ + "13.1.12", + "13.6.14" + ], + "based operating system": [ + "13.6.18" + ], + "based remote management": [ + "13.6.18" + ], + "basically": [ + "13.6.7" + ], + "basically reasonable": [ + "13.6.7", + "13.7.2" + ], + "baukasten": [ + "13.6.0" + ], + "baukasten zu einer": [ + "13.6.0" + ], + "bay": [ + "13.6.4" + ], + "began": [ + "13.6.4" + ], + "began my phd": [ + "13.5.0" + ], + "began writing": [ + "13.6.4" + ], + "began writing poetry": [ + "13.6.4" + ], + "begg": [ + "13.6.4" + ], + "beloved technologies": [ + "13.7.1" + ], + "berry": [ + "13.3.0" + ], + "big data": [ + "13.3.7" + ], + "biggs and patrick": [ + "13.2.0" + ], + "bishop mandell creighton": [ + "13.6.18" + ], + "bit": [ + "13.4.3", + "13.4.6" + ], + "bit late": [ + "13.4.6" + ], + "bit late responding": [ + "13.4.6", + "13.4.6" + ], + "bit of self-reflection": [ + "13.6.2" + ], + "bit skeptical": [ + "13.4.6", + "13.4.6" + ], + "bitcoin transaction records": [ + "13.6.11" + ], + "bittorrent video downloads": [ + "13.6.5" + ], + "blended paint": [ + "13.6.5" + ], + "blinding insight": [ + "13.7.7" + ], + "blog": [ + "13.4.5" + ], + "blog augmentology": [ + "13.4.5" + ], + "bodily movement via": [ + "13.6.11" + ], + "book": [ + "13.2.0", + "13.3.0", + "13.3.1", + "13.3.6", + "13.4.1", + "13.4.2", + "13.4.4", + "13.4.7", + "13.5.1", + "13.8.0" + ], + "book ars": [ + "13.8.0" + ], + "book ars electronica": [ + "13.8.0", + "13.8.0" + ], + "book called ibm": [ + "13.6.16" + ], + "book publishing industry": [ + "13.0.2" + ], + "book sprints": [ + "13.3.6", + "13.3.6" + ], + "book sprints”": [ + "13.3.6" + ], + "book “written images": [ + "13.3.1" + ], + "books": [ + "13.2.0", + "13.3.6", + "13.4.1", + "13.4.2", + "13.4.4" + ], + "bookwork": [ + "13.2.0" + ], + "boolean logic": [ + "13.1.8", + "13.1.9", + "13.1.10" + ], + "brain damage": [ + "13.4.7" + ], + "braman": [ + "13.7.3", + "13.7.4" + ], + "braman wrote": [ + "13.7.4" + ], + "breaking": [ + "13.3.2" + ], + "breaking protocol": [ + "13.3.2" + ], + "breeze blog": [ + "13.4.5" + ], + "breeze blog augmentology": [ + "13.4.5" + ], + "broad sense opt": [ + "13.6.18" + ], + "broad transformations associated": [ + "13.3.0" + ], + "bruce schneier": [ + "13.6.18" + ], + "bruce schneier countered": [ + "13.6.18" + ], + "bruce sterlings notion": [ + "13.0.2", + "13.0.2" + ], + "btw.": [ + "13.1.5" + ], + "building authentication systems": [ + "13.6.18" + ], + "bunchs of text": [ + "13.4.5" + ], + "business": [ + "13.6.12" + ], + "business interests": [ + "13.6.12" + ], + "business parts": [ + "13.6.12" + ], + "business practices based": [ + "13.6.5" + ], + "buy": [ + "13.4.4" + ], + "bwpwap transmediale": [ + "13.1.4" + ], + "bwpwap transmediale symposium": [ + "13.1.4" + ], + "bygone music media": [ + "13.5.0" + ], + "byte count": [ + "13.6.18" + ], + "californian": [ + "13.7.0" + ], + "californian ideology": [ + "13.7.0" + ], + "called digital": [ + "13.4.4" + ], + "called negative": [ + "13.7.7" + ], + "called negative dialectic": [ + "13.7.7" + ], + "callerid data automatically": [ + "13.6.18" + ], + "calling": [ + "13.6.6" + ], + "calling cornelia": [ + "13.6.6" + ], + "calling cornelia sollfrank": [ + "13.6.6", + "13.6.6" + ], + "calls agency": [ + "13.3.6" + ], + "campaign": [ + "13.6.8", + "13.6.14" + ], + "campaign against gratiskultur": [ + "13.6.8" + ], + "candidates at aarhus": [ + "13.1.12" + ], + "canonical": [ + "13.1.12" + ], + "capital": [ + "13.6.8", + "13.6.9", + "13.6.14", + "13.6.15", + "13.6.17" + ], + "capital is bad": [ + "13.6.9" + ], + "capitals": [ + "13.6.15", + "13.6.17" + ], + "captcha": [ + "13.6.16" + ], + "carefully": [ + "13.1.5" + ], + "carr": [ + "13.4.7" + ], + "carr is google": [ + "13.4.6" + ], + "cartesian": [ + "13.1.5", + "13.1.7" + ], + "cartesian and western": [ + "13.1.5" + ], + "cascone": [ + "13.1.13", + "13.6.5" + ], + "cascone introduced": [ + "13.0.0" + ], + "cascone posted": [ + "13.1.13" + ], + "case": [ + "13.7.1" + ], + "cassette tapes": [ + "13.6.5" + ], + "catalogues": [ + "13.4.1" + ], + "categorical": [ + "13.1.5" + ], + "categorical split": [ + "13.1.5" + ], + "celebrities": [ + "13.6.13" + ], + "censored": [ + "13.6.4" + ], + "census": [ + "13.6.16" + ], + "census data": [ + "13.6.16", + "13.6.16" + ], + "century": [ + "13.1.10" + ], + "century ad india": [ + "13.1.8" + ], + "century bc philosopher": [ + "13.1.10" + ], + "change": [ + "13.6.14", + "13.7.7" + ], + "change the fact": [ + "13.6.14" + ], + "change was illusory": [ + "13.7.7" + ], + "chaos computer club": [ + "13.6.5" + ], + "chaotic properties": [ + "13.6.5" + ], + "characteristic visionary insight": [ + "13.8.0" + ], + "charge": [ + "13.6.4" + ], + "charge in january": [ + "13.6.4" + ], + "chicken little talk": [ + "13.6.18" + ], + "chinese": [ + "13.1.10" + ], + "ching": [ + "13.1.10" + ], + "christian ulrik": [ + "13.5.0" + ], + "christian ulrik andersen": [ + "13.5.0", + "13.5.0", + "13.6.5", + "13.6.5" + ], + "chunks": [ + "13.0.1" + ], + "cinema film": [ + "13.6.5" + ], + "circuit including": [ + "13.6.5" + ], + "cited": [ + "13.1.12" + ], + "clarifies a lot": [ + "13.7.0", + "13.7.1" + ], + "class": [ + "13.7.3", + "13.7.4" + ], + "classical bauhaus curriculum": [ + "13.5.1" + ], + "close attention": [ + "13.7.11" + ], + "closely related development": [ + "13.6.18" + ], + "cloud": [ + "13.3.7" + ], + "clouds": [ + "13.3.7" + ], + "clubs": [ + "13.7.6" + ], + "code": [ + "13.6.18" + ], + "codex transformed": [ + "13.3.2" + ], + "cognitive map": [ + "13.0.2" + ], + "coherence": [ + "13.7.6" + ], + "cold": [ + "13.7.7" + ], + "collaborative zine conventions": [ + "13.6.5" + ], + "collapse": [ + "13.7.1" + ], + "collect data": [ + "13.6.18" + ], + "collected": [ + "13.6.16" + ], + "collected compromising information": [ + "13.6.11" + ], + "collected postal": [ + "13.6.16" + ], + "collected postal mail": [ + "13.6.16" + ], + "collective": [ + "13.7.4", + "13.7.8", + "13.7.9" + ], + "collective spaces": [ + "13.7.4", + "13.7.8", + "13.7.9" + ], + "colloquial frames": [ + "13.6.5" + ], + "colloquial sense": [ + "13.6.5" + ], + "colonial practices": [ + "13.1.8" + ], + "colonial regimes insisted": [ + "13.1.4" + ], + "colonialism": [ + "13.1.6" + ], + "colonialism akin": [ + "13.1.6" + ], + "com age ultimately": [ + "13.6.5" + ], + "combining location awareness": [ + "13.6.18" + ], + "combining observational data": [ + "13.6.18" + ], + "command": [ + "13.7.10" + ], + "comment": [ + "13.3.2" + ], + "common": [ + "13.7.11" + ], + "common force": [ + "13.7.11" + ], + "communal": [ + "13.7.4", + "13.7.8", + "13.7.9" + ], + "communication": [ + "13.7.4", + "13.7.8", + "13.7.9" + ], + "communication sphere": [ + "13.7.8", + "13.7.9" + ], + "community media device": [ + "13.6.5" + ], + "community media vs": [ + "13.6.5" + ], + "companion reading": [ + "13.7.2" + ], + "complete digital identity": [ + "13.6.18" + ], + "complete history": [ + "13.6.18" + ], + "completely": [ + "13.6.10" + ], + "completely impossible": [ + "13.6.10" + ], + "complex": [ + "13.7.0" + ], + "compound techniques supported": [ + "13.3.3", + "13.3.5" + ], + "compulsory auto insurance": [ + "13.6.18" + ], + "computation": [ + "13.0.2", + "13.1.10" + ], + "computation reflected": [ + "13.0.2" + ], + "computational": [ + "13.0.2" + ], + "computational devices": [ + "13.0.2" + ], + "computational digital technology": [ + "13.6.5" + ], + "computational forms": [ + "13.0.2", + "13.0.2" + ], + "computational societies": [ + "13.0.2", + "13.0.2" + ], + "computer": [ + "13.4.1", + "13.5.0" + ], + "computer chip": [ + "13.6.5" + ], + "computer hard": [ + "13.6.5" + ], + "computer lab": [ + "13.6.5" + ], + "computer music": [ + "13.3.1" + ], + "computer music journal": [ + "13.0.0", + "13.0.0" + ], + "computer penetrations": [ + "13.6.18" + ], + "computing": [ + "13.1.8", + "13.1.10" + ], + "concept": [ + "13.3.1", + "13.3.7", + "13.4.2" + ], + "conceptions": [ + "13.1.4", + "13.1.8", + "13.1.9", + "13.1.10" + ], + "conceptions solely lead": [ + "13.1.9" + ], + "concepts": [ + "13.6.15", + "13.6.17" + ], + "concepts that great": [ + "13.6.15" + ], + "conceptual": [ + "13.1.0" + ], + "condition of art": [ + "13.1.0" + ], + "conducting": [ + "13.6.14" + ], + "conducting a kind": [ + "13.6.14" + ], + "cone": [ + "13.3.2" + ], + "cone transformed": [ + "13.3.2", + "13.3.5" + ], + "confidential": [ + "13.6.4" + ], + "confidential message": [ + "13.6.3", + "13.6.4" + ], + "configuration": [ + "13.1.8" + ], + "congruency and continuity": [ + "13.8.0" + ], + "connecting gadgets": [ + "13.7.4" + ], + "connection": [ + "13.4.6" + ], + "connections linking computing": [ + "13.7.12" + ], + "conquest": [ + "13.1.6" + ], + "conservative views": [ + "13.6.12" + ], + "constituents": [ + "13.6.0" + ], + "contains augmented": [ + "13.4.2" + ], + "contemporary": [ + "13.3.3", + "13.3.5", + "13.4.3", + "13.6.5" + ], + "contemporary art contexts": [ + "13.4.3" + ], + "contemporary art practices": [ + "13.4.3", + "13.4.4", + "13.4.4" + ], + "contemporary art shelf": [ + "13.4.1" + ], + "contemporary bookwork": [ + "13.2.0" + ], + "contemporary computer": [ + "13.3.1" + ], + "contemporary computer music": [ + "13.3.1", + "13.3.1", + "13.6.5" + ], + "contemporary desktop interface": [ + "13.3.3", + "13.3.5" + ], + "contemporary digital": [ + "13.3.3", + "13.3.5" + ], + "contemporary dilemmas": [ + "13.7.7" + ], + "contemporary electronic music": [ + "13.6.5" + ], + "contemporary internet users": [ + "13.6.11" + ], + "contemporary publishing": [ + "13.2.0" + ], + "contemporary visual art": [ + "13.6.5" + ], + "contemporary zine": [ + "13.6.5" + ], + "contemporary zine fair": [ + "13.6.5" + ], + "content": [ + "13.4.3", + "13.4.4" + ], + "contents": [ + "13.4.5" + ], + "context": [ + "13.1.12", + "13.6.8" + ], + "contexts": [ + "13.4.3" + ], + "continual": [ + "13.4.6" + ], + "continual connection": [ + "13.4.6", + "13.4.6" + ], + "continual partial awareness": [ + "13.4.6" + ], + "continue to earn": [ + "13.6.13" + ], + "continuity": [ + "13.8.0" + ], + "continuity found": [ + "13.8.0" + ], + "control": [ + "13.6.0" + ], + "control ordinary people": [ + "13.6.0" + ], + "controlled consumption scheme": [ + "13.5.0" + ], + "controversy": [ + "13.6.7", + "13.7.2" + ], + "conversation": [ + "13.3.2", + "13.4.2" + ], + "conversation would evolve": [ + "13.3.2" + ], + "copies": [ + "13.4.4" + ], + "core": [ + "13.3.2", + "13.3.6" + ], + "core form": [ + "13.3.1", + "13.3.2" + ], + "cornelia": [ + "13.6.1", + "13.6.2", + "13.6.3" + ], + "cornelia sollfrank": [ + "13.6.3", + "13.6.6" + ], + "cornell.edu": [ + "13.1.3" + ], + "corner": [ + "13.7.6" + ], + "corner of opposition": [ + "13.7.6" + ], + "corner of refusal": [ + "13.7.6" + ], + "corporate": [ + "13.6.13" + ], + "corporate employees": [ + "13.6.13" + ], + "corporate social media": [ + "13.6.5" + ], + "corporate systems analysis": [ + "13.3.3", + "13.3.5" + ], + "corporation": [ + "13.6.17" + ], + "cost": [ + "13.7.3", + "13.7.4" + ], + "count for posting": [ + "13.6.3" + ], + "couple": [ + "13.1.3" + ], + "course silicon valley": [ + "13.6.5" + ], + "cramer": [ + "13.1.10", + "13.6.6", + "13.6.16", + "13.7.0", + "13.7.1" + ], + "cramer essay": [ + "13.1.4" + ], + "cramer wrote": [ + "13.1.10", + "13.6.16", + "13.7.0", + "13.7.1" + ], + "cri de coeur": [ + "13.7.1", + "13.7.1" + ], + "crisis": [ + "13.1.6" + ], + "critic peter bruyn": [ + "13.5.1" + ], + "critical engineering": [ + "13.0.2" + ], + "critical media": [ + "13.6.11" + ], + "critical media activist": [ + "13.6.11" + ], + "critical practices": [ + "13.0.2" + ], + "critical reflection": [ + "13.1.0" + ], + "critically revised continuation": [ + "13.6.5" + ], + "crucial step": [ + "13.3.7" + ], + "crunch census data": [ + "13.6.16" + ], + "crypto": [ + "13.6.11" + ], + "crypto parties": [ + "13.6.11" + ], + "cultural": [ + "13.3.3", + "13.3.5", + "13.3.6" + ], + "cultural conventions": [ + "13.6.5" + ], + "cultural experimentation": [ + "13.1.0" + ], + "cultural software": [ + "13.3.3", + "13.3.5" + ], + "cultural software development": [ + "13.3.3", + "13.3.3", + "13.3.5", + "13.3.5" + ], + "cultural software today": [ + "13.3.3" + ], + "culture": [ + "13.1.5", + "13.4.7", + "13.5.0", + "13.5.1", + "13.6.5", + "13.6.8", + "13.6.14" + ], + "culture delivered": [ + "13.6.11" + ], + "culture turns": [ + "13.4.7" + ], + "cultures": [ + "13.1.5", + "13.1.6" + ], + "cultures theory": [ + "13.4.3" + ], + "curated various exhibitions": [ + "13.4.0" + ], + "current digital nature": [ + "13.3.1", + "13.3.2", + "13.3.2" + ], + "current social": [ + "13.0.2" + ], + "current social formations": [ + "13.0.2", + "13.0.2" + ], + "current state": [ + "13.6.2" + ], + "customer tracking built": [ + "13.6.11" + ], + "cutting edge data": [ + "13.6.18" + ], + "cyber": [ + "13.6.18" + ], + "cyber risk management": [ + "13.6.18" + ], + "cyber security": [ + "13.6.18" + ], + "cyber security trade": [ + "13.6.18" + ], + "cyber workforce": [ + "13.6.18" + ], + "cybernetic systems thinking": [ + "13.1.8" + ], + "cybersecurity event data": [ + "13.6.18" + ], + "cyborgs nor chimeras": [ + "13.6.18" + ], + "daily natural nutrients": [ + "13.3.1" + ], + "danish": [ + "13.5.0" + ], + "danish author peter": [ + "13.5.0" + ], + "danish university history": [ + "13.5.0" + ], + "danish university history…": [ + "13.5.0" + ], + "dark side": [ + "13.1.4" + ], + "data": [ + "13.6.0", + "13.6.11", + "13.6.16", + "13.6.18" + ], + "data breach": [ + "13.6.18", + "13.6.18" + ], + "data breach investigations": [ + "13.6.18" + ], + "data breach laws": [ + "13.6.18", + "13.6.18" + ], + "data fusion": [ + "13.6.18", + "13.6.18" + ], + "data fusion innovation": [ + "13.6.18" + ], + "david": [ + "13.3.0" + ], + "david berry": [ + "13.3.0", + "13.3.3" + ], + "david m. berry": [ + "13.2.0" + ], + "day and find": [ + "13.6.12" + ], + "days earlier": [ + "13.6.8" + ], + "days step six": [ + "13.6.18" + ], + "dear": [ + "13.1.13", + "13.4.2", + "13.4.4" + ], + "dear empyreans": [ + "13.4.1" + ], + "dear michael": [ + "13.4.4" + ], + "debates": [ + "13.6.12" + ], + "debates and highly": [ + "13.6.12" + ], + "decade the hangover": [ + "13.7.7" + ], + "december": [ + "13.6.5" + ], + "deep critique": [ + "13.6.7", + "13.7.2" + ], + "deep packet inspection": [ + "13.6.18" + ], + "defend and protect": [ + "13.7.11" + ], + "defensive purposes": [ + "13.6.18" + ], + "definition": [ + "13.1.3", + "13.1.12" + ], + "definitional": [ + "13.3.7" + ], + "degree": [ + "13.6.15" + ], + "delete profile data": [ + "13.6.11" + ], + "delivered the proof": [ + "13.6.11" + ], + "demand": [ + "13.4.5" + ], + "democrat": [ + "13.6.10" + ], + "democratic": [ + "13.6.10" + ], + "democratic former bookseller": [ + "13.6.10" + ], + "deploys digital culture": [ + "13.7.12" + ], + "describe": [ + "13.6.4" + ], + "describe his situation": [ + "13.6.4" + ], + "describe post-digital cultures": [ + "13.6.5" + ], + "describes the messy": [ + "13.1.0" + ], + "description actually reminds": [ + "13.1.0" + ], + "design": [ + "13.5.1" + ], + "design systems": [ + "13.6.18" + ], + "designers choose media": [ + "13.6.5" + ], + "desire": [ + "13.4.3" + ], + "desktop publishing tools": [ + "13.3.6" + ], + "destroyed": [ + "13.6.17" + ], + "detail in evil": [ + "13.7.12" + ], + "detailed": [ + "13.1.11" + ], + "detailed reply": [ + "13.1.11" + ], + "detailed reply florian": [ + "13.1.11", + "13.1.11" + ], + "developed": [ + "13.6.15" + ], + "development": [ + "13.3.3", + "13.3.5" + ], + "dexter sinister": [ + "13.0.0" + ], + "dialogue": [ + "13.7.11" + ], + "diana taylor": [ + "13.1.4" + ], + "dieter": [ + "13.1.3" + ], + "difference or antagonism": [ + "13.1.4" + ], + "difficult": [ + "13.6.15", + "13.6.17", + "13.7.5" + ], + "difficult to distinguish": [ + "13.7.5" + ], + "digital": [ + "13.0.0", + "13.0.2", + "13.1.0", + "13.1.4", + "13.1.5", + "13.1.6", + "13.1.7", + "13.1.8", + "13.1.9", + "13.1.10", + "13.3.0", + "13.3.1", + "13.3.2", + "13.3.3", + "13.3.5", + "13.3.6", + "13.3.7", + "13.4.0", + "13.4.2", + "13.4.4", + "13.4.5", + "13.5.0", + "13.5.1", + "13.6.5", + "13.6.6", + "13.6.8", + "13.6.18", + "13.7.0", + "13.7.8", + "13.7.9", + "13.7.12", + "13.8.0" + ], + "digital aesthetics": [ + "13.0.0" + ], + "digital approach": [ + "13.3.3" + ], + "digital art": [ + "13.6.6" + ], + "digital audio": [ + "13.6.5" + ], + "digital audio cd": [ + "13.6.5" + ], + "digital audio workstations": [ + "13.6.5" + ], + "digital book": [ + "13.3.6" + ], + "digital book publishing": [ + "13.3.6", + "13.3.6" + ], + "digital brain damage": [ + "13.4.6" + ], + "digital broadly": [ + "13.3.3", + "13.3.5" + ], + "digital broadly understood": [ + "13.3.3" + ], + "digital cinema projection": [ + "13.6.5" + ], + "digital communication": [ + "13.7.8" + ], + "digital communication sphere": [ + "13.7.8", + "13.7.8" + ], + "digital computation": [ + "13.1.10" + ], + "digital computing": [ + "13.1.8", + "13.1.9" + ], + "digital craft production": [ + "13.0.2" + ], + "digital culture": [ + "13.7.12" + ], + "digital curation": [ + "13.6.6" + ], + "digital curation online": [ + "13.6.6" + ], + "digital design": [ + "13.5.0" + ], + "digital file": [ + "13.4.4", + "13.4.4" + ], + "digital file goes": [ + "13.4.4" + ], + "digital form": [ + "13.3.1" + ], + "digital hacker attitude": [ + "13.6.5" + ], + "digital humanities": [ + "13.3.0" + ], + "digital identity": [ + "13.6.18" + ], + "digital images": [ + "13.3.5" + ], + "digital information": [ + "13.6.5" + ], + "digital information systems": [ + "13.6.5", + "13.6.5" + ], + "digital information technology": [ + "13.6.5", + "13.6.5" + ], + "digital infrastructures": [ + "13.3.3", + "13.3.5" + ], + "digital jargon": [ + "13.7.12" + ], + "digital logistics": [ + "13.6.16" + ], + "digital low quality": [ + "13.6.5" + ], + "digital management": [ + "13.7.12" + ], + "digital management tools": [ + "13.7.12" + ], + "digital maoism": [ + "13.6.8" + ], + "digital maoism text": [ + "13.6.8", + "13.6.8" + ], + "digital media": [ + "13.1.4", + "13.3.0", + "13.3.6", + "13.4.0", + "13.5.0", + "13.6.5", + "13.8.0" + ], + "digital media technologies": [ + "13.6.5", + "13.6.5" + ], + "digital media transforms": [ + "13.3.6", + "13.3.6" + ], + "digital principles": [ + "13.1.9" + ], + "digital print blog": [ + "13.3.1" + ], + "digital processes": [ + "13.3.1" + ], + "digital publication": [ + "13.3.5" + ], + "digital publishing archive": [ + "13.3.1" + ], + "digital research conference": [ + "13.3.1" + ], + "digital research issue": [ + "13.1.4", + "13.1.9" + ], + "digital research panel": [ + "13.3.0", + "13.3.1" + ], + "digital revolution": [ + "13.5.0" + ], + "digital square": [ + "13.7.4", + "13.7.8", + "13.7.8" + ], + "digital subculture": [ + "13.6.5" + ], + "digital system": [ + "13.1.7", + "13.6.5" + ], + "digital systems": [ + "13.1.4" + ], + "digital technologies": [ + "13.3.7" + ], + "digital technology": [ + "13.1.0", + "13.6.5", + "13.8.0" + ], + "digital technology revolutions": [ + "13.1.0", + "13.1.0" + ], + "digital tended": [ + "13.3.7" + ], + "digital today": [ + "13.3.3", + "13.3.5" + ], + "digital tools": [ + "13.4.2" + ], + "digital trash dismissed": [ + "13.6.5" + ], + "digital understood": [ + "13.3.3", + "13.3.5" + ], + "digital was operative": [ + "13.3.7" + ], + "digital was understood": [ + "13.3.7" + ], + "digital writing system": [ + "13.6.5", + "13.6.5" + ], + "digitalization transforms knowledge": [ + "13.3.0" + ], + "digitally composed images": [ + "13.6.5" + ], + "digitized meta data": [ + "13.6.11", + "13.6.16", + "13.6.16" + ], + "dimension": [ + "13.0.0" + ], + "direct questions": [ + "13.3.5" + ], + "disavows daily experience": [ + "13.8.0" + ], + "disconnection": [ + "13.7.10" + ], + "discourse": [ + "13.7.6" + ], + "discourses": [ + "13.7.6" + ], + "discrete": [ + "13.3.3", + "13.3.5" + ], + "discrete notes": [ + "13.6.5" + ], + "discussed": [ + "13.6.10" + ], + "discussion": [ + "13.1.4", + "13.1.6", + "13.3.0", + "13.4.2" + ], + "discussion to nick": [ + "13.4.7" + ], + "discussion topic": [ + "13.1.4" + ], + "disdain": [ + "13.6.6" + ], + "disgruntled airline customer": [ + "13.6.11" + ], + "dismissing": [ + "13.6.7", + "13.7.2" + ], + "disquieting inability": [ + "13.7.10" + ], + "distant digital perfection": [ + "13.6.18" + ], + "distinguish": [ + "13.7.5" + ], + "distorted": [ + "13.1.5" + ], + "distribution": [ + "13.4.0", + "13.4.5" + ], + "distrust": [ + "13.7.6" + ], + "diverse workshop gathering": [ + "13.1.8", + "13.1.12" + ], + "diversity": [ + "13.6.14" + ], + "diversity of opinion": [ + "13.6.14" + ], + "diy": [ + "13.1.0" + ], + "diy agency": [ + "13.1.0" + ], + "diy university": [ + "13.5.1" + ], + "doing social media": [ + "13.3.6" + ], + "domenico": [ + "13.4.0", + "13.4.3" + ], + "domenico quaranta": [ + "13.4.0" + ], + "domus magazine": [ + "13.4.2" + ], + "doubtless leads directly": [ + "13.6.18" + ], + "download": [ + "13.4.1" + ], + "download link": [ + "13.4.1" + ], + "downloaded": [ + "13.4.4" + ], + "drafts": [ + "13.1.8", + "13.1.12" + ], + "drafts written": [ + "13.1.12" + ], + "draining the regime": [ + "13.7.11" + ], + "dynamics": [ + "13.6.7" + ], + "dynamics at play": [ + "13.6.7", + "13.7.2" + ], + "e-mail": [ + "13.6.16", + "13.7.8" + ], + "e-mail is nice": [ + "13.6.16" + ], + "earlier": [ + "13.1.3" + ], + "earlier posts": [ + "13.1.3" + ], + "easily touch scores": [ + "13.6.18" + ], + "echoing florian": [ + "13.1.9" + ], + "echoing florian comments": [ + "13.1.9" + ], + "economic realities": [ + "13.6.5" + ], + "economic upheavals driven": [ + "13.6.5" + ], + "edition of aprja": [ + "13.1.4" + ], + "editions": [ + "13.4.1", + "13.4.3", + "13.4.4" + ], + "editions books": [ + "13.4.4" + ], + "editions started": [ + "13.4.1" + ], + "editors": [ + "13.6.14" + ], + "editors and authors": [ + "13.6.12" + ], + "editors are conducting": [ + "13.6.14" + ], + "effective": [ + "13.6.10" + ], + "effective using software": [ + "13.3.5" + ], + "effectively repurposed": [ + "13.6.5" + ], + "effectively transform themselves": [ + "13.6.5" + ], + "effort in manipulating": [ + "13.4.5" + ], + "eglash": [ + "13.1.5" + ], + "eglash ethnomathematics": [ + "13.1.5" + ], + "egypt and mesopotamia": [ + "13.1.8" + ], + "einer theorie": [ + "13.6.0" + ], + "einer theorie der": [ + "13.6.0" + ], + "electricity": [ + "13.7.1" + ], + "electronic": [ + "13.4.0" + ], + "electronic cultural publishers": [ + "13.3.0" + ], + "electronic dog": [ + "13.6.18" + ], + "electronic health record": [ + "13.6.18" + ], + "electronic literature": [ + "13.4.0" + ], + "electronic literature collection": [ + "13.4.0", + "13.4.0" + ], + "electronic mediations": [ + "13.4.0" + ], + "electronica": [ + "13.8.0" + ], + "elegantly": [ + "13.7.7" + ], + "element": [ + "13.0.1" + ], + "email": [ + "13.6.1", + "13.6.3" + ], + "email**** pold": [ + "13.5.0" + ], + "emails": [ + "13.7.4" + ], + "embedded discourses attached": [ + "13.4.3" + ], + "embodied": [ + "13.1.5", + "13.1.8" + ], + "empirical research": [ + "13.6.5" + ], + "empirical study conducted": [ + "13.6.5" + ], + "employees to open": [ + "13.6.13" + ], + "empowered users negotiating": [ + "13.8.0" + ], + "empyre": [ + "13.1.3" + ], + "empyreans": [ + "13.2.0" + ], + "encryption": [ + "13.6.4" + ], + "end": [ + "13.1.6" + ], + "end of colonialism": [ + "13.1.6" + ], + "enemy": [ + "13.6.9" + ], + "enemy is google": [ + "13.6.8", + "13.6.9" + ], + "energy": [ + "13.7.11" + ], + "energy comes": [ + "13.7.11" + ], + "energy source": [ + "13.7.11" + ], + "enforce mandatory reporting": [ + "13.6.18" + ], + "enforcement": [ + "13.6.2" + ], + "engage": [ + "13.6.15" + ], + "english": [ + "13.4.4", + "13.6.0" + ], + "enhance": [ + "13.4.2" + ], + "enhance information exchange": [ + "13.4.2" + ], + "enjoy in english": [ + "13.4.4" + ], + "enjoyed": [ + "13.3.2", + "13.6.6" + ], + "enjoyed alessandros": [ + "13.3.2" + ], + "enjoyed alessandros opening": [ + "13.3.2" + ], + "enjoyed florian": [ + "13.6.6" + ], + "enjoyed florian cramer": [ + "13.6.6", + "13.6.6" + ], + "entire life": [ + "13.6.2" + ], + "environment": [ + "13.1.11" + ], + "enzensberger allowed": [ + "13.6.8" + ], + "enzensberger as satire": [ + "13.6.12" + ], + "enzensberger essay": [ + "13.6.6" + ], + "enzensberger ten": [ + "13.6.11" + ], + "enzensberger ten rules": [ + "13.6.11" + ], + "enzensberger text": [ + "13.6.7", + "13.7.2" + ], + "enzensberger who wrote": [ + "13.6.0" + ], + "enzensbergers": [ + "13.6.8" + ], + "enzensbergers text": [ + "13.6.8" + ], + "epistemological": [ + "13.2.0" + ], + "equally": [ + "13.1.10" + ], + "equally find": [ + "13.1.10" + ], + "era": [ + "13.6.15", + "13.6.17" + ], + "ergodic reading process": [ + "13.5.0" + ], + "eric statement": [ + "13.7.10" + ], + "espresso book machines": [ + "13.4.5" + ], + "essay": [ + "13.1.6", + "13.1.13", + "13.6.6", + "13.7.2" + ], + "essay and share": [ + "13.6.6" + ], + "essential": [ + "13.6.13" + ], + "essential fallacy": [ + "13.6.13" + ], + "etc.": [ + "13.0.2" + ], + "ethel": [ + "13.4.2" + ], + "ethel baraona pohl": [ + "13.4.2", + "13.4.2" + ], + "ethnomathematics": [ + "13.1.5" + ], + "europe": [ + "13.7.0" + ], + "europe and australia": [ + "13.4.4" + ], + "evolve": [ + "13.3.2" + ], + "exclusivity": [ + "13.6.14" + ], + "exemplary american psycho": [ + "13.4.7", + "13.4.7" + ], + "exfiltrate documents": [ + "13.6.18" + ], + "exhibition produced": [ + "13.4.1" + ], + "existing analogue": [ + "13.3.7" + ], + "existing analogue mediums": [ + "13.3.7", + "13.3.7" + ], + "existing media": [ + "13.3.2" + ], + "existing service disappears": [ + "13.6.18" + ], + "expanding surplus value": [ + "13.3.3", + "13.3.5" + ], + "expenses produced": [ + "13.4.1" + ], + "experience": [ + "13.4.3" + ], + "experienced similar": [ + "13.5.1" + ], + "experienced similar developments": [ + "13.5.1", + "13.5.1" + ], + "experiential": [ + "13.1.0" + ], + "experiment": [ + "13.4.3" + ], + "experimental aesthetic practices": [ + "13.3.0" + ], + "experimental practice dealing": [ + "13.3.5" + ], + "experimental practices aligned": [ + "13.3.3" + ], + "explaining": [ + "13.6.4" + ], + "exploiting specific qualities": [ + "13.6.5" + ], + "exploratory": [ + "13.1.11" + ], + "expression": [ + "13.1.9" + ], + "expression in western": [ + "13.1.8" + ], + "extraordinarily popular delusion": [ + "13.6.18" + ], + "eyes glued": [ + "13.7.7" + ], + "facebook": [ + "13.1.13", + "13.6.6", + "13.6.11" + ], + "facebook account": [ + "13.1.13" + ], + "facebook call themselves": [ + "13.6.0", + "13.6.11" + ], + "facilitate mass surveillance": [ + "13.1.9" + ], + "facing": [ + "13.8.0" + ], + "facing increasingly complex": [ + "13.6.18" + ], + "facing the future": [ + "13.8.0" + ], + "fact": [ + "13.6.14" + ], + "fact that faz": [ + "13.6.14" + ], + "factors that made": [ + "13.3.7" + ], + "fail ocr": [ + "13.6.16" + ], + "fairlight cmi audio": [ + "13.6.5" + ], + "fairness the postcard": [ + "13.6.3" + ], + "fallacy": [ + "13.6.13" + ], + "false reporting": [ + "13.6.18" + ], + "familiar": [ + "13.1.11" + ], + "family": [ + "13.6.4" + ], + "famous anonymous movement": [ + "13.6.5" + ], + "fantastic mez breeze": [ + "13.4.5" + ], + "fashioned spy novels": [ + "13.6.0" + ], + "fast": [ + "13.6.16" + ], + "fast and free": [ + "13.6.16" + ], + "faz": [ + "13.6.7", + "13.6.8", + "13.6.12", + "13.6.14", + "13.7.0", + "13.7.2" + ], + "faz editors": [ + "13.6.14" + ], + "faz printed": [ + "13.6.7", + "13.7.0", + "13.7.2" + ], + "february": [ + "13.2.0", + "13.3.0" + ], + "february topic": [ + "13.3.0" + ], + "felix": [ + "13.6.7", + "13.7.1", + "13.7.2", + "13.7.12" + ], + "felix stalder": [ + "13.6.7", + "13.7.2" + ], + "felix wrote": [ + "13.7.12" + ], + "felonies related": [ + "13.6.18" + ], + "felt": [ + "13.7.7" + ], + "ferro": [ + "13.1.3", + "13.2.0" + ], + "feuilleton": [ + "13.6.12" + ], + "fiction": [ + "13.1.6" + ], + "fill a hole": [ + "13.4.4" + ], + "film emulsion": [ + "13.6.5" + ], + "film photography": [ + "13.6.5" + ], + "film strip": [ + "13.6.5" + ], + "final printed": [ + "13.3.1" + ], + "final reconciliation": [ + "13.0.2" + ], + "final special event": [ + "13.3.1" + ], + "final visual rendering": [ + "13.3.1" + ], + "financial": [ + "13.6.15", + "13.6.17" + ], + "financial capital": [ + "13.6.15", + "13.6.17" + ], + "find": [ + "13.1.8", + "13.1.10", + "13.6.7", + "13.7.11" + ], + "find a form": [ + "13.7.11" + ], + "find terms": [ + "13.7.0" + ], + "find the internet": [ + "13.6.12" + ], + "find the provocations": [ + "13.7.2" + ], + "find their expression": [ + "13.1.8" + ], + "fingers": [ + "13.1.10" + ], + "finished": [ + "13.1.13" + ], + "flash art": [ + "13.4.0" + ], + "fleetingly": [ + "13.7.11" + ], + "fleetingly to mind": [ + "13.7.11" + ], + "florian": [ + "13.1.5", + "13.1.6", + "13.1.9", + "13.1.10", + "13.1.11", + "13.6.2", + "13.6.3", + "13.6.6", + "13.6.16", + "13.7.0", + "13.7.1", + "13.7.9", + "13.7.12" + ], + "florian comments": [ + "13.1.9" + ], + "florian cramer": [ + "13.1.4", + "13.1.10", + "13.2.0", + "13.6.6", + "13.6.16", + "13.7.0", + "13.7.1" + ], + "florian cramer essay": [ + "13.1.4" + ], + "florian cramer goes": [ + "13.3.3", + "13.3.5" + ], + "florian cramer wrote": [ + "13.1.10", + "13.1.10", + "13.6.16", + "13.6.16", + "13.7.0", + "13.7.0", + "13.7.1" + ], + "florian essay": [ + "13.7.2" + ], + "florian for making": [ + "13.6.2" + ], + "florian kuhlmann": [ + "13.7.9" + ], + "florian kuhlmann wrote": [ + "13.7.9", + "13.7.9" + ], + "florian point": [ + "13.1.9" + ], + "florian text": [ + "13.7.0", + "13.7.1" + ], + "florian text clarifies": [ + "13.7.0", + "13.7.1" + ], + "flux journal": [ + "13.6.5" + ], + "flux mailing list": [ + "13.6.5" + ], + "food pipeline contains": [ + "13.6.18" + ], + "force resting solely": [ + "13.6.18" + ], + "force the person": [ + "13.7.11" + ], + "forces that transform": [ + "13.7.12" + ], + "form": [ + "13.3.1", + "13.3.2", + "13.7.11" + ], + "form inputs etc": [ + "13.4.7" + ], + "form of association": [ + "13.7.11" + ], + "formal": [ + "13.5.0" + ], + "formal reflection taking": [ + "13.5.0", + "13.5.0" + ], + "formal systems": [ + "13.1.8" + ], + "forms": [ + "13.0.2" + ], + "found themselves engaged": [ + "13.8.0" + ], + "fraction growing faster": [ + "13.6.18" + ], + "frame analysis": [ + "13.3.3", + "13.3.5" + ], + "frank": [ + "13.6.12", + "13.6.14" + ], + "frank rieger": [ + "13.6.12" + ], + "frankfurter": [ + "13.6.0" + ], + "frankfurter allgemeine": [ + "13.6.0" + ], + "frankfurter allgemeine zeitung": [ + "13.6.0", + "13.6.0" + ], + "free": [ + "13.4.1", + "13.4.4", + "13.6.6", + "13.6.8", + "13.6.14", + "13.6.16", + "13.7.11" + ], + "free culture": [ + "13.6.8" + ], + "free culture sometimes": [ + "13.6.12" + ], + "free download": [ + "13.4.1" + ], + "free wifi access": [ + "13.6.11" + ], + "friedrich kittler called": [ + "13.3.3", + "13.3.5" + ], + "friends": [ + "13.7.8", + "13.7.9" + ], + "front power struggle": [ + "13.6.12" + ], + "frontlines": [ + "13.6.12" + ], + "frustrate data fusion": [ + "13.6.18" + ], + "fuck": [ + "13.6.13" + ], + "fuller and andrew": [ + "13.7.12" + ], + "fun by provocations": [ + "13.6.10" + ], + "function usually associated": [ + "13.6.5" + ], + "fundamental": [ + "13.7.7" + ], + "fundamental change": [ + "13.7.7" + ], + "funny": [ + "13.0.1" + ], + "funny how no-one": [ + "13.0.1" + ], + "fusion means operationally": [ + "13.6.18" + ], + "future": [ + "13.6.14", + "13.8.0" + ], + "gadgets at hand": [ + "13.7.4" + ], + "games": [ + "13.3.7" + ], + "gargantuan data operations": [ + "13.6.5" + ], + "gathering of artists": [ + "13.1.12" + ], + "geert": [ + "13.7.2" + ], + "geert lovink": [ + "13.5.1" + ], + "geert lovink institute": [ + "13.5.1" + ], + "geezer": [ + "13.7.5" + ], + "gender gaming communities": [ + "13.1.9" + ], + "gene youngblood": [ + "13.8.0" + ], + "gene youngblood reminded": [ + "13.8.0", + "13.8.0" + ], + "generation flash": [ + "13.0.0" + ], + "generosity of sharing": [ + "13.4.2" + ], + "geoff cox": [ + "13.5.0" + ], + "german": [ + "13.4.5", + "13.6.0", + "13.6.2", + "13.6.10" + ], + "ghostwriters' intervention": [ + "13.4.5" + ], + "giedion": [ + "13.7.10" + ], + "glitch aesthetics advocated": [ + "13.6.5" + ], + "glitch music": [ + "13.0.0" + ], + "glitch music defined": [ + "13.6.5" + ], + "global": [ + "13.1.6" + ], + "global computational": [ + "13.6.5" + ], + "global digital": [ + "13.1.6" + ], + "global digital networking": [ + "13.1.6", + "13.1.6", + "13.6.5" + ], + "global players": [ + "13.1.6", + "13.6.5" + ], + "global production chains": [ + "13.1.6", + "13.6.5" + ], + "global speculative scheme": [ + "13.6.11" + ], + "global surveillance": [ + "13.6.2" + ], + "good": [ + "13.1.11", + "13.6.10", + "13.6.14", + "13.6.15", + "13.6.17", + "13.7.4", + "13.7.8", + "13.7.9" + ], + "good to share": [ + "13.1.11" + ], + "google": [ + "13.6.8", + "13.6.9", + "13.6.12", + "13.6.14", + "13.6.16", + "13.6.17" + ], + "google accountable": [ + "13.6.14" + ], + "google closely monitor": [ + "13.5.0" + ], + "google mobile services": [ + "13.0.2", + "13.0.2" + ], + "google power": [ + "13.6.17" + ], + "google power consumption": [ + "13.6.17" + ], + "google represents": [ + "13.6.14" + ], + "google server": [ + "13.6.17" + ], + "google server farms": [ + "13.6.17", + "13.6.17" + ], + "google singularity": [ + "13.1.6" + ], + "google singularity university": [ + "13.1.6" + ], + "google streetview": [ + "13.6.16" + ], + "gov": [ + "13.6.13" + ], + "government": [ + "13.6.18" + ], + "government services": [ + "13.6.18" + ], + "government services worth": [ + "13.6.18" + ], + "gps coordinates": [ + "13.6.18" + ], + "gps driven tractors": [ + "13.6.18" + ], + "gratiskultur": [ + "13.6.8" + ], + "great": [ + "13.1.5", + "13.6.13", + "13.6.15", + "13.6.17" + ], + "great companion": [ + "13.7.2" + ], + "great companion reading": [ + "13.7.2" + ], + "great issue": [ + "13.1.5" + ], + "great motivator": [ + "13.6.13" + ], + "great power shifts": [ + "13.6.13" + ], + "great quality prints": [ + "13.4.5" + ], + "great social": [ + "13.6.15", + "13.6.17" + ], + "great social scientists": [ + "13.6.15", + "13.6.17" + ], + "greatly": [ + "13.1.5" + ], + "greatly distorted": [ + "13.1.5" + ], + "grey": [ + "13.7.12" + ], + "grey media age": [ + "13.7.12", + "13.7.12" + ], + "grey media deploys": [ + "13.7.12" + ], + "grid": [ + "13.7.1" + ], + "gross": [ + "13.4.0" + ], + "grounding": [ + "13.4.3" + ], + "grounding the conversation": [ + "13.4.3" + ], + "group": [ + "13.1.0", + "13.1.1", + "13.1.3", + "13.1.12" + ], + "group settled": [ + "13.1.0" + ], + "guant": [ + "13.6.4" + ], + "guild": [ + "13.6.13" + ], + "guild members": [ + "13.6.13" + ], + "hacking monopolism trilogy": [ + "13.3.0" + ], + "hand-write": [ + "13.6.1" + ], + "hand-write the information": [ + "13.6.1", + "13.6.3" + ], + "handle knowledge fields": [ + "13.3.6" + ], + "handmade film labs": [ + "13.0.0", + "13.1.6", + "13.6.5" + ], + "handmade production": [ + "13.6.5" + ], + "handwriting": [ + "13.6.16" + ], + "hangover of postmodernism": [ + "13.7.7" + ], + "health": [ + "13.6.18" + ], + "health measure": [ + "13.6.18" + ], + "hear": [ + "13.7.6" + ], + "hear about post-digital": [ + "13.7.6" + ], + "hegel called": [ + "13.7.7" + ], + "hegel called negative": [ + "13.7.7" + ], + "height": [ + "13.7.6" + ], + "hermetic academic": [ + "13.4.7" + ], + "hermetic academic backup": [ + "13.4.7", + "13.4.7" + ], + "hi michael thanks": [ + "13.4.7" + ], + "highly": [ + "13.6.12" + ], + "highly diverse workshop": [ + "13.1.12" + ], + "highly moble": [ + "13.6.12" + ], + "highly moble frontlines": [ + "13.6.12", + "13.6.12" + ], + "highly modernist project": [ + "13.3.3", + "13.3.5" + ], + "highly political issue": [ + "13.5.1" + ], + "historical": [ + "13.0.0", + "13.7.5" + ], + "historical configuration": [ + "13.3.7" + ], + "historical dimension": [ + "13.0.0" + ], + "historical perspective": [ + "13.7.5" + ], + "history": [ + "13.5.0", + "13.6.2", + "13.7.10" + ], + "history of ideas": [ + "13.6.2" + ], + "hme": [ + "13.6.10", + "13.7.1" + ], + "hold google": [ + "13.6.14" + ], + "hold google accountable": [ + "13.6.14", + "13.6.14" + ], + "hold surveillance data": [ + "13.6.18" + ], + "holocaust": [ + "13.6.16" + ], + "holy rites": [ + "13.6.13" + ], + "home": [ + "13.7.3", + "13.7.4" + ], + "home automation purposes": [ + "13.6.18" + ], + "home brew crypto": [ + "13.6.13" + ], + "home having lived": [ + "13.7.3" + ], + "homogenous": [ + "13.6.15", + "13.6.17" + ], + "hoping": [ + "13.3.2" + ], + "hoping the conversation": [ + "13.3.2" + ], + "hopkin work": [ + "13.6.6" + ], + "horizon": [ + "13.1.7" + ], + "horses": [ + "13.4.5" + ], + "hostile cpu": [ + "13.8.0" + ], + "hostile phase radar": [ + "13.8.0" + ], + "hours": [ + "13.1.13" + ], + "hours ago": [ + "13.1.13" + ], + "html byte count": [ + "13.6.18" + ], + "huge": [ + "13.4.5" + ], + "huge bunchs": [ + "13.4.5" + ], + "hui": [ + "13.1.8", + "13.1.10" + ], + "hui shi": [ + "13.1.8", + "13.1.10" + ], + "hui tzu": [ + "13.1.8", + "13.1.10" + ], + "human": [ + "13.7.6" + ], + "human connection": [ + "13.4.6" + ], + "human consciousness": [ + "13.8.0" + ], + "human genome project": [ + "13.8.0" + ], + "human readable documents": [ + "13.6.18" + ], + "human services": [ + "13.6.18" + ], + "humanities": [ + "13.4.0" + ], + "hybrid": [ + "13.2.0", + "13.3.0", + "13.3.1", + "13.3.6" + ], + "hybrid books": [ + "13.4.2" + ], + "hybrid bookwork": [ + "13.2.0", + "13.3.0", + "13.3.0" + ], + "hybrid publishing": [ + "13.3.0" + ], + "hybrid publishing lab": [ + "13.3.0", + "13.3.0", + "13.3.3", + "13.3.5", + "13.3.6", + "13.3.6" + ], + "hybrid publishing team": [ + "13.3.0", + "13.3.0" + ], + "ibm": [ + "13.6.16" + ], + "ibm punchcard systems": [ + "13.6.16" + ], + "idea": [ + "13.3.5" + ], + "ideas": [ + "13.6.2" + ], + "identifies": [ + "13.0.1" + ], + "ideological affirmation": [ + "13.1.0" + ], + "ignore": [ + "13.7.8" + ], + "illusory": [ + "13.7.7" + ], + "imageboard": [ + "13.6.5" + ], + "imageboard culture": [ + "13.6.5" + ], + "imageboard meme": [ + "13.6.5", + "13.6.5" + ], + "imageboard meme photo": [ + "13.6.5" + ], + "imageboard meme portrays": [ + "13.6.5" + ], + "imageboard meme suggests": [ + "13.6.5" + ], + "imagine": [ + "13.6.1", + "13.6.3" + ], + "immaterialism": [ + "13.1.0" + ], + "implications": [ + "13.1.7" + ], + "important": [ + "13.4.7" + ], + "impossible": [ + "13.6.10" + ], + "impossible to understand": [ + "13.7.7" + ], + "inability to organize": [ + "13.7.10" + ], + "incas": [ + "13.1.6" + ], + "incas practiced writing": [ + "13.1.6", + "13.1.8" + ], + "inch block letters": [ + "13.6.18" + ], + "include complex stuff": [ + "13.6.11" + ], + "includes book": [ + "13.4.2" + ], + "including artefacts": [ + "13.6.5" + ], + "including digital simulations": [ + "13.6.5" + ], + "including images": [ + "13.6.5" + ], + "income for performing": [ + "13.6.13" + ], + "increased profit drives": [ + "13.3.3", + "13.3.5", + "13.3.6" + ], + "independent publishing house": [ + "13.4.2" + ], + "indian": [ + "13.7.9" + ], + "indian phone": [ + "13.7.9" + ], + "indian phone centre": [ + "13.7.9", + "13.7.9" + ], + "individual": [ + "13.1.7" + ], + "individualists' revolution": [ + "13.7.4" + ], + "individuality and objectivity": [ + "13.1.8" + ], + "industrial": [ + "13.6.15", + "13.6.17" + ], + "inevitable linear progression": [ + "13.6.5" + ], + "influential media arts": [ + "13.4.0" + ], + "informal": [ + "13.1.11" + ], + "informal and exploratory": [ + "13.1.11" + ], + "information": [ + "13.4.3", + "13.6.1" + ], + "information about link": [ + "13.4.3" + ], + "information age": [ + "13.4.1" + ], + "information and send": [ + "13.6.1", + "13.6.3" + ], + "information science": [ + "13.6.5" + ], + "informed": [ + "13.4.3" + ], + "initial upheaval caused": [ + "13.6.5" + ], + "innovative practices": [ + "13.3.0" + ], + "inscribe workflow analysis": [ + "13.3.3", + "13.3.5" + ], + "inside the media": [ + "13.6.2" + ], + "installation ink created": [ + "13.5.0" + ], + "institute of network": [ + "13.4.3" + ], + "instruments": [ + "13.7.10" + ], + "instruments for abolishing": [ + "13.7.10" + ], + "integrated": [ + "13.7.8" + ], + "integrationist": [ + "13.7.6" + ], + "intellectual project": [ + "13.8.0" + ], + "intellectually": [ + "13.6.7", + "13.7.2" + ], + "intelligence": [ + "13.6.18" + ], + "intelligence sector": [ + "13.6.18" + ], + "intelligence trade": [ + "13.6.18" + ], + "interactive installation art": [ + "13.0.0" + ], + "interesting": [ + "13.1.4", + "13.3.3", + "13.3.5", + "13.3.6", + "13.4.1" + ], + "interesting discussion": [ + "13.1.4" + ], + "interesting discussion topic": [ + "13.1.4" + ], + "interests": [ + "13.7.10" + ], + "interests of strategic": [ + "13.7.10" + ], + "intermedia": [ + "13.7.6" + ], + "internet": [ + "13.6.0", + "13.6.5", + "13.6.8", + "13.6.11", + "13.6.12", + "13.6.14", + "13.7.6" + ], + "internet communication systems": [ + "13.6.11" + ], + "internet ogliopolies": [ + "13.6.12" + ], + "interoperable technology standards": [ + "13.6.18" + ], + "interstate highway bridge": [ + "13.6.18" + ], + "intervention": [ + "13.4.5" + ], + "introduce": [ + "13.2.0" + ], + "introduce the theme": [ + "13.2.0" + ], + "invisible digital integration": [ + "13.6.18" + ], + "involving binary zeroes": [ + "13.6.5" + ], + "issue": [ + "13.1.5" + ], + "issue of aprja": [ + "13.1.4" + ], + "issues": [ + "13.6.4" + ], + "italy": [ + "13.4.4" + ], + "january": [ + "13.6.4" + ], + "jaron": [ + "13.6.8" + ], + "jaron lanier": [ + "13.6.8" + ], + "jeffrey": [ + "13.0.0" + ], + "jeffrey shaw": [ + "13.0.0" + ], + "jeu de paume": [ + "13.3.0", + "13.3.1" + ], + "jeu deu paume": [ + "13.4.7", + "13.4.7" + ], + "john": [ + "13.6.6" + ], + "john hopkin": [ + "13.6.6" + ], + "john hopkin work": [ + "13.6.6" + ], + "joke": [ + "13.6.7", + "13.7.2", + "13.7.4", + "13.7.8", + "13.7.9" + ], + "jost": [ + "13.4.0" + ], + "jost gross": [ + "13.4.0" + ], + "journal": [ + "13.1.13" + ], + "journal will officially": [ + "13.1.13" + ], + "jules etienne marey": [ + "13.8.0" + ], + "julian oliver demonstrated": [ + "13.6.11" + ], + "kenneth goldsmith notes": [ + "13.6.5" + ], + "kent state": [ + "13.4.2" + ], + "kent state forum": [ + "13.4.2" + ], + "kept artificially alive": [ + "13.5.1" + ], + "keys implement abstractions": [ + "13.6.5" + ], + "kids are instinctively": [ + "13.6.4" + ], + "kim": [ + "13.1.13" + ], + "kim cascone": [ + "13.1.13", + "13.3.1" + ], + "kim cascone posted": [ + "13.1.13", + "13.1.13" + ], + "kind": [ + "13.4.7", + "13.6.14", + "13.6.15", + "13.6.17" + ], + "kind of campaign": [ + "13.6.14" + ], + "kind of number": [ + "13.4.7" + ], + "kindly invited": [ + "13.4.1" + ], + "kiss your youtube": [ + "13.7.1" + ], + "knew": [ + "13.6.4" + ], + "knew that history": [ + "13.7.7" + ], + "knotting systems": [ + "13.1.8" + ], + "knowledge": [ + "13.1.4", + "13.1.5", + "13.1.9", + "13.3.6" + ], + "knowledge production": [ + "13.3.0" + ], + "kuhlmann": [ + "13.7.8", + "13.7.9" + ], + "kuhlmann wrote": [ + "13.7.9" + ], + "kunsthal": [ + "13.1.12" + ], + "kursbuch": [ + "13.6.0" + ], + "kurzweil cyborg": [ + "13.4.6" + ], + "label": [ + "13.0.1" + ], + "language": [ + "13.4.7", + "13.6.10" + ], + "language system": [ + "13.5.0" + ], + "lanier": [ + "13.6.8" + ], + "large housecat": [ + "13.6.6" + ], + "larger picture": [ + "13.6.2" + ], + "late 1970s": [ + "13.3.3", + "13.3.5" + ], + "late 20th century": [ + "13.3.3", + "13.3.5", + "13.3.6" + ], + "late peter bernstein": [ + "13.6.18" + ], + "late responding": [ + "13.4.6" + ], + "laugh": [ + "13.7.8" + ], + "law": [ + "13.6.2" + ], + "law enforcement": [ + "13.6.2" + ], + "lawmakers zero privacy": [ + "13.6.18" + ], + "layered process affecting": [ + "13.5.0" + ], + "ldr vol.": [ + "13.8.0" + ], + "lea": [ + "13.8.0" + ], + "lea volume": [ + "13.8.0" + ], + "lead": [ + "13.1.8" + ], + "lead to boolean": [ + "13.1.9" + ], + "learn": [ + "13.4.2", + "13.4.7" + ], + "learning": [ + "13.6.13" + ], + "learning basics": [ + "13.6.13" + ], + "learning to read": [ + "13.6.13" + ], + "leaves the unwashed": [ + "13.6.13" + ], + "lecturer": [ + "13.1.3" + ], + "left": [ + "13.6.0" + ], + "left university humanities": [ + "13.5.1", + "13.5.1" + ], + "les liens invisibles": [ + "13.3.1" + ], + "les liens invisibles'": [ + "13.3.1" + ], + "letters": [ + "13.7.8" + ], + "leuphana": [ + "13.3.0" + ], + "leuphana university": [ + "13.3.0", + "13.3.0" + ], + "leuphana university lüneburg": [ + "13.3.0", + "13.3.0" + ], + "level income": [ + "13.6.13" + ], + "levels": [ + "13.3.6" + ], + "libraries": [ + "13.4.4" + ], + "lichty": [ + "13.2.0" + ], + "life": [ + "13.6.2" + ], + "limited battery power": [ + "13.6.5" + ], + "limited configuration": [ + "13.1.4" + ], + "limited vinyl editions": [ + "13.6.5" + ], + "linear nor straigh": [ + "13.5.0" + ], + "linguistic programming": [ + "13.7.12" + ], + "link": [ + "13.1.1", + "13.1.3", + "13.4.1", + "13.4.3", + "13.4.4" + ], + "link art center": [ + "13.4.1", + "13.4.1" + ], + "link center": [ + "13.4.1", + "13.4.1" + ], + "link editions": [ + "13.4.1", + "13.4.1", + "13.4.3", + "13.4.4", + "13.4.4" + ], + "link editions books": [ + "13.4.4", + "13.4.4" + ], + "link editions publishes": [ + "13.4.4" + ], + "link editions series": [ + "13.4.0" + ], + "link editions started": [ + "13.4.1" + ], + "linked": [ + "13.1.3", + "13.1.12" + ], + "linked and cited": [ + "13.1.12" + ], + "list": [ + "13.1.8", + "13.6.3" + ], + "listen": [ + "13.4.7" + ], + "literacy": [ + "13.6.13" + ], + "literally": [ + "13.1.10" + ], + "literary": [ + "13.4.5" + ], + "literary trojan": [ + "13.4.5" + ], + "literary trojan horses": [ + "13.4.5" + ], + "literati produced": [ + "13.7.7" + ], + "literature": [ + "13.4.0", + "13.4.4", + "13.5.0" + ], + "literature affected": [ + "13.5.0" + ], + "live": [ + "13.6.15" + ], + "lived": [ + "13.7.3", + "13.7.4" + ], + "ll admit responsibility": [ + "13.6.3" + ], + "local mail client": [ + "13.6.11" + ], + "logging": [ + "13.6.2" + ], + "logging all mail": [ + "13.6.2" + ], + "logic": [ + "13.1.8", + "13.1.9", + "13.1.10" + ], + "logic and digital": [ + "13.1.8" + ], + "logistics": [ + "13.6.16" + ], + "lone koefoed hansen": [ + "13.5.0" + ], + "long": [ + "13.1.7", + "13.7.1", + "13.7.4" + ], + "long project": [ + "13.1.7" + ], + "long time": [ + "13.7.0", + "13.7.1" + ], + "loosely metaphorical sense": [ + "13.6.5" + ], + "los angeles": [ + "13.5.0" + ], + "lot": [ + "13.4.3" + ], + "lots": [ + "13.4.2" + ], + "love to wake": [ + "13.6.12" + ], + "lovink institute": [ + "13.5.1" + ], + "low-tech digital": [ + "13.0.0" + ], + "low-tech digital aesthetics": [ + "13.0.0" + ], + "lowliest internet user": [ + "13.6.18" + ], + "luddite digital withdrawal": [ + "13.6.5" + ], + "luddite geezer": [ + "13.7.5" + ], + "ludovico": [ + "13.3.0" + ], + "lukas": [ + "13.4.6" + ], + "lukas jost": [ + "13.4.0" + ], + "lukas jost gross": [ + "13.2.0", + "13.4.0", + "13.4.0" + ], + "machine readable documents": [ + "13.6.18" + ], + "magazine": [ + "13.4.2" + ], + "mail": [ + "13.6.2", + "13.6.11", + "13.6.16" + ], + "mail address books": [ + "13.6.11" + ], + "mail for law": [ + "13.6.2" + ], + "mail meta": [ + "13.6.16" + ], + "mail meta data": [ + "13.6.11" + ], + "main book collections": [ + "13.4.1" + ], + "make": [ + "13.0.0", + "13.4.1", + "13.4.4", + "13.4.7", + "13.6.8", + "13.6.13", + "13.6.18" + ], + "make a book": [ + "13.4.7" + ], + "make money": [ + "13.4.1" + ], + "make sense": [ + "13.0.0", + "13.4.4" + ], + "makes": [ + "13.7.0", + "13.7.6", + "13.7.12" + ], + "makes no sense": [ + "13.7.0", + "13.7.12" + ], + "makes no suggestions": [ + "13.7.6" + ], + "makes sense": [ + "13.7.0", + "13.7.1" + ], + "making": [ + "13.3.5", + "13.6.2" + ], + "making the translation": [ + "13.6.2" + ], + "making us stupid": [ + "13.4.6" + ], + "management": [ + "13.7.12" + ], + "mandatory reporting regime": [ + "13.6.18" + ], + "manegerial audit culture": [ + "13.7.12" + ], + "manipulating huge": [ + "13.4.5" + ], + "manipulating huge bunchs": [ + "13.4.5", + "13.4.5" + ], + "mankind": [ + "13.7.10" + ], + "mankind possessed": [ + "13.7.10" + ], + "manner commercial firms": [ + "13.6.18" + ], + "manovich": [ + "13.3.3", + "13.3.5" + ], + "manovich argues alan": [ + "13.3.5" + ], + "manovich argument": [ + "13.3.3", + "13.3.5" + ], + "manovich argument found": [ + "13.3.3" + ], + "manovich lonm terms": [ + "13.3.3", + "13.3.5" + ], + "maoism": [ + "13.6.8" + ], + "maoism text": [ + "13.6.8" + ], + "maoism text showed": [ + "13.6.8" + ], + "map i presented": [ + "13.0.2" + ], + "marginal critical practice": [ + "13.0.2" + ], + "marvelous resource": [ + "13.8.0" + ], + "mathematics": [ + "13.1.5" + ], + "mathew fuller": [ + "13.7.12" + ], + "matter": [ + "13.1.5", + "13.1.12", + "13.6.17" + ], + "max": [ + "13.0.0" + ], + "mayas": [ + "13.1.6" + ], + "mayas and incas": [ + "13.1.6" + ], + "meaning": [ + "13.7.3", + "13.7.4" + ], + "meaningful register beyond": [ + "13.3.3", + "13.3.5" + ], + "means keeping": [ + "13.6.18" + ], + "meant": [ + "13.0.2" + ], + "mechanical typewriter": [ + "13.6.5" + ], + "mechanization": [ + "13.7.10" + ], + "mechanization takes command": [ + "13.7.10", + "13.7.10" + ], + "media": [ + "13.1.0", + "13.1.3", + "13.1.12", + "13.3.0", + "13.3.2", + "13.3.3", + "13.3.5", + "13.3.6", + "13.4.0", + "13.4.4", + "13.4.6", + "13.5.0", + "13.5.1", + "13.6.0", + "13.6.5", + "13.7.6", + "13.7.12" + ], + "media activist": [ + "13.6.11" + ], + "media activist culture": [ + "13.6.11" + ], + "media aesthetics": [ + "13.4.0" + ], + "media after digital": [ + "13.1.0" + ], + "media artist": [ + "13.7.11" + ], + "media arts practices": [ + "13.4.0" + ], + "media arts programme": [ + "13.6.5" + ], + "media deploys digital": [ + "13.7.12" + ], + "media reader": [ + "13.6.0" + ], + "media realm": [ + "13.6.2" + ], + "media related": [ + "13.5.0" + ], + "media studies": [ + "13.1.0", + "13.1.3", + "13.1.12", + "13.1.12", + "13.3.0", + "13.3.5", + "13.4.6", + "13.4.6" + ], + "media studies people": [ + "13.1.8", + "13.1.12", + "13.1.12" + ], + "media/contemporary art contexts": [ + "13.4.3" + ], + "mediated application launch": [ + "13.6.18" + ], + "mediated dialogue": [ + "13.7.11" + ], + "mediated experiences": [ + "13.3.7" + ], + "medium": [ + "13.3.2", + "13.3.3", + "13.3.5", + "13.3.6", + "13.3.7" + ], + "mediums": [ + "13.3.7" + ], + "medosch": [ + "13.6.9", + "13.6.17" + ], + "medosch wrote": [ + "13.6.9", + "13.6.17" + ], + "meet": [ + "13.7.4", + "13.7.8", + "13.7.9" + ], + "megastrange": [ + "13.6.10" + ], + "members": [ + "13.6.13" + ], + "meme image": [ + "13.6.5" + ], + "meme plays easily": [ + "13.6.6" + ], + "mentioned diana taylor": [ + "13.1.6" + ], + "mercedes": [ + "13.3.0", + "13.3.6" + ], + "mercedes bunz": [ + "13.3.0" + ], + "merritt kopa lim": [ + "13.1.9" + ], + "message": [ + "13.6.3", + "13.6.4" + ], + "message use poetry": [ + "13.6.4" + ], + "messy and paradoxical": [ + "13.1.0" + ], + "messy situation bears": [ + "13.3.6" + ], + "meta": [ + "13.6.16" + ], + "meta data": [ + "13.6.16" + ], + "metaphorically describe post": [ + "13.6.5" + ], + "mez": [ + "13.0.1" + ], + "mez breeze": [ + "13.4.5" + ], + "mez breeze blog": [ + "13.4.5" + ], + "micha": [ + "13.1.5", + "13.1.7", + "13.1.8", + "13.1.9" + ], + "michael": [ + "13.0.2", + "13.1.1", + "13.1.3", + "13.1.12", + "13.3.1", + "13.4.1", + "13.4.4", + "13.4.7" + ], + "michael cited": [ + "13.1.12" + ], + "michael dieter": [ + "13.1.0", + "13.1.3", + "13.1.12", + "13.4.6" + ], + "michael kindly": [ + "13.4.1" + ], + "michael kindly invited": [ + "13.4.1", + "13.4.1" + ], + "mind": [ + "13.7.11" + ], + "mind the piece": [ + "13.6.2" + ], + "mindful": [ + "13.7.10" + ], + "mindful disconnection": [ + "13.7.10" + ], + "misrepresentation": [ + "13.6.18" + ], + "misrepresentation means": [ + "13.6.18" + ], + "misrepresentation means hiding": [ + "13.6.18" + ], + "misrepresentation means putting": [ + "13.6.18" + ], + "misrepresentation means swapping": [ + "13.6.18" + ], + "missed": [ + "13.1.1" + ], + "mit": [ + "13.0.0" + ], + "mix oil paint": [ + "13.6.5" + ], + "mnemonic systems": [ + "13.1.8" + ], + "moazzam": [ + "13.6.4" + ], + "moazzam begg": [ + "13.6.4" + ], + "mobil": [ + "13.7.8" + ], + "mobile apps": [ + "13.6.5" + ], + "mobile computing": [ + "13.6.5" + ], + "mobile phone": [ + "13.6.11" + ], + "moble": [ + "13.6.12" + ], + "moble frontlines": [ + "13.6.12" + ], + "mode of production": [ + "13.6.14" + ], + "model": [ + "13.4.3", + "13.6.14" + ], + "models generate information": [ + "13.6.18" + ], + "modes": [ + "13.6.15" + ], + "modes of production": [ + "13.6.15" + ], + "moment": [ + "13.3.7" + ], + "moment the self-organisation": [ + "13.7.4" + ], + "moments": [ + "13.3.7" + ], + "month": [ + "13.1.4", + "13.2.0" + ], + "month theme": [ + "13.2.0" + ], + "moral": [ + "13.6.9" + ], + "morozov locked": [ + "13.4.6" + ], + "move": [ + "13.4.3" + ], + "movement": [ + "13.0.0", + "13.1.6" + ], + "msp": [ + "13.0.0" + ], + "multiple": [ + "13.3.7" + ], + "multiple moments": [ + "13.3.7" + ], + "multitude": [ + "13.6.12" + ], + "multitude of oppinions": [ + "13.6.12" + ], + "murray": [ + "13.2.0" + ], + "music": [ + "13.0.0" + ], + "music journal": [ + "13.0.0" + ], + "musician kim cascone": [ + "13.6.5" + ], + "mutation of publishing": [ + "13.3.0" + ], + "naive": [ + "13.6.15" + ], + "naive versions": [ + "13.6.15" + ], + "namo": [ + "13.6.4" + ], + "namo bay": [ + "13.6.4" + ], + "national strategy": [ + "13.6.18" + ], + "natural resources depends": [ + "13.6.5" + ], + "nearly-unreadable handwriting": [ + "13.6.16" + ], + "necessities' like phones": [ + "13.7.2" + ], + "negative dialectic": [ + "13.7.7" + ], + "negative mirror image": [ + "13.6.5" + ], + "negotiable abstract space": [ + "13.3.1" + ], + "neither predictable nor": [ + "13.6.18" + ], + "net.art element": [ + "13.0.1" + ], + "nettime": [ + "13.6.1" + ], + "nettime via postcard": [ + "13.6.1", + "13.6.1", + "13.6.3", + "13.6.3" + ], + "network cultural": [ + "13.1.0" + ], + "network cultural experimentation": [ + "13.1.0" + ], + "network culture": [ + "13.5.1" + ], + "network cultures": [ + "13.4.3" + ], + "network cultures theory": [ + "13.4.3", + "13.4.3" + ], + "network surveillance systems": [ + "13.6.18" + ], + "networking practices": [ + "13.6.5" + ], + "neural": [ + "13.0.0" + ], + "neuro linguistic": [ + "13.7.12" + ], + "neuro linguistic programming": [ + "13.7.12", + "13.7.12" + ], + "neutrally": [ + "13.6.14" + ], + "newer technologies": [ + "13.6.7", + "13.7.2" + ], + "newer technologies people": [ + "13.6.7", + "13.7.2" + ], + "newspaper": [ + "13.1.12", + "13.6.14" + ], + "newspaper based": [ + "13.1.12" + ], + "newspaper publication": [ + "13.3.1" + ], + "newspaper series": [ + "13.5.0" + ], + "nice": [ + "13.6.16" + ], + "nice introduction": [ + "13.3.1" + ], + "nick": [ + "13.4.7", + "13.6.7" + ], + "nick carr": [ + "13.4.7" + ], + "nick carr etc": [ + "13.4.7" + ], + "nick herbert responded": [ + "13.8.0" + ], + "nlp": [ + "13.7.12" + ], + "nlp type": [ + "13.7.12" + ], + "nlp type psychology": [ + "13.7.12", + "13.7.12" + ], + "no-one": [ + "13.0.1" + ], + "no-one identifies": [ + "13.0.1" + ], + "nominal delivery draft": [ + "13.6.18" + ], + "non-western": [ + "13.1.5" + ], + "non-western culture": [ + "13.1.5" + ], + "non-zero sum": [ + "13.3.7" + ], + "nor ideological affirmation": [ + "13.1.0" + ], + "notable politician speaks": [ + "13.6.0" + ], + "notching personal bests": [ + "13.6.18" + ], + "notion": [ + "13.0.2", + "13.7.1" + ], + "novel _breakpoint_ centered": [ + "13.6.18" + ], + "nsa": [ + "13.6.16" + ], + "number": [ + "13.8.0" + ], + "n’t": [ + "13.3.6" + ], + "n’t necessarily": [ + "13.0.2" + ], + "obey": [ + "13.7.11" + ], + "object regularly erupt": [ + "13.2.0" + ], + "objectivity that lead": [ + "13.1.8" + ], + "observe": [ + "13.6.18" + ], + "observed data": [ + "13.6.18" + ], + "observing": [ + "13.6.14" + ], + "obvious": [ + "13.4.7" + ], + "obvious pharmacological dimensions": [ + "13.4.6" + ], + "occupied": [ + "13.6.16" + ], + "occupy movement": [ + "13.0.0" + ], + "offer": [ + "13.6.7", + "13.7.2" + ], + "offer intellectually": [ + "13.6.7" + ], + "official intelligence agencies": [ + "13.6.18" + ], + "officially": [ + "13.1.13" + ], + "officially announced": [ + "13.1.13" + ], + "officially be published": [ + "13.1.13" + ], + "offline": [ + "13.6.2" + ], + "offline romanticism": [ + "13.6.2", + "13.7.2" + ], + "older rant": [ + "13.6.8" + ], + "olia lialina research": [ + "13.5.1" + ], + "online": [ + "13.4.4", + "13.6.3" + ], + "online banking": [ + "13.6.3" + ], + "online free tools": [ + "13.3.1" + ], + "open": [ + "13.4.3", + "13.7.0" + ], + "open pgp": [ + "13.7.0" + ], + "open source": [ + "13.6.13" + ], + "open source celebrities": [ + "13.6.13" + ], + "open source platform": [ + "13.0.2" + ], + "opening": [ + "13.3.2" + ], + "opening points": [ + "13.3.2" + ], + "operative": [ + "13.3.7" + ], + "opinion": [ + "13.6.14" + ], + "oppinions": [ + "13.6.12" + ], + "opposition": [ + "13.7.6" + ], + "opposition or refusal": [ + "13.7.6" + ], + "optimized energy source": [ + "13.7.11", + "13.7.11" + ], + "organise oneself": [ + "13.7.4" + ], + "organize": [ + "13.7.10" + ], + "original intention": [ + "13.6.5" + ], + "original physical phenomenon": [ + "13.6.5" + ], + "otherwise chaotic iron": [ + "13.6.5" + ], + "outbound traffic marks": [ + "13.6.18" + ], + "overuse": [ + "13.6.6" + ], + "own apparent subject": [ + "13.1.4", + "13.1.9" + ], + "own embodied practices": [ + "13.1.6", + "13.1.8" + ], + "own formulation": [ + "13.1.4" + ], + "own intelligence capabilities": [ + "13.6.18" + ], + "own polar opposite": [ + "13.6.5" + ], + "own position starts": [ + "13.1.9" + ], + "own preferred view": [ + "13.0.0" + ], + "paints": [ + "13.7.6" + ], + "paper": [ + "13.6.12" + ], + "paper and pixels": [ + "13.3.0" + ], + "papers": [ + "13.1.12" + ], + "paradoxical condition": [ + "13.1.0" + ], + "parallel university": [ + "13.5.1" + ], + "paris and los": [ + "13.5.0" + ], + "part": [ + "13.6.18" + ], + "participants": [ + "13.1.10" + ], + "participatory information technology": [ + "13.5.0" + ], + "particular historical configuration": [ + "13.3.7" + ], + "past": [ + "13.7.7" + ], + "pathetic": [ + "13.6.10" + ], + "pathetic social": [ + "13.6.10" + ], + "pathetic social democratic": [ + "13.6.10" + ], + "patrick": [ + "13.2.0", + "13.7.6", + "13.7.7" + ], + "patrick lichty": [ + "13.2.0" + ], + "paul marsh": [ + "13.6.18" + ], + "paul wouters": [ + "13.6.18" + ], + "paul wouters makes": [ + "13.6.18" + ], + "paume in paris": [ + "13.4.7" + ], + "paying close attention": [ + "13.7.11" + ], + "payment system": [ + "13.6.11" + ], + "pending design decisions": [ + "13.6.18" + ], + "people": [ + "13.1.12", + "13.4.4", + "13.6.7", + "13.7.3", + "13.7.4", + "13.7.8", + "13.7.9" + ], + "people and socitey": [ + "13.7.8", + "13.7.9" + ], + "perfect existence regardless": [ + "13.8.0" + ], + "perfect finite conditions": [ + "13.8.0" + ], + "performed": [ + "13.6.10" + ], + "performing the holy": [ + "13.6.13" + ], + "person": [ + "13.7.5", + "13.7.11" + ], + "person and goods": [ + "13.7.11" + ], + "person of age": [ + "13.7.5" + ], + "personal cloud": [ + "13.3.7" + ], + "personal computer systems": [ + "13.6.5" + ], + "personal data": [ + "13.6.16", + "13.6.18" + ], + "personal health information": [ + "13.6.18" + ], + "perspective": [ + "13.7.5" + ], + "peter weibel pointed": [ + "13.8.0" + ], + "pgp": [ + "13.7.0" + ], + "pharmacological": [ + "13.4.6" + ], + "pharmacological character": [ + "13.4.6" + ], + "phd": [ + "13.5.0" + ], + "phd dissertation": [ + "13.5.0" + ], + "phd on relations": [ + "13.5.0" + ], + "philosopher": [ + "13.1.10" + ], + "philosopher like hui": [ + "13.1.10" + ], + "phone": [ + "13.6.11" + ], + "physical matter": [ + "13.6.5" + ], + "piet zwart institute": [ + "13.6.5" + ], + "pitfalls of digitalization": [ + "13.6.11" + ], + "pity": [ + "13.6.8" + ], + "place": [ + "13.7.8", + "13.7.9" + ], + "place to meet": [ + "13.7.4", + "13.7.8", + "13.7.9" + ], + "placing": [ + "13.7.6" + ], + "platform": [ + "13.6.9" + ], + "platforms": [ + "13.4.1" + ], + "play": [ + "13.6.7" + ], + "playing ball": [ + "13.6.18" + ], + "pleasures": [ + "13.7.3", + "13.7.4" + ], + "plenty": [ + "13.6.12" + ], + "plenty of debates": [ + "13.6.12" + ], + "plug": [ + "13.6.10" + ], + "pod": [ + "13.4.3", + "13.4.5" + ], + "pod and ebooks": [ + "13.4.3" + ], + "poet": [ + "13.6.8" + ], + "poetry": [ + "13.6.4" + ], + "poetry for encryption": [ + "13.6.4" + ], + "point": [ + "13.1.9", + "13.3.2", + "13.6.8" + ], + "point quickly": [ + "13.4.6" + ], + "pointing": [ + "13.3.7" + ], + "points": [ + "13.3.2" + ], + "political": [ + "13.1.8" + ], + "political economy concerns": [ + "13.3.0" + ], + "politics": [ + "13.1.4" + ], + "popular iconography pioneered": [ + "13.6.5" + ], + "popular smartphone apps": [ + "13.6.5" + ], + "popular workflow apps": [ + "13.7.12" + ], + "posited": [ + "13.7.6" + ], + "position": [ + "13.7.0" + ], + "possessed": [ + "13.7.10" + ], + "post": [ + "13.3.3", + "13.4.6" + ], + "post lukas": [ + "13.4.6" + ], + "post-digital": [ + "13.0.0", + "13.0.2", + "13.1.0", + "13.1.1", + "13.1.3", + "13.1.4", + "13.1.6", + "13.1.8", + "13.1.9", + "13.1.10", + "13.1.12", + "13.3.0", + "13.3.1", + "13.3.3", + "13.3.5", + "13.3.7", + "13.4.5", + "13.4.6", + "13.5.0", + "13.5.1", + "13.6.5", + "13.6.6", + "13.7.0", + "13.7.1", + "13.7.6" + ], + "post-digital 1995-2004": [ + "13.0.0" + ], + "post-digital 1995-2004 interactive": [ + "13.0.0" + ], + "post-digital 2005-2014": [ + "13.0.0" + ], + "post-digital aesthetics": [ + "13.6.5" + ], + "post-digital approaches": [ + "13.3.1" + ], + "post-digital aspires": [ + "13.3.1" + ], + "post-digital brain": [ + "13.4.6" + ], + "post-digital brain damage": [ + "13.4.6" + ], + "post-digital condition": [ + "13.1.6" + ], + "post-digital culture": [ + "13.5.1" + ], + "post-digital cultures": [ + "13.1.6" + ], + "post-digital essay": [ + "13.6.6" + ], + "post-digital is pointing": [ + "13.3.7" + ], + "post-digital media": [ + "13.6.5" + ], + "post-digital media products": [ + "13.6.5" + ], + "post-digital opens": [ + "13.0.2" + ], + "post-digital print": [ + "13.3.0", + "13.3.1", + "13.5.1" + ], + "post-digital print blog": [ + "13.3.1" + ], + "post-digital publishing": [ + "13.2.0", + "13.3.1" + ], + "post-digital publishing archive": [ + "13.3.1" + ], + "post-digital publishing false": [ + "13.2.0" + ], + "post-digital research": [ + "13.1.0", + "13.1.1", + "13.1.3", + "13.1.4", + "13.3.1" + ], + "post-digital research conference": [ + "13.3.1" + ], + "post-digital research group": [ + "13.1.0", + "13.1.1", + "13.1.3" + ], + "post-digital research issue": [ + "13.1.4", + "13.1.9" + ], + "post-digital research newspaper": [ + "13.3.1" + ], + "post-digital research panel": [ + "13.3.1" + ], + "post-digital writing": [ + "13.1.9", + "13.6.5" + ], + "post-digital writing group": [ + "13.1.9" + ], + "post-ing": [ + "13.7.6" + ], + "post-ism paints": [ + "13.7.6" + ], + "post-modemism": [ + "13.0.1" + ], + "post-postist": [ + "13.7.6" + ], + "postal mail": [ + "13.6.11", + "13.6.16" + ], + "postal mail meta": [ + "13.6.16" + ], + "postal service": [ + "13.6.2" + ], + "postal service logging": [ + "13.6.2", + "13.6.2" + ], + "postcard": [ + "13.6.1", + "13.6.3" + ], + "postcard and pencil": [ + "13.6.16" + ], + "postcard suggestion": [ + "13.6.3", + "13.6.3" + ], + "postcolonial practices": [ + "13.1.6" + ], + "postcolonial theory": [ + "13.7.7" + ], + "postcolonialism": [ + "13.1.5" + ], + "postdigital": [ + "13.8.0" + ], + "postdigital analogue": [ + "13.8.0" + ], + "postdigital analogue points": [ + "13.8.0" + ], + "posted": [ + "13.1.13" + ], + "posting a translation": [ + "13.6.3" + ], + "postism is decadent": [ + "13.7.7" + ], + "postmedia": [ + "13.4.0" + ], + "posts": [ + "13.1.3" + ], + "posture": [ + "13.0.1" + ], + "poverty level": [ + "13.6.13" + ], + "poverty level income": [ + "13.6.13", + "13.6.13" + ], + "power": [ + "13.6.7", + "13.6.18", + "13.7.10" + ], + "power concentrations": [ + "13.7.11" + ], + "power dynamics": [ + "13.7.2" + ], + "power source": [ + "13.7.11" + ], + "powerful": [ + "13.7.0", + "13.7.12" + ], + "powerful forces": [ + "13.7.12" + ], + "predict future happiness": [ + "13.6.18" + ], + "preempt": [ + "13.6.15" + ], + "preempt any questions": [ + "13.6.15", + "13.6.17" + ], + "prefer designing posters": [ + "13.6.5" + ], + "presented": [ + "13.1.4" + ], + "pretty dry ground": [ + "13.5.0" + ], + "primarily aesthetically": [ + "13.7.0" + ], + "primary power source": [ + "13.7.11", + "13.7.11" + ], + "principles": [ + "13.1.9" + ], + "principles of similarity": [ + "13.8.0" + ], + "print": [ + "13.3.0", + "13.3.1", + "13.4.5", + "13.5.1" + ], + "print media": [ + "13.5.1" + ], + "print on demand": [ + "13.4.5" + ], + "print publishing": [ + "13.2.0", + "13.5.1" + ], + "print publishing processes": [ + "13.2.0", + "13.2.0" + ], + "printed": [ + "13.4.2", + "13.6.7", + "13.7.2" + ], + "printed archives suggests": [ + "13.2.0" + ], + "printed book": [ + "13.2.0", + "13.4.2" + ], + "printed newspapers shift": [ + "13.6.5" + ], + "printing postcards": [ + "13.6.6" + ], + "printing press constitute": [ + "13.6.5" + ], + "privacy": [ + "13.6.18" + ], + "private conversation": [ + "13.6.18" + ], + "private intelligence": [ + "13.6.18" + ], + "private sector": [ + "13.6.18" + ], + "private sector acquisition": [ + "13.6.18" + ], + "privatistic": [ + "13.6.10" + ], + "problem": [ + "13.7.11" + ], + "processes": [ + "13.3.1" + ], + "producing books": [ + "13.3.6", + "13.3.6" + ], + "producing books collectively": [ + "13.3.6" + ], + "producing content": [ + "13.4.1" + ], + "production": [ + "13.6.14", + "13.6.15", + "13.6.17" + ], + "profound material reformation": [ + "13.2.0" + ], + "programmable software synthesis": [ + "13.6.5" + ], + "project": [ + "13.1.7" + ], + "projects": [ + "13.4.0" + ], + "promise": [ + "13.7.7" + ], + "promise of fundamental": [ + "13.7.7" + ], + "propositions": [ + "13.7.6" + ], + "protect": [ + "13.7.11" + ], + "proves its relevance": [ + "13.0.0" + ], + "providing globalised distribution": [ + "13.0.2" + ], + "provocations": [ + "13.6.7" + ], + "provocations basically": [ + "13.6.7", + "13.7.2" + ], + "provocations basically reasonable": [ + "13.6.7", + "13.7.2", + "13.7.2" + ], + "prudent legal strategy": [ + "13.6.18" + ], + "psycho by huff": [ + "13.4.7" + ], + "psychology": [ + "13.7.12" + ], + "public health": [ + "13.6.18", + "13.6.18" + ], + "public health law": [ + "13.6.18" + ], + "public health surveillance": [ + "13.6.18" + ], + "public libraries": [ + "13.4.4" + ], + "public sector": [ + "13.6.18" + ], + "publically archived": [ + "13.6.3" + ], + "publically archived list": [ + "13.6.3", + "13.6.3" + ], + "publication": [ + "13.1.0", + "13.3.1" + ], + "publications": [ + "13.1.1", + "13.1.3", + "13.4.0", + "13.4.3", + "13.4.4" + ], + "published": [ + "13.1.13", + "13.6.0" + ], + "published in english": [ + "13.6.0" + ], + "published in german": [ + "13.6.0" + ], + "published yesterday": [ + "13.6.0" + ], + "publisher": [ + "13.4.1", + "13.4.3" + ], + "publisher appears": [ + "13.4.3" + ], + "publishing": [ + "13.2.0", + "13.3.0", + "13.3.1", + "13.3.6", + "13.4.1", + "13.4.2", + "13.4.3", + "13.5.1", + "13.6.8" + ], + "publishing context": [ + "13.6.8" + ], + "publishing false": [ + "13.2.0" + ], + "publishing false starts": [ + "13.2.0" + ], + "publishing field": [ + "13.4.2" + ], + "publishing form": [ + "13.3.1" + ], + "publishing house called": [ + "13.4.2" + ], + "publishing initiative grounded": [ + "13.4.1" + ], + "publishing lab": [ + "13.3.0" + ], + "pull model": [ + "13.6.18" + ], + "pull model leaves": [ + "13.6.18" + ], + "purely colloquial understanding": [ + "13.6.5" + ], + "push notification": [ + "13.3.7" + ], + "put": [ + "13.4.5", + "13.4.7", + "13.7.10" + ], + "quality": [ + "13.4.5" + ], + "quality trash": [ + "13.6.5" + ], + "quantified": [ + "13.1.6" + ], + "quantified self movement": [ + "13.6.5" + ], + "quantum logic": [ + "13.1.10" + ], + "question": [ + "13.1.1", + "13.1.3", + "13.3.7" + ], + "questions": [ + "13.4.2", + "13.4.4", + "13.6.15", + "13.6.17", + "13.7.10" + ], + "quick": [ + "13.0.1", + "13.1.1", + "13.1.3" + ], + "quick link": [ + "13.1.1", + "13.1.3" + ], + "quick question": [ + "13.1.1", + "13.1.3" + ], + "quiet": [ + "13.3.2" + ], + "quote raoul vaneigem": [ + "13.5.1", + "13.5.1" + ], + "quoth": [ + "13.6.3", + "13.6.7", + "13.7.2" + ], + "quoth cornelia": [ + "13.6.3" + ], + "quoth cornelia sollfrank": [ + "13.6.3", + "13.6.3" + ], + "quoth felix": [ + "13.6.7", + "13.7.2" + ], + "quoth felix stalder": [ + "13.6.7", + "13.7.2", + "13.7.2" + ], + "quoting elroy dimson": [ + "13.6.18" + ], + "racialized forms": [ + "13.1.8" + ], + "radio transformed": [ + "13.3.2" + ], + "random paranoid individual": [ + "13.6.18" + ], + "range of motives": [ + "13.4.3" + ], + "rant against digital": [ + "13.6.8" + ], + "raoul vaneigem": [ + "13.5.1" + ], + "rationally superior means": [ + "13.6.5" + ], + "raymond chandler": [ + "13.5.0" + ], + "re historically wrong": [ + "13.1.8" + ], + "re paying attention": [ + "13.6.18" + ], + "re supposedly discussing": [ + "13.0.0" + ], + "re-investigates and re-uses": [ + "13.1.0" + ], + "reach diverse audiences": [ + "13.4.3", + "13.4.4" + ], + "read": [ + "13.1.5", + "13.3.5", + "13.6.13" + ], + "read against eric": [ + "13.7.10" + ], + "read and write": [ + "13.6.13" + ], + "read enzensberger": [ + "13.6.12" + ], + "reading the mails": [ + "13.4.6" + ], + "real": [ + "13.4.6", + "13.7.3", + "13.7.4", + "13.7.8", + "13.7.9" + ], + "real as long": [ + "13.7.4" + ], + "real politics": [ + "13.1.4" + ], + "real sandra": [ + "13.7.3" + ], + "real sandra braman": [ + "13.7.3" + ], + "real space": [ + "13.7.9" + ], + "reality": [ + "13.4.2", + "13.4.5" + ], + "reality features accessible": [ + "13.4.2" + ], + "realm his entire": [ + "13.6.2" + ], + "rearview mirror": [ + "13.7.7" + ], + "reasonable": [ + "13.6.7", + "13.7.2" + ], + "reasoning": [ + "13.1.10" + ], + "reasoning of chinese": [ + "13.1.8", + "13.1.10" + ], + "recalls": [ + "13.7.10" + ], + "recalls sigfried": [ + "13.7.10" + ], + "recalls sigfried giedion": [ + "13.7.10", + "13.7.10" + ], + "recent book anti": [ + "13.5.1" + ], + "recently link editions": [ + "13.4.1" + ], + "recently published articles": [ + "13.4.0" + ], + "recognisable publishing form": [ + "13.3.1", + "13.3.1" + ], + "recognizes the distinction": [ + "13.1.0" + ], + "recognizing": [ + "13.7.8" + ], + "recursively learns": [ + "13.4.7" + ], + "red stacks": [ + "13.0.2" + ], + "refer": [ + "13.1.7" + ], + "refers": [ + "13.1.5" + ], + "refers to postcolonialism": [ + "13.1.5" + ], + "refusal": [ + "13.7.6" + ], + "refusal and makes": [ + "13.7.6" + ], + "regime": [ + "13.7.11" + ], + "regime energy": [ + "13.7.11" + ], + "regular contemporary artists": [ + "13.6.5" + ], + "reject digital technology": [ + "13.6.5" + ], + "rejection of technological": [ + "13.7.2" + ], + "related": [ + "13.5.0", + "13.7.10" + ], + "related to questions": [ + "13.7.10" + ], + "relational publishing performance": [ + "13.4.7" + ], + "relations": [ + "13.5.0", + "13.6.15" + ], + "relations between literature": [ + "13.5.0" + ], + "relationship": [ + "13.3.1" + ], + "released": [ + "13.6.4" + ], + "released without charge": [ + "13.6.4" + ], + "relevant": [ + "13.0.1" + ], + "relying on hermetic": [ + "13.4.7" + ], + "remain": [ + "13.7.11" + ], + "remain as free": [ + "13.7.11" + ], + "renate": [ + "13.1.3", + "13.2.0" + ], + "renate ferro": [ + "13.1.3", + "13.2.0" + ], + "renate ferro mobile manifesto": [ + "14.3.1", + "14.3.2" + ], + "a-synchronicity": [ + "14.3.0", + "14.4.1" + ], + "a-synchronicity and unavailability": [ + "14.3.0", + "14.3.1", + "14.3.2", + "14.4.1", + "14.5.0" + ], + "aaron": [ + "14.10.0" + ], + "aaron by continuing": [ + "14.10.0" + ], + "aaron swartz": [ + "14.10.0" + ], + "abstract": [ + "14.18.0", + "14.19.0" + ], + "abstract class": [ + "14.18.0" + ], + "abstract hackers": [ + "14.18.0" + ], + "abstract human type": [ + "14.8.0" + ], + "abstract machine": [ + "14.17.0" + ], + "abstraction": [ + "14.18.0", + "14.19.0" + ], + "abstraction beyond capital": [ + "14.19.0" + ], + "abundance": [ + "14.8.0", + "14.9.0" + ], + "accepting": [ + "14.2.0" + ], + "accepting the pains": [ + "14.2.0" + ], + "access": [ + "14.2.0", + "14.10.0" + ], + "access manifesto": [ + "14.10.0" + ], + "access movement": [ + "14.10.0" + ], + "access the pleasures": [ + "14.2.0" + ], + "accra": [ + "14.0.0" + ], + "accra manifesto": [ + "14.0.0" + ], + "act": [ + "14.17.0" + ], + "act de": [ + "14.17.0" + ], + "act de parole": [ + "14.17.0" + ], + "ad-hoc committee": [ + "14.25.0" + ], + "adapt existing": [ + "14.0.0" + ], + "addicted tot": [ + "14.13.5" + ], + "administration": [ + "14.8.1" + ], + "admit informed participation": [ + "14.0.0" + ], + "admittedly": [ + "14.22.0" + ], + "adobe": [ + "14.15.0" + ], + "adopters": [ + "14.2.0" + ], + "advertising": [ + "14.13.4" + ], + "aec.at bitch": [ + "14.27.0" + ], + "aec.at bitch mutant": [ + "14.27.0" + ], + "aesthetically inspiring design": [ + "14.13.0" + ], + "affairs": [ + "14.25.2" + ], + "affect": [ + "14.17.0" + ], + "affirmative artistic reaction": [ + "14.16.0" + ], + "affirmative creative potentiality": [ + "14.17.0" + ], + "afgain": [ + "14.13.5" + ], + "aftermath": [ + "14.16.0" + ], + "agent": [ + "14.13.6" + ], + "agent of resistance": [ + "14.13.6" + ], + "aggregators": [ + "14.13.5" + ], + "ago": [ + "14.5.0" + ], + "agricultural egalitarian communities…": [ + "14.9.0" + ], + "agricultural exploitation": [ + "14.9.0" + ], + "airborne combustion products": [ + "14.21.0" + ], + "airport development": [ + "14.22.0" + ], + "aka": [ + "14.24.1" + ], + "aka hakim bey": [ + "14.21.2" + ], + "alertness": [ + "14.13.2" + ], + "alien angel maybe": [ + "14.27.0" + ], + "alienations documentary maker": [ + "14.17.0" + ], + "allocating domain names": [ + "14.0.0" + ], + "already-existing media": [ + "14.13.4" + ], + "alternative": [ + "14.25.2" + ], + "alternative online networks": [ + "14.13.4" + ], + "alternative world beyond": [ + "14.9.0" + ], + "alternatives we suggest": [ + "14.11.1" + ], + "am pure artifice": [ + "14.27.0" + ], + "am strings": [ + "14.27.0" + ], + "amazon": [ + "14.11.0", + "14.11.1" + ], + "ambitious": [ + "14.1.0" + ], + "american dust bowl": [ + "14.21.0" + ], + "american humanist association": [ + "14.23.0" + ], + "american interstate system": [ + "14.14.0" + ], + "americans bombing iraq": [ + "14.17.0" + ], + "amount": [ + "14.25.2" + ], + "amsterdam": [ + "14.12.0", + "14.25.0" + ], + "ana": [ + "14.10.2" + ], + "analogies": [ + "14.13.2" + ], + "anarchist": [ + "14.13.6" + ], + "anarchist manifesto": [ + "14.23.0" + ], + "anarchist model": [ + "14.13.6" + ], + "anche": [ + "14.15.0" + ], + "andreas": [ + "14.3.1", + "14.3.2" + ], + "andreas broeckmann": [ + "14.3.1", + "14.3.2" + ], + "andreas broeckmann >verging": [ + "14.27.0" + ], + "re building autonomy": [ + "14.9.0" + ], + "re painfully dependent": [ + "14.21.0" + ], + "reached critical sizes": [ + "14.8.0" + ], + "read": [ + "14.10.0", + "14.10.1", + "14.13.1", + "14.26.0" + ], + "read each line": [ + "14.10.1" + ], + "read electronic books": [ + "14.9.0" + ], + "read the manifesto": [ + "14.10.1" + ], + "real": [ + "14.13.5", + "14.16.0", + "14.21.2", + "14.24.1", + "14.25.2" + ], + "real beauty": [ + "14.24.1" + ], + "real life level": [ + "14.16.0" + ], + "real people—developing": [ + "14.9.0" + ], + "real productive scale": [ + "14.8.0" + ], + "real productive scale…": [ + "14.8.0" + ], + "real solution": [ + "14.13.5" + ], + "real space/time continuum": [ + "14.25.0" + ], + "real world": [ + "14.16.0" + ], + "reality": [ + "14.17.0" + ], + "realize": [ + "14.20.0" + ], + "realized": [ + "14.21.1" + ], + "reason the net": [ + "14.7.0" + ], + "rebel": [ + "14.8.1" + ], + "rebel cities": [ + "14.8.1" + ], + "recent city-based": [ + "14.8.1" + ], + "recent city-based movements": [ + "14.8.1" + ], + "recent piece": [ + "14.11.2" + ], + "recipients usually react": [ + "14.16.0" + ], + "reclaim net": [ + "14.23.0" + ], + "reclaim net art": [ + "14.23.0", + "14.23.0" + ], + "reconquer real life": [ + "14.9.0" + ], + "reconsider": [ + "14.12.3" + ], + "reconsider my fondness": [ + "14.12.3" + ], + "reduce icann": [ + "14.0.0" + ], + "reducing productivity": [ + "14.9.0" + ], + "reed elsevier": [ + "14.10.0" + ], + "reformed icann": [ + "14.0.0" + ], + "refuse": [ + "14.25.2" + ], + "regime": [ + "14.17.0" + ], + "reinforce hierarchical power": [ + "14.24.0" + ], + "relationship": [ + "14.9.0" + ], + "relationship remains hidden": [ + "14.9.0" + ], + "relationships—system changes—": [ + "14.8.0" + ], + "reliable user interfaces": [ + "14.13.0" + ], + "religious marxist vision": [ + "14.8.0" + ], + "remarked upon afgain": [ + "14.13.5" + ], + "remedied with things": [ + "14.13.5" + ], + "remember": [ + "14.11.1" + ], + "renewable natural resources": [ + "14.9.0" + ], + "rents": [ + "14.8.0" + ], + "reparations": [ + "14.25.2", + "14.25.2" + ], + "repetitive management tasks": [ + "14.9.0" + ], + "replacing material": [ + "14.21.0" + ], + "replacing natural resources": [ + "14.21.0" + ], + "reply-to": [ + "14.3.1", + "14.3.2" + ], + "represent": [ + "14.18.0" + ], + "research": [ + "14.16.0" + ], + "resents": [ + "14.18.0" + ], + "resistance": [ + "14.13.6" + ], + "resource base": [ + "14.21.0" + ], + "respect cultural": [ + "14.13.0" + ], + "respect to monotasking": [ + "14.13.2" + ], + "resulting perfect substitutability": [ + "14.9.0" + ], + "return": [ + "14.25.1" + ], + "reviews": [ + "14.1.0" + ], + "revised wed. march": [ + "14.0.0" + ], + "revolution": [ + "14.13.2" + ], + "rhizomatic": [ + "14.13.6" + ], + "rhizomatic stuff": [ + "14.13.6" + ], + "ringitt": [ + "14.22.0" + ], + "ringitt crisis": [ + "14.22.0" + ], + "ringler wrote": [ + "14.25.1" + ], + "riot police": [ + "14.11.3" + ], + "riot police activity": [ + "14.11.3" + ], + "riot police blasting": [ + "14.11.3" + ], + "road": [ + "14.21.2" + ], + "rob": [ + "14.12.2" + ], + "rock art": [ + "14.16.0" + ], + "rock&roll lifestyle": [ + "14.16.0" + ], + "romant": [ + "14.4.0", + "14.4.1" + ], + "romanticism": [ + "14.4.1" + ], + "romanticism to mobile": [ + "14.4.1" + ], + "rory": [ + "14.11.1" + ], + "rss feed": [ + "14.11.0", + "14.11.0" + ], + "ruling": [ + "14.19.0" + ], + "ruling class": [ + "14.19.0", + "14.19.0" + ], + "ruling class arises": [ + "14.19.0" + ], + "ruling class seeks": [ + "14.19.0" + ], + "rumoured": [ + "14.3.0", + "14.3.1", + "14.3.2", + "14.4.0", + "14.5.0" + ], + "running": [ + "14.11.0", + "14.21.1" + ], + "running on certified": [ + "14.21.1" + ], + "rural settlements provide": [ + "14.9.0" + ], + "rushkoff recent": [ + "14.11.2" + ], + "rushkoff recent piece": [ + "14.11.2" + ], + "sabotage government regulation": [ + "14.21.0" + ], + "salt": [ + "14.25.1" + ], + "salt lake": [ + "14.25.1" + ], + "salt lake city": [ + "14.25.1", + "14.25.1" + ], + "san": [ + "14.25.1" + ], + "san diego 5/31": [ + "14.25.1" + ], + "san francisco": [ + "14.25.1", + "14.25.1" + ], + "san francisco 6/14": [ + "14.25.1" + ], + "san francisco isn": [ + "14.25.2" + ], + "sandra": [ + "14.26.0" + ], + "sandra gering": [ + "14.26.0" + ], + "sandra gering gallery": [ + "14.26.0", + "14.26.0" + ], + "sarcastic": [ + "14.10.2" + ], + "saturday": [ + "14.26.0" + ], + "saturday oct": [ + "14.15.0" + ], + "savvy web admins": [ + "14.11.0" + ], + "scale": [ + "14.8.0", + "14.9.0" + ], + "scale american special": [ + "14.21.0" + ], + "scaled businesses competed": [ + "14.8.0" + ], + "scaled financial system": [ + "14.8.0" + ], + "scanning entire libraries": [ + "14.10.0" + ], + "schizo-analysis of media": [ + "14.17.0" + ], + "schizo-analytic": [ + "14.17.0" + ], + "scholz": [ + "14.13.5" + ], + "schwartz": [ + "14.21.2" + ], + "schwartz discuss": [ + "14.21.2" + ], + "schwartz discuss global": [ + "14.21.2" + ], + "schwartz discuss real": [ + "14.21.2" + ], + "scientific": [ + "14.10.0" + ], + "scope": [ + "14.8.1" + ], + "scott gilbertson": [ + "14.11.0" + ], + "screens": [ + "14.2.0" + ], + "scroll": [ + "14.10.1" + ], + "seize": [ + "14.27.0" + ], + "self-pity": [ + "14.4.1" + ], + "seminal manifesto": [ + "14.12.0" + ], + "send enormous amounts": [ + "14.10.0" + ], + "sending twitter": [ + "14.11.3" + ], + "senses": [ + "14.13.2" + ], + "sent via email": [ + "14.16.0" + ], + "sept": [ + "14.15.0" + ], + "septic cankers": [ + "14.21.0" + ], + "septic poor quarantined": [ + "14.21.0" + ], + "septic refugee camp": [ + "14.21.0" + ], + "serious culture except": [ + "14.21.0" + ], + "serpentine": [ + "14.21.2" + ], + "server": [ + "14.11.0", + "14.11.4" + ], + "server space": [ + "14.11.4" + ], + "servers": [ + "14.11.0", + "14.11.1" + ], + "servers distributed": [ + "14.0.0" + ], + "service": [ + "14.11.0" + ], + "services": [ + "14.11.0" + ], + "set": [ + "14.12.1" + ], + "setting up bbs": [ + "14.11.2" + ], + "shape": [ + "14.12.1" + ], + "shape of work": [ + "14.12.1" + ], + "share intelligent": [ + "14.11.3" + ], + "share intelligent ideas": [ + "14.11.3", + "14.11.3" + ], + "sharing": [ + "14.10.0" + ], + "shaw and telus": [ + "14.11.4" + ], + "shock marketing channel": [ + "14.16.0" + ], + "short": [ + "14.13.5", + "14.14.0" + ], + "short note": [ + "14.13.5" + ], + "short shock": [ + "14.16.0" + ], + "shot unites elements": [ + "14.17.0" + ], + "shrunken subcultural niches": [ + "14.21.0" + ], + "shutdown": [ + "14.11.2" + ], + "shutdown in egypt": [ + "14.11.2" + ], + "si capisce che": [ + "14.15.0" + ], + "si deve allora": [ + "14.15.0" + ], + "side of cheaper": [ + "14.11.4" + ], + "silly": [ + "14.21.2" + ], + "silos winer": [ + "14.11.0" + ], + "sim": [ + "14.2.0" + ], + "sim card": [ + "14.2.0" + ], + "similar": [ + "14.11.2" + ], + "similar historical task": [ + "14.8.0" + ], + "similar questions": [ + "14.11.2" + ], + "simple french": [ + "14.17.0" + ], + "simply": [ + "14.8.1" + ], + "simply a theoretical": [ + "14.8.1" + ], + "single": [ + "14.11.0" + ], + "single practical goal": [ + "14.21.0" + ], + "single rss feed": [ + "14.11.0" + ], + "slaves": [ + "14.3.0", + "14.3.1", + "14.3.2", + "14.4.0", + "14.5.0", + "14.24.1" + ], + "slaves of socalled": [ + "14.3.0", + "14.3.1", + "14.3.2", + "14.4.0", + "14.5.0" + ], + "slow": [ + "14.13.0", + "14.13.1", + "14.13.2", + "14.13.3", + "14.13.4", + "14.13.6", + "14.14.0" + ], + "slow media inspire": [ + "14.13.4" + ], + "slow civil research": [ + "15.19.0" + ], + "> entire populations": [ + "15.19.0" + ], + "> fifty thousand": [ + "15.19.0" + ], + "> planet tight": [ + "15.19.0" + ], + ">concentrated tv environment": [ + "15.4.0" + ], + ">culture isn": [ + "15.4.0" + ], + ">dear jason": [ + "15.4.0" + ], + "___________________by luther blissett____": [ + "15.36.0" + ], + "abc luther": [ + "15.4.0" + ], + "aboard": [ + "15.17.0" + ], + "absurd": [ + "15.16.0" + ], + "abuse": [ + "15.27.0", + "15.32.0" + ], + "accepted wisdom nonetheless": [ + "15.4.1" + ], + "access to state": [ + "15.32.0" + ], + "achille bonito oliva": [ + "15.1.0", + "15.25.0" + ], + "ack hole": [ + "15.2.0" + ], + "act": [ + "15.3.0" + ], + "activist bbs networks": [ + "15.31.0", + "15.31.0" + ], + "activist movements": [ + "15.31.0" + ], + "activist organisations comes": [ + "15.31.0" + ], + "activist servers": [ + "15.31.0" + ], + "activists": [ + "15.11.0" + ], + "actual market presence": [ + "15.4.1" + ], + "addresses": [ + "15.28.2", + "15.28.3" + ], + "adopted lb": [ + "15.8.2" + ], + "adventure set": [ + "15.22.0" + ], + "advise telefono azzurro": [ + "15.32.0", + "15.32.0" + ], + "affair": [ + "15.20.0" + ], + "afraid jakoby": [ + "15.17.0" + ], + "agit-prop performance": [ + "15.24.0" + ], + "agree": [ + "15.28.2" + ], + "aircraft bombing yugoslavia": [ + "15.17.0" + ], + "albeit false": [ + "15.30.0" + ], + "alejandro murrieta": [ + "15.9.0" + ], + "alejandro murrieta trains": [ + "15.9.0", + "15.9.0" + ], + "alexander brener grows": [ + "15.1.0", + "15.25.0" + ], + "algerian army etc": [ + "15.30.0" + ], + "alienated virtual community": [ + "15.0.0", + "15.36.0" + ], + "alleged arms dealer": [ + "15.23.0" + ], + "alleged commercial exploitation": [ + "15.8.0" + ], + "am haunted night": [ + "15.7.0" + ], + "am luther blissett": [ + "15.10.0" + ], + "amazing media pranks": [ + "15.19.0" + ], + "ambiguous collective noun": [ + "15.30.0" + ], + "ambiguous role played": [ + "15.33.0" + ], + "american": [ + "15.19.0" + ], + "american abstract expressionist": [ + "15.1.0" + ], + "american arms": [ + "15.19.0" + ], + "american continent": [ + "15.19.0" + ], + "american foreign policy": [ + "15.19.0", + "15.19.0" + ], + "american isolationist hypothesis": [ + "15.19.0" + ], + "american lobby demanded": [ + "15.19.0" + ], + "american military": [ + "15.19.0" + ], + "american military expenditure": [ + "15.19.0", + "15.19.0" + ], + "american military lobby": [ + "15.19.0", + "15.19.0" + ], + "american military machine": [ + "15.19.0" + ], + "amorevole compagnia pneumatica": [ + "15.20.0" + ], + "anarchic radio culture": [ + "15.4.0" + ], + "anarchists": [ + "15.21.0" + ], + "ancient conquering": [ + "15.29.0" + ], + "ancient conquering glories": [ + "15.29.0", + "15.29.0" + ], + "angry": [ + "15.8.2" + ], + "angry response": [ + "15.8.2" + ], + "animal liberation front": [ + "15.20.0" + ], + "announced ritual suicide": [ + "15.8.1" + ], + "anonymity": [ + "15.8.2" + ], + "anonymous multitude sustaining": [ + "15.22.0" + ], + "anthony": [ + "15.9.0" + ], + "anthony hopkins": [ + "15.9.0" + ], + "anti-art performances": [ + "15.23.0" + ], + "anti-copyright stuff": [ + "15.4.2", + "15.4.3" + ], + "anti-war agit-prop": [ + "15.24.0" + ], + "anti-war agit-prop performance": [ + "15.24.0" + ], + "anti-web that sold": [ + "15.2.0" + ], + "antifascists simply swore": [ + "15.29.0" + ], + "antiorp jibberish": [ + "15.28.2" + ], + "antiorp nonsense": [ + "15.28.2", + "15.28.2" + ], + "anton": [ + "15.5.0" + ], + "anton wilson": [ + "15.5.0" + ], + "antonio": [ + "15.9.0" + ], + "antonio banderas": [ + "15.9.0" + ], + "apocalisse ed emergenza": [ + "15.26.0" + ], + "apocalyptic": [ + "15.16.0" + ], + "appeared": [ + "15.8.1" + ], + "architecture": [ + "15.36.0" + ], + "architecture pop": [ + "15.36.0" + ], + "architecture pop star": [ + "15.36.0" + ], + "architecture project": [ + "15.36.0", + "15.36.0" + ], + "architecture project___urban interface": [ + "15.36.0" + ], + "arci bbs": [ + "15.31.0" + ], + "arms expenditure": [ + "15.19.0" + ], + "art": [ + "15.1.0", + "15.2.0", + "15.4.0", + "15.4.1", + "15.6.0", + "15.7.0", + "15.11.0", + "15.25.0", + "15.28.0" + ], + "art bbs": [ + "15.31.0" + ], + "art galleries": [ + "15.2.0" + ], + "art information": [ + "15.2.0" + ], + "art medium": [ + "15.4.1" + ], + "art network remembers": [ + "15.28.0" + ], + "art newsletter called": [ + "15.1.0", + "15.25.0" + ], + "art piece": [ + "15.2.0" + ], + "art richard": [ + "15.11.0" + ], + "art richard rinehart": [ + "15.11.0" + ], + "art strike 2000": [ + "15.4.2", + "15.4.3" + ], + "art theft make": [ + "15.4.2", + "15.4.3" + ], + "art web site": [ + "15.27.0" + ], + "art world aren": [ + "15.4.0" + ], + "artist": [ + "15.1.0", + "15.4.0", + "15.4.2", + "15.4.3", + "15.11.0", + "15.25.0" + ], + "artist making": [ + "15.4.1", + "15.4.2", + "15.4.3" + ], + "artist making money": [ + "15.4.1", + "15.4.2", + "15.4.3" + ], + "artists": [ + "15.4.0", + "15.4.1", + "15.11.0" + ], + "artists extremly elitist": [ + "15.2.0" + ], + "arts": [ + "15.4.0" + ], + "arts discussion": [ + "15.11.0" + ], + "arts discussion lists": [ + "15.11.0" + ], + "ashley": [ + "15.8.2" + ], + "ashley benigno": [ + "15.8.2" + ], + "ashley benigno taking": [ + "15.8.0" + ], + "assholes": [ + "15.28.3" + ], + "associazione culturale malcolm": [ + "15.31.0" + ], + "attacked telefono azzurro": [ + "15.32.0", + "15.32.0" + ], + "atto di citazione": [ + "15.33.0" + ], + "attorney ezio menzione": [ + "15.32.0" + ], + "attorney lucia musti": [ + "15.20.0" + ], + "attorney maria rosaria": [ + "15.27.0" + ], + "attorneys choose": [ + "15.3.0" + ], + "attorneys choose psychological": [ + "15.3.0" + ], + "australia abc national": [ + "15.4.0" + ], + "australian luther blisset": [ + "15.4.0", + "15.4.0" + ], + "author": [ + "15.22.0" + ], + "authors": [ + "15.8.0", + "15.22.0" + ], + "automagically sign": [ + "15.28.1" + ], + "automatically": [ + "15.28.3" + ], + "autonomia operaia organizzata": [ + "15.30.0" + ], + "avana bbs": [ + "15.31.0" + ], + "avana bbs using": [ + "15.31.0" + ], + "avvisi ai naviganti": [ + "15.31.0" + ], + "azure telephone": [ + "15.32.0" + ], + "azzurro": [ + "15.32.0" + ], + "azzurro bologna": [ + "15.32.0" + ], + "azzurro bologna office": [ + "15.32.0" + ], + "bad net": [ + "15.28.1" + ], + "bad net etiquette": [ + "15.28.1" + ], + "bad sources": [ + "15.8.1" + ], + "baffling creation mythologies": [ + "15.19.0" + ], + "balkan problem": [ + "15.16.0" + ], + "balkans": [ + "15.16.0" + ], + "bambini di satana": [ + "15.20.0", + "15.33.0" + ], + "band": [ + "15.13.0" + ], + "band klasse": [ + "15.13.0" + ], + "band klasse kriminale": [ + "15.8.1", + "15.13.0" + ], + "banderas": [ + "15.9.0" + ], + "bands": [ + "15.10.0" + ], + "bank operations": [ + "15.30.0" + ], + "bank resemble": [ + "15.24.0" + ], + "banner and label": [ + "15.29.0" + ], + "barbrook": [ + "15.34.0" + ], + "baroni even received": [ + "15.28.0" + ], + "based arts alliance": [ + "15.11.0" + ], + "based topolin edizioni": [ + "15.27.0" + ], + "basic particles move": [ + "15.14.0" + ], + "bbs networks": [ + "15.31.0" + ], + "bbs sysop": [ + "15.31.0" + ], + "beat il duce": [ + "15.29.0" + ], + "beat nato field": [ + "15.24.0" + ], + "begin staff preface": [ + "15.1.0", + "15.25.0" + ], + "belgrade and pristina": [ + "15.16.0" + ], + "belletati": [ + "15.8.2" + ], + "belvedere": [ + "15.6.0" + ], + "belvedere remarked worriedly": [ + "15.5.0" + ], + "benigno": [ + "15.8.2" + ], + "berardi": [ + "15.14.0" + ], + "berardi aka bifo": [ + "15.36.0" + ], + "berardi bifo": [ + "15.19.0" + ], + "besides setting limits": [ + "15.33.0" + ], + "bifo": [ + "15.14.0" + ], + "big italian publisher": [ + "15.4.2", + "15.4.3" + ], + "big rotting fish": [ + "15.28.0" + ], + "bigots named gris": [ + "15.33.0" + ], + "bill": [ + "15.32.0" + ], + "bitter end": [ + "15.29.0" + ], + "black": [ + "15.17.0", + "15.30.0" + ], + "black game": [ + "15.30.0" + ], + "black propaganda": [ + "15.17.0" + ], + "black watford": [ + "15.21.0" + ], + "black watford player": [ + "15.21.0" + ], + "bleak inquisition winter": [ + "15.20.0" + ], + "blisset project": [ + "15.4.0" + ], + "blissett": [ + "15.0.0", + "15.1.0", + "15.3.0", + "15.4.0", + "15.4.2", + "15.4.3", + "15.5.0", + "15.6.0", + "15.7.0", + "15.8.0", + "15.8.1", + "15.8.2", + "15.9.0", + "15.10.0", + "15.11.0", + "15.12.0", + "15.13.0", + "15.14.0", + "15.15.0", + "15.20.0", + "15.21.0", + "15.22.0", + "15.23.0", + "15.24.0", + "15.25.0", + "15.26.0", + "15.27.0", + "15.30.0", + "15.31.1", + "15.32.0", + "15.33.0", + "15.36.0" + ], + "blissett activists copied": [ + "15.11.0" + ], + "blissett believes": [ + "15.1.0" + ], + "blissett book": [ + "15.15.0", + "15.33.0" + ], + "blissett book consists": [ + "15.33.0" + ], + "blissett book hit": [ + "15.15.0" + ], + "blissett books": [ + "15.4.2", + "15.4.3" + ], + "blissett court": [ + "15.20.0" + ], + "blissett court costs": [ + "15.20.0" + ], + "blissett die": [ + "15.8.0" + ], + "blissett etc": [ + "15.4.0" + ], + "blissett exists": [ + "15.5.0" + ], + "blissett good": [ + "15.23.0" + ], + "blissett italian": [ + "15.23.0" + ], + "blissett italian season": [ + "15.23.0" + ], + "blissett jamaican": [ + "15.23.0" + ], + "blissett main": [ + "15.8.2" + ], + "blissett main features": [ + "15.8.2" + ], + "blissett moniker": [ + "15.8.2" + ], + "blissett multi-use": [ + "15.22.0" + ], + "blissett mythopoetic": [ + "15.3.0", + "15.31.1" + ], + "blissett mythopoetic on-line": [ + "15.3.0", + "15.27.0", + "15.28.0", + "15.31.1" + ], + "blissett mythopoetical": [ + "15.26.0" + ], + "blissett mythopoetical guide": [ + "15.26.0" + ], + "blissett name-bearer": [ + "15.8.0", + "15.8.1" + ], + "blissett played": [ + "15.21.0" + ], + "blissett post": [ + "15.4.0" + ], + "blissett potential": [ + "15.10.0" + ], + "blissett press": [ + "15.3.0" + ], + "blissett press release": [ + "15.3.0", + "15.32.0" + ], + "blissett priest": [ + "15.8.2" + ], + "blissett produced": [ + "15.7.0" + ], + "blissett project": [ + "15.3.0", + "15.4.0", + "15.4.0", + "15.5.0", + "15.7.0", + "15.10.0", + "15.11.0", + "15.12.0", + "15.13.0", + "15.15.0", + "15.15.0", + "15.20.0", + "15.21.0", + "15.22.0", + "15.26.0", + "15.30.0", + "15.32.0", + "15.33.0", + "15.36.0" + ], + "blissett project designed": [ + "15.36.0" + ], + "blissett project italian": [ + "15.7.0" + ], + "blissett project nel": [ + "15.26.0" + ], + "blissett project site": [ + "15.11.0" + ], + "blissett purpose": [ + "15.7.0" + ], + "blissett represents": [ + "15.15.0" + ], + "blissett suicide": [ + "15.7.0" + ], + "blissett theory": [ + "15.15.0" + ], + "blissett transnational network": [ + "15.12.0" + ], + "blissett tuttosport": [ + "15.23.0" + ], + "blissett united": [ + "15.13.0" + ], + "blissett unlucky": [ + "15.23.0" + ], + "blissett unlucky season": [ + "15.23.0" + ], + "blissett write": [ + "15.11.0" + ], + "blissett writings": [ + "15.13.0" + ], + "blissett written": [ + "15.22.0" + ], + "blissett's mysteries": [ + "15.15.0" + ], + "blissetts": [ + "15.4.0", + "15.5.0", + "15.22.0" + ], + "blissetts began": [ + "15.5.0" + ], + "blissetts involved": [ + "15.24.0" + ], + "blue telephone": [ + "15.32.0" + ], + "boat": [ + "15.30.0" + ], + "boat drinks": [ + "15.30.0" + ], + "bodies": [ + "15.14.0" + ], + "bogus astrological magazine": [ + "15.30.0" + ], + "bogus government edicts": [ + "15.30.0" + ], + "bologna and rome": [ + "15.10.0" + ], + "bologna civic network": [ + "15.31.0", + "15.31.0" + ], + "bologna office bologna": [ + "15.32.0" + ], + "bologna section linking": [ + "15.31.0" + ], + "bolognese office started": [ + "15.32.0" + ], + "bolognese underground movement": [ + "15.31.0" + ], + "bonino and marc": [ + "15.19.0" + ], + "book": [ + "15.4.2", + "15.4.3", + "15.8.0", + "15.15.0", + "15.20.0", + "15.33.0", + "15.35.0" + ], + "book *lasciate che": [ + "15.20.0" + ], + "book psichopatya": [ + "15.27.0" + ], + "book psichopatya sexualis": [ + "15.27.0" + ], + "book was published": [ + "15.35.0" + ], + "bordiga": [ + "15.34.0" + ], + "bordiga post-war writings": [ + "15.34.0" + ], + "boundary bbs": [ + "15.31.0" + ], + "breathe brackish air": [ + "15.30.0" + ], + "british": [ + "15.23.0" + ], + "british press": [ + "15.23.0" + ], + "british press gave": [ + "15.23.0" + ], + "british press made": [ + "15.23.0" + ], + "british soccer player": [ + "15.11.0" + ], + "british subversive operations": [ + "15.30.0" + ], + "broadcast luther exposed": [ + "15.23.0" + ], + "budget grassroots trashing": [ + "15.17.0" + ], + "bulletin board system": [ + "15.31.0" + ], + "butcher records": [ + "15.13.0" + ], + "byfield": [ + "15.28.0" + ], + "cache": [ + "15.26.0" + ], + "caffo": [ + "15.32.0" + ], + "calabria": [ + "15.6.0" + ], + "calabria people die": [ + "15.5.0", + "15.6.0" + ], + "call": [ + "15.4.1" + ], + "call jackson pollock": [ + "15.1.0", + "15.1.0", + "15.25.0", + "15.25.0" + ], + "called hot autumn": [ + "15.30.0" + ], + "called musti affair": [ + "15.33.0" + ], + "calls": [ + "15.32.0" + ], + "calusca edition": [ + "15.31.0" + ], + "calvin klein logo": [ + "15.13.0" + ], + "cannata": [ + "15.1.0", + "15.25.0" + ], + "cannata intervention": [ + "15.1.0", + "15.25.0" + ], + "cantsin invisible": [ + "15.28.0" + ], + "capital": [ + "15.30.0", + "15.35.0" + ], + "capitalist command structure": [ + "15.34.0" + ], + "captured slaves yelling": [ + "15.13.0" + ], + "carried": [ + "15.28.1", + "15.28.2" + ], + "cartoon": [ + "15.27.0" + ], + "caso": [ + "15.20.0" + ], + "caso musti": [ + "15.20.0" + ], + "catalyze social life": [ + "15.0.0", + "15.36.0" + ], + "catholic power organizing": [ + "15.6.0" + ], + "celebration party organized": [ + "15.10.0" + ], + "censorship": [ + "15.8.2", + "15.27.0" + ], + "center": [ + "15.26.0" + ], + "central": [ + "15.4.1", + "15.4.2", + "15.4.3" + ], + "central standard": [ + "15.4.1", + "15.4.2", + "15.4.3" + ], + "central standard time": [ + "15.4.1", + "15.4.2", + "15.4.3" + ], + "century": [ + "15.22.0" + ], + "century europe": [ + "15.16.0" + ], + "century holy child": [ + "15.6.0" + ], + "century mussolini": [ + "15.29.0" + ], + "century mussolini urged": [ + "15.29.0" + ], + "century national": [ + "15.19.0" + ], + "century national communism": [ + "15.19.0", + "15.19.0" + ], + "chaos comes stagnation": [ + "15.11.0" + ], + "character": [ + "15.9.0" + ], + "character adoptable": [ + "15.9.0" + ], + "charging money": [ + "15.4.1" + ], + "chat su lbp": [ + "15.4.0" + ], + "che i bimbi": [ + "15.33.0" + ], + "cherished cary grant": [ + "15.22.0" + ], + "child": [ + "15.3.0", + "15.6.0", + "15.27.0", + "15.32.0" + ], + "child abuse": [ + "15.27.0", + "15.32.0" + ], + "child gang": [ + "15.6.0" + ], + "child gang started": [ + "15.6.0" + ], + "child statues": [ + "15.6.0" + ], + "children": [ + "15.20.0" + ], + "children of satan": [ + "15.20.0" + ], + "choose psychological terrorism": [ + "15.3.0" + ], + "chose blissett": [ + "15.21.0" + ], + "christian fundamentalist america": [ + "15.19.0" + ], + "church": [ + "15.5.0" + ], + "church authorities pay": [ + "15.8.0" + ], + "churches": [ + "15.6.0" + ], + "circulation luther blissett": [ + "15.33.0" + ], + "cisler": [ + "15.28.1", + "15.28.2" + ], + "cisler wrote": [ + "15.28.2" + ], + "cited": [ + "15.21.0" + ], + "cited in literary": [ + "15.21.0" + ], + "cited numberless times": [ + "15.13.0" + ], + "city": [ + "15.20.0", + "15.26.0", + "15.36.0" + ], + "city council": [ + "15.26.0" + ], + "city hall": [ + "15.20.0" + ], + "civic network": [ + "15.31.0" + ], + "civil code": [ + "15.33.0" + ], + "civil disobedience": [ + "15.19.0" + ], + "civil network censors": [ + "15.31.0" + ], + "civil war": [ + "15.19.0" + ], + "claims moral damages": [ + "15.33.0" + ], + "clandestine antifascist parties": [ + "15.29.0" + ], + "clandestine radio station": [ + "15.30.0" + ], + "claretta petacci": [ + "15.29.0" + ], + "class": [ + "15.30.0" + ], + "class composition": [ + "15.30.0" + ], + "class conscious underground": [ + "15.4.0" + ], + "class kriminale": [ + "15.13.0" + ], + "class struggle": [ + "15.30.0" + ], + "class war": [ + "15.30.0" + ], + "classic": [ + "15.28.1", + "15.28.2" + ], + "classic emergency act": [ + "15.32.0" + ], + "claudio": [ + "15.12.0" + ], + "claudio lopez": [ + "15.12.0" + ], + "claus": [ + "15.10.0" + ], + "clever art trick": [ + "15.28.0" + ], + "closed moderated": [ + "15.31.1" + ], + "closed moderated mailinglist": [ + "15.3.0", + "15.16.0", + "15.17.0", + "15.19.0", + "15.20.0", + "15.21.0", + "15.22.0", + "15.23.0", + "15.24.0", + "15.25.0", + "15.26.0", + "15.27.0", + "15.28.0", + "15.28.1", + "15.28.2", + "15.28.3", + "15.29.0", + "15.30.0", + "15.31.0", + "15.31.1", + "15.31.1", + "15.32.0", + "15.33.0", + "15.34.0", + "15.35.0" + ], + "collaborative": [ + "15.35.0" + ], + "collaborative text": [ + "15.28.1", + "15.31.1" + ], + "collaborative text filtering": [ + "15.28.1", + "15.31.1" + ], + "collective": [ + "15.15.0", + "15.22.0" + ], + "collective arrangement": [ + "15.22.0" + ], + "collective entity": [ + "15.22.0" + ], + "collective living labour": [ + "15.34.0" + ], + "color box allowed": [ + "15.25.0" + ], + "colourful article published": [ + "15.23.0" + ], + "combining media hoaxes": [ + "15.33.0" + ], + "comic": [ + "15.27.0" + ], + "comic book": [ + "15.27.0", + "15.27.0" + ], + "comic book psichopatya": [ + "15.27.0" + ], + "command structure": [ + "15.34.0" + ], + "commercial": [ + "15.8.0" + ], + "committing ritual suicide": [ + "15.8.0" + ], + "committing seppuku": [ + "15.7.0" + ], + "common base": [ + "15.31.0" + ], + "common hidden agenda": [ + "15.24.0" + ], + "common idiom": [ + "15.24.0" + ], + "common photography shops": [ + "15.3.0" + ], + "communication": [ + "15.31.0" + ], + "communication guerrilla": [ + "15.17.0" + ], + "communicative machines": [ + "15.34.0" + ], + "communism": [ + "15.19.0" + ], + "communist party": [ + "15.29.0" + ], + "communists": [ + "15.35.0" + ], + "communitarian mythology arises": [ + "15.14.0" + ], + "community": [ + "15.14.0" + ], + "competent justice decides": [ + "15.33.0" + ], + "complete historical overview": [ + "15.31.0" + ], + "completely fictional characters": [ + "15.22.0" + ], + "completely ignoring users": [ + "15.31.0" + ], + "completely independent": [ + "15.31.0" + ], + "complex articulations": [ + "15.34.0" + ], + "complex language codes": [ + "15.34.0" + ], + "computer": [ + "15.2.0", + "15.22.0" + ], + "computer hard disks": [ + "15.33.0" + ], + "computer hoax": [ + "15.22.0" + ], + "computer hoaxes": [ + "15.22.0" + ], + "computer networking reveals": [ + "15.30.0" + ], + "computers": [ + "15.3.0" + ], + "comrade luther blissett": [ + "15.14.0", + "15.14.0" + ], + "comunit=e0 virtuali": [ + "15.31.0" + ], + "comunit=e0 virtuali/opposizioni reali": [ + "15.31.0" + ], + "conceptual architecture": [ + "15.36.0" + ], + "conceptual art piece": [ + "15.2.0", + "15.2.0" + ], + "conferenze telematiche interattive": [ + "15.31.0" + ], + "confine bbs": [ + "15.31.0" + ], + "conflict": [ + "15.16.0", + "15.30.0" + ], + "conflict fell apart": [ + "15.35.0" + ], + "conflict worth enlisting": [ + "15.16.0" + ], + "confusing modern world": [ + "15.5.0" + ], + "connecting software": [ + "15.31.0" + ], + "conquering glories": [ + "15.29.0" + ], + "considers providers equal": [ + "15.33.0" + ], + "contact": [ + "15.28.1", + "15.28.3", + "15.31.1" + ], + "contain rom tracks": [ + "15.10.0" + ], + "contains various elements": [ + "15.32.0" + ], + "content creators wouldn": [ + "15.4.0" + ], + "continental europe": [ + "15.23.0" + ], + "continues": [ + "15.28.0" + ], + "conto corrente postale": [ + "15.26.0", + "15.27.0" + ], + "contradict established economic": [ + "15.31.0" + ], + "cooperativa sociale blow": [ + "15.31.0" + ], + "coordinamento gruppi teatrali": [ + "15.20.0" + ], + "copied sites highlight": [ + "15.11.0" + ], + "cops shooting skywards": [ + "15.22.0" + ], + "copyright information": [ + "15.2.0" + ], + "copyright information contained": [ + "15.2.0", + "15.2.0" + ], + "copyright laws": [ + "15.2.0" + ], + "copyright post": [ + "15.4.0" + ], + "copyright post id": [ + "15.4.0" + ], + "copyright violation": [ + "15.2.0", + "15.2.0" + ], + "copyright violations": [ + "15.2.0" + ], + "copyrights": [ + "15.2.0" + ], + "corporate sponsorship": [ + "15.32.0" + ], + "corrente postale": [ + "15.26.0" + ], + "correspondent pantaleone sergi": [ + "15.6.0", + "15.6.0" + ], + "cosenza tyrrhenian coast": [ + "15.6.0" + ], + "cosic remains mum": [ + "15.11.0" + ], + "counter culture": [ + "15.4.0" + ], + "countries of continental": [ + "15.23.0" + ], + "court": [ + "15.20.0" + ], + "covered mercenaries paid": [ + "15.22.0" + ], + "covering": [ + "15.8.1" + ], + "covering internet": [ + "15.8.0", + "15.8.1" + ], + "cpa": [ + "15.26.0" + ], + "cpa fi-sud": [ + "15.26.0" + ], + "crackdown": [ + "15.33.0" + ], + "crackdown exposed index": [ + "15.33.0" + ], + "crackdown recently started": [ + "15.33.0" + ], + "crappiest title": [ + "15.35.0" + ], + "create pages dedicated": [ + "15.33.0" + ], + "crimes agains humanity": [ + "15.24.0" + ], + "criminal": [ + "15.16.0" + ], + "criminal decisions": [ + "15.16.0" + ], + "criminal force": [ + "15.19.0" + ], + "critique": [ + "15.14.0" + ], + "critique i made": [ + "15.7.0" + ], + "csoa forte prenestino": [ + "15.31.0" + ], + "cultural": [ + "15.0.0", + "15.26.0", + "15.35.0" + ], + "cultural backbone": [ + "15.0.0" + ], + "cultural interface devoted": [ + "15.36.0" + ], + "cultural politics": [ + "15.31.0", + "15.31.1" + ], + "culture": [ + "15.36.0" + ], + "cybercaf=e9 zut": [ + "15.31.0" + ], + "cyberpunk area": [ + "15.31.0" + ], + "cyberspace": [ + "15.0.0" + ], + "cyiěnic videogame": [ + "15.17.0" + ], + "da office": [ + "15.20.0" + ], + "da office sent": [ + "15.20.0" + ], + "daily paper": [ + "15.1.0", + "15.6.0", + "15.15.0" + ], + "damages caused": [ + "15.33.0" + ], + "das institut": [ + "15.36.0", + "15.36.0" + ], + "das institut http": [ + "15.36.0" + ], + "das institut http": [ + "15.36.0" + ], + "dat": [ + "15.10.0" + ], + "data bank": [ + "15.31.0" + ], + "data transmission": [ + "15.31.0" + ], + "data transmission networks": [ + "15.31.0" + ], + "data transmission supplies": [ + "15.31.0" + ], + "data transmission technologies": [ + "15.31.0" + ], + "data transmissions": [ + "15.31.0" + ], + "database is running": [ + "15.0.0" + ], + "date": [ + "15.2.0" + ], + "dated": [ + "15.4.1", + "15.4.2", + "15.4.3" + ], + "dated february 11th": [ + "15.33.0" + ], + "day": [ + "15.7.0" + ], + "day auction": [ + "15.11.0" + ], + "days by stefania": [ + "15.15.0" + ], + "dead/ objectified labour": [ + "15.34.0" + ], + "dealing ad nauseam": [ + "15.8.2" + ], + "dear": [ + "15.8.2", + "15.23.0" + ], + "dear ashley": [ + "15.8.2" + ], + "dear ashley benigno": [ + "15.8.2", + "15.8.2" + ], + "dear barbrook": [ + "15.34.0" + ], + "dear frieds": [ + "15.36.0" + ], + "dear watford": [ + "15.23.0" + ], + "debate": [ + "15.28.0" + ], + "debate is proving": [ + "15.34.0" + ], + "debate on moderation": [ + "15.28.0" + ], + "dec": [ + "15.26.0" + ], + "decided to turn": [ + "15.24.0" + ], + "decoder": [ + "15.31.0" + ], + "decoder bbs": [ + "15.31.0" + ], + "decoder group": [ + "15.31.0" + ], + "deconstruct traditional power": [ + "15.0.0" + ], + "deep space nine*": [ + "15.24.0" + ], + "defending pollock art": [ + "15.1.0", + "15.25.0" + ], + "del luther blissett": [ + "15.26.0", + "15.27.0" + ], + "deputy district attorney": [ + "15.27.0" + ], + "derive approdi": [ + "15.15.0", + "15.15.0" + ], + "desirable": [ + "15.28.1", + "15.28.2" + ], + "desk.nl": [ + "15.28.1", + "15.28.2", + "15.28.3", + "15.31.1" + ], + "desperate callers seeking": [ + "15.17.0" + ], + "desperate rebellion encounters": [ + "15.16.0" + ], + "details": [ + "15.10.0" + ], + "develop horizontal strategies": [ + "15.0.0" + ], + "diamante": [ + "15.6.0" + ], + "die": [ + "15.8.0" + ], + "diego marmo": [ + "15.3.0" + ], + "difficult to speak": [ + "15.3.0" + ], + "digital": [ + "15.11.0" + ], + "digital artists": [ + "15.11.0", + "15.11.0" + ], + "digital artists exploring": [ + "15.11.0" + ], + "digital edition": [ + "15.1.0" + ], + "digital stock market": [ + "15.4.1" + ], + "digitising documents produced": [ + "15.31.0" + ], + "dimitri": [ + "15.20.0" + ], + "dis-identity": [ + "15.14.0" + ], + "disobbedienza civile elettronica": [ + "15.26.0", + "15.27.0" + ], + "district attorney maria": [ + "15.27.0" + ], + "district attorney office": [ + "15.20.0" + ], + "district attorneys": [ + "15.3.0" + ], + "district attorneys choose": [ + "15.3.0" + ], + "dms": [ + "15.12.0" + ], + "documenta art exhibition": [ + "15.11.0" + ], + "don": [ + "15.27.0" + ], + "don diego": [ + "15.9.0" + ], + "dora vallier explained": [ + "15.1.0", + "15.25.0" + ], + "doubt": [ + "15.7.0" + ], + "downed nato": [ + "15.17.0" + ], + "downed nato aircraft": [ + "15.17.0" + ], + "duce corpse": [ + "15.29.0" + ], + "due for release": [ + "15.19.0" + ], + "dutroux included": [ + "15.19.0" + ], + "duty": [ + "15.28.0" + ], + "duty to express": [ + "15.28.0" + ], + "early eighties negri": [ + "15.34.0" + ], + "easily deny due": [ + "15.17.0" + ], + "easy access": [ + "15.32.0" + ], + "easy to charge": [ + "15.28.0" + ], + "ebay auction site": [ + "15.11.0" + ], + "ecclesiastical athorities received": [ + "15.5.0" + ], + "ecn bologna www": [ + "15.31.0" + ], + "ecn.org": [ + "15.26.0", + "15.31.1" + ], + "ecn.org netstrike": [ + "15.26.0" + ], + "ecn.org wrote": [ + "15.31.1" + ], + "eco": [ + "15.21.0", + "15.22.0" + ], + "economic system caorbint": [ + "15.19.0" + ], + "edition": [ + "15.12.0" + ], + "edizione libera anti": [ + "15.26.0", + "15.27.0" + ], + "egalitarian community based": [ + "15.14.0" + ], + "eighties negri": [ + "15.34.0" + ], + "einaudi": [ + "15.12.0" + ], + "electronic civil disobedience": [ + "15.22.0", + "15.33.0" + ], + "electronic versions": [ + "15.33.0" + ], + "embarassingly broad question": [ + "15.4.0" + ], + "emergencies": [ + "15.15.0" + ], + "emerging merchant powers": [ + "15.16.0" + ], + "emma bonino": [ + "15.19.0" + ], + "empire bbs": [ + "15.31.0" + ], + "emprison": [ + "15.13.0" + ], + "en lengua espańola": [ + "15.12.0" + ], + "end": [ + "15.22.0" + ], + "endless preventive detention": [ + "15.15.0" + ], + "enemies": [ + "15.15.0" + ], + "enemy": [ + "15.7.0" + ], + "england": [ + "15.23.0" + ], + "england footballer": [ + "15.21.0" + ], + "english": [ + "15.4.2", + "15.4.3", + "15.7.0", + "15.8.2", + "15.9.0", + "15.26.0", + "15.35.0" + ], + "english football star": [ + "15.5.0" + ], + "entire community": [ + "15.31.0" + ], + "entire eurasian continent": [ + "15.19.0" + ], + "ernesto caffo": [ + "15.32.0" + ], + "erotic linguistic terrorist": [ + "15.4.0" + ], + "escaping conventional identities": [ + "15.5.0" + ], + "essence": [ + "15.8.2" + ], + "est": [ + "15.4.2", + "15.4.3" + ], + "established outside": [ + "15.31.0" + ], + "ethnic": [ + "15.16.0" + ], + "europe": [ + "15.16.0", + "15.19.0", + "15.22.0", + "15.24.0" + ], + "europe is finished": [ + "15.16.0" + ], + "european": [ + "15.0.0" + ], + "european counter network": [ + "15.31.0", + "15.31.0" + ], + "european cultural backbone": [ + "15.0.0", + "15.0.0" + ], + "european culture etc": [ + "15.24.0" + ], + "european fund": [ + "15.36.0" + ], + "european media": [ + "15.0.0" + ], + "european net culture": [ + "15.36.0", + "15.36.0" + ], + "european scene": [ + "15.36.0" + ], + "everybody's free": [ + "15.13.0" + ], + "excellent trojan horse": [ + "15.23.0" + ], + "exchange activist materials": [ + "15.31.0" + ], + "exchange money": [ + "15.4.1" + ], + "exist": [ + "15.24.0" + ], + "existential drama": [ + "15.1.0", + "15.25.0" + ], + "experience base": [ + "15.11.0" + ], + "exposed index": [ + "15.33.0" + ], + "express": [ + "15.28.0" + ], + "express solidarity": [ + "15.28.0" + ], + "extremely distorted accounts": [ + "15.23.0" + ], + "extremely irresponsible behavior": [ + "15.20.0" + ], + "factory": [ + "15.34.0" + ], + "faith": [ + "15.16.0" + ], + "fake carnage staged": [ + "15.24.0" + ], + "falling bombs brings": [ + "15.16.0" + ], + "false community built": [ + "15.30.0" + ], + "famous maltese falcon": [ + "15.5.0" + ], + "farm studios": [ + "15.13.0" + ], + "fascist party": [ + "15.29.0" + ], + "fascist party subscribed": [ + "15.29.0" + ], + "fascist penal": [ + "15.29.0" + ], + "fascist penal code": [ + "15.29.0" + ], + "fascist persecution": [ + "15.29.0" + ], + "fascist psychopath imprisoned": [ + "15.29.0" + ], + "fascists kill fifty": [ + "15.19.0" + ], + "february": [ + "15.1.0", + "15.25.0" + ], + "feel": [ + "15.28.0" + ], + "fellows piergiorgio bonora": [ + "15.33.0" + ], + "female army personnel": [ + "15.30.0" + ], + "fi-sud": [ + "15.26.0" + ], + "fido milan bbs": [ + "15.31.0" + ], + "fido network consistent": [ + "15.31.0" + ], + "fidonet sysop managing": [ + "15.31.0" + ], + "field": [ + "15.36.0" + ], + "fifty thousand": [ + "15.19.0" + ], + "filtering": [ + "15.28.2" + ], + "filtering and cultural": [ + "15.31.1" + ], + "finally": [ + "15.10.0" + ], + "finally police repression": [ + "15.14.0" + ], + "financial reward": [ + "15.8.0" + ], + "financial reward directly": [ + "15.4.1" + ], + "find": [ + "15.28.1", + "15.28.2" + ], + "find negri": [ + "15.34.0" + ], + "find the moderation": [ + "15.28.1", + "15.28.2" + ], + "finora solo leggi": [ + "15.31.0" + ], + "flash art": [ + "15.31.0" + ], + "flesh": [ + "15.14.0" + ], + "florence": [ + "15.26.0" + ], + "florence city hall": [ + "15.31.0" + ], + "florence south": [ + "15.26.0" + ], + "follow future developments": [ + "15.5.0" + ], + "following cultural/anthropological transformation": [ + "15.35.0" + ], + "following main characteristics": [ + "15.31.0" + ], + "following piece appeared": [ + "15.8.0", + "15.8.1" + ], + "footballer": [ + "15.21.0" + ], + "footballer cited": [ + "15.21.0" + ], + "footnote": [ + "15.9.0" + ], + "fordist factories": [ + "15.34.0" + ], + "fordist labour process": [ + "15.34.0" + ], + "forged hitler diaries": [ + "15.22.0" + ], + "forgotten filippo tommaso": [ + "15.1.0", + "15.25.0" + ], + "former public prosecutor": [ + "15.33.0" + ], + "former securitate agents": [ + "15.24.0" + ], + "former white collars": [ + "15.34.0" + ], + "forte prenestino": [ + "15.31.0" + ], + "fostered moral panic": [ + "15.33.0" + ], + "found": [ + "15.35.0" + ], + "fourth holy child": [ + "15.6.0", + "15.6.0" + ], + "franco": [ + "15.14.0" + ], + "franco berardi": [ + "15.19.0" + ], + "franco berardi bifo": [ + "15.19.0" + ], + "franco carlini": [ + "15.3.0" + ], + "franco carlini writes": [ + "15.3.0", + "15.3.0" + ], + "free": [ + "15.2.0", + "15.4.1", + "15.13.0", + "15.28.1", + "15.28.2" + ], + "free internet connection": [ + "15.31.0" + ], + "free market": [ + "15.4.1" + ], + "free market prevails": [ + "15.4.1" + ], + "free waves www": [ + "15.31.0" + ], + "friday": [ + "15.15.0" + ], + "frustrated service workers": [ + "15.30.0" + ], + "fucking stand klasse": [ + "15.13.0" + ], + "funds and corporate": [ + "15.32.0" + ], + "future activities": [ + "15.31.0" + ], + "future civic network": [ + "15.31.0" + ], + "future discussions": [ + "15.31.0" + ], + "future legislative form": [ + "15.31.0" + ], + "für netzkultur net_i@iname": [ + "15.36.0" + ], + "für netzkultur net_i@iname": [ + "15.36.0" + ], + "gallaher": [ + "15.29.0" + ], + "gallaher wrote": [ + "15.29.0" + ], + "gang kidnaps": [ + "15.6.0" + ], + "gang kidnaps holy": [ + "15.6.0" + ], + "general": [ + "15.30.0", + "15.34.0" + ], + "general intellect": [ + "15.30.0", + "15.34.0" + ], + "genius doesn": [ + "15.22.0" + ], + "german": [ + "15.8.1", + "15.12.0", + "15.30.0" + ], + "german book": [ + "15.12.0" + ], + "german book market": [ + "15.12.0", + "15.12.0" + ], + "german on-line": [ + "15.8.0", + "15.8.1" + ], + "german on-line magazine": [ + "15.8.0", + "15.8.1" + ], + "german publishing": [ + "15.12.0" + ], + "german publishing house": [ + "15.12.0" + ], + "german soldiers quartiered": [ + "15.17.0" + ], + "germany": [ + "15.12.0" + ], + "gert tom kloster": [ + "15.14.0" + ], + "gesture caused": [ + "15.1.0", + "15.25.0" + ], + "getting hacked onto": [ + "15.11.0" + ], + "gian pietro carafa": [ + "15.22.0" + ], + "giant software manufacturers": [ + "15.31.0" + ], + "giovanni pietro carafa": [ + "15.15.0" + ], + "giro di vite": [ + "15.31.0" + ], + "give money": [ + "15.4.1" + ], + "glad": [ + "15.34.0" + ], + "global human community": [ + "15.30.0" + ], + "global market": [ + "15.4.1" + ], + "goddamn business anymore": [ + "15.8.0", + "15.8.1" + ], + "good": [ + "15.24.0" + ], + "government finances moved": [ + "15.19.0" + ], + "granting food checks": [ + "15.20.0" + ], + "gratefully": [ + "15.28.3" + ], + "grijalbo": [ + "15.12.0" + ], + "grijalbo publishing": [ + "15.12.0" + ], + "grijalbo publishing house": [ + "15.12.0", + "15.12.0" + ], + "group": [ + "15.21.0", + "15.31.0" + ], + "grundrisse": [ + "15.34.0" + ], + "guattari": [ + "15.34.0", + "15.35.0" + ], + "guattari book": [ + "15.35.0" + ], + "guide": [ + "15.31.1" + ], + "gutenberg revolution": [ + "15.22.0" + ], + "guy named barnoz": [ + "15.28.0" + ], + "guys stealing statuettes": [ + "15.8.0" + ], + "hach farm": [ + "15.13.0" + ], + "hach farm studios": [ + "15.13.0", + "15.13.0" + ], + "hacker art bbs": [ + "15.31.0", + "15.31.0" + ], + "hacker meeting icata89": [ + "15.31.0" + ], + "hacking means deconstructing": [ + "15.0.0" + ], + "hall": [ + "15.20.0" + ], + "handbuch der kommunikationsguerilla": [ + "15.12.0" + ], + "hang mussolini": [ + "15.29.0" + ], + "hang mussolini upside": [ + "15.29.0", + "15.29.0" + ], + "happened with nettime": [ + "15.28.1" + ], + "harassment meets nice": [ + "15.28.0" + ], + "hardly worth shedding": [ + "15.19.0" + ], + "headedly kept describing": [ + "15.17.0" + ], + "hear stanley kubrick": [ + "15.13.0" + ], + "heavy-handed": [ + "15.28.1", + "15.28.2" + ], + "heise": [ + "15.8.1" + ], + "helicopter arrived": [ + "15.17.0" + ], + "hell.com": [ + "15.2.0" + ], + "hell.com organized": [ + "15.2.0" + ], + "hell.com www": [ + "15.2.0" + ], + "herby": [ + "15.28.3" + ], + "herby renamed nettime": [ + "15.28.3" + ], + "herby submit": [ + "15.28.3" + ], + "hidden agenda common": [ + "15.24.0" + ], + "hideous preventive censorship": [ + "15.20.0" + ], + "highest offer": [ + "15.12.0" + ], + "highest offer einaudi": [ + "15.12.0" + ], + "historical novel set": [ + "15.22.0" + ], + "history": [ + "15.14.0" + ], + "hobbyist data transmission": [ + "15.31.0" + ], + "holding telecom italia": [ + "15.32.0" + ], + "holy": [ + "15.6.0" + ], + "holy child": [ + "15.6.0", + "15.6.0" + ], + "holy child gang": [ + "15.6.0", + "15.6.0" + ], + "holy children": [ + "15.6.0" + ], + "holy jubilee": [ + "15.6.0" + ], + "hook": [ + "15.21.0" + ], + "hopkins": [ + "15.9.0" + ], + "hopkins and antonio": [ + "15.9.0" + ], + "houellebecq": [ + "15.14.0" + ], + "house": [ + "15.12.0" + ], + "house piper": [ + "15.12.0" + ], + "house piper verlag": [ + "15.12.0" + ], + "huelga de arte": [ + "15.4.0", + "15.4.2", + "15.4.3", + "15.6.0", + "15.7.0", + "15.8.0", + "15.8.2", + "15.9.0" + ], + "human communication possibilities": [ + "15.31.0" + ], + "human genome project": [ + "15.4.0" + ], + "human pilot aboard": [ + "15.17.0" + ], + "human rights": [ + "15.15.0" + ], + "hyped promotional tour": [ + "15.24.0" + ], + "icf.de": [ + "15.35.0" + ], + "idea": [ + "15.4.1", + "15.4.2", + "15.4.3" + ], + "identity": [ + "15.7.0", + "15.19.0" + ], + "il caso musti": [ + "15.20.0" + ], + "image": [ + "15.0.0" + ], + "immaculate conception hosted": [ + "15.6.0" + ], + "immediate political value": [ + "15.33.0" + ], + "immediately brought": [ + "15.32.0" + ], + "implies technical skills": [ + "15.34.0" + ], + "important": [ + "15.30.0", + "15.34.0" + ], + "important thing": [ + "15.8.2" + ], + "inaccessible planet": [ + "15.19.0" + ], + "incidentally described slobo": [ + "15.17.0" + ], + "incite mass intellectuals": [ + "15.30.0" + ], + "increasingly": [ + "15.35.0" + ], + "index": [ + "15.33.0" + ], + "individual luther": [ + "15.10.0" + ], + "individual luther blissett": [ + "15.10.0" + ], + "individually": [ + "15.28.3" + ], + "industrial workers": [ + "15.30.0" + ], + "inexistent satanic cults": [ + "15.15.0" + ], + "infant jesus disappeared": [ + "15.5.0" + ], + "info": [ + "15.10.0", + "15.26.0", + "15.28.1", + "15.28.2", + "15.28.3", + "15.31.1", + "15.35.0" + ], + "info nettime-l": [ + "15.28.1", + "15.28.2", + "15.31.1" + ], + "information": [ + "15.2.0" + ], + "information aimed": [ + "15.27.0" + ], + "information flows devised": [ + "15.31.0" + ], + "innocuous cult called": [ + "15.33.0" + ], + "inoculating lethal viruses": [ + "15.30.0" + ], + "inquiry": [ + "15.20.0" + ], + "insomnia diary": [ + "15.17.0" + ], + "institute": [ + "15.0.0" + ], + "institute architecture": [ + "15.0.0" + ], + "institute database": [ + "15.0.0" + ], + "institute framework": [ + "15.0.0" + ], + "institute mailing": [ + "15.0.0" + ], + "institute mailing list": [ + "15.0.0" + ], + "institute mediatic": [ + "15.0.0" + ], + "institute mediatic image": [ + "15.0.0" + ], + "institute structure": [ + "15.0.0" + ], + "institute web": [ + "15.0.0" + ], + "institute web interface": [ + "15.0.0", + "15.36.0" + ], + "institute web site": [ + "15.0.0" + ], + "intellect": [ + "15.34.0" + ], + "intellect/living labour": [ + "15.34.0" + ], + "intellectual proletarians": [ + "15.35.0" + ], + "intellectuals": [ + "15.30.0" + ], + "intentions": [ + "15.8.2" + ], + "interconnected orbiting capsules": [ + "15.19.0" + ], + "interest roya": [ + "15.17.0" + ], + "interface": [ + "15.0.0", + "15.36.0" + ], + "interface luther": [ + "15.36.0" + ], + "interface luther blissett": [ + "15.36.0" + ], + "international": [ + "15.24.0" + ], + "international alliances": [ + "15.24.0" + ], + "international copyright": [ + "15.2.0" + ], + "international copyright laws": [ + "15.2.0" + ], + "international monetary fund": [ + "15.24.0", + "15.24.0" + ], + "international police operations": [ + "15.24.0", + "15.24.0" + ], + "international solidarity": [ + "15.33.0" + ], + "internet and net-culture": [ + "15.8.0" + ], + "internet paedophiles'": [ + "15.3.0" + ], + "internet providers": [ + "15.33.0" + ], + "internet service": [ + "15.33.0" + ], + "internet service providers": [ + "15.33.0", + "15.33.0" + ], + "introduce italian artists": [ + "15.36.0" + ], + "invaders": [ + "15.13.0" + ], + "invent fake news": [ + "15.23.0" + ], + "invented gustav siegfried": [ + "15.30.0" + ], + "invisible paragraphs": [ + "15.3.0" + ], + "invited guests earlier": [ + "15.11.0" + ], + "invoke sententious arguments": [ + "15.4.0" + ], + "involuntary subscription": [ + "15.28.1" + ], + "involved parties agree": [ + "15.12.0" + ], + "iracund acquaintance failed": [ + "15.8.0" + ], + "iracund message": [ + "15.8.0" + ], + "ireland": [ + "15.5.0" + ], + "iron": [ + "15.24.0" + ], + "isolationist policy": [ + "15.19.0" + ], + "isole nella": [ + "15.31.0", + "15.31.0" + ], + "isole nella rete": [ + "15.31.0", + "15.31.0" + ], + "issue": [ + "15.8.1" + ], + "issue of exit": [ + "15.14.0" + ], + "issue of tempos": [ + "15.19.0" + ], + "italian": [ + "15.4.0", + "15.4.2", + "15.4.3", + "15.5.0", + "15.7.0", + "15.8.0", + "15.9.0", + "15.14.0", + "15.15.0", + "15.17.0", + "15.22.0", + "15.23.0", + "15.25.0", + "15.27.0", + "15.29.0", + "15.31.0", + "15.32.0", + "15.33.0", + "15.34.0" + ], + "italian ": [ + "16.102.0" + ], + "": [ + "16.102.0" + ], + "
marc garrett": [ + "16.75.0" + ], + "
adrian russu": [ + "16.102.0" + ], + "
ciao
": [ + "16.102.0" + ], + "
lorenzo taiuti
": [ + "16.102.0" + ], + "
nn ": [ + "16.102.0" + ], + "lint": [ + "16.188.0" + ], + "nos sug": [ + "16.188.0" + ], + "": [ + "16.154.0" + ], + " *ns*bscribe yourself": [ + "16.132.0" + ], + "> >>>> tbyfield@panix": [ + "16.23.0" + ], + "> info@furtherfield": [ + "16.151.0" + ], + "> nebula_m81 0+2": [ + "16.18.0" + ], + "> shareartware@netscape": [ + "16.164.0", + "16.166.0" + ], + "> syndicate network": [ + "16.91.0" + ], + ">* registered users": [ + "16.58.0" + ], + ">+ tak": [ + "16.198.0" + ], + ">relevant> uns*bscribe yourself": [ + "16.138.0" + ], + ">>>>dear andreas": [ + "16.121.0" + ], + ">>>dear anna": [ + "16.121.0" + ], + ">>>martha rosler": [ + "16.121.0" + ], + ">admin account": [ + "16.172.0" + ], + ">ambient sound scape": [ + "16.58.0" + ], + ">andreas broeckmann": [ + "16.121.0" + ], + ">andreas broeckmann carlo guiliani": [ + "16.50.0" + ], + ">carlo guiliani deaded": [ + "16.50.0" + ], + ">cinematic elements": [ + "16.11.0" + ], + ">computer vendors signed": [ + "16.13.0" + ], + ">dear nezvanova netochka": [ + "16.35.0" + ], + ">dear janos sugar": [ + "16.187.0" + ], + ">dear list subscribers": [ + "16.176.0" + ], + ">dear netochka nezvanova": [ + "16.54.0" + ], + ">european media scenes": [ + "16.28.0" + ], + ">hello extraordinary creature": [ + "16.26.0" + ], + ">incompetent male fascists": [ + "16.23.0" + ], + ">julie blankenship": [ + "16.64.0" + ], + ">matt@axia": [ + "16.50.0" + ], + ">meets linus torvalds": [ + "16.211.0" + ], + ">memocide / murder": [ + "16.23.0" + ], + ">neil wiernik netochka nezvanova": [ + "16.62.0" + ], + ">netochka nezvanova nezvanova@eusocial": [ + "16.121.0", + "16.122.0" + ], + ">personally am corresponding": [ + "16.23.0" + ], + ">printed word tradition": [ + "16.11.0" + ], + ">repeated bad netiquette": [ + "16.86.0" + ], + ">rich environment dominated": [ + "16.11.0" + ], + ">sensible + flexible": [ + "16.23.0" + ], + ">spaces people try": [ + "16.183.0" + ], + ">station rose syndicate network": [ + "16.167.0" + ], + "\\+\\ am3r": [ + "16.2.0" + ], + "\\+\\ apres": [ + "16.5.0" + ], + "\\+\\ konzp": [ + "16.22.0" + ], + "\\+\\ m9ndfukc": [ + "16.19.0" + ], + "\\/\\ etvas publicitate": [ + "16.46.0" + ], + "\\\\ dze kr": [ + "16.210.0" + ], + "_a loose affiliation": [ + "16.143.0", + "16.144.0" + ], + "_if _you _wish": [ + "16.121.0" + ], + "_it_ speaks literally": [ + "16.67.0", + "16.76.0" + ], + "_no _one wishes": [ + "16.172.0", + "16.174.0", + "16.184.0" + ], + "_openly + _publicly": [ + "16.188.0" + ], + "`life energie`": [ + "16.183.0" + ], + "a.greed": [ + "16.72.0" + ], + "a7=3dc +": [ + "16.5.0" + ], + "a9ff 0+2": [ + "16.5.0" + ], + "aaama atarauaea.a": [ + "16.48.0" + ], + "aaana aialalauasaiaoana": [ + "16.48.0" + ], + "aaapapaeataiataeasa": [ + "16.48.0" + ], + "aaapapaeataiataeasa aoafa": [ + "16.48.0" + ], + "aaapapaeataiataeasa aoafa asaiananaearasa": [ + "16.48.0" + ], + "aaargh": [ + "16.114.0" + ], + "aart": [ + "16.1.1" + ], + "aart wrote": [ + "16.1.1" + ], + "ab.zurd": [ + "16.1.0" + ], + "abandoned": [ + "16.169.0", + "16.172.0", + "16.176.0-p.1200" + ], + "aber": [ + "16.65.0" + ], + "abl": [ + "16.18.0" + ], + "abroeck@v2": [ + "16.8.0", + "16.10.0" + ], + "abruptl": [ + "16.145.0" + ], + "abs.": [ + "16.36.0" + ], + "abs. genius.": [ + "16.36.0" + ], + "abs. genius. bon": [ + "16.36.0" + ], + "absence": [ + "16.67.0", + "16.177.0" + ], + "absolute": [ + "16.5.0", + "16.36.0" + ], + "absolute,x": [ + "16.5.0" + ], + "absolute,y": [ + "16.5.0" + ], + "absolutely": [ + "16.109.0", + "16.112.0", + "16.118.0", + "16.119.0", + "16.179.0" + ], + "absolutely insupportable": [ + "16.119.0" + ], + "absurd antiorp messages": [ + "16.7.0" + ], + "abyss": [ + "16.21.0" + ], + "abyss gazes": [ + "16.21.0" + ], + "acaaalalaeada": [ + "16.48.0" + ], + "acaaalalaeada aaana": [ + "16.48.0" + ], + "acaaalalaeada aaana aialalauasaiaoana": [ + "16.48.0" + ], + "accented english": [ + "16.61.0" + ], + "accept": [ + "16.161.0", + "16.176.0-p.1200" + ], + "accept rules": [ + "16.111.0" + ], + "accept this accord": [ + "16.161.0" + ], + "acceptable anymore": [ + "16.111.0" + ], + "accepted": [ + "16.4.0", + "16.54.0" + ], + "accepted for publication": [ + "16.54.0" + ], + "access": [ + "16.14.0", + "16.89.0", + "16.90.0", + "16.125.0", + "16.169.0", + "16.172.0" + ], + "access 0f0003 website": [ + "16.14.0" + ], + "access nebula_m81 0+2": [ + "16.18.0" + ], + "access protokol": [ + "16.18.0" + ], + "access the administration": [ + "16.169.0", + "16.172.0" + ], + "accidented": [ + "16.50.0" + ], + "accidented death": [ + "16.50.0" + ], + "accommodations": [ + "16.52.0" + ], + "accommodations kompliments": [ + "16.52.0" + ], + "accomplishments": [ + "16.112.0", + "16.118.0" + ], + "accord": [ + "16.161.0" + ], + "account": [ + "16.143.0", + "16.144.0" + ], + "accused": [ + "16.129.0" + ], + "achetez": [ + "16.91.0" + ], + "acoustic space workshop": [ + "16.170.0" + ], + "act": [ + "16.108.0" + ], + "act destructive": [ + "16.108.0" + ], + "acting shows": [ + "16.153.0", + "16.155.0" + ], + "action": [ + "16.27.0", + "16.81.0" + ], + "action is required": [ + "16.81.0" + ], + "action-rictus": [ + "16.143.0", + "16.144.0" + ], + "active sound processing": [ + "16.5.0" + ], + "activities": [ + "16.21.0", + "16.156.0" + ], + "activities and habits": [ + "16.21.0" + ], + "activity": [ + "16.199.0", + "16.200.0" + ], + "actual democracy +": [ + "16.17.0" + ], + "actually considered leaving": [ + "16.91.0", + "16.99.0" + ], + "adc": [ + "16.5.0" + ], + "add": [ + "16.91.0" + ], + "additional": [ + "16.3.0", + "16.4.0" + ], + "additional contributions": [ + "16.4.0" + ], + "additional life forms": [ + "16.17.0", + "16.17.0" + ], + "address": [ + "16.113.0", + "16.146.0", + "16.175.0", + "16.176.0" + ], + "address or subject": [ + "16.113.0" + ], + "addtl life forms": [ + "16.23.0" + ], + "addtl lo.tekk": [ + "16.12.0" + ], + "adge was reaching": [ + "16.157.0" + ], + "adjustd": [ + "16.49.0" + ], + "admin account": [ + "16.169.0", + "16.169.0", + "16.171.0" + ], + "admin request": [ + "16.85.0", + "16.92.0", + "16.94.0", + "16.107.0", + "16.132.0", + "16.143.0", + "16.144.0" + ], + "admin requests": [ + "16.169.0", + "16.172.0" + ], + "admin requests etc": [ + "16.169.0", + "16.171.0", + "16.172.0" + ], + "admin team": [ + "16.86.0", + "16.95.0", + "16.175.0", + "16.176.0" + ], + "admin technical": [ + "16.175.0", + "16.176.0" + ], + "admin technical infrastructure": [ + "16.175.0", + "16.176.0" + ], + "administrate": [ + "16.106.0" + ], + "administrate a mailing": [ + "16.106.0" + ], + "administrated by easteuropeans": [ + "16.176.0-p.1200" + ], + "administrating": [ + "16.106.0" + ], + "administrating the corporate": [ + "16.106.0" + ], + "administration": [ + "16.164.0", + "16.166.0", + "16.169.0", + "16.171.0", + "16.172.0" + ], + "administration dear": [ + "16.171.0" + ], + "administration dear anna": [ + "16.171.0" + ], + "administration mail": [ + "16.169.0", + "16.172.0" + ], + "administration requests": [ + "16.164.0" + ], + "administrator": [ + "16.162.0", + "16.164.0" + ], + "administrators": [ + "16.94.0" + ], + "administrators ban": [ + "16.94.0" + ], + "admins clandestinely": [ + "16.161.0" + ], + "admins clandestinely mismanaging": [ + "16.161.0" + ], + "admins decided": [ + "16.117.0" + ], + "admins decided unilaterally": [ + "16.117.0", + "16.117.0" + ], + "admins finds time": [ + "16.105.0" + ], + "admins off-list": [ + "16.175.0", + "16.176.0" + ], + "admins uns": [ + "16.95.0" + ], + "admins unsb": [ + "16.92.0" + ], + "admins unsb netochka": [ + "16.92.0" + ], + "admins usb": [ + "16.97.0" + ], + "admins usb netochka": [ + "16.97.0", + "16.97.0" + ], + "admins usbd": [ + "16.97.0" + ], + "adminstring": [ + "16.114.0" + ], + "adminstring the list": [ + "16.110.0", + "16.114.0" + ], + "admire": [ + "16.146.0" + ], + "admired lazy students": [ + "16.191.0" + ], + "admit": [ + "16.99.0", + "16.117.0" + ], + "adobe premiere": [ + "16.28.0" + ], + "adoption": [ + "16.27.0" + ], + "adoption by half": [ + "16.27.0" + ], + "adore": [ + "16.60.0" + ], + "adore delicate": [ + "16.60.0" + ], + "adore delicate discrimination": [ + "16.60.0", + "16.60.0" + ], + "adrian russu": [ + "16.102.0" + ], + "advertising": [ + "16.211.0" + ], + "advice": [ + "16.202.0" + ], + "adz dze": [ + "16.22.0" + ], + "aford": [ + "16.38.0" + ], + "aford man": [ + "16.38.0" + ], + "africa": [ + "16.41.0" + ], + "age": [ + "16.209.0", + "16.210.0" + ], + "age module": [ + "16.5.0" + ], + "agenda": [ + "16.140.0", + "16.150.0" + ], + "agenda now worm": [ + "16.140.0" + ], + "aggressive": [ + "16.184.0" + ], + "aging": [ + "16.209.0" + ], + "ago": [ + "16.73.0", + "16.95.0", + "16.170.0", + "16.174.0" + ], + "agramz ov molekulz": [ + "16.18.0" + ], + "agree": [ + "16.68.0", + "16.70.0", + "16.72.0", + "16.119.0", + "16.142.0", + "16.147.0" + ], + "agree with diana": [ + "16.142.0", + "16.147.0" + ], + "agree with igor": [ + "16.68.0", + "16.72.0" + ], + "agreement": [ + "16.63.0", + "16.64.0", + "16.95.0", + "16.133.0" + ], + "agreement available online": [ + "16.133.0" + ], + "agreement with inke": [ + "16.63.0", + "16.64.0" + ], + "agricola de cologne": [ + "16.76.0", + "16.76.0" + ], + "aha": [ + "16.195.0" + ], + "aha rrrrr": [ + "16.195.0" + ], + "aha rrrrr brrrr": [ + "16.195.0" + ], + "aia": [ + "16.48.0" + ], + "aia aaama": [ + "16.48.0" + ], + "aia aaama atarauaea": [ + "16.48.0" + ], + "aia aaama atarauaea.a": [ + "16.48.0" + ], + "aialalauasaiaoana a-a aia": [ + "16.48.0" + ], + "aim of realising": [ + "16.50.0" + ], + "aimed": [ + "16.112.0" + ], + "aimed at mapping": [ + "16.112.0", + "16.118.0" + ], + "air": [ + "16.157.0" + ], + "air smells sweet": [ + "16.83.0" + ], + "airing": [ + "16.193.0" + ], + "airing more details": [ + "16.193.0" + ], + "aka": [ + "16.203.0" + ], + "aka the korporate": [ + "16.203.0" + ], + "akaaapaiataaala": [ + "16.48.0" + ], + "akaaapaiataaala apauanaiasahamaeanata": [ + "16.48.0" + ], + "akkomodations": [ + "16.53.0" + ], + "akt": [ + "16.1.2", + "16.45.0" + ], + "aktivity": [ + "16.31.0" + ], + "akurat mapz": [ + "16.59.0" + ], + "al 4rmz enkloz": [ + "16.17.0" + ], + "al ov modelz": [ + "16.44.0" + ], + "al theorom dzat": [ + "16.7.0" + ], + "alan": [ + "16.72.0", + "16.76.0", + "16.85.0" + ], + "alan and igor": [ + "16.72.0" + ], + "alan internet": [ + "16.85.0" + ], + "alan internet text": [ + "16.85.0" + ], + "alan sondheim": [ + "16.85.0" + ], + "alan sondheim +": [ + "16.17.0" + ], + "cable": [ + "16.117.0" + ], + "cable link": [ + "16.117.0" + ], + "cagliari ea society": [ + "16.19.0", + "16.19.0" + ], + "cal": [ + "16.38.0" + ], + "cal a data": [ + "16.38.0" + ], + "call": [ + "16.41.0", + "16.62.0", + "16.76.0", + "16.112.0", + "16.118.0" + ], + "call for artists": [ + "16.76.0" + ], + "call for contribution": [ + "16.41.0" + ], + "call platonism": [ + "16.24.0" + ], + "call the coffeehaus": [ + "16.112.0" + ], + "called": [ + "16.73.0", + "16.96.0", + "16.106.0", + "16.157.0" + ], + "called an illusion": [ + "16.47.0", + "16.56.0" + ], + "called syndicate": [ + "16.157.0", + "16.157.0" + ], + "called time nightmares": [ + "16.200.0" + ], + "calling": [ + "16.0.0" + ], + "calling terrorism": [ + "16.0.0" + ], + "calls and equivalent": [ + "16.117.0" + ], + "canada": [ + "16.36.0" + ], + "canadian children's": [ + "16.23.0" + ], + "canadian children's rhinoblastoma": [ + "16.23.0" + ], + "cancer": [ + "16.23.0" + ], + "cancer institute": [ + "16.23.0" + ], + "canetti guy debord": [ + "16.24.0" + ], + "canterbury university nz": [ + "16.19.0" + ], + "capitalist context": [ + "16.78.0" + ], + "capitalist mecenate wherever": [ + "16.93.0" + ], + "capitalist narratives": [ + "16.156.0", + "16.168.0" + ], + "capitalist society infatuated": [ + "16.14.0" + ], + "car": [ + "16.208.0" + ], + "car manufacturer": [ + "16.208.0" + ], + "caravan": [ + "16.59.0" + ], + "care": [ + "16.53.0", + "16.109.0" + ], + "careers": [ + "16.86.0" + ], + "cares": [ + "16.109.0" + ], + "carlo": [ + "16.50.0" + ], + "carlo guiliani": [ + "16.50.0", + "16.50.0" + ], + "carlo guiliani deaded": [ + "16.50.0" + ], + "carlo guiliani death": [ + "16.50.0" + ], + "carlton joseph": [ + "16.15.0" + ], + "carlton joseph wilkinson": [ + "16.15.0", + "16.15.0" + ], + "carlton wilkinson": [ + "16.14.0" + ], + "carnegie": [ + "16.13.0" + ], + "carnegie mellon": [ + "16.13.0" + ], + "carnival": [ + "16.186.0" + ], + "carnivore": [ + "16.204.0" + ], + "carry": [ + "16.148.0" + ], + "carrying": [ + "16.114.0" + ], + "carrying big": [ + "16.114.0" + ], + "carrying big fat": [ + "16.114.0" + ], + "case": [ + "16.103.0", + "16.111.0", + "16.139.0", + "16.189.0" + ], + "case count": [ + "16.139.0" + ], + "case philip": [ + "16.188.0" + ], + "case yesterday evening": [ + "16.104.0", + "16.105.0" + ], + "casual": [ + "16.93.0" + ], + "casual moments": [ + "16.93.0" + ], + "categorize integer/nn": [ + "16.153.0" + ], + "cauarabaianaga": [ + "16.48.0" + ], + "cauarabaianaga atahaea": [ + "16.48.0" + ], + "cauarabaianaga atahaea aaapapaeataiataeasa": [ + "16.48.0" + ], + "causing civilian victims": [ + "16.0.0" + ], + "caveat lector": [ + "16.88.0" + ], + "cd rom collection": [ + "16.41.0" + ], + "cdr": [ + "16.7.0" + ], + "cee": [ + "16.71.0" + ], + "cellar": [ + "16.186.0" + ], + "celled organism swallowed": [ + "16.31.0" + ], + "celled organisms": [ + "16.31.0" + ], + "cellpadding": [ + "16.75.0" + ], + "cellspacing": [ + "16.75.0" + ], + "cemented madonna": [ + "16.37.0" + ], + "censoring nato": [ + "16.191.0", + "16.193.0" + ], + "censoring nato users": [ + "16.191.0", + "16.193.0" + ], + "censorship": [ + "16.122.0", + "16.127.0", + "16.162.0" + ], + "centered subject directing": [ + "16.14.0" + ], + "centric opinionated designers": [ + "16.120.0" + ], + "century": [ + "16.61.0" + ], + "century perception": [ + "16.61.0" + ], + "cerebral cortex": [ + "16.25.0" + ], + "cerebral cortex controlled": [ + "16.25.0" + ], + "certan truth": [ + "16.1.0" + ], + "cest": [ + "16.121.0", + "16.122.0", + "16.140.0", + "16.141.0", + "16.147.0" + ], + "cest ta faute": [ + "16.147.0", + "16.147.0" + ], + "cezt": [ + "16.19.0" + ], + "cgi": [ + "16.83.0" + ], + "cgi i posted": [ + "16.83.0" + ], + "ch genez komun": [ + "16.201.0" + ], + "ch makez numb`": [ + "16.192.0" + ], + "chadabe": [ + "16.42.0" + ], + "challenges the phallus-hegemony": [ + "16.203.0" + ], + "change": [ + "16.13.0", + "16.79.0", + "16.136.0" + ], + "change ethics": [ + "16.78.0" + ], + "change julie": [ + "16.141.0" + ], + "changed": [ + "16.207.0" + ], + "changed colour": [ + "16.207.0" + ], + "channel audio stream": [ + "16.203.0" + ], + "characterises main-stream art": [ + "16.181.0" + ], + "charity organisations": [ + "16.157.0" + ], + "charset": [ + "16.143.0", + "16.144.0", + "16.154.0" + ], + "cheap zupermarket": [ + "16.209.0" + ], + "cheap zupermarket harlot": [ + "16.209.0" + ], + "cheaper than paying": [ + "16.117.0" + ], + "cheers": [ + "16.145.0" + ], + "chek": [ + "16.45.0" + ], + "childhood means soooooo": [ + "16.154.0" + ], + "childish double feedback": [ + "16.120.0" + ], + "children": [ + "16.47.0", + "16.199.0", + "16.200.0" + ], + "children and programmes": [ + "16.195.0" + ], + "children anymore +": [ + "16.199.0", + "16.200.0" + ], + "children deserve": [ + "16.47.0" + ], + "children rhinoblastoma": [ + "16.23.0" + ], + "chloroplast converting light": [ + "16.31.0" + ], + "chocolat": [ + "16.207.0" + ], + "choice": [ + "16.15.0" + ], + "chris": [ + "16.166.0", + "16.176.0" + ], + "chris byrne": [ + "16.166.0", + "16.175.0", + "16.176.0" + ], + "chris byrne chris@mediascot": [ + "16.175.0" + ], + "chris byrne cs": [ + "16.188.0" + ], + "galax": [ + "16.53.0" + ], + "galloway": [ + "16.30.0" + ], + "game": [ + "16.14.0", + "16.35.0", + "16.96.0", + "16.116.0", + "16.153.0", + "16.168.0" + ], + "games": [ + "16.31.0", + "16.96.0", + "16.199.0", + "16.200.0" + ], + "games excessively": [ + "16.199.0" + ], + "games online": [ + "16.21.0" + ], + "gang": [ + "16.137.0" + ], + "garbo": [ + "16.54.0" + ], + "gardn": [ + "16.180.0" + ], + "garett": [ + "16.195.0" + ], + "garrett": [ + "16.133.0", + "16.182.0" + ], + "gate": [ + "16.8.0", + "16.64.0" + ], + "gated mistake": [ + "16.64.0" + ], + "gatez": [ + "16.8.0" + ], + "gave": [ + "16.116.0" + ], + "gaze": [ + "16.21.0" + ], + "gdje pristajemo +": [ + "16.194.0" + ], + "gearhead": [ + "16.7.0" + ], + "geert": [ + "16.126.0", + "16.132.0", + "16.138.0", + "16.150.0", + "16.161.0", + "16.179.0", + "16.181.0", + "16.182.0", + "16.187.0", + "16.189.0" + ], + "geert lovink": [ + "16.138.0", + "16.140.0", + "16.150.0", + "16.161.0", + "16.188.0" + ], + "geert lovink modest": [ + "16.138.0" + ], + "geert wrote": [ + "16.181.0" + ], + "gehry": [ + "16.42.0" + ], + "gender": [ + "16.153.0" + ], + "gendr \\+\\ komerz": [ + "16.46.0" + ], + "gene konglomerate supplants": [ + "16.27.0" + ], + "general trend": [ + "16.11.0" + ], + "general wesley": [ + "16.27.0" + ], + "general wesley clark": [ + "16.27.0" + ], + "generally human machines": [ + "16.14.0" + ], + "generally useless discipline": [ + "16.78.0" + ], + "generate": [ + "16.63.0", + "16.66.0", + "16.68.0" + ], + "generated noise interpolated": [ + "16.14.0" + ], + "generation of gui": [ + "16.12.0" + ], + "generator": [ + "16.102.0" + ], + "generaz": [ + "16.29.0" + ], + "genez": [ + "16.201.0" + ], + "genez dze": [ + "16.201.0" + ], + "genez komun": [ + "16.201.0" + ], + "genius.": [ + "16.36.0" + ], + "genius. bon": [ + "16.36.0" + ], + "genoa": [ + "16.50.0", + "16.116.0" + ], + "genova": [ + "16.115.0", + "16.116.0" + ], + "gensz": [ + "16.1.0" + ], + "gentle": [ + "16.209.0" + ], + "gentle +": [ + "16.209.0" + ], + "gentle rose modulations": [ + "16.209.0" + ], + "george": [ + "16.88.0" + ], + "georgia": [ + "16.71.0" + ], + "german": [ + "16.27.0" + ], + "german neo-nazis": [ + "16.27.0", + "16.28.0" + ], + "gert": [ + "16.20.0" + ], + "gert and ted": [ + "16.20.0" + ], + "gert enter righ": [ + "16.20.0" + ], + "gesture whithout": [ + "16.117.0" + ], + "getting progressively stronger": [ + "16.11.0" + ], + "gfx\\film\\noisz\\music data": [ + "16.18.0" + ], + "ght +": [ + "16.45.0", + "16.122.0" + ], + "ghtmare": [ + "16.145.0" + ], + "ghu": [ + "16.8.0" + ], + "gibberish": [ + "16.8.0" + ], + "gibson": [ + "16.211.0" + ], + "gibson pulled": [ + "16.131.0" + ], + "gibson understands advertising": [ + "16.211.0", + "16.211.0" + ], + "gilles deleuze": [ + "16.24.0" + ], + "gilles deleuze elias": [ + "16.24.0" + ], + "gineau": [ + "16.79.0" + ], + "gineau pigs": [ + "16.75.0", + "16.79.0", + "16.79.0" + ], + "girlie tour": [ + "16.37.0" + ], + "give": [ + "16.65.0", + "16.121.0" + ], + "give lip": [ + "16.65.0" + ], + "give lip service": [ + "16.65.0" + ], + "give naught": [ + "16.121.0" + ], + "give people": [ + "16.121.0" + ], + "glass bead game": [ + "16.14.0" + ], + "glibitz": [ + "16.38.0" + ], + "global": [ + "16.210.0" + ], + "global control": [ + "16.210.0" + ], + "global unity": [ + "16.134.0" + ], + "globalistic": [ + "16.116.0" + ], + "globalistic event": [ + "16.116.0" + ], + "globally and simultaneously": [ + "16.2.0" + ], + "glossy book": [ + "16.102.0" + ], + "gmos": [ + "16.78.0" + ], + "gnz": [ + "16.44.0" + ], + "gnz ov effekt": [ + "16.44.0" + ], + "go.here": [ + "16.72.0" + ], + "goal": [ + "16.145.0" + ], + "god": [ + "16.199.0", + "16.200.0", + "16.211.0" + ], + "godel": [ + "16.24.0" + ], + "goethe": [ + "16.183.0" + ], + "goethe juzt": [ + "16.183.0" + ], + "goethe juzt zubzkr": [ + "16.183.0", + "16.183.0" + ], + "gold tassels worn": [ + "16.37.0" + ], + "goldfish": [ + "16.9.0" + ], + "gonna": [ + "16.75.0", + "16.79.0" + ], + "gonna stop": [ + "16.75.0", + "16.79.0" + ], + "gonna stop posting": [ + "16.75.0", + "16.79.0", + "16.79.0" + ], + "good": [ + "16.44.0", + "16.51.0", + "16.115.0", + "16.118.0", + "16.122.0", + "16.171.0", + "16.176.0-p.1200", + "16.195.0", + "16.197.0", + "16.206.0", + "16.210.0" + ], + "good emails": [ + "16.51.0" + ], + "good jazz": [ + "16.102.0" + ], + "good jazz club": [ + "16.102.0" + ], + "good metafor": [ + "16.122.0" + ], + "good morning": [ + "16.206.0" + ], + "good morning paul": [ + "16.206.0" + ], + "good point": [ + "16.118.0" + ], + "good question": [ + "16.115.0" + ], + "good work": [ + "16.176.0-p.1200" + ], + "good-morning": [ + "16.146.0" + ], + "good-morning good-morning": [ + "16.146.0" + ], + "good-morning good-morning good-morning": [ + "16.146.0" + ], + "gostaphut 3rd remove": [ + "16.18.0" + ], + "gotta": [ + "16.37.0" + ], + "gov infanterie daaaaaa": [ + "16.58.0" + ], + "govermental art support": [ + "16.41.0" + ], + "govern circumstances": [ + "16.202.0" + ], + "graced": [ + "16.134.0" + ], + "graced the lists": [ + "16.134.0" + ], + "graduate research position": [ + "16.19.0" + ], + "grains grew": [ + "16.36.0" + ], + "graphic": [ + "16.12.0" + ], + "graphic user": [ + "16.12.0" + ], + "graphic user interface": [ + "16.12.0", + "16.12.0" + ], + "grasp": [ + "16.210.0" + ], + "grasping": [ + "16.210.0" + ], + "grasping for breath": [ + "16.210.0" + ], + "gratis": [ + "16.41.0" + ], + "great": [ + "16.73.0", + "16.163.0" + ], + "great censor": [ + "16.132.0" + ], + "great idea": [ + "16.152.0" + ], + "great time": [ + "16.163.0" + ], + "greedy": [ + "16.36.0" + ], + "greeting rituals": [ + "16.26.0" + ], + "gregory": [ + "16.131.0" + ], + "gregory taylor": [ + "16.131.0" + ], + "greta": [ + "16.54.0" + ], + "greta garbo": [ + "16.33.0", + "16.54.0" + ], + "grin": [ + "16.128.0" + ], + "grounds for disqualification": [ + "16.125.0" + ], + "group": [ + "16.111.0", + "16.170.0", + "16.196.0" + ], + "group consists": [ + "16.170.0" + ], + "groups": [ + "16.63.0" + ], + "grown to hate": [ + "16.114.0" + ], + "grtz": [ + "16.88.0" + ], + "grtz marc": [ + "16.88.0" + ], + "guardian": [ + "16.50.0" + ], + "guess": [ + "16.62.0", + "16.128.0" + ], + "guezd": [ + "16.212.0" + ], + "gui": [ + "16.12.0" + ], + "guiliani": [ + "16.50.0" + ], + "guiliani death": [ + "16.50.0" + ], + "gunafa": [ + "16.59.0" + ], + "gunafa netizen": [ + "16.59.0" + ], + "guns": [ + "16.205.0" + ], + "guy": [ + "16.20.0" + ], + "guys": [ + "16.75.0", + "16.79.0" + ], + "guys who created": [ + "16.75.0", + "16.79.0" + ], + "gymast": [ + "16.53.0" + ], + "habits": [ + "16.21.0" + ], + "habitual impatience": [ + "16.69.0" + ], + "haha": [ + "16.26.0" + ], + "hallo": [ + "16.30.0", + "16.84.0", + "16.174.0", + "16.191.0" + ], + "hallo + hou": [ + "16.25.0" + ], + "hallo porculus": [ + "16.30.0" + ], + "hallo to andreas": [ + "16.84.0" + ], + "hand": [ + "16.67.0" + ], + "hand committing crimes": [ + "16.159.0" + ], + "handicap": [ + "16.31.0" + ], + "hapening": [ + "16.157.0" + ], + "happend": [ + "16.126.0", + "16.130.0" + ], + "happened +": [ + "16.188.0" + ], + "happiness": [ + "16.107.0" + ], + "happy": [ + "16.35.0", + "16.142.0", + "16.152.0", + "16.159.0", + "16.186.0" + ], + "happy to inform": [ + "16.35.0" + ], + "hard": [ + "16.63.0", + "16.179.0" + ], + "hard disks": [ + "16.114.0" + ], + "hari": [ + "16.124.0" + ], + "harlot dav": [ + "16.209.0" + ], + "harmon": [ + "16.13.0", + "16.192.0" + ], + "hassle": [ + "16.146.0", + "16.150.0" + ], + "hassle you.": [ + "16.146.0", + "16.150.0" + ], + "hate the sight": [ + "16.114.0" + ], + "haunted": [ + "16.73.0" + ], + "hav": [ + "16.49.0", + "16.59.0", + "16.145.0", + "16.197.0" + ], + "havent": [ + "16.187.0" + ], + "havent contributed": [ + "16.159.0" + ], + "havent politics": [ + "16.187.0" + ], + "head": [ + "16.102.0", + "16.104.0", + "16.105.0", + "16.109.0", + "16.120.0", + "16.133.0", + "16.154.0", + "16.206.0" + ], + "head chump": [ + "16.193.0" + ], + "healthy": [ + "16.182.0" + ], + "hear": [ + "16.93.0" + ], + "heard": [ + "16.3.0", + "16.194.0" + ], + "heart": [ + "16.176.0-p.1200" + ], + "heavily accented english": [ + "16.61.0", + "16.195.0" + ], + "heck": [ + "16.62.0" + ], + "hectic nomadic life": [ + "16.170.0" + ], + "hell": [ + "16.210.0" + ], + "hello andrej": [ + "16.74.0" + ], + "helpful shopping tools": [ + "16.162.0" + ], + "heute": [ + "16.25.0", + "16.210.0" + ], + "heute tzo": [ + "16.210.0" + ], + "hey": [ + "16.2.0", + "16.24.0", + "16.160.0" + ], + "hey andrej": [ + "16.20.0" + ], + "hhas a lot": [ + "16.185.0" + ], + "hi patrick": [ + "16.125.0" + ], + "hier": [ + "16.45.0", + "16.161.0" + ], + "hier et bien": [ + "16.23.0" + ], + "high": [ + "16.34.0" + ], + "high school": [ + "16.34.0" + ], + "higher": [ + "16.4.0", + "16.14.0", + "16.203.0" + ], + "higher than anticipated": [ + "16.4.0" + ], + "highly": [ + "16.153.0" + ], + "highly n.appropriate": [ + "16.153.0" + ], + "hired": [ + "16.36.0" + ], + "hired an abs.": [ + "16.36.0" + ], + "hise": [ + "16.73.0", + "16.194.0" + ], + "hise wrote": [ + "16.73.0" + ], + "histories hammer-like impetus": [ + "16.200.0" + ], + "hmm": [ + "16.73.0" + ], + "hoffmann andrej tisma": [ + "16.108.0" + ], + "home": [ + "16.163.0", + "16.192.0" + ], + "home anymore": [ + "16.163.0" + ], + "home mr. garett": [ + "16.195.0" + ], + "homework": [ + "16.173.0" + ], + "honestly": [ + "16.136.0" + ], + "honestly mentioned": [ + "16.136.0" + ], + "honestly mentioned below": [ + "16.136.0" + ], + "honey": [ + "16.30.0" + ], + "honey buzzard": [ + "16.30.0" + ], + "hope": [ + "16.57.0", + "16.186.0" + ], + "hope i find": [ + "16.177.0" + ], + "hopeful": [ + "16.177.0" + ], + "hopeful start": [ + "16.177.0" + ], + "hopes": [ + "16.34.0" + ], + "horror": [ + "16.186.0" + ], + "horse": [ + "16.196.0", + "16.198.0" + ], + "hosting": [ + "16.53.0" + ], + "hosting your spam-ads": [ + "16.93.0" + ], + "hou": [ + "16.57.0" + ], + "hours playing games": [ + "16.199.0" + ], + "html": [ + "16.75.0", + "16.102.0", + "16.154.0" + ], + "html public": [ + "16.75.0", + "16.102.0" + ], + "http": [ + "16.56.0", + "16.197.0" + ], + "hub": [ + "16.174.0" + ], + "huge logs logging": [ + "16.69.0" + ], + "hugely determinant features": [ + "16.69.0" + ], + "human": [ + "16.1.0", + "16.14.0", + "16.18.0", + "16.24.0", + "16.44.0", + "16.47.0", + "16.49.0", + "16.56.0", + "16.190.0", + "16.194.0", + "16.197.0", + "16.211.0", + "16.212.0" + ], + "human babies": [ + "16.32.0", + "16.32.0" + ], + "human babies aren": [ + "16.32.0" + ], + "human brain": [ + "16.211.0", + "16.211.0" + ], + "human brain evolves": [ + "16.211.0", + "16.211.0" + ], + "human contact isn": [ + "16.18.0" + ], + "human creativity": [ + "16.14.0", + "16.14.0" + ], + "human intelligence": [ + "16.14.0" + ], + "human lifes lost": [ + "16.1.0" + ], + "human minds": [ + "16.14.0" + ], + "human pain": [ + "16.197.0" + ], + "human plant": [ + "16.47.0", + "16.56.0", + "16.190.0" + ], + "human psychology": [ + "16.206.0" + ], + "human psychology re": [ + "16.206.0" + ], + "human rasz": [ + "16.18.0" + ], + "human reaction": [ + "16.15.0" + ], + "human relationships": [ + "16.76.0" + ], + "human-computer": [ + "16.12.0" + ], + "human-computer interfaces": [ + "16.12.0" + ], + "humans": [ + "16.14.0", + "16.55.0", + "16.211.0" + ], + "humans posses": [ + "16.14.0" + ], + "humanz": [ + "16.6.0", + "16.18.0" + ], + "humanzukc": [ + "16.12.0" + ], + "humbly +": [ + "16.121.0" + ], + "hundreds of unsought": [ + "16.114.0" + ], + "hurt": [ + "16.196.0", + "16.198.0" + ], + "hyperbole": [ + "16.10.0" + ], + "hypermodern": [ + "16.123.0" + ], + "ibm": [ + "16.208.0" + ], + "ibm and coca": [ + "16.208.0" + ], + "icf.de": [ + "16.1.0", + "16.1.2" + ], + "idea": [ + "16.70.0", + "16.120.0", + "16.127.0", + "16.136.0", + "16.152.0", + "16.159.0" + ], + "idea online/international directory": [ + "16.91.0" + ], + "ideal": [ + "16.14.0" + ], + "ideas": [ + "16.15.0", + "16.51.0", + "16.134.0", + "16.167.0", + "16.176.0-p.1200" + ], + "identification": [ + "16.26.0" + ], + "identities": [ + "16.153.0" + ], + "identity": [ + "16.115.0", + "16.163.0", + "16.179.0" + ], + "ideological": [ + "16.111.0" + ], + "ideological ownership": [ + "16.111.0" + ], + "ideology": [ + "16.78.0", + "16.156.0" + ], + "ideology to combat": [ + "16.78.0" + ], + "igital": [ + "16.2.0" + ], + "ignorant social butterfly": [ + "16.206.0" + ], + "igor": [ + "16.68.0", + "16.71.0", + "16.72.0", + "16.74.0", + "16.77.0", + "16.173.0", + "16.186.0" + ], + "igor concerning nn": [ + "16.68.0", + "16.72.0", + "16.74.0" + ], + "igor reality": [ + "16.76.0", + "16.78.0", + "16.79.0" + ], + "igor wrote": [ + "16.68.0", + "16.68.0", + "16.71.0", + "16.74.0" + ], + "iii": [ + "16.7.0", + "16.12.0", + "16.188.0" + ], + "iii organizing": [ + "16.188.0" + ], + "iii organizing committee": [ + "16.188.0" + ], + "illiterate": [ + "16.151.0" + ], + "illusion": [ + "16.47.0", + "16.56.0" + ], + "image sequences": [ + "16.11.0" + ], + "imagery": [ + "16.123.0" + ], + "imaginative": [ + "16.26.0" + ], + "imagine": [ + "16.20.0", + "16.64.0" + ], + "imagine art": [ + "16.64.0" + ], + "imagine something.": [ + "16.20.0" + ], + "imagined cultural futures": [ + "16.211.0" + ], + "immature wunderkinds behaviour": [ + "16.168.0" + ], + "immediately": [ + "16.19.0", + "16.169.0", + "16.172.0" + ], + "impeding natural selection": [ + "16.17.0" + ], + "implied": [ + "16.5.0" + ], + "implies": [ + "16.91.0", + "16.99.0" + ], + "important": [ + "16.11.0", + "16.31.0", + "16.46.0", + "16.92.0", + "16.146.0", + "16.150.0" + ], + "important contacts": [ + "16.152.0" + ], + "important life forms": [ + "16.31.0" + ], + "importantly humans": [ + "16.211.0" + ], + "imposing their attitudes": [ + "16.136.0" + ], + "impossible to escape": [ + "16.181.0" + ], + "imultaneously": [ + "16.2.0" + ], + "inappropriate solution approach": [ + "16.211.0" + ], + "incessantly": [ + "16.112.0", + "16.118.0" + ], + "including": [ + "16.151.0" + ], + "including formula": [ + "16.208.0" + ], + "inclusive stealing nn": [ + "16.209.0" + ], + "incompetent korporate fascist": [ + "16.17.0" + ], + "incompetent.": [ + "16.151.0" + ], + "incompetent. illiterate": [ + "16.151.0" + ], + "inconvenience model citizens": [ + "16.18.0" + ], + "incorporates additional data": [ + "16.14.0" + ], + "increasing": [ + "16.1.2" + ], + "increasing of terrorist": [ + "16.1.2" + ], + "increasingly": [ + "16.101.0" + ], + "increasingly characterized": [ + "16.14.0" + ], + "increasingly unclear": [ + "16.101.0" + ], + "increasingly unintelligible tendencies": [ + "16.14.0" + ], + "incredible speed careers": [ + "16.15.0" + ], + "incur": [ + "16.194.0" + ], + "incur a tariff": [ + "16.194.0" + ], + "ind": [ + "16.5.0" + ], + "ind,x": [ + "16.5.0" + ], + "indifferent masses": [ + "16.78.0" + ], + "indikate": [ + "16.52.0", + "16.53.0" + ], + "indikate if desirous": [ + "16.52.0" + ], + "individuality": [ + "16.211.0" + ], + "individuals": [ + "16.128.0" + ], + "industry academie": [ + "16.27.0" + ], + "inexpensive life form": [ + "16.31.0" + ], + "infancy + childhood": [ + "16.155.0" + ], + "infect": [ + "16.212.0" + ], + "infect some lists": [ + "16.212.0" + ], + "inflexible": [ + "16.146.0" + ], + "inflexible yet aquatic": [ + "16.146.0" + ], + "info": [ + "16.1.0", + "16.1.2", + "16.13.0", + "16.16.0", + "16.26.0", + "16.30.0", + "16.126.0", + "16.140.0", + "16.212.0", + "16.213.0" + ], + "info nettime": [ + "16.1.0", + "16.1.2" + ], + "info nettime-l": [ + "16.16.0", + "16.212.0" + ], + "info@furtherfield": [ + "16.151.0" + ], + "info@rhizome": [ + "16.141.0" + ], + "inform": [ + "16.35.0", + "16.87.0" + ], + "information": [ + "16.7.0", + "16.17.0", + "16.34.0", + "16.38.0", + "16.39.0", + "16.40.0", + "16.43.0", + "16.51.0", + "16.58.0", + "16.68.0", + "16.72.0", + "16.81.0", + "16.88.0", + "16.113.0", + "16.116.0", + "16.123.0", + "16.124.0", + "16.129.0", + "16.137.0", + "16.138.0", + "16.148.0", + "16.149.0", + "16.158.0", + "16.170.0", + "16.176.0", + "16.178.0", + "16.190.0", + "16.196.0" + ], + "information and archive": [ + "16.38.0", + "16.39.0", + "16.40.0", + "16.43.0", + "16.47.0", + "16.51.0", + "16.72.0", + "16.80.0", + "16.81.0", + "16.98.0", + "16.113.0", + "16.116.0", + "16.119.0", + "16.123.0", + "16.124.0", + "16.129.0", + "16.135.0", + "16.137.0", + "16.148.0", + "16.149.0", + "16.164.0", + "16.178.0", + "16.190.0" + ], + "information hub": [ + "16.174.0" + ], + "information surrounding": [ + "16.17.0" + ], + "informational place": [ + "16.71.0" + ], + "initially dominated": [ + "16.11.0", + "16.11.0" + ], + "initiative": [ + "16.152.0", + "16.159.0" + ], + "inke": [ + "16.63.0", + "16.64.0", + "16.84.0", + "16.89.0", + "16.95.0", + "16.106.0", + "16.127.0", + "16.131.0", + "16.138.0", + "16.150.0", + "16.158.0", + "16.162.0", + "16.164.0", + "16.166.0", + "16.175.0", + "16.176.0", + "16.184.0" + ], + "inke arns": [ + "16.95.0", + "16.106.0", + "16.107.0", + "16.108.0", + "16.130.0", + "16.131.0", + "16.138.0", + "16.140.0", + "16.150.0", + "16.166.0" + ], + "inke arns wrote": [ + "16.106.0", + "16.106.0", + "16.107.0", + "16.108.0", + "16.130.0", + "16.131.0", + "16.131.0" + ], + "inke,aybe": [ + "16.122.0" + ], + "innocent unarmed civilians": [ + "16.0.0" + ], + "innovations": [ + "16.27.0" + ], + "innovations siegfried": [ + "16.27.0" + ], + "innteger": [ + "16.193.0" + ], + "innteger story": [ + "16.193.0" + ], + "inputs": [ + "16.25.0" + ], + "insertion of unreason": [ + "16.50.0" + ], + "inside + outside": [ + "16.211.0" + ], + "install": [ + "16.96.0", + "16.98.0" + ], + "install a list": [ + "16.98.0" + ], + "install the list": [ + "16.183.0" + ], + "institute": [ + "16.23.0" + ], + "institutional": [ + "16.137.0" + ], + "institutional gang": [ + "16.137.0" + ], + "instrukt": [ + "16.18.0" + ], + "instrukt salt": [ + "16.18.0" + ], + "instrumental": [ + "16.50.0" + ], + "instrumental and manipulative": [ + "16.50.0" + ], + "insult": [ + "16.100.0", + "16.129.0" + ], + "insulted": [ + "16.151.0" + ], + "insulted other including": [ + "16.151.0" + ], + "insulting": [ + "16.184.0" + ], + "insults": [ + "16.100.0", + "16.120.0" + ], + "insupportable": [ + "16.119.0" + ], + "insurgency swells": [ + "16.203.0" + ], + "insurrection": [ + "16.2.0" + ], + "integer": [ + "16.30.0", + "16.32.0", + "16.62.0", + "16.80.0", + "16.83.0", + "16.93.0", + "16.95.0", + "16.96.0", + "16.104.0", + "16.105.0", + "16.106.0", + "16.110.0", + "16.130.0", + "16.146.0", + "16.148.0", + "16.150.0", + "16.153.0", + "16.166.0", + "16.193.0", + "16.207.0" + ], + "integer case": [ + "16.104.0", + "16.105.0" + ], + "integer case yesterday": [ + "16.104.0", + "16.105.0" + ], + "integer opinions": [ + "16.104.0", + "16.105.0" + ], + "integer-ated syndicate": [ + "16.91.0", + "16.99.0", + "16.104.0", + "16.105.0", + "16.109.0" + ], + "integer-ated syndicate list": [ + "16.103.0", + "16.104.0", + "16.105.0", + "16.109.0" + ], + "integer-ated syndicate pleasure": [ + "16.91.0", + "16.99.0" + ], + "integer/nn beyond typifiers": [ + "16.153.0" + ], + "integer@www": [ + "16.81.0" + ], + "integrally": [ + "16.77.0" + ], + "integrally a part": [ + "16.69.0", + "16.77.0" + ], + "intel": [ + "16.13.0" + ], + "intelligence": [ + "16.14.0" + ], + "intelligent": [ + "16.70.0" + ], + "intelligent idea": [ + "16.70.0" + ], + "intelligent idea thats": [ + "16.70.0" + ], + "intention": [ + "16.17.0" + ], + "intention information dissipates": [ + "16.17.0" + ], + "intentions": [ + "16.134.0" + ], + "interaccess": [ + "16.36.0" + ], + "interest": [ + "16.108.0" + ], + "interested": [ + "16.83.0", + "16.98.0", + "16.139.0", + "16.151.0", + "16.174.0", + "16.179.0", + "16.193.0" + ], + "interested in airing": [ + "16.193.0" + ], + "interested in announcements": [ + "16.174.0" + ], + "interested in receiving": [ + "16.97.0", + "16.98.0" + ], + "interested parties": [ + "16.139.0" + ], + "interesting": [ + "16.75.0", + "16.125.0", + "16.135.0", + "16.157.0", + "16.193.0" + ], + "interesting phenomenon": [ + "16.77.0" + ], + "interesting question": [ + "16.157.0" + ], + "interests": [ + "16.15.0", + "16.176.0-p.1200" + ], + "interface": [ + "16.12.0" + ], + "interfaces": [ + "16.11.0", + "16.12.0" + ], + "interject": [ + "16.112.0", + "16.118.0" + ], + "internal relational system": [ + "16.14.0" + ], + "international": [ + "16.60.0" + ], + "international committee": [ + "16.60.0" + ], + "international meme fund": [ + "16.46.0", + "16.46.0", + "16.50.0", + "16.50.0" + ], + "internet": [ + "16.7.0", + "16.13.0", + "16.14.0", + "16.17.0", + "16.19.0", + "16.34.0", + "16.85.0", + "16.117.0", + "16.125.0" + ], + "internet change": [ + "16.13.0" + ], + "internet data examples": [ + "16.19.0" + ], + "internet domains": [ + "16.23.0" + ], + "internet issues": [ + "16.13.0" + ], + "internet mail": [ + "16.7.0" + ], + "internet mail service": [ + "16.7.0", + "16.7.0" + ], + "internet media business": [ + "16.17.0" + ], + "internet protokol provides": [ + "16.17.0" + ], + "internet software program": [ + "16.19.0" + ], + "internet text": [ + "16.85.0" + ], + "internet usage": [ + "16.13.0" + ], + "internet users": [ + "16.13.0" + ], + "intervals": [ + "16.112.0", + "16.118.0" + ], + "interview": [ + "16.30.0", + "16.46.0", + "16.55.0" + ], + "interview with netochka": [ + "16.46.0" + ], + "interview with steina": [ + "16.55.0" + ], + "interviewed": [ + "16.30.0" + ], + "intimate lab": [ + "16.1.0" + ], + "intimately": [ + "16.77.0" + ], + "intimately and integrally": [ + "16.69.0", + "16.77.0" + ], + "invention called time": [ + "16.200.0" + ], + "invite": [ + "16.57.0", + "16.184.0" + ], + "invited": [ + "16.52.0" + ], + "invoked a personal": [ + "16.193.0" + ], + "involved": [ + "16.31.0" + ], + "involved operates": [ + "16.31.0" + ], + "involved yes +": [ + "16.174.0" + ], + "iny": [ + "16.1.0" + ], + "ircam": [ + "16.131.0" + ], + "irena sabine": [ + "16.31.0" + ], + "irena sabine czubera": [ + "16.31.0", + "16.31.0" + ], + "ironic": [ + "16.191.0" + ], + "isb": [ + "16.5.0" + ], + "isbn": [ + "16.30.0" + ], + "island school": [ + "16.24.0" + ], + "isolationist": [ + "16.133.0" + ], + "isolationist tactics": [ + "16.133.0" + ], + "israeli": [ + "16.120.0" + ], + "israeli assassinations": [ + "16.120.0" + ], + "issue": [ + "16.136.0" + ], + "issue some kind": [ + "16.181.0" + ], + "issues at stake": [ + "16.112.0", + "16.118.0" + ], + "ist": [ + "16.46.0" + ], + "itchy bitchy": [ + "16.206.0" + ], + "itchy bitchy self": [ + "16.206.0" + ], + "item pre-sale estimate": [ + "16.37.0" + ], + "items": [ + "16.37.0" + ], + "iterations": [ + "16.23.0" + ], + "ivory tower music": [ + "16.22.0" + ], + "ixion wheel steams": [ + "16.200.0" + ], + "jaka": [ + "16.89.0", + "16.94.0", + "16.96.0", + "16.99.0", + "16.107.0", + "16.126.0", + "16.127.0", + "16.129.0", + "16.130.0", + "16.132.0", + "16.162.0" + ], + "jaka and andrej": [ + "16.104.0" + ], + "jaka wrote": [ + "16.96.0" + ], + "jaka zeleznicar": [ + "16.171.0" + ], + "jaka zeleznikar": [ + "16.94.0", + "16.94.0", + "16.107.0", + "16.126.0", + "16.127.0", + "16.127.0", + "16.129.0", + "16.130.0", + "16.132.0", + "16.162.0" + ], + "jaka zeleznikar +": [ + "16.17.0" + ], + "netcom.com": [ + "16.23.0" + ], + "netiquette": [ + "16.86.0" + ], + "netizen": [ + "16.59.0" + ], + "netochka nezvanova nezvanova@eusocial": [ + "16.33.0", + "16.34.0", + "16.35.0", + "16.36.0", + "16.42.0", + "16.45.0", + "16.47.0", + "16.49.0", + "16.54.0", + "16.56.0", + "16.57.0", + "16.61.0", + "16.138.0", + "16.172.0", + "16.190.0", + "16.191.0", + "16.196.0", + "16.198.0", + "16.209.0" + ], + "netochka nezvanova adored": [ + "16.61.0" + ], + "netochka nezvanova da": [ + "16.61.0" + ], + "netochka nezvanova moved": [ + "16.28.0" + ], + "netochka nezvanova passed": [ + "16.61.0" + ], + "netochka nezvanova passed`": [ + "16.61.0" + ], + "nets": [ + "16.30.0", + "16.213.0" + ], + "netscape": [ + "16.113.0", + "16.162.0" + ], + "netscape mail": [ + "16.162.0" + ], + "netscape mail account": [ + "16.162.0" + ], + "netscape.net": [ + "16.164.0" + ], + "nettime": [ + "16.1.0", + "16.1.1", + "16.1.2", + "16.8.0", + "16.15.0", + "16.16.0", + "16.21.0", + "16.22.0", + "16.23.0", + "16.24.0", + "16.25.0", + "16.25.0", + "16.26.0", + "16.30.0", + "16.31.0", + "16.32.0", + "16.66.0", + "16.71.0", + "16.102.0", + "16.132.0", + "16.152.0", + "16.159.0", + "16.211.0", + "16.212.0", + "16.213.0" + ], + "nettime americans": [ + "16.211.0" + ], + "nettime filtered": [ + "16.152.0" + ], + "nettime lacked discussion": [ + "16.71.0", + "16.71.0" + ], + "nettime list": [ + "16.132.0" + ], + "nettime male fascism": [ + "16.28.0" + ], + "nettime moderation started": [ + "16.15.0" + ], + "nettime okzident frogz": [ + "16.45.0" + ], + "nettime paul": [ + "16.211.0" + ], + "nettime white boys": [ + "16.206.0" + ], + "nettime-bold": [ + "16.27.0", + "16.205.0" + ], + "nettime-bold mailing": [ + "16.205.0" + ], + "nettime-bold mailing list": [ + "16.205.0" + ], + "nettime-l": [ + "16.1.0", + "16.1.2", + "16.13.0", + "16.16.0", + "16.19.0", + "16.93.0" + ], + "nettime-owner": [ + "16.1.2", + "16.16.0" + ], + "nettimed": [ + "16.159.0" + ], + "nettimed and syndicated": [ + "16.159.0" + ], + "nettimed list": [ + "16.159.0" + ], + "network": [ + "16.38.0", + "16.39.0", + "16.40.0", + "16.43.0", + "16.51.0", + "16.72.0", + "16.74.0", + "16.81.0", + "16.113.0", + "16.116.0", + "16.123.0", + "16.124.0", + "16.129.0", + "16.137.0", + "16.148.0", + "16.149.0", + "16.157.0", + "16.158.0", + "16.166.0", + "16.176.0-p.1200", + "16.178.0", + "16.190.0" + ], + "network for media": [ + "16.39.0", + "16.40.0", + "16.43.0", + "16.81.0", + "16.124.0", + "16.129.0", + "16.137.0", + "16.148.0", + "16.149.0", + "16.178.0" + ], + "netwurker": [ + "16.72.0" + ], + "neu": [ + "16.45.0", + "16.145.0" + ], + "neu + improved": [ + "16.45.0" + ], + "neu behav": [ + "16.145.0" + ], + "neu generaz": [ + "16.29.0" + ], + "neu mor eff": [ + "16.21.0" + ], + "neu programz read": [ + "16.45.0" + ], + "neu\\\\brainsprogramzhavingre": [ + "16.45.0" + ], + "neue kraft": [ + "16.46.0" + ], + "neues werk": [ + "16.46.0" + ], + "neurons": [ + "16.25.0", + "16.103.0" + ], + "neustetter": [ + "16.41.0" + ], + "newmedia": [ + "16.13.0" + ], + "newsletters": [ + "16.170.0" + ], + "newsletters offered": [ + "16.170.0" + ], + "newsletters offered info": [ + "16.170.0" + ], + "nextpart": [ + "16.154.0" + ], + "nezezar": [ + "16.180.0" + ], + "nezvanova adored": [ + "16.61.0" + ], + "nezvanova moved": [ + "16.28.0" + ], + "nezvanova moved konglomerates": [ + "16.28.0" + ], + "nezvanova netochka": [ + "16.35.0", + "16.44.0" + ], + "nezvanova passed": [ + "16.61.0" + ], + "nezvanova that shuddering": [ + "16.61.0" + ], + "nezvanovaonl": [ + "16.45.0" + ], + "nflaz": [ + "16.53.0", + "16.180.0" + ], + "nfluensz ov": [ + "16.180.0" + ], + "nfo data prov": [ + "16.23.0" + ], + "nforssmnt": [ + "16.46.0" + ], + "ng +": [ + "16.18.0" + ], + "ng 0+1 mole": [ + "16.23.0" + ], + "ng 2r+ muss": [ + "16.18.0" + ], + "ng 2uardz gomorrah": [ + "16.22.0" + ], + "ng 4rom var": [ + "16.29.0" + ], + "ng addtl bubl": [ + "16.22.0" + ], + "ng agensz": [ + "16.22.0" + ], + "ng dze trouzerz": [ + "16.206.0" + ], + "ng dze vektor": [ + "16.208.0", + "16.211.0" + ], + "ng endz": [ + "16.22.0" + ], + "ng kand": [ + "16.22.0" + ], + "ng korporat fasc": [ + "16.23.0" + ], + "ng m9nd konta": [ + "16.22.0" + ], + "ng ov phatland": [ + "16.21.0" + ], + "ng ov rep": [ + "16.133.0", + "16.134.0" + ], + "ng people": [ + "16.21.0" + ], + "ng th": [ + "16.192.0" + ], + "ng wh": [ + "16.22.0" + ], + "nglr + plrl": [ + "16.18.0" + ], + "ngz": [ + "16.192.0" + ], + "ngz az dze": [ + "16.206.0" + ], + "ngz dze refra": [ + "16.59.0" + ], + "nice": [ + "16.210.0" + ], + "nice post": [ + "16.210.0" + ], + "nice post nn": [ + "16.210.0" + ], + "nicely tuned nn": [ + "16.121.0" + ], + "nicholas negroponte": [ + "16.83.0" + ], + "nietzsche": [ + "16.21.0" + ], + "nils": [ + "16.165.0" + ], + "nils claesson": [ + "16.165.0" + ], + "nkx": [ + "16.183.0" + ], + "nkx are komplex": [ + "16.183.0" + ], + "nl/~nettime/ contact": [ + "16.0.0", + "16.1.0", + "16.1.1", + "16.1.2", + "16.2.0", + "16.5.0", + "16.13.0", + "16.14.0", + "16.15.0", + "16.16.0", + "16.17.0", + "16.18.0" + ], + "nleashed": [ + "16.2.0" + ], + "nn adores stepping": [ + "16.28.0" + ], + "nn smiled +": [ + "16.196.0" + ], + "nn usually produces": [ + "16.91.0", + "16.99.0", + "16.100.0" + ], + "nn zo": [ + "16.53.0" + ], + "nn.consterned": [ + "16.38.0" + ], + "nn.nl": [ + "16.56.0" + ], + "nn.z": [ + "16.212.0" + ], + "nn.z shar": [ + "16.212.0" + ], + "nn.zoo": [ + "16.38.0" + ], + "nobel": [ + "16.168.0", + "16.173.0" + ], + "nobel prize": [ + "16.168.0", + "16.172.0", + "16.173.0" + ], + "noel": [ + "16.188.0" + ], + "noel villers": [ + "16.188.0" + ], + "noise": [ + "16.14.0", + "16.91.0", + "16.192.0" + ], + "noise ratio": [ + "16.112.0", + "16.118.0" + ], + "non-corporate": [ + "16.157.0" + ], + "non-member": [ + "16.128.0", + "16.130.0" + ], + "non-member submission": [ + "16.128.0", + "16.130.0" + ], + "non.profit": [ + "16.36.0" + ], + "non.profit nato.member": [ + "16.36.0" + ], + "nonsensical +": [ + "16.159.0" + ], + "noon": [ + "16.38.0" + ], + "nop": [ + "16.5.0" + ], + "noprison apropoz": [ + "16.59.0" + ], + "normal": [ + "16.8.0", + "16.25.0" + ], + "normal artistic practice": [ + "16.30.0" + ], + "normal auditory": [ + "16.25.0" + ], + "normal auditory inputs": [ + "16.25.0", + "16.25.0" + ], + "normal phone line": [ + "16.91.0" + ], + "normal v1": [ + "16.25.0" + ], + "normal v1 emerge": [ + "16.25.0" + ], + "north america": [ + "16.211.0" + ], + "nosaur +": [ + "16.192.0" + ], + "notably is formula": [ + "16.208.0" + ], + "note": [ + "16.49.0", + "16.135.0", + "16.137.0", + "16.142.0", + "16.147.0" + ], + "notes to editors": [ + "16.88.0" + ], + "noticed": [ + "16.128.0" + ], + "notification": [ + "16.169.0", + "16.172.0", + "16.176.0-p.1200" + ], + "nou": [ + "16.201.0" + ], + "nou dont kom": [ + "16.201.0" + ], + "nouvelle adresse email": [ + "16.91.0", + "16.91.0" + ], + "nov": [ + "16.22.0" + ], + "nput": [ + "16.8.0" + ], + "nputz": [ + "16.8.0" + ], + "nsk\\laibach =cw4t7abs\\m9ndfukc": [ + "16.18.0" + ], + "nsz dze": [ + "16.18.0" + ], + "nt ov": [ + "16.18.0" + ], + "ntel": [ + "16.18.0" + ], + "ntell": [ + "16.1.0" + ], + "ntendd + una": [ + "16.2.0" + ], + "ntent": [ + "16.2.0" + ], + "nterakt.": [ + "16.1.0" + ], + "nterakz": [ + "16.145.0" + ], + "ntz": [ + "16.145.0" + ], + "null": [ + "16.3.0" + ], + "numb": [ + "16.192.0" + ], + "number": [ + "16.192.0" + ], + "numerous persons access": [ + "16.14.0" + ], + "nurture": [ + "16.211.0" + ], + "nutr": [ + "16.25.0" + ], + "nvolvd": [ + "16.23.0" + ], + "nz du monde": [ + "16.34.0" + ], + "nzc": [ + "16.5.0" + ], + "nzektz + zp": [ + "16.22.0" + ], + "nzert > ko": [ + "16.210.0" + ], + "nztrfulleren": [ + "16.18.0" + ], + "o1 extra simply": [ + "16.45.0" + ], + "obey": [ + "16.123.0" + ], + "obey orders": [ + "16.123.0" + ], + "obj": [ + "16.3.0" + ], + "object": [ + "16.17.0" + ], + "objects exist": [ + "16.18.0" + ], + "objekt adobe premiere": [ + "16.28.0" + ], + "objekts. surfaces.": [ + "16.25.0" + ], + "objekts. surfaces. faces.": [ + "16.25.0" + ], + "observatoire leonardo": [ + "16.91.0" + ], + "obtuse + outdated": [ + "16.31.0" + ], + "obviiously": [ + "16.185.0" + ], + "obviiously hhas": [ + "16.185.0" + ], + "obvious": [ + "16.157.0" + ], + "occasional accidental request": [ + "16.105.0" + ], + "occupation": [ + "16.17.0", + "16.18.0" + ], + "occupation of macedonia": [ + "16.90.0" + ], + "occur simultaneously +": [ + "16.5.0" + ], + "occurred several months": [ + "16.174.0" + ], + "ocean": [ + "16.55.0" + ], + "oedipally": [ + "16.131.0" + ], + "oedipally kill": [ + "16.131.0" + ], + "off-topic": [ + "16.193.0" + ], + "offering practical advice": [ + "16.26.0" + ], + "offline": [ + "16.97.0" + ], + "offlist": [ + "16.103.0" + ], + "offset": [ + "16.5.0" + ], + "ok.nl": [ + "16.56.0" + ], + "oke +": [ + "16.183.0" + ], + "okzident frogz": [ + "16.45.0" + ], + "oligarchic": [ + "16.78.0" + ], + "oligarchic elite": [ + "16.78.0" + ], + "olog": [ + "16.201.0" + ], + "omitted": [ + "16.65.0" + ], + "onar": [ + "16.53.0", + "16.180.0" + ], + "ond dze": [ + "16.18.0" + ], + "ones own set": [ + "16.14.0" + ], + "ones own uncovering": [ + "16.14.0" + ], + "ongoing": [ + "16.90.0" + ], + "ongoing nato": [ + "16.89.0", + "16.90.0" + ], + "ongoing nato bombings": [ + "16.89.0", + "16.89.0", + "16.90.0" + ], + "onl": [ + "16.25.0", + "16.45.0" + ], + "online": [ + "16.21.0", + "16.37.0" + ], + "online activities": [ + "16.21.0", + "16.21.0" + ], + "online auction": [ + "16.37.0" + ], + "online with shop": [ + "16.162.0" + ], + "onz": [ + "16.1.0", + "16.2.0", + "16.18.0", + "16.180.0" + ], + "onz ov 0+1": [ + "16.18.0" + ], + "oops": [ + "16.73.0" + ], + "open": [ + "16.98.0", + "16.109.0" + ], + "open fascist": [ + "16.41.0" + ], + "open fascist exploiter": [ + "16.41.0" + ], + "open for reactions": [ + "16.97.0", + "16.98.0" + ], + "open hose": [ + "16.32.0" + ], + "open list": [ + "16.15.0" + ], + "open sourcing": [ + "16.45.0" + ], + "open sourcing nettime": [ + "16.45.0" + ], + "open-genez": [ + "16.49.0" + ], + "open.source": [ + "16.43.0" + ], + "openly challenges": [ + "16.203.0" + ], + "openness": [ + "16.139.0" + ], + "operation": [ + "16.5.0" + ], + "operators": [ + "16.46.0" + ], + "operators kondukted": [ + "16.46.0" + ], + "opinion": [ + "16.98.0", + "16.103.0", + "16.104.0", + "16.105.0", + "16.109.0", + "16.110.0", + "16.114.0", + "16.127.0", + "16.129.0", + "16.139.0" + ], + "opinion leaders": [ + "16.103.0", + "16.104.0", + "16.105.0", + "16.109.0" + ], + "opinion maker": [ + "16.129.0" + ], + "opinions": [ + "16.104.0", + "16.105.0" + ], + "opportunity": [ + "16.156.0" + ], + "opportunity to timely": [ + "16.156.0" + ], + "oppose traditional": [ + "16.168.0" + ], + "ops": [ + "16.57.0" + ], + "options": [ + "16.7.0" + ], + "ora": [ + "16.5.0", + "16.69.0" + ], + "order": [ + "16.33.0", + "16.55.0" + ], + "order to protect": [ + "16.90.0" + ], + "orders": [ + "16.10.0", + "16.123.0" + ], + "oreo": [ + "16.21.0" + ], + "oreo cookies": [ + "16.21.0", + "16.21.0" + ], + "org + cc": [ + "16.127.0" + ], + "org employees contacted": [ + "16.204.0" + ], + "org> *ns*bscribed": [ + "16.127.0", + "16.162.0" + ], + "organising": [ + "16.139.0" + ], + "organisms": [ + "16.31.0" + ], + "organization": [ + "16.25.0", + "16.36.0", + "16.107.0", + "16.127.0", + "16.162.0" + ], + "organizations": [ + "16.138.0" + ], + "organized criminal activities_": [ + "16.143.0", + "16.144.0" + ], + "organizer": [ + "16.187.0" + ], + "organizing": [ + "16.188.0" + ], + "organizing committee": [ + "16.188.0" + ], + "orientated visual stimuli": [ + "16.25.0" + ], + "orifice": [ + "16.213.0" + ], + "orig": [ + "16.31.0" + ], + "orig to tbyfield": [ + "16.18.0" + ], + "original": [ + "16.41.0", + "16.74.0", + "16.163.0" + ], + "original aim": [ + "16.50.0" + ], + "original esperanto": [ + "16.11.0" + ], + "original identity": [ + "16.163.0" + ], + "original message": [ + "16.41.0", + "16.74.0", + "16.148.0", + "16.171.0" + ], + "original message text": [ + "16.74.0" + ], + "original message text===========": [ + "16.74.0" + ], + "original writers online": [ + "16.85.0" + ], + "orp mr melinda": [ + "16.16.0" + ], + "oss": [ + "16.6.0" + ], + "ossified redwood trees": [ + "16.211.0" + ], + "ost.europa": [ + "16.53.0" + ], + "ostrow": [ + "16.80.0", + "16.130.0", + "16.185.0" + ], + "ostrow black lash": [ + "17.86.0" + ], + "machine": [ + "17.86.0" + ], + "=24&nrsection=5&nrarticle=1368&st_max=0": [ + "17.12.0" + ], + "=8ccomputer=b9": [ + "17.11.0" + ], + "=8cdigital=b9": [ + "17.11.0" + ], + "=8cmother=b9 bbc": [ + "17.11.0" + ], + "=8cnew=b9": [ + "17.11.0" + ], + "=8cprojects=b9": [ + "17.11.0" + ], + "=8cpublic domain=b9": [ + "17.11.0" + ], + "=8ctool follows": [ + "17.11.0" + ], + "=8ctv=b9 wa=": [ + "17.11.0" + ], + "=8ctype=3dradio~border=3d0": [ + "17.11.0" + ], + "=8cvideo didn=b9t kill": [ + "17.11.0" + ], + "=8cvideo=b9": [ + "17.11.0" + ], + "=b9 =8cmechanical=b9": [ + "17.11.0" + ], + "=b9s boring": [ + "17.11.0" + ], + "=b9t teach": [ + "17.11.0" + ], + "> bonn declaration": [ + "17.17.0" + ], + ">andy cameron wrote": [ + "17.58.1" + ], + ">effective media tacticians": [ + "17.16.1", + "17.16.2" + ], + ">financial sector": [ + "17.45.0" + ], + ">left worldview fit": [ + "17.0.0" + ], + "_no soap radio_": [ + "17.55.0" + ], + "_strategie de la": [ + "17.53.0" + ], + "_the gulf": [ + "17.53.0" + ], + "_the information bomb_": [ + "17.53.0" + ], + "_the vision machine_": [ + "17.53.0" + ], + "a2 colour printer1": [ + "17.87.0" + ], + "a3 colour scanner": [ + "17.87.0" + ], + "a4 laser printer1": [ + "17.87.0" + ], + "abadoned public spaces": [ + "17.30.0" + ], + "abbas": [ + "17.24.0" + ], + "abbas was edited": [ + "17.24.0" + ], + "abbing": [ + "17.69.0" + ], + "able bodied share": [ + "17.12.0" + ], + "absence concerns": [ + "17.62.0" + ], + "absolute": [ + "17.39.0" + ], + "absolute democracy": [ + "17.39.0" + ], + "absolutely fierce series": [ + "17.46.0" + ], + "absolutely foundational": [ + "17.46.0" + ], + "abstract": [ + "17.18.0", + "17.91.0" + ], + "abstract computer": [ + "17.18.0" + ], + "abstract cultural diagram": [ + "17.92.0" + ], + "abstract machine": [ + "17.18.0" + ], + "abstract marxist criticism": [ + "17.38.0" + ], + "abstract sex": [ + "17.91.0" + ], + "abstract sex addresses": [ + "17.91.0" + ], + "abstract sex appreciates": [ + "17.91.0" + ], + "abstract sex brings": [ + "17.91.0" + ], + "abstract sex opposes": [ + "17.91.0", + "17.91.0" + ], + "abstract sex points": [ + "17.91.0" + ], + "abstract sex poses": [ + "17.91.0", + "17.91.0" + ], + "abstract sex proposes": [ + "17.91.0" + ], + "abstract sex science": [ + "17.91.0" + ], + "abstract strategic value": [ + "17.20.0" + ], + "abstract structures": [ + "17.22.0" + ], + "abstract theoretical terms": [ + "17.49.0" + ], + "absurd love letters": [ + "17.94.0" + ], + "academic": [ + "17.13.0" + ], + "academic circles": [ + "17.8.0" + ], + "academic context": [ + "17.4.0" + ], + "academic degree": [ + "17.61.0" + ], + "academic developer community": [ + "17.88.0" + ], + "academic field": [ + "17.8.0" + ], + "academic job hunting": [ + "17.58.0" + ], + "academic mind police": [ + "17.61.0" + ], + "academic obligation": [ + "17.61.0" + ], + "academic training": [ + "17.13.0" + ], + "academies separate art": [ + "17.35.0" + ], + "accelerating unexpected mutations": [ + "17.91.0" + ], + "access": [ + "17.4.0", + "17.9.0", + "17.17.0", + "17.25.0" + ], + "access abstract sex": [ + "17.91.0", + "17.91.0" + ], + "access inconceivable alienations": [ + "17.61.0" + ], + "accidental media spokesperson": [ + "17.89.0" + ], + "accompany mainstream media": [ + "17.47.0" + ], + "accountability anymore": [ + "17.26.0" + ], + "accumulated idle time": [ + "17.41.0" + ], + "accumulated naturally exhibits": [ + "17.94.0" + ], + "accused angela marquardt": [ + "17.17.0" + ], + "achieving enormous profits": [ + "17.83.0" + ], + "ackbar": [ + "17.24.0" + ], + "ackbar abbas": [ + "17.24.0" + ], + "acquired/applied skills base": [ + "17.87.0" + ], + "act": [ + "17.73.0" + ], + "acting joined forces": [ + "17.17.0" + ], + "action": [ + "17.14.0" + ], + "action ought": [ + "17.66.0" + ], + "actions themselves": [ + "17.7.0" + ], + "active virtual ecologies": [ + "17.92.0" + ], + "actively affect": [ + "17.7.0" + ], + "actively engaged etc": [ + "17.89.0" + ], + "activist andrew ross": [ + "17.13.0" + ], + "activist art practices": [ + "17.31.0" + ], + "activist circles": [ + "17.45.0" + ], + "activities": [ + "17.56.0", + "17.83.0" + ], + "activities towards": [ + "17.9.0" + ], + "activity supports empire": [ + "17.37.0" + ], + "actors": [ + "17.21.0", + "17.29.0" + ], + "actual _first_ language": [ + "17.55.0" + ], + "actual architectural practice": [ + "17.62.0" + ], + "actual compositional dynamics": [ + "17.91.0" + ], + "actual decision makers": [ + "17.4.0" + ], + "actual film set": [ + "17.42.0" + ], + "actual genealogical emergence": [ + "17.92.0" + ], + "actual skill involved": [ + "17.70.0" + ], + "actual technologic conquests": [ + "17.68.0" + ], + "actually didn": [ + "17.39.2" + ], + "actually existing governments": [ + "17.39.2" + ], + "actually falsely transparent": [ + "17.4.0" + ], + "actually formally invite": [ + "17.20.0" + ], + "actually left traces": [ + "17.20.0" + ], + "actually pretty irrelevant": [ + "17.70.0" + ], + "actually weâve": [ + "17.69.0" + ], + "ad hoc engagement": [ + "17.76.0" + ], + "adapt open source": [ + "17.35.0" + ], + "add mariko mori": [ + "17.46.0" + ], + "add useful tools": [ + "17.30.0" + ], + "additional": [ + "17.16.0", + "17.16.2", + "17.16.3" + ], + "additional budget line": [ + "17.30.0" + ], + "additional commands": [ + "17.16.0", + "17.16.2", + "17.16.3" + ], + "additional democratic achievements": [ + "17.34.0" + ], + "address similar issues": [ + "17.41.0" + ], + "addressed": [ + "17.58.3" + ], + "addressed taking": [ + "17.58.3" + ], + "addressed taking wired": [ + "17.58.3" + ], + "addressed the lack": [ + "17.35.0" + ], + "addresses": [ + "17.81.0" + ], + "administration office taking": [ + "17.87.0" + ], + "administrators rand": [ + "17.9.0" + ], + "adobe empire": [ + "17.93.0" + ], + "adobe software": [ + "17.35.0" + ], + "adobe suite": [ + "17.93.0" + ], + "adorno=b9s denunciation": [ + "17.11.0" + ], + "aesthetic": [ + "17.68.0" + ], + "aesthetic evaluations": [ + "17.68.0" + ], + "aesthetic experimentation": [ + "17.31.0" + ], + "aesthetic expressions": [ + "17.68.0" + ], + "aesthetic feeling": [ + "17.68.0" + ], + "aesthetic forms": [ + "17.68.0", + "17.68.0" + ], + "aesthetic forms possess": [ + "17.68.0" + ], + "aesthetic potentials useful": [ + "17.20.0" + ], + "aesthetic theory based": [ + "17.49.0" + ], + "aesthetics": [ + "17.68.0" + ], + "affirms ordinary life": [ + "17.12.0" + ], + "afflict creative": [ + "17.13.0" + ], + "africa": [ + "17.22.0", + "17.50.0" + ], + "african languages spoken": [ + "17.1.0" + ], + "age": [ + "17.9.0" + ], + "age people": [ + "17.22.0" + ], + "agency": [ + "17.39.2" + ], + "aggressive cultural memes": [ + "17.4.0" + ], + "aggressively speculative meaning": [ + "17.61.0" + ], + "ago": [ + "17.79.0" + ], + "aim towards establishing": [ + "17.43.0", + "17.43.1" + ], + "air traffic control": [ + "17.65.0" + ], + "akademie schloss solitude": [ + "17.40.0" + ], + "al jazeerah broadcasting": [ + "17.14.0" + ], + "alan toner": [ + "17.12.0" + ], + "alan toneršs": [ + "17.12.0" + ], + "albania": [ + "17.50.0" + ], + "albanian": [ + "17.50.0" + ], + "alegre": [ + "17.44.0" + ], + "alegre sad": [ + "17.44.0" + ], + "alegre sad empire": [ + "17.44.0" + ], + "alessandro ludovico referred": [ + "17.92.0" + ], + "alex": [ + "17.10.0" + ], + "alex mclean": [ + "17.10.0" + ], + "alexander": [ + "17.10.0" + ], + "alexei": [ + "17.83.0", + "17.84.0" + ], + "alexei shulgin": [ + "17.83.0", + "17.84.0" + ], + "alexei shulgin made": [ + "17.84.0" + ], + "algebraically deduce truths": [ + "17.35.0" + ], + "alien memory": [ + "17.65.0" + ], + "alien memory refers": [ + "17.65.0" + ], + "alienated brightness displayed": [ + "17.40.0" + ], + "aligned movement": [ + "17.47.0" + ], + "alleged secret agents": [ + "17.40.0" + ], + "alles agenda seeks": [ + "17.30.0" + ], + "allow alternative proposals": [ + "17.34.0" + ], + "allowed real time": [ + "17.65.0" + ], + "allowing existing communities": [ + "17.10.0" + ], + "alternative approaches reach": [ + "17.80.0" + ], + "alternative development": [ + "17.25.0" + ], + "alternative development policy": [ + "17.25.0" + ], + "alternative globalization movements": [ + "17.37.0" + ], + "alternative media": [ + "17.1.0" + ], + "alternative media idea": [ + "17.1.0" + ], + "alternative model": [ + "17.73.0" + ], + "alternative publishing medium": [ + "17.63.0" + ], + "alternatives": [ + "17.35.0" + ], + "alternic/newdom model": [ + "17.0.0" + ], + "alterntive media folk": [ + "17.47.0" + ], + "altstatt": [ + "17.42.0" + ], + "altstatt rosanne": [ + "17.42.0" + ], + "altstatt rosanne altstatt": [ + "17.42.0" + ], + "am doing cnn": [ + "17.77.0" + ], + "am extremely reluctant": [ + "17.20.0" + ], + "am fairly optimistic": [ + "17.44.0" + ], + "am frequently staying": [ + "17.8.0" + ], + "am happy mainly": [ + "17.40.0" + ], + "am perfectly comfortable": [ + "17.52.0" + ], + "amateur radio": [ + "17.69.0", + "17.69.0" + ], + "amateur radio bands": [ + "17.69.0" + ], + "amber": [ + "17.89.0" + ], + "amber nectar": [ + "17.89.0", + "17.89.0" + ], + "amber nectar fanzine": [ + "17.89.0", + "17.89.0" + ], + "amber nectar website": [ + "17.89.0" + ], + "america": [ + "17.78.0" + ], + "america leaps immediately": [ + "17.78.0" + ], + "american": [ + "17.39.0", + "17.44.0", + "17.53.1", + "17.78.0" + ], + "american academic context": [ + "17.35.0" + ], + "american constitution": [ + "17.78.0" + ], + "american exceptionism": [ + "17.78.0" + ], + "american federation": [ + "17.13.0" + ], + "american feminist theory": [ + "17.71.0" + ], + "american government": [ + "17.44.0" + ], + "american hacker hunter": [ + "17.70.0" + ], + "american millitia movement": [ + "17.78.0" + ], + "american net art": [ + "17.54.0" + ], + "american peace movement": [ + "17.47.0" + ], + "american power": [ + "17.44.0" + ], + "american scene": [ + "17.70.0" + ], + "american technology": [ + "17.53.1" + ], + "american theoretical field": [ + "17.25.0" + ], + "american workers": [ + "17.44.0" + ], + "americans": [ + "17.78.0" + ], + "americans en masse": [ + "17.78.0" + ], + "amongst distinguished scholars": [ + "17.9.0" + ], + "amongst real people": [ + "17.9.0" + ], + "amoral system based": [ + "17.45.0" + ], + "amsterdam": [ + "17.8.0", + "17.14.0" + ], + "amsterdam digital culture": [ + "17.14.0" + ], + "amsterdam squatters movement": [ + "17.14.0" + ], + "amsterdam toshiya": [ + "17.8.0" + ], + "amsterdam web designers": [ + "17.13.0" + ], + "amsterdam-based designer mieke": [ + "17.38.0" + ], + "amsterdamšs version": [ + "17.12.0" + ], + "amy alexander": [ + "17.10.0" + ], + "analyses": [ + "17.58.1" + ], + "analysis": [ + "17.37.0", + "17.53.1" + ], + "analytical approach": [ + "17.32.0" + ], + "analytical tool": [ + "17.8.0" + ], + "anand": [ + "17.62.0" + ], + "anand bhatt": [ + "17.62.0" + ], + "anatomical": [ + "17.51.0" + ], + "andreas broekmann": [ + "17.79.0" + ], + "andrew": [ + "17.13.0" + ], + "andrew ross": [ + "17.13.0" + ], + "andrew ross makes": [ + "17.13.0" + ], + "andy": [ + "17.58.1" + ], + "andy cameron": [ + "17.58.1" + ], + "andy cameron wrote": [ + "17.58.0", + "17.58.1" + ], + "annet dekker": [ + "17.94.0" + ], + "annoyance": [ + "17.58.4" + ], + "anti beaux arts": [ + "17.26.0" + ], + "anti-globalisation movement": [ + "17.44.0" + ], + "anti-liberal movement": [ + "17.44.0" + ], + "antiracist movements": [ + "17.37.0" + ], + "anymore": [ + "17.26.0" + ], + "aol": [ + "17.35.0" + ], + "apache tribe": [ + "17.8.0" + ], + "appalling economic situation": [ + "17.65.0" + ], + "apparent contradiction embedded": [ + "17.90.0" + ], + "apparent oedipal fixation": [ + "17.70.0" + ], + "apparently clean": [ + "17.95.0" + ], + "apparently unique position": [ + "17.28.0" + ], + "appeal wolf blitzer": [ + "17.36.0" + ], + "appeared": [ + "17.79.0" + ], + "application": [ + "17.88.0" + ], + "applications": [ + "17.38.0" + ], + "applied": [ + "17.33.0" + ], + "applying art methodologies": [ + "17.64.0" + ], + "appreciate net art": [ + "17.40.0" + ], + "approach": [ + "17.63.0" + ], + "approached network solutions": [ + "17.23.0" + ], + "appropriation": [ + "17.16.2" + ], + "approximately fifteen minutes": [ + "17.12.0" + ], + "april": [ + "17.73.0" + ], + "aquatic ape": [ + "17.91.0" + ], + "aquatic ape theory": [ + "17.91.0" + ], + "arc de triomphe": [ + "17.60.0" + ], + "archetypal unix/linux code": [ + "17.93.0" + ], + "architect": [ + "17.62.0" + ], + "architect conducted": [ + "17.62.0" + ], + "architect makes buildings": [ + "17.62.0", + "17.62.0" + ], + "architects": [ + "17.62.0" + ], + "architectural": [ + "17.20.0", + "17.62.0" + ], + "architectural correctness": [ + "17.65.0" + ], + "architectural spaces using": [ + "17.60.0" + ], + "architectural theory": [ + "17.62.0" + ], + "architecture": [ + "17.20.0", + "17.60.0", + "17.62.0", + "17.65.0" + ], + "architecture consists": [ + "17.65.0" + ], + "architecture festival": [ + "17.65.0" + ], + "architecture of war": [ + "17.53.0" + ], + "archive": [ + "17.6.1", + "17.40.0", + "17.58.3" + ], + "area": [ + "17.85.0" + ], + "areas": [ + "17.3.0", + "17.60.0" + ], + "argument": [ + "17.18.0" + ], + "arianna porto": [ + "17.44.0" + ], + "arianna porto alegre": [ + "17.44.0" + ], + "ariella": [ + "17.27.0" + ], + "ariella azoulay": [ + "17.27.0", + "17.27.0" + ], + "ariella azoulay spoke": [ + "17.27.0", + "17.27.0" + ], + "aristocracy party": [ + "17.78.0" + ], + "armin medosch": [ + "17.17.0" + ], + "armitage": [ + "17.53.0" + ], + "arms race": [ + "17.53.0" + ], + "arms race worldwide": [ + "17.53.0" + ], + "ars electronica": [ + "17.78.0" + ], + "ars electronica festival": [ + "17.78.0" + ], + "art": [ + "17.0.0", + "17.2.0", + "17.4.0", + "17.6.0", + "17.7.0", + "17.9.0", + "17.10.0", + "17.11.0", + "17.12.0", + "17.26.0", + "17.28.0", + "17.32.0", + "17.40.0", + "17.41.0", + "17.46.0", + "17.46.1", + "17.46.2", + "17.49.0", + "17.50.0", + "17.51.0", + "17.54.0", + "17.56.0", + "17.57.0", + "17.58.0", + "17.64.0", + "17.65.0", + "17.67.0", + "17.68.0", + "17.70.0", + "17.71.0", + "17.74.0", + "17.77.0", + "17.79.0", + "17.81.0", + "17.82.0", + "17.83.0", + "17.84.0", + "17.89.0", + "17.92.0", + "17.94.0" + ], + "art academy": [ + "17.4.0" + ], + "art amy alexander": [ + "17.10.0" + ], + "art background": [ + "17.32.0" + ], + "art center": [ + "17.58.0", + "17.58.0", + "17.83.0" + ], + "art center college": [ + "17.58.0" + ], + "art center exhibition": [ + "17.83.0" + ], + "art center subscribe": [ + "17.83.0" + ], + "art context": [ + "17.10.0", + "17.32.0" + ], + "art context look": [ + "17.4.0" + ], + "art critics": [ + "17.46.0", + "17.50.0" + ], + "art discourse": [ + "17.26.0" + ], + "art ensemble": [ + "17.7.0" + ], + "art exchange projects": [ + "17.77.0" + ], + "art festivals": [ + "17.10.0" + ], + "art form": [ + "17.77.0" + ], + "art generators": [ + "17.70.0" + ], + "art historian": [ + "17.46.0" + ], + "art historical memory": [ + "17.41.0" + ], + "art history archive": [ + "17.40.0", + "17.40.0" + ], + "art history etc": [ + "17.4.0" + ], + "art hosts website": [ + "17.79.0" + ], + "art institute anymore": [ + "17.26.0" + ], + "art institution logos": [ + "17.89.0" + ], + "art institutions": [ + "17.10.0", + "17.32.0" + ], + "art list „rhizome“": [ + "17.82.0" + ], + "art magazine arta": [ + "17.40.0" + ], + "art manager": [ + "17.77.0" + ], + "art market system": [ + "17.84.0" + ], + "art meets hacktivism": [ + "17.9.0" + ], + "art monthly": [ + "17.50.0" + ], + "art operating": [ + "17.70.0", + "17.70.0" + ], + "art operating system": [ + "17.10.0", + "17.70.0", + "17.70.0" + ], + "art people": [ + "17.32.0", + "17.40.0" + ], + "art piece": [ + "17.57.0", + "17.57.0", + "17.81.0" + ], + "art piece deal": [ + "17.81.0" + ], + "art porn": [ + "17.6.0", + "17.6.0" + ], + "art practice": [ + "17.46.0" + ], + "art practices": [ + "17.7.0" + ], + "art produced": [ + "17.89.0" + ], + "art project": [ + "17.77.0" + ], + "art projects": [ + "17.54.0", + "17.77.0" + ], + "art public": [ + "17.32.0" + ], + "art shows": [ + "17.4.0" + ], + "art site": [ + "17.82.0" + ], + "art site hell": [ + "17.82.0" + ], + "art site hell.com": [ + "17.82.0" + ], + "art software pretends": [ + "17.10.0" + ], + "art space": [ + "17.26.0" + ], + "art system": [ + "17.10.0", + "17.71.0" + ], + "art system includes": [ + "17.71.0" + ], + "art systems": [ + "17.10.0" + ], + "art viruses": [ + "17.92.0" + ], + "art web project": [ + "17.41.0" + ], + "art work": [ + "17.46.0", + "17.51.0", + "17.81.0", + "17.94.0" + ], + "art work makes": [ + "17.94.0" + ], + "art work produced": [ + "17.46.0" + ], + "art works": [ + "17.46.0", + "17.57.0", + "17.67.0", + "17.71.0" + ], + "art works alive": [ + "17.46.0" + ], + "art works alongside": [ + "17.46.0" + ], + "art world": [ + "17.32.0", + "17.41.0", + "17.41.0", + "17.46.0", + "17.70.0", + "17.71.0" + ], + "art world connected": [ + "17.32.0" + ], + "art world deals": [ + "17.43.0", + "17.43.1" + ], + "art world fascination": [ + "17.46.0" + ], + "art.teleportacia": [ + "17.33.0" + ], + "art.teleportacia artist": [ + "17.33.0" + ], + "arta": [ + "17.40.0" + ], + "arte della rete": [ + "17.68.0" + ], + "article": [ + "17.58.1" + ], + "article rankled": [ + "17.58.1" + ], + "articulate cultural protest": [ + "17.63.0" + ], + "artificial life": [ + "17.92.0" + ], + "artificial life art": [ + "17.92.0" + ], + "artist": [ + "17.4.0", + "17.19.0", + "17.32.0", + "17.33.0", + "17.40.0", + "17.46.0", + "17.46.1", + "17.58.0", + "17.70.0", + "17.71.0", + "17.74.0", + "17.77.0", + "17.79.0", + "17.82.0", + "17.83.0", + "17.84.0" + ], + "artist collaborations": [ + "17.46.0", + "17.46.2" + ], + "artist film": [ + "17.4.0" + ], + "artist from hamburg": [ + "17.19.0" + ], + "artist in residence": [ + "17.33.0" + ], + "artist jeff wall": [ + "17.46.0" + ], + "artist miltos manetas": [ + "17.68.0" + ], + "artist specific discourses": [ + "17.58.0" + ], + "artist tetsuo kogawa": [ + "17.11.0" + ], + "artist web page": [ + "17.83.0" + ], + "artist/dealer contract movement": [ + "17.46.0" + ], + "artiste en travailleur": [ + "17.31.0" + ], + "artistic": [ + "17.32.0", + "17.46.0" + ], + "artistic collaboration": [ + "17.46.0" + ], + "artistic expression": [ + "17.50.0" + ], + "artistic individual preferences": [ + "17.68.0" + ], + "artistic practice taking": [ + "17.7.0" + ], + "artistic practices": [ + "17.31.0" + ], + "artists": [ + "17.4.0", + "17.6.0", + "17.7.0", + "17.10.0", + "17.20.0", + "17.26.0", + "17.28.0", + "17.31.0", + "17.40.0", + "17.46.0", + "17.46.1", + "17.46.2", + "17.51.0", + "17.56.0", + "17.58.0", + "17.67.0", + "17.70.0", + "17.71.0", + "17.74.0", + "17.77.0", + "17.82.0", + "17.83.0", + "17.84.0" + ], + "artists hongrois et": [ + "17.4.0" + ], + "artists makes": [ + "17.46.1" + ], + "artists seeking": [ + "17.50.0" + ], + "artists' television access": [ + "17.60.0" + ], + "artists' web pages": [ + "17.83.0" + ], + "artistšs studio": [ + "17.12.0" + ], + "arts": [ + "17.6.0", + "17.11.0", + "17.26.0", + "17.28.0", + "17.40.0", + "17.46.0", + "17.49.0", + "17.50.0", + "17.56.0", + "17.58.0", + "17.65.0", + "17.68.0", + "17.89.0" + ], + "arts council": [ + "17.85.0" + ], + "arts council funding": [ + "17.85.0" + ], + "arts educates students": [ + "17.11.0" + ], + "arts festival": [ + "17.89.0" + ], + "arts funding programme": [ + "17.17.0" + ], + "arts magazine frakcija": [ + "17.37.0" + ], + "arts meet science": [ + "17.58.0" + ], + "arts scene": [ + "17.8.0" + ], + "aryan nation construction": [ + "17.86.0" + ], + "ascii": [ + "17.54.0" + ], + "ascii art ensemble": [ + "17.54.0", + "17.54.0" + ], + "ascii art mailinglist": [ + "17.54.0" + ], + "ascii based": [ + "17.54.0" + ], + "asco": [ + "17.54.0" + ], + "asco project": [ + "17.54.0" + ], + "asco spam engines": [ + "17.54.0", + "17.54.0" + ], + "asian cultures": [ + "17.50.0" + ], + "asian financial": [ + "17.53.0" + ], + "asian financial crisis": [ + "17.53.0" + ], + "asked": [ + "17.6.1" + ], + "asn": [ + "17.30.0" + ], + "asn initiative": [ + "17.30.0" + ], + "asn supports": [ + "17.30.0" + ], + "aspect refers": [ + "17.34.0" + ], + "aspiring net artists": [ + "17.77.0" + ], + "assemblage exposes": [ + "17.91.0" + ], + "assemblage subtracts desire": [ + "17.91.0" + ], + "assemblages": [ + "17.91.0" + ], + "assign radio frequencies": [ + "17.47.0" + ], + "assisted reproductive technology": [ + "17.7.0" + ], + "associate researcher": [ + "17.15.0" + ], + "associated technological media": [ + "17.88.0" + ], + "astonishingly disco volante": [ + "17.12.0" + ], + "asylum seeker community": [ + "17.89.0" + ], + "atavistic personality cults": [ + "17.46.1" + ], + "atelier": [ + "17.31.0" + ], + "atelier europa": [ + "17.31.0" + ], + "atelier magazine": [ + "17.40.0" + ], + "atomic bomb": [ + "17.53.0" + ], + "atomic bomb provoked": [ + "17.53.0" + ], + "attention onto trust": [ + "17.30.0" + ], + "attract local maribor": [ + "17.89.0" + ], + "audience": [ + "17.57.0", + "17.79.0" + ], + "audience viewing patterns": [ + "17.42.0" + ], + "audio": [ + "17.16.1", + "17.43.0", + "17.43.1" + ], + "audio interventions": [ + "17.16.1" + ], + "audio streaming": [ + "17.43.0", + "17.43.1" + ], + "audio version available": [ + "17.20.0" + ], + "augmented social": [ + "17.30.0" + ], + "augmented social network": [ + "17.30.0", + "17.30.0" + ], + "australia": [ + "17.50.0", + "17.59.0" + ], + "australian": [ + "17.49.0", + "17.50.0" + ], + "australian art critic": [ + "17.46.0" + ], + "australian arts": [ + "17.49.0" + ], + "australian arts newspaper": [ + "17.49.0" + ], + "australian media": [ + "17.48.0" + ], + "australian media theorist": [ + "17.48.0" + ], + "austrian radio orf": [ + "17.11.0" + ], + "authentic interactive potential": [ + "17.47.0" + ], + "authoring knowledge enabling": [ + "17.40.0" + ], + "authorized": [ + "17.82.0" + ], + "authorship versus": [ + "17.14.0" + ], + "automated trading programmes": [ + "17.53.0" + ], + "automated war": [ + "17.53.0" + ], + "automatically aligns weapon": [ + "17.42.0" + ], + "autonomous": [ + "17.23.1" + ], + "autonomous artist coined": [ + "17.71.0" + ], + "autonomous cultures": [ + "17.68.0" + ], + "autonomous cultures searching": [ + "17.68.0" + ], + "autonomous network": [ + "17.9.0" + ], + "autonomous zones": [ + "17.9.0" + ], + "autopoietic system": [ + "17.91.0" + ], + "avant gard elitists": [ + "17.63.0" + ], + "avant la lettre": [ + "17.94.0" + ], + "average developers": [ + "17.93.0" + ], + "average mp3 players": [ + "17.68.0" + ], + "avoid generalized conceptions": [ + "17.73.0" + ], + "avoiding historical representation": [ + "17.65.0" + ], + "awards": [ + "17.33.0" + ], + "aya": [ + "17.27.0" + ], + "aya and gal": [ + "17.27.0" + ], + "ayn rand followers": [ + "17.9.0" + ], + "azoulay": [ + "17.27.0" + ], + "baa site shines": [ + "17.86.0" + ], + "babacar diob": [ + "17.1.0" + ], + "babacar diob wrote": [ + "17.1.0" + ], + "back": [ + "17.6.0" + ], + "background": [ + "17.51.0" + ], + "backspace": [ + "17.85.0" + ], + "backspace centre": [ + "17.85.0" + ], + "backspace exist free": [ + "17.85.0" + ], + "bacterial informational behaviours": [ + "17.91.0" + ], + "bad": [ + "17.59.0" + ], + "bad girls": [ + "17.59.0" + ], + "bad net art": [ + "17.54.0", + "17.54.0" + ], + "bad situation": [ + "17.77.1" + ], + "badly designed computers": [ + "17.18.0" + ], + "bain": [ + "17.60.0" + ], + "baker over july": [ + "17.89.0" + ], + "balazs studio": [ + "17.4.0" + ], + "balkan region": [ + "17.43.0", + "17.43.1" + ], + "ballard theory fiction": [ + "17.61.0" + ], + "baltica": [ + "17.57.0" + ], + "banal repetitious action": [ + "17.92.0" + ], + "band devo called": [ + "17.48.0" + ], + "bandwidth": [ + "17.21.0", + "17.23.0", + "17.23.1", + "17.26.0", + "17.29.0" + ], + "bandwidth capacity": [ + "17.21.0" + ], + "bangladesh": [ + "17.25.0" + ], + "bank": [ + "17.41.0" + ], + "bank of time": [ + "17.41.0" + ], + "banks": [ + "17.22.0" + ], + "banks owning": [ + "17.45.0" + ], + "barbrook": [ + "17.58.1", + "17.58.4", + "17.78.0" + ], + "barbrook and mary": [ + "17.78.0" + ], + "barbrook wrote": [ + "17.58.4" + ], + "based": [ + "17.18.0", + "17.39.0", + "17.73.0" + ], + "based art takes": [ + "17.89.0" + ], + "based community network": [ + "17.9.0" + ], + "based culture": [ + "17.56.0" + ], + "based digital artisan": [ + "17.40.0" + ], + "based electronic communication": [ + "17.11.0" + ], + "based email program": [ + "17.76.0" + ], + "based free radios": [ + "17.74.0" + ], + "based increasingly": [ + "17.94.0" + ], + "based ken jordan": [ + "17.30.0" + ], + "based music culture": [ + "17.61.0" + ], + "based reflective paranoia": [ + "17.73.0" + ], + "based search engines": [ + "17.86.0" + ], + "based target markets": [ + "17.30.0" + ], + "basic": [ + "17.16.1" + ], + "basic 20th century": [ + "17.46.0" + ], + "basic concept": [ + "17.16.1" + ], + "basic democratic principles": [ + "17.34.0" + ], + "basic political analysis": [ + "17.80.0" + ], + "basic social relations": [ + "17.31.0" + ], + "basic structures": [ + "17.14.0" + ], + "basic trust people": [ + "17.14.0" + ], + "basically": [ + "17.20.0" + ], + "basically establish": [ + "17.34.0" + ], + "basically researchers don": [ + "17.8.0" + ], + "basically teaching yourself": [ + "17.82.0" + ], + "bataille": [ + "17.15.0" + ], + "baud rate": [ + "17.24.0" + ], + "baudot weather services": [ + "17.24.0" + ], + "bauhaus": [ + "17.11.0" + ], + "bauhaus radio": [ + "17.11.0" + ], + "bauhaus radio reader": [ + "17.11.0", + "17.11.0" + ], + "bauhaus university": [ + "17.11.0" + ], + "bauhaus university qualifies": [ + "17.11.0", + "17.11.0" + ], + "bavarian broadcasting corporation": [ + "17.11.0" + ], + "bear market": [ + "17.45.0" + ], + "becoming communal struggles": [ + "17.37.0" + ], + "becoming politically active": [ + "17.72.0" + ], + "becoming seemingly obsessed": [ + "17.20.0" + ], + "began making works": [ + "17.46.2" + ], + "behance youâre": [ + "17.69.0" + ], + "behavior": [ + "17.46.1" + ], + "behavioral": [ + "17.46.1" + ], + "behavioral psychologists": [ + "17.46.1" + ], + "behavioral research": [ + "17.46.1", + "17.46.1" + ], + "behavioral research scientists": [ + "17.46.1" + ], + "behavioral sciences": [ + "17.46.1" + ], + "behaviour actively shapes": [ + "17.34.0" + ], + "bela balazs studio": [ + "17.4.0", + "17.4.0" + ], + "belatedly canonic texts": [ + "17.46.0" + ], + "belgian training centers": [ + "17.74.0" + ], + "believe blacklash speaks": [ + "17.86.0" + ], + "belittle entire discussions": [ + "17.78.0" + ], + "below sea level": [ + "17.60.0" + ], + "beneficial nor": [ + "17.14.0" + ], + "bengali": [ + "17.25.0" + ], + "berardi": [ + "17.90.0" + ], + "berlin group": [ + "17.5.0" + ], + "berlin wall broke": [ + "17.14.0" + ], + "betts": [ + "17.88.0" + ], + "beyond fixed definitions": [ + "17.61.0" + ], + "beyond shared qualities": [ + "17.94.0" + ], + "bhatt": [ + "17.62.0" + ], + "bible": [ + "17.77.1" + ], + "bible in slovenian": [ + "17.77.1" + ], + "bifo": [ + "17.90.0" + ], + "big": [ + "17.23.0" + ], + "big media": [ + "17.23.0" + ], + "billion dollar industry": [ + "17.59.0" + ], + "bio tech": [ + "17.51.0" + ], + "biocultural sedimentations rub": [ + "17.91.0" + ], + "biological": [ + "17.7.0" + ], + "biological entities": [ + "17.92.0" + ], + "biological environmental resource": [ + "17.7.0" + ], + "biological features": [ + "17.92.0" + ], + "biological parasites": [ + "17.92.0" + ], + "biological reproductive process": [ + "17.7.0" + ], + "biological sciences": [ + "17.92.0" + ], + "biotech": [ + "17.7.0", + "17.51.0" + ], + "biotech cyberpunkish sense": [ + "17.6.0" + ], + "biotech panel brought": [ + "17.51.0" + ], + "birthing scientific management": [ + "17.95.0" + ], + "bite sized chunks": [ + "17.88.0" + ], + "bizarre moment involving": [ + "17.89.0" + ], + "black": [ + "17.86.0" + ], + "black community": [ + "17.86.0" + ], + "black identity": [ + "17.61.0" + ], + "black lash": [ + "17.86.0" + ], + "black lungs": [ + "17.95.0" + ], + "black male trying": [ + "17.86.0" + ], + "black market workers": [ + "17.44.0" + ], + "black masks": [ + "17.86.0", + "17.86.0" + ], + "black people": [ + "17.86.0" + ], + "black people look": [ + "17.86.0" + ], + "black popular culture": [ + "17.61.0" + ], + "black power movement": [ + "17.7.0" + ], + "black sea city": [ + "17.28.0" + ], + "black skin": [ + "17.86.0", + "17.86.0" + ], + "black south africans": [ + "17.50.0" + ], + "blade runner game": [ + "17.49.0" + ], + "blind response": [ + "17.59.0" + ], + "blitzer": [ + "17.36.0" + ], + "block": [ + "17.19.0" + ], + "blocking mass transit": [ + "17.47.0" + ], + "blog": [ + "17.36.0", + "17.67.0" + ], + "blog journalism": [ + "17.36.0" + ], + "blog media": [ + "17.36.0" + ], + "blog media bla-blog": [ + "17.36.0" + ], + "blog media bloggity": [ + "17.36.0" + ], + "blog wolf": [ + "17.36.0" + ], + "blog wolf blitzer": [ + "17.36.0", + "17.36.0" + ], + "bloggity blog": [ + "17.36.0" + ], + "bloggity blog media": [ + "17.36.0" + ], + "blogs": [ + "17.36.0" + ], + "blue sky possibilities": [ + "17.30.0" + ], + "blue sky vision": [ + "17.30.0" + ], + "bodies": [ + "17.51.0" + ], + "body": [ + "17.6.1", + "17.51.0", + "17.73.0", + "17.90.0", + "17.91.0" + ], + "body based survival": [ + "17.73.0" + ], + "body image": [ + "17.73.0" + ], + "body image constituates": [ + "17.73.0" + ], + "body practices": [ + "17.73.0" + ], + "body work": [ + "17.73.0" + ], + "bograshov art space": [ + "17.27.0", + "17.27.0" + ], + "bold mailing list": [ + "17.70.0", + "17.71.0", + "17.83.0" + ], + "bomb": [ + "17.53.0" + ], + "bona fide piece": [ + "17.64.0" + ], + "bonn": [ + "17.17.0" + ], + "bonn conference": [ + "17.17.0" + ], + "bonn declaration": [ + "17.17.0", + "17.17.0" + ], + "bonn declaration reads": [ + "17.17.0", + "17.17.0" + ], + "book": [ + "17.20.0", + "17.37.0", + "17.46.2", + "17.52.0", + "17.53.0", + "17.61.0", + "17.63.0", + "17.80.0" + ], + "book _is_ primarily": [ + "17.37.0" + ], + "book involved taking": [ + "17.91.0" + ], + "book laborare nelle": [ + "17.66.0" + ], + "book titled": [ + "17.8.0" + ], + "book virtual geography": [ + "17.48.0" + ], + "bookchin": [ + "17.83.0" + ], + "boom generation hung": [ + "17.59.0" + ], + "boosting property values": [ + "17.13.0" + ], + "booted anarchist ideas": [ + "17.12.0" + ], + "boozy late nights": [ + "17.85.0" + ], + "boring": [ + "17.79.0" + ], + "boring burea ucracy": [ + "17.80.0" + ], + "boring postmodern stuff": [ + "17.71.0" + ], + "boris": [ + "17.52.0" + ], + "boris groys": [ + "17.52.0" + ], + "borut": [ + "17.5.0" + ], + "borut savski": [ + "17.5.0" + ], + "bosnia": [ + "17.29.0" + ], + "bosnia and herzegovina": [ + "17.39.1" + ], + "bounds which capital": [ + "17.39.0" + ], + "box": [ + "17.58.4" + ], + "boy network disseminating": [ + "17.71.0" + ], + "boyadjiev": [ + "17.28.0" + ], + "boys": [ + "17.16.1", + "17.71.0" + ], + "boys network": [ + "17.71.0" + ], + "boys' network": [ + "17.19.0" + ], + "branches bifurcating endlessly": [ + "17.50.0" + ], + "brave human rights": [ + "17.29.0" + ], + "bresson": [ + "17.32.0" + ], + "brian": [ + "17.24.0", + "17.31.0", + "17.39.1" + ], + "brian holmes": [ + "17.31.0" + ], + "brian springer": [ + "17.24.0" + ], + "bridge": [ + "17.60.0" + ], + "bring independent news": [ + "17.43.0", + "17.43.1" + ], + "bring spectacular results": [ + "17.62.0" + ], + "bringing": [ + "17.16.2", + "17.16.3" + ], + "brings monetary rewards": [ + "17.31.0" + ], + "brisbane powerhouse": [ + "17.56.0" + ], + "bristol": [ + "17.94.0" + ], + "british": [ + "17.86.0" + ], + "british immigration system": [ + "17.86.0" + ], + "british medical": [ + "17.95.0" + ], + "british nuclear =46uels": [ + "17.85.0" + ], + "broad beam pushes": [ + "17.24.0" + ], + "broad graduate level": [ + "17.14.0" + ], + "broad humanities education": [ + "17.59.0" + ], + "broad political issues": [ + "17.75.0" + ], + "broadcast media pirates": [ + "17.12.0" + ], + "broadcast spectrum": [ + "17.12.0" + ], + "broadcasting satellite television": [ + "17.43.0", + "17.43.1" + ], + "broader cultural patterns": [ + "17.50.0" + ], + "broader cyberspaces": [ + "17.8.0" + ], + "broader economic changes": [ + "17.45.0" + ], + "broader political economy": [ + "17.8.0" + ], + "broader social struggles": [ + "17.75.0" + ], + "broader software context": [ + "17.10.0" + ], + "brooklyn bridge": [ + "17.60.0" + ], + "browser": [ + "17.38.0", + "17.76.0" + ], + "browser designer": [ + "17.76.0" + ], + "browser issue outside": [ + "17.38.0" + ], + "browser meta design": [ + "17.38.0" + ], + "browserday": [ + "17.38.0" + ], + "browserday competition": [ + "17.38.0" + ], + "browserday events": [ + "17.38.0" + ], + "browserday invites people": [ + "17.38.0", + "17.38.0" + ], + "browserday program looks": [ + "17.38.0" + ], + "browserday shows": [ + "17.38.0" + ], + "browserdays circus continued": [ + "17.38.0" + ], + "browsers": [ + "17.38.0", + "17.76.0" + ], + "bruno": [ + "17.18.0" + ], + "bruno latour": [ + "17.18.0" + ], + "bruno latour published": [ + "17.63.0" + ], + "brushing media": [ + "17.15.0" + ], + "brussels": [ + "17.74.0" + ], + "buchholz=b9": [ + "17.11.0" + ], + "buddhist theology argues": [ + "17.46.0" + ], + "buffalo electronic poetry": [ + "17.55.0" + ], + "build": [ + "17.9.0", + "17.80.0" + ], + "build lousy software": [ + "17.35.0" + ], + "build solid tools": [ + "17.35.0" + ], + "build war machines": [ + "17.91.0" + ], + "building": [ + "17.60.0", + "17.62.0", + "17.85.0" + ], + "building empty boxes": [ + "17.68.0" + ], + "building kitchen cabinets": [ + "17.50.0" + ], + "buildings": [ + "17.60.0", + "17.62.0", + "17.65.0" + ], + "built": [ + "17.60.0" + ], + "bulgaria": [ + "17.28.0" + ], + "bulgarian": [ + "17.28.0" + ], + "bulgarian art": [ + "17.28.0", + "17.28.0" + ], + "bulgarian art deals": [ + "17.28.0", + "17.28.0" + ], + "bulgarian communists": [ + "17.28.0" + ], + "bulgarian spies": [ + "17.28.0" + ], + "bull market": [ + "17.45.0" + ], + "bulletin board systems": [ + "17.8.0", + "17.14.0" + ], + "bunch": [ + "17.58.3" + ], + "bunch thoughts": [ + "17.58.3" + ], + "bundestag beschließt multimediagesetz": [ + "17.17.0" + ], + "bunting": [ + "17.2.0" + ], + "bunting proposed": [ + "17.2.0" + ], + "burocratic art institutions": [ + "17.6.0" + ], + "business": [ + "17.58.4" + ], + "business community": [ + "17.68.0" + ], + "business leaders aren": [ + "17.80.0" + ], + "business observer": [ + "17.58.4" + ], + "busy international agenda": [ + "17.34.0" + ], + "butler relates precisely": [ + "17.91.0" + ], + "buy gap clothing": [ + "17.13.0" + ], + "buy text messages": [ + "17.89.0" + ], + "buying fashionable stuff": [ + "17.68.0" + ], + "buys fancy clothes": [ + "17.23.0", + "17.23.1" + ], + "bézier curves": [ + "17.93.0" + ], + "cabir worm relies": [ + "17.92.0" + ], + "cable": [ + "17.80.0" + ], + "cable companies": [ + "17.80.0" + ], + "cable company controls": [ + "17.80.0" + ], + "cable industry": [ + "17.80.0" + ], + "cable modem specs": [ + "17.75.0" + ], + "cable television": [ + "17.80.0" + ], + "cable television industry": [ + "17.80.0" + ], + "cae": [ + "17.7.0" + ], + "cae make": [ + "17.7.0" + ], + "cae perspective": [ + "17.7.0" + ], + "cae story": [ + "17.7.0" + ], + "cal arts": [ + "17.58.0" + ], + "cal poly pomona": [ + "17.58.0" + ], + "calculate nice formulas": [ + "17.69.0" + ], + "california": [ + "17.58.0" + ], + "california arts institute": [ + "17.87.0" + ], + "californian": [ + "17.58.1", + "17.58.4" + ], + "californians have proved": [ + "17.58.1" + ], + "call": [ + "17.39.2" + ], + "call centre etc": [ + "17.90.0" + ], + "call cultural hegemony": [ + "17.13.0" + ], + "call oligopolistic markets": [ + "17.75.0" + ], + "call themselves indigenous": [ + "17.50.0" + ], + "called": [ + "17.16.1", + "17.18.0", + "17.20.0", + "17.77.0" + ], + "called =8cnew media=b9": [ + "17.11.0" + ], + "called asians": [ + "17.8.0" + ], + "called average people": [ + "17.4.0" + ], + "called biological diagram": [ + "17.92.0" + ], + "called convex tv": [ + "17.43.0", + "17.43.1" + ], + "called cultural politics": [ + "17.8.0" + ], + "called data banks": [ + "17.95.0" + ], + "called global capitalism": [ + "17.68.0" + ], + "called identity art": [ + "17.32.0" + ], + "called influence theory": [ + "17.70.0" + ], + "called infrastructure": [ + "17.89.0" + ], + "called kassel school": [ + "17.63.0" + ], + "called media studies": [ + "17.8.0" + ], + "called media theory": [ + "17.4.0" + ], + "called net art": [ + "17.77.0", + "17.77.0" + ], + "called net cultures": [ + "17.71.0" + ], + "called postmodern days": [ + "17.8.0" + ], + "called public spaces": [ + "17.72.0" + ], + "called seattle movement": [ + "17.9.0" + ], + "called traditional tribal": [ + "17.8.0" + ], + "called typical": [ + "17.8.0" + ], + "called unsuccessful revolution": [ + "17.4.0" + ], + "called viral discourse": [ + "17.92.0" + ], + "called wall street": [ + "17.45.0" + ], + "calls": [ + "17.39.2" + ], + "calls themselves": [ + "17.39.0" + ], + "camera": [ + "17.42.0" + ], + "camera obscura": [ + "17.27.0" + ], + "camera obscura school": [ + "17.27.0", + "17.27.0" + ], + "cameron": [ + "17.58.1" + ], + "cameron wrote": [ + "17.58.1" + ], + "canadian periodical index": [ + "17.53.0" + ], + "canadian periodical index/gale": [ + "17.53.0" + ], + "capacity": [ + "17.21.0", + "17.91.0" + ], + "capacity micz traveled": [ + "17.43.1" + ], + "capacity micz travelled": [ + "17.43.0" + ], + "capacity ofbeing ahead": [ + "17.68.0" + ], + "capital": [ + "17.37.0", + "17.39.2", + "17.44.0", + "17.45.0", + "17.48.0", + "17.91.0" + ], + "capital can tolerate": [ + "17.39.0" + ], + "capital global extension": [ + "17.39.2" + ], + "capitalism": [ + "17.45.0", + "17.90.0" + ], + "capitalist accumulation": [ + "17.31.0" + ], + "capitalist control": [ + "17.45.0" + ], + "capitalist economic model": [ + "17.15.0" + ], + "capitalist economy": [ + "17.7.0", + "17.31.0" + ], + "capitalist economy concerns": [ + "17.7.0" + ], + "capitalist relations create": [ + "17.37.0" + ], + "capitalist rule": [ + "17.37.0" + ], + "capitalist social": [ + "17.66.0" + ], + "capitalist social relations": [ + "17.66.0" + ], + "carole ann klonarides": [ + "17.58.0" + ], + "caroline": [ + "17.14.0" + ], + "caroline nevejan": [ + "17.14.0", + "17.14.0" + ], + "caroline nevejan poses": [ + "17.14.0" + ], + "case": [ + "17.59.0", + "17.71.0" + ], + "cases streaming media": [ + "17.43.0", + "17.43.1" + ], + "cash": [ + "17.85.0" + ], + "cash flow surrounding": [ + "17.43.0", + "17.43.1" + ], + "castells": [ + "17.58.3", + "17.58.4" + ], + "castells strikes": [ + "17.58.4" + ], + "castells today": [ + "17.58.4" + ], + "catalytst soft ware": [ + "17.47.0" + ], + "catharine": [ + "17.59.0" + ], + "catharine lumby": [ + "17.59.0" + ], + "catherine": [ + "17.26.0" + ], + "catherine david": [ + "17.26.0" + ], + "cato institute": [ + "17.9.0" + ], + "cato institute perfectly": [ + "17.9.0" + ], + "cattedrali del consumo": [ + "17.66.0" + ], + "causes traveling theory": [ + "17.8.0" + ], + "cda": [ + "17.17.0" + ], + "cecilia fernández": [ + "17.66.0" + ], + "cell phone": [ + "17.56.0" + ], + "cement block house": [ + "17.42.0" + ], + "center": [ + "17.28.0", + "17.74.0", + "17.77.1", + "17.83.0" + ], + "center exhibition": [ + "17.83.0" + ], + "center kibla": [ + "17.77.1" + ], + "central american gay": [ + "17.37.0" + ], + "central attraction": [ + "17.58.0" + ], + "central bank": [ + "17.45.0" + ], + "central banks": [ + "17.22.0" + ], + "central concern": [ + "17.58.0" + ], + "central cultural platforms": [ + "17.92.0" + ], + "central political struggle": [ + "17.37.0" + ], + "centralization causes marginalization": [ + "17.10.0" + ], + "centre mainly focuses": [ + "17.50.0" + ], + "century german philosopher": [ + "17.63.0" + ], + "chain constraining cultural": [ + "17.68.0" + ], + "chainworkers": [ + "17.66.0" + ], + "chainworkers organized mayday": [ + "17.66.0", + "17.66.0" + ], + "chakravorty spivak": [ + "17.25.0" + ], + "challenge cinematic conventions": [ + "17.42.0" + ], + "challenges facing": [ + "17.30.0" + ], + "challenges facing democracy": [ + "17.30.0" + ], + "challenging net art": [ + "17.51.0" + ], + "challenging sonic liking": [ + "17.43.0", + "17.43.1" + ], + "change": [ + "17.39.2", + "17.54.0", + "17.75.0" + ], + "change remains indeterminate": [ + "17.91.0" + ], + "changing political rhetoric": [ + "17.4.0" + ], + "chaos computer": [ + "17.70.0" + ], + "chaos computer congress": [ + "17.70.0" + ], + "chaotic deranged behaviour": [ + "17.86.0" + ], + "character": [ + "17.32.0" + ], + "characterize digital contagions": [ + "17.92.0" + ], + "charles": [ + "17.46.1" + ], + "charles green": [ + "17.46.0", + "17.46.0", + "17.46.2" + ], + "charles green deals": [ + "17.46.0" + ], + "charles greenšs": [ + "17.46.1" + ], + "charles greenšs book": [ + "17.46.1", + "17.46.1" + ], + "charles greenšs desire": [ + "17.46.1", + "17.46.1" + ], + "charles parsonâs 1884": [ + "17.95.0" + ], + "chat": [ + "17.5.0" + ], + "cheang": [ + "17.6.0" + ], + "cheap decoy tanks": [ + "17.42.0" + ], + "cheap fares": [ + "17.50.0" + ], + "cheap space travel": [ + "17.90.0" + ], + "cheaper gadget people": [ + "17.56.0" + ], + "cheaper phone bill": [ + "17.86.0" + ], + "cheaply build independent": [ + "17.89.0" + ], + "chemillier": [ + "17.1.0" + ], + "chicago gangster theory": [ + "17.13.0" + ], + "china": [ + "17.13.0" + ], + "china economic culture": [ + "17.13.0" + ], + "china labour": [ + "17.13.0" + ], + "china labour federation": [ + "17.13.0", + "17.13.0" + ], + "choosing media based": [ + "17.7.0" + ], + "christian culture": [ + "17.15.0" + ], + "christiane amanpour": [ + "17.29.0" + ], + "cinema": [ + "17.49.0" + ], + "cinematic representation": [ + "17.41.0" + ], + "cities": [ + "17.62.0" + ], + "city": [ + "17.20.0", + "17.65.0", + "17.89.0" + ], + "city fan": [ + "17.89.0" + ], + "city fan fraternity": [ + "17.89.0" + ], + "city fans": [ + "17.89.0" + ], + "city fc": [ + "17.89.0" + ], + "city football": [ + "17.89.0" + ], + "city football shirt": [ + "17.89.0" + ], + "civic engagement": [ + "17.30.0" + ], + "civil": [ + "17.30.0", + "17.34.0" + ], + "civil societies": [ + "17.34.0" + ], + "civil society": [ + "17.30.0", + "17.30.0", + "17.34.0" + ], + "civil society advocates": [ + "17.30.0", + "17.30.0" + ], + "civil society bureau": [ + "17.34.0" + ], + "civil society groups": [ + "17.34.0" + ], + "civil society implications": [ + "17.30.0" + ], + "civil society initiative": [ + "17.30.0" + ], + "civil society initiatives": [ + "17.30.0" + ], + "civil society organizations": [ + "17.34.0" + ], + "civil society people": [ + "17.34.0" + ], + "civil society position": [ + "17.30.0" + ], + "civil society vision": [ + "17.30.0" + ], + "civil society voice": [ + "17.30.0" + ], + "civilizing": [ + "17.80.0" + ], + "civilizing cyberspace": [ + "17.80.0" + ], + "claim": [ + "17.29.0" + ], + "claimed art practitioner": [ + "17.6.0" + ], + "claiming strict neutrality": [ + "17.29.0" + ], + "clara sopht": [ + "17.70.0" + ], + "class": [ + "17.48.0", + "17.59.0", + "17.90.0" + ], + "class beyond": [ + "17.31.0" + ], + "class fraction": [ + "17.13.0" + ], + "class hollywood films": [ + "17.59.0" + ], + "class privilege": [ + "17.95.0" + ], + "class station": [ + "17.13.0" + ], + "class traitors": [ + "17.13.0" + ], + "classic academic career": [ + "17.14.0" + ], + "classic binary opposition": [ + "17.8.0" + ], + "classic capitalist recession": [ + "17.39.0" + ], + "classical cold war": [ + "17.4.0" + ], + "classical design realms": [ + "17.14.0" + ], + "classical enlightenment move": [ + "17.63.0" + ], + "classical european": [ + "17.73.0" + ], + "classical german philosophy": [ + "17.90.0" + ], + "classical language poets": [ + "17.55.0" + ], + "classical republicanism media": [ + "17.78.0" + ], + "classical video art": [ + "17.4.0" + ], + "clean clothes campaign": [ + "17.13.0" + ], + "clean modern world": [ + "17.95.0" + ], + "clear": [ + "17.58.1", + "17.58.2" + ], + "clearcut political structures": [ + "17.9.0" + ], + "click": [ + "17.57.0" + ], + "clink street": [ + "17.85.0" + ], + "clip art project": [ + "17.93.0" + ], + "closed dark space": [ + "17.56.0" + ], + "closed entropic system": [ + "17.91.0" + ], + "closed moderated mailinglist": [ + "17.0.0", + "17.1.0", + "17.2.0", + "17.3.0", + "17.4.0", + "17.5.0", + "17.17.0", + "17.18.0", + "17.19.0", + "17.20.0", + "17.21.0", + "17.22.0", + "17.23.0", + "17.23.1", + "17.24.0", + "17.25.0", + "17.26.0", + "17.27.0", + "17.28.0", + "17.29.0", + "17.72.0", + "17.73.0", + "17.75.0", + "17.76.0", + "17.77.0", + "17.77.1", + "17.78.0", + "17.79.0", + "17.84.0", + "17.85.0", + "17.86.0" + ], + "closed national society": [ + "17.39.2" + ], + "closed societies": [ + "17.77.0" + ], + "closed spaces": [ + "17.52.0" + ], + "closed systems": [ + "17.77.0" + ], + "closed territory consisting": [ + "17.94.0" + ], + "closely knit communities": [ + "17.43.0" + ], + "closely tie human": [ + "17.42.0" + ], + "club": [ + "17.89.0" + ], + "club med nation": [ + "17.50.0" + ], + "cnn": [ + "17.82.0" + ], + "cnn site": [ + "17.82.0" + ], + "coal": [ + "17.95.0" + ], + "coal dust": [ + "17.95.0" + ], + "coal fired": [ + "17.95.0", + "17.95.0" + ], + "coal fired computers": [ + "17.95.0", + "17.95.0" + ], + "coal fired energy": [ + "17.95.0", + "17.95.0" + ], + "coal mines": [ + "17.95.0" + ], + "coal mining accidents": [ + "17.95.0" + ], + "coast techno-libertarianism originated": [ + "17.58.2" + ], + "coaxial internet feeds": [ + "17.65.0" + ], + "coddâs idea": [ + "17.95.0" + ], + "code": [ + "17.10.0", + "17.57.0" + ], + "code words belong": [ + "17.39.0" + ], + "code art": [ + "17.70.0" + ], + "codecs": [ + "17.43.0", + "17.43.1" + ], + "cognitive": [ + "17.90.0" + ], + "cognitive workers": [ + "17.90.0" + ], + "cojoin everyday life": [ + "17.48.0" + ], + "cold war": [ + "17.4.0" + ], + "cold war era": [ + "17.40.0" + ], + "colin": [ + "17.76.0" + ], + "colin green": [ + "17.76.0" + ], + "collaboration": [ + "17.46.0", + "17.46.1", + "17.83.0" + ], + "collaboration in art": [ + "17.46.0" + ], + "collaboration involves": [ + "17.46.0" + ], + "collaborations": [ + "17.46.2" + ], + "collaborative art activity": [ + "17.7.0" + ], + "collaborative contract": [ + "17.46.0" + ], + "collaborative longevity": [ + "17.46.0" + ], + "collaborative poems written": [ + "17.55.0" + ], + "collaborative text": [ + "17.6.1" + ], + "collaborative venture": [ + "17.7.0" + ], + "collection": [ + "17.26.0" + ], + "collective": [ + "17.91.0" + ], + "collective agents setting": [ + "17.91.0" + ], + "collective commitment": [ + "17.30.0" + ], + "collective enterprise involving": [ + "17.91.0" + ], + "collective grassroots demonstration": [ + "17.89.0" + ], + "collective intensive building": [ + "17.91.0" + ], + "collective joyful passions": [ + "17.91.0" + ], + "collective organizations sedimenting": [ + "17.91.0" + ], + "collective rhythms": [ + "17.91.0" + ], + "collective striving": [ + "17.91.0" + ], + "college des mediateur": [ + "17.1.0" + ], + "college des mediateurs": [ + "17.1.0" + ], + "colonial mentality bemoaned": [ + "17.50.0" + ], + "colonial violent past": [ + "17.8.0" + ], + "colour separation": [ + "17.86.0" + ], + "combine immersive segments": [ + "17.49.0" + ], + "combined ethereal pepper": [ + "17.50.0" + ], + "combined radio footprint": [ + "17.43.0" + ], + "comfortable external position": [ + "17.42.0" + ], + "coming days makrolab": [ + "17.24.0" + ], + "commands": [ + "17.16.0", + "17.16.2", + "17.16.3" + ], + "commentator catharine lumby": [ + "17.59.0" + ], + "comments remained unclear": [ + "17.34.0" + ], + "commerce takes": [ + "17.47.0" + ], + "commercial": [ + "17.64.0", + "17.75.0", + "17.85.0" + ], + "commercial context": [ + "17.64.0" + ], + "commercial enterprises": [ + "17.58.0" + ], + "commercial galleries haven": [ + "17.64.0" + ], + "commercial gallery context": [ + "17.64.0", + "17.64.0" + ], + "commercial internet": [ + "17.75.0" + ], + "commercial internet experience": [ + "17.75.0", + "17.75.0" + ], + "commercial media": [ + "17.59.0" + ], + "commercial radio station": [ + "17.68.0" + ], + "commercial short films": [ + "17.58.0" + ], + "commercial software": [ + "17.35.0" + ], + "commercial stuff goes": [ + "17.75.0" + ], + "commercial tv station": [ + "17.43.0", + "17.43.1" + ], + "commercially viable": [ + "17.75.0" + ], + "common language re": [ + "17.93.0" + ], + "common perception overseas": [ + "17.50.0" + ], + "communication": [ + "17.48.0", + "17.57.0", + "17.66.0", + "17.68.0", + "17.75.0" + ], + "communication channels": [ + "17.15.0" + ], + "communication decency act": [ + "17.6.0" + ], + "communication devices hasn": [ + "17.8.0" + ], + "communication start": [ + "17.24.0" + ], + "communication tools": [ + "17.30.0" + ], + "communications": [ + "17.24.0", + "17.30.0" + ], + "communications and creative": [ + "17.53.1" + ], + "communications equipment check": [ + "17.24.0" + ], + "communications media technologies": [ + "17.75.0" + ], + "communism": [ + "17.39.1", + "17.39.2" + ], + "communism hardt": [ + "17.39.1", + "17.39.2" + ], + "communism hardt calls": [ + "17.39.1", + "17.39.1", + "17.39.2", + "17.39.2" + ], + "communist": [ + "17.37.0", + "17.39.0" + ], + "communist art history": [ + "17.40.0" + ], + "communist book": [ + "17.39.0" + ], + "communist party": [ + "17.12.0" + ], + "communist project": [ + "17.37.0" + ], + "communist tradition": [ + "17.37.0", + "17.37.0" + ], + "community": [ + "17.3.0", + "17.48.0", + "17.66.0", + "17.80.0", + "17.88.0" + ], + "community empowerment rhetoric": [ + "17.89.0" + ], + "community networks": [ + "17.80.0" + ], + "community radio stations": [ + "17.78.0" + ], + "community whilst": [ + "17.87.0" + ], + "companies": [ + "17.21.0" + ], + "comparative analyses involving": [ + "17.95.0" + ], + "compare _strategie": [ + "17.53.0" + ], + "compared": [ + "17.56.0" + ], + "competing art systems": [ + "17.86.0" + ], + "competing european powers": [ + "17.69.0" + ], + "competing political/financial": [ + "17.95.0" + ], + "competing symbolic forms": [ + "17.49.0" + ], + "complacent cultural class": [ + "17.31.0" + ], + "completely": [ + "17.53.1" + ], + "completely _for_": [ + "17.37.0" + ], + "completely arbitrary speeds": [ + "17.70.0" + ], + "completely controlled": [ + "17.26.0" + ], + "completely disappeared": [ + "17.53.1" + ], + "completely grassroots program": [ + "17.72.0" + ], + "completely satisfactory explanation": [ + "17.52.0" + ], + "completely unattainable": [ + "17.86.0" + ], + "completely unrealisable": [ + "17.95.0" + ], + "completely untypical stereotypes": [ + "17.86.0" + ], + "completely wasteful": [ + "17.95.0" + ], + "complex conceptual art": [ + "17.46.0" + ], + "complex social relation": [ + "17.66.0" + ], + "complicated emergent": [ + "17.36.0" + ], + "complicated technical challenge": [ + "17.11.0" + ], + "compositional dynamics": [ + "17.91.0", + "17.91.0" + ], + "compositional dynamics encompassing": [ + "17.91.0" + ], + "compound visual space": [ + "17.41.0" + ], + "comprehensive video documentation": [ + "17.70.0" + ], + "computer": [ + "17.1.0", + "17.4.0", + "17.18.0", + "17.40.0", + "17.49.0", + "17.50.0", + "17.57.0", + "17.70.0", + "17.80.0", + "17.83.0", + "17.92.0", + "17.94.0" + ], + "computer art": [ + "17.70.0", + "17.70.0" + ], + "computer art shows": [ + "17.4.0" + ], + "computer club": [ + "17.70.0" + ], + "computer code realm": [ + "17.92.0" + ], + "computer codes": [ + "17.70.0" + ], + "computer crime unit": [ + "17.70.0" + ], + "computer environments": [ + "17.40.0" + ], + "computer game formula": [ + "17.40.0" + ], + "computer game starts": [ + "17.40.0" + ], + "computer games": [ + "17.40.0", + "17.40.0", + "17.49.0", + "17.83.0" + ], + "computer graphic": [ + "17.4.0" + ], + "computer graphics deal": [ + "17.10.0" + ], + "computer hacker": [ + "17.14.0" + ], + "computer images": [ + "17.18.0" + ], + "computer media": [ + "17.49.0" + ], + "computer network": [ + "17.22.0" + ], + "computer networks": [ + "17.57.0" + ], + "computer obviously isn": [ + "17.83.0" + ], + "computer philosopher called": [ + "17.18.0" + ], + "computer program": [ + "17.70.0" + ], + "computer programs": [ + "17.71.0" + ], + "computer research institute": [ + "17.4.0" + ], + "computer screen": [ + "17.50.0" + ], + "computer security discourse": [ + "17.92.0" + ], + "computer sys tems": [ + "17.80.0" + ], + "computer system characteristics": [ + "17.92.0", + "17.92.0" + ], + "computer systems": [ + "17.92.0" + ], + "computer virus": [ + "17.92.0" + ], + "computer virus research": [ + "17.92.0" + ], + "computer viruses": [ + "17.92.0" + ], + "computer viruses ends": [ + "17.92.0" + ], + "computers": [ + "17.18.0", + "17.87.0", + "17.92.0", + "17.95.0" + ], + "computers primarily aimed": [ + "17.94.0" + ], + "computers projectâs": [ + "17.95.0" + ], + "computers using": [ + "17.93.0" + ], + "computerâs life cycle": [ + "17.95.0" + ], + "concept": [ + "17.6.0", + "17.14.0", + "17.15.0", + "17.16.1", + "17.61.0", + "17.73.0" + ], + "concept art": [ + "17.70.0" + ], + "concept art actually": [ + "17.70.0" + ], + "concept cornelia sollfrank": [ + "17.15.0" + ], + "concept for audio": [ + "17.16.1" + ], + "concept manufacture": [ + "17.61.0" + ], + "concept mark dery": [ + "17.78.0" + ], + "concepts": [ + "17.48.0", + "17.61.0" + ], + "concepts lack reality": [ + "17.48.0" + ], + "conceptual art experiences": [ + "17.46.0" + ], + "conceptual art works": [ + "17.46.0" + ], + "conceptual artist collaborations": [ + "17.46.0", + "17.46.0" + ], + "conceptual arts discourse": [ + "17.46.0" + ], + "conceptual body studies": [ + "17.73.0" + ], + "conceptual design": [ + "17.14.0", + "17.14.0" + ], + "conceptual machine simultaneously": [ + "17.95.0" + ], + "conceptual skills": [ + "17.38.0" + ], + "conceptual understanding": [ + "17.14.0" + ], + "concern media theory": [ + "17.15.0" + ], + "concern worldwide": [ + "17.14.0" + ], + "concerning art": [ + "17.28.0" + ], + "concerns": [ + "17.2.0" + ], + "concerns coming": [ + "17.7.0" + ], + "condic": [ + "17.39.1" + ], + "condition": [ + "17.20.0" + ], + "conditions": [ + "17.31.0" + ], + "conductors agitating": [ + "17.50.0" + ], + "conf": [ + "17.16.0", + "17.16.3" + ], + "conference": [ + "17.2.0", + "17.25.0" + ], + "conference digitales": [ + "17.74.0" + ], + "conference series metaforum": [ + "17.4.0" + ], + "conflict": [ + "17.27.0" + ], + "confrontational aesthetic canons": [ + "17.68.0" + ], + "confused broadcast journalists": [ + "17.36.0" + ], + "confusion": [ + "17.43.0", + "17.43.1" + ], + "congratulation": [ + "17.33.0" + ], + "connected": [ + "17.42.0" + ], + "connected society": [ + "17.30.0" + ], + "connecting hi": [ + "17.43.0", + "17.43.1" + ], + "connection": [ + "17.16.0" + ], + "connection data": [ + "17.17.0" + ], + "connection via internet": [ + "17.5.0" + ], + "connotation looked endless": [ + "17.40.0" + ], + "consciously controlled visuality": [ + "17.4.0" + ], + "consensus hall space": [ + "17.26.0" + ], + "conservative cultural politics": [ + "17.8.0" + ], + "consider ourselves „artists“": [ + "17.82.0" + ], + "consider stopping doing": [ + "17.83.0" + ], + "considered": [ + "17.60.0" + ], + "considered free speech": [ + "17.17.0" + ], + "constant": [ + "17.74.0" + ], + "constant vzw": [ + "17.93.0" + ], + "constantly denying japan": [ + "17.8.0" + ], + "constantly growing database": [ + "17.81.0" + ], + "constantly recuring motif": [ + "17.41.0" + ], + "constitute international funds": [ + "17.22.0" + ], + "constitutional democracy": [ + "17.78.0" + ], + "constitutional participatory democracy": [ + "17.78.0" + ], + "constraints corporate power": [ + "17.78.0" + ], + "constructed doppelgänger": [ + "17.46.0" + ], + "constructing democratic relationships": [ + "17.37.0" + ], + "constructing global": [ + "17.37.0" + ], + "constructive critique count": [ + "17.93.0" + ], + "consume tabloid media": [ + "17.59.0" + ], + "contact": [ + "17.6.1", + "17.58.3" + ], + "contagions analyzes": [ + "17.92.0" + ], + "container": [ + "17.87.0" + ], + "container in jamaica": [ + "17.87.0" + ], + "container left": [ + "17.87.0" + ], + "container left london": [ + "17.87.0", + "17.87.0" + ], + "container project": [ + "17.87.0" + ], + "container unit": [ + "17.87.0" + ], + "contemporary": [ + "17.28.0", + "17.50.0" + ], + "contemporary albanian cultural": [ + "17.50.0" + ], + "contemporary arguments": [ + "17.50.0" + ], + "contemporary art scene": [ + "17.70.0" + ], + "contemporary art space": [ + "17.50.0" + ], + "contemporary art world": [ + "17.58.0" + ], + "contemporary arts": [ + "17.6.0", + "17.6.0" + ], + "contemporary arts world": [ + "17.6.0" + ], + "contemporary creation": [ + "17.6.0" + ], + "contemporary cultural critic": [ + "17.58.0" + ], + "contemporary existential model": [ + "17.73.0" + ], + "contemporary marxism analyzing": [ + "17.45.0" + ], + "contemporary media": [ + "17.58.0", + "17.59.0" + ], + "contemporary media art": [ + "17.58.0", + "17.58.0" + ], + "contemporary media crawling": [ + "17.95.0" + ], + "contemporary media moralism": [ + "17.59.0", + "17.59.0" + ], + "contemporary media politics": [ + "17.69.0" + ], + "contemporary media theory": [ + "17.58.0" + ], + "contemporary media tries": [ + "17.95.0" + ], + "contemporary mexican art": [ + "17.65.0", + "17.65.0" + ], + "contemporary neoliberal phase": [ + "17.37.0" + ], + "contemporary radio theory": [ + "17.11.0" + ], + "contemporary sacred cow": [ + "17.29.0" + ], + "contemporary terms": [ + "17.95.0" + ], + "contemporary textiles": [ + "17.50.0" + ], + "contemporary urban environment": [ + "17.20.0" + ], + "contemporary world": [ + "17.37.0" + ], + "content": [ + "17.0.0", + "17.17.0", + "17.23.0", + "17.80.0" + ], + "contents": [ + "17.82.0" + ], + "contested majority rule": [ + "17.34.0" + ], + "context": [ + "17.10.0", + "17.20.0", + "17.32.0", + "17.46.2", + "17.62.0", + "17.64.0" + ], + "context syberberg starts": [ + "17.20.0" + ], + "contexts physically speaking": [ + "17.51.0" + ], + "contextualizing grassroot movements": [ + "17.10.0" + ], + "continental european connotation": [ + "17.52.0" + ], + "continental media theory": [ + "17.63.0", + "17.63.0" + ], + "continental philosophy especially": [ + "17.63.0" + ], + "continually changing internet": [ + "17.49.0" + ], + "continually taking pictures": [ + "17.53.0" + ], + "continuity twenty five": [ + "17.58.0" + ], + "continuous critical debate": [ + "17.39.2" + ], + "continuous takeover": [ + "17.83.0" + ], + "contradicted gerfried stocker": [ + "17.71.0" + ], + "contraption": [ + "17.95.0" + ], + "contraption whoâs structural": [ + "17.95.0" + ], + "contributed code": [ + "17.93.0" + ], + "contributing code": [ + "17.93.0" + ], + "control": [ + "17.0.0", + "17.49.0" + ], + "control contemporary art": [ + "17.28.0", + "17.28.0" + ], + "control issues recede": [ + "17.85.0" + ], + "control media": [ + "17.0.0" + ], + "control remains": [ + "17.91.0" + ], + "control segments": [ + "17.49.0" + ], + "control stock values": [ + "17.45.0" + ], + "control technologies": [ + "17.42.0" + ], + "controlled art magazine": [ + "17.40.0" + ], + "controlling human minds": [ + "17.92.0" + ], + "controlling peers": [ + "17.30.0" + ], + "conventional art started": [ + "17.28.0" + ], + "conventional computing platforms": [ + "17.94.0" + ], + "conversation": [ + "17.72.0" + ], + "conversation with vesna": [ + "17.72.0" + ], + "conversations amongst peers": [ + "17.30.0" + ], + "converting the container": [ + "17.87.0" + ], + "cool": [ + "17.54.0" + ], + "cool web interface": [ + "17.63.0" + ], + "cooperation": [ + "17.39.0" + ], + "coordinating web site": [ + "17.47.0" + ], + "copied hell.com": [ + "17.82.0" + ], + "copyright declaration tucked": [ + "17.41.0" + ], + "copyright laws hint": [ + "17.43.0", + "17.43.1" + ], + "copyright lobbyists": [ + "17.43.0", + "17.43.1" + ], + "core physical substance": [ + "17.50.0" + ], + "core thematic threads": [ + "17.16.3" + ], + "cornelia": [ + "17.15.0", + "17.19.0", + "17.74.0" + ], + "cornelia sollfrank": [ + "17.15.0", + "17.19.0", + "17.74.0" + ], + "cornelia sollfrank brussels": [ + "17.74.0" + ], + "cornelia sollfrank interviewed": [ + "17.70.0" + ], + "corner": [ + "17.55.0" + ], + "corporate": [ + "17.6.0", + "17.16.2", + "17.47.0", + "17.75.0", + "17.78.0", + "17.85.0" + ], + "corporate atrocities": [ + "17.13.0" + ], + "corporate digital media": [ + "17.15.0" + ], + "corporate form": [ + "17.45.0" + ], + "corporate influence peddling": [ + "17.78.0" + ], + "corporate leash": [ + "17.13.0" + ], + "corporate logic": [ + "17.13.0" + ], + "corporate managerial theorists": [ + "17.78.0" + ], + "corporate media": [ + "17.47.0", + "17.47.0" + ], + "corporate movement": [ + "17.47.0" + ], + "corporate multinational type": [ + "17.29.0" + ], + "corporate power": [ + "17.78.0" + ], + "corporate power profoundly": [ + "17.78.0" + ], + "corporate profitability": [ + "17.45.0" + ], + "corporate profits": [ + "17.45.0" + ], + "corporate raiders": [ + "17.45.0" + ], + "corporate rush": [ + "17.13.0" + ], + "corporate sector": [ + "17.75.0" + ], + "corporate social media": [ + "17.15.0" + ], + "corporate social responsibility": [ + "17.13.0" + ], + "corporate technologies": [ + "17.65.0" + ], + "corporate world": [ + "17.35.0" + ], + "corporately owned pretty": [ + "17.72.0" + ], + "correction": [ + "17.6.1", + "17.77.1" + ], + "corrupt identity system": [ + "17.30.0" + ], + "corrupt political process": [ + "17.34.0" + ], + "cosic": [ + "17.77.0", + "17.77.1" + ], + "couldnât": [ + "17.69.0" + ], + "countless bank scandals": [ + "17.8.0" + ], + "countless toy theaters": [ + "17.12.0" + ], + "countless war films": [ + "17.42.0" + ], + "countries": [ + "17.39.2" + ], + "countries lose sovereignty": [ + "17.39.2" + ], + "country": [ + "17.28.0" + ], + "country jamaicans online": [ + "17.87.0" + ], + "course strategic investments": [ + "17.71.0" + ], + "cover": [ + "17.67.0" + ], + "covering print media": [ + "17.75.0" + ], + "cox": [ + "17.60.0" + ], + "cracked games culture": [ + "17.56.0" + ], + "cracked software projects": [ + "17.86.0" + ], + "craft victoria gallery": [ + "17.50.0" + ], + "crafty business rationale": [ + "17.35.0" + ], + "crandall": [ + "17.42.0" + ], + "crank asn code": [ + "17.30.0" + ], + "create": [ + "17.51.0", + "17.66.0" + ], + "create artificial frontiers": [ + "17.10.0" + ], + "create conscious relations": [ + "17.66.0" + ], + "create games": [ + "17.86.0" + ], + "create hybrids amongst": [ + "17.8.0" + ], + "create lasting equity": [ + "17.58.0" + ], + "create makeshift configurations": [ + "17.4.0" + ], + "create social movements": [ + "17.13.0" + ], + "create social networks": [ + "17.90.0" + ], + "create tall objects": [ + "17.88.0" + ], + "create tremendous suffering": [ + "17.22.0" + ], + "create viable nonprofit": [ + "17.75.0" + ], + "creates complex negotiations": [ + "17.95.0" + ], + "creating": [ + "17.66.0" + ], + "creating assemblages": [ + "17.95.0" + ], + "creating community": [ + "17.66.0" + ], + "creating community mean": [ + "17.66.0" + ], + "creating denser": [ + "17.95.0" + ], + "creating energy systems": [ + "17.95.0" + ], + "creating engaging reflexivity": [ + "17.14.0" + ], + "creating human networks": [ + "17.30.0" + ], + "creating international societies": [ + "17.84.0" + ], + "creating objects": [ + "17.14.0" + ], + "creating resistant initiatives": [ + "17.7.0" + ], + "creating temporary": [ + "17.9.0" + ], + "creating valuable networks": [ + "17.30.0" + ], + "creating webpages": [ + "17.84.0" + ], + "creative": [ + "17.13.0", + "17.31.0" + ], + "creative ambitions": [ + "17.73.0" + ], + "creative common license": [ + "17.11.0" + ], + "creative economy": [ + "17.13.0" + ], + "creative industries": [ + "17.53.1" + ], + "creative industries discourse": [ + "17.68.0" + ], + "creative industries event": [ + "17.14.0" + ], + "creative job": [ + "17.13.0" + ], + "creative labour": [ + "17.13.0" + ], + "creative office culture": [ + "17.13.0" + ], + "creative partners": [ + "17.46.0" + ], + "creative work": [ + "17.31.0" + ], + "creativity disassociated": [ + "17.13.0" + ], + "credit card limit": [ + "17.64.0" + ], + "cremaster films": [ + "17.58.0" + ], + "crime rate": [ + "17.22.0" + ], + "crisis": [ + "17.22.0" + ], + "critic boris groys": [ + "17.52.0" + ], + "critic frank hartmann": [ + "17.63.0" + ], + "critical": [ + "17.7.0", + "17.38.0" + ], + "critical anthropology": [ + "17.13.0" + ], + "critical anthropology tradition": [ + "17.13.0" + ], + "critical apparatus shaped": [ + "17.30.0" + ], + "critical art": [ + "17.7.0" + ], + "critical art praxis": [ + "17.58.0" + ], + "critical capital figuring": [ + "17.58.0" + ], + "critical concepts start": [ + "17.68.0" + ], + "critical contemporary arts": [ + "17.38.0" + ], + "critical cultural practices": [ + "17.31.0" + ], + "critical difference": [ + "17.50.0" + ], + "critical discourses": [ + "17.31.0" + ], + "critical discussion": [ + "17.46.1" + ], + "critical mass": [ + "17.13.0", + "17.47.0", + "17.58.0", + "17.68.0" + ], + "critical media theory": [ + "17.69.0" + ], + "critical media topics": [ + "17.69.0" + ], + "critical race": [ + "17.37.0" + ], + "critical race studies": [ + "17.37.0" + ], + "critical research ought": [ + "17.13.0" + ], + "critical scholars": [ + "17.13.0" + ], + "critical stance towards": [ + "17.78.0" + ], + "critical tradition": [ + "17.68.0" + ], + "criticism": [ + "17.25.0" + ], + "criticize bio tech": [ + "17.51.0" + ], + "critiques of west": [ + "17.58.2" + ], + "croatia": [ + "17.39.1", + "17.72.0" + ], + "croatia and herzegovina": [ + "17.39.1" + ], + "croatian": [ + "17.37.0", + "17.39.1" + ], + "croatian hague-accused": [ + "17.39.1" + ], + "croatian hague-accused war": [ + "17.39.1" + ], + "croatian radio": [ + "17.37.0" + ], + "croatian translation": [ + "17.37.0" + ], + "cross jamaica": [ + "17.87.0" + ], + "cross media collaboration": [ + "17.47.0" + ], + "cross media event": [ + "17.38.0" + ], + "cross platform spreading": [ + "17.92.0" + ], + "crucial difference refers": [ + "17.34.0" + ], + "crucial tactical tool": [ + "17.8.0" + ], + "cruise missiles": [ + "17.53.0" + ], + "cruise missiles involves": [ + "17.53.0" + ], + "cruise missiles necessarily": [ + "17.53.0" + ], + "crumb": [ + "17.67.0" + ], + "crumb interview": [ + "17.67.0" + ], + "crusty academics look": [ + "17.45.0" + ], + "ctheory interview": [ + "17.53.0" + ], + "cultural": [ + "17.4.0", + "17.7.0", + "17.8.0", + "17.9.0", + "17.13.0", + "17.26.0", + "17.31.0", + "17.50.0", + "17.52.0", + "17.59.0", + "17.61.0", + "17.63.0", + "17.68.0", + "17.73.0", + "17.92.0" + ], + "cultural analyst": [ + "17.92.0" + ], + "cultural circuit": [ + "17.50.0" + ], + "cultural conflicts": [ + "17.13.0" + ], + "cultural content providers": [ + "17.17.0" + ], + "cultural dimensions": [ + "17.17.0" + ], + "cultural elements moved": [ + "17.8.0" + ], + "cultural industries": [ + "17.59.0" + ], + "cultural inspiration": [ + "17.4.0" + ], + "cultural justice": [ + "17.13.0" + ], + "cultural labor": [ + "17.31.0" + ], + "cultural life": [ + "17.4.0" + ], + "cultural movements": [ + "17.52.0" + ], + "cultural movements produced": [ + "17.68.0" + ], + "cultural pessimism": [ + "17.59.0" + ], + "cultural phenomena": [ + "17.52.0" + ], + "cultural politics": [ + "17.6.0", + "17.6.1", + "17.8.0", + "17.13.0", + "17.13.0", + "17.17.0", + "17.39.1", + "17.43.0", + "17.43.1", + "17.50.0", + "17.58.0" + ], + "cultural product": [ + "17.52.0" + ], + "cultural production": [ + "17.31.0", + "17.58.0" + ], + "cultural production held": [ + "17.31.0", + "17.31.0" + ], + "cultural protectionism emerged": [ + "17.4.0" + ], + "cultural radicals": [ + "17.13.0" + ], + "cultural reality": [ + "17.92.0" + ], + "cultural space": [ + "17.52.0" + ], + "cultural specificity": [ + "17.13.0" + ], + "cultural streaming media": [ + "17.43.0", + "17.43.0", + "17.43.1", + "17.43.1" + ], + "cultural studies": [ + "17.8.0", + "17.8.0", + "17.11.0", + "17.13.0", + "17.13.0", + "17.52.0", + "17.52.0", + "17.61.0", + "17.71.0", + "17.92.0" + ], + "cultural studies agenda": [ + "17.92.0" + ], + "cultural studies analyses": [ + "17.61.0" + ], + "cultural studies discourse": [ + "17.52.0" + ], + "cultural studies explicitly": [ + "17.63.0" + ], + "cultural studies response": [ + "17.59.0" + ], + "cultural studies scholar": [ + "17.13.0", + "17.13.0", + "17.92.0" + ], + "cultural studies scholarship": [ + "17.13.0" + ], + "cultural studies uk": [ + "17.8.0" + ], + "cultural theorists": [ + "17.13.0" + ], + "cultural theory": [ + "17.92.0" + ], + "cultural ties": [ + "17.50.0" + ], + "cultural tradition": [ + "17.73.0" + ], + "cultural work": [ + "17.13.0" + ], + "cultural workers": [ + "17.13.0" + ], + "culturally relevant discussion": [ + "17.10.0" + ], + "culture": [ + "17.8.0", + "17.9.0", + "17.10.0", + "17.13.0", + "17.14.0", + "17.41.0", + "17.46.0", + "17.48.0", + "17.49.0", + "17.53.0", + "17.56.0", + "17.58.0", + "17.59.0", + "17.61.0", + "17.68.0", + "17.94.0" + ], + "culture clashes": [ + "17.40.0" + ], + "culture jammer ethos": [ + "17.60.0" + ], + "cultures": [ + "17.8.0", + "17.94.0" + ], + "curated media art": [ + "17.67.0" + ], + "curatorial work": [ + "17.67.0" + ], + "curators/ theorists/ audience": [ + "17.79.0" + ], + "curious": [ + "17.58.3" + ], + "curious examples": [ + "17.92.0" + ], + "currency board": [ + "17.28.0" + ], + "current": [ + "17.0.0" + ], + "current advance": [ + "17.15.0" + ], + "current affairs media": [ + "17.59.0" + ], + "current architecture foster": [ + "17.30.0" + ], + "current circumstances": [ + "17.35.0" + ], + "current condition": [ + "17.94.0" + ], + "current digital media": [ + "17.58.0" + ], + "current educational practice": [ + "17.11.0" + ], + "current flash craze": [ + "17.58.0" + ], + "current fragmented": [ + "17.14.0" + ], + "current generation": [ + "17.14.0" + ], + "current global movements": [ + "17.6.0" + ], + "current huge changes": [ + "17.14.0" + ], + "current involvement": [ + "17.34.0" + ], + "current layout": [ + "17.94.0" + ], + "current marketing campaign": [ + "17.35.0" + ], + "current media theory": [ + "17.4.0" + ], + "current neoliberal rationality": [ + "17.15.0" + ], + "current network worms": [ + "17.92.0" + ], + "current playing field": [ + "17.75.0" + ], + "current political emergency": [ + "17.12.0" + ], + "current political situation": [ + "17.94.0" + ], + "current project giving": [ + "17.15.0" + ], + "current run": [ + "17.35.0" + ], + "current situation related": [ + "17.34.0" + ], + "current social science": [ + "17.14.0" + ], + "current status quo": [ + "17.14.0" + ], + "current unilateral management": [ + "17.34.0" + ], + "current ‘democratic deficit’": [ + "17.30.0" + ], + "currently feasable": [ + "17.0.0" + ], + "currently functions": [ + "17.0.0" + ], + "cyber creative": [ + "17.73.0" + ], + "cyberfeminism": [ + "17.19.0", + "17.71.0" + ], + "cyberfeminist": [ + "17.74.0" + ], + "cyberfeminist strategy": [ + "17.72.0" + ], + "cybernet": [ + "17.3.0" + ], + "cybernet found somehow": [ + "17.3.0" + ], + "cyberspace": [ + "17.80.0" + ], + "cyberspace overloads cybertime": [ + "17.90.0" + ], + "cypherpunks mailing list": [ + "17.0.0" + ], + "călin": [ + "17.40.0", + "17.40.0" + ], + "călin chose": [ + "17.40.0" + ], + "călin dan": [ + "17.40.0", + "17.40.0" + ], + "călin developed": [ + "17.40.0" + ], + "călin produced": [ + "17.40.0" + ], + "dada lover": [ + "17.77.0" + ], + "dada web site": [ + "17.77.0" + ], + "daily life": [ + "17.1.0" + ], + "daily news program": [ + "17.47.0" + ], + "daimler benz involved": [ + "17.17.0" + ], + "dan": [ + "17.40.0", + "17.46.1" + ], + "dan graham": [ + "17.46.1", + "17.46.1" + ], + "dan mihaltianu": [ + "17.40.0" + ], + "dan youšve": [ + "17.46.1" + ], + "daniel palmer": [ + "17.49.0" + ], + "daniel palmer lev": [ + "17.49.0" + ], + "danish journalist erik": [ + "17.17.0" + ], + "daring scientific truths": [ + "17.91.0" + ], + "data": [ + "17.24.0", + "17.95.0" + ], + "data banks": [ + "17.17.0" + ], + "data loss": [ + "17.92.0" + ], + "data loss disasters": [ + "17.92.0" + ], + "data navigation tools": [ + "17.38.0" + ], + "data package": [ + "17.92.0" + ], + "database": [ + "17.51.0", + "17.81.0", + "17.95.0" + ], + "database driven sites": [ + "17.88.0" + ], + "database driven structures": [ + "17.88.0" + ], + "database network platform": [ + "17.6.0" + ], + "datasets": [ + "17.95.0" + ], + "dave mandl=b9s": [ + "17.11.0" + ], + "david": [ + "17.26.0", + "17.46.2", + "17.94.0" + ], + "david ferbrache suggests": [ + "17.92.0" + ], + "david garcia": [ + "17.46.2" + ], + "david garcia response": [ + "17.46.2" + ], + "david link": [ + "17.94.0" + ], + "david link work": [ + "17.94.0" + ], + "david toop": [ + "17.61.0" + ], + "daylight savings time": [ + "17.41.0" + ], + "days": [ + "17.5.0", + "17.29.0" + ], + "days late anyway": [ + "17.43.0", + "17.43.1" + ], + "days lecture": [ + "17.27.0" + ], + "days till contacts": [ + "17.5.0" + ], + "daytime porn": [ + "17.6.0" + ], + "de appel": [ + "17.60.0" + ], + "de apple": [ + "17.60.0" + ], + "de facto hypertext": [ + "17.58.0" + ], + "de la deception_": [ + "17.53.0" + ], + "de touqueville": [ + "17.58.0" + ], + "de valk": [ + "17.94.0" + ], + "dealt": [ + "17.2.0" + ], + "dealt with art": [ + "17.2.0" + ], + "dear": [ + "17.16.1", + "17.39.1", + "17.58.2", + "17.58.3" + ], + "dear boys": [ + "17.16.1" + ], + "dear brian": [ + "17.39.1" + ], + "dear geert": [ + "17.23.1", + "17.23.1" + ], + "dear list": [ + "17.67.0" + ], + "dear nettimers": [ + "17.9.0" + ], + "dear paul": [ + "17.23.1" + ], + "dear paul garrin": [ + "17.23.1", + "17.23.1" + ], + "dear richard": [ + "17.58.2", + "17.58.3" + ], + "debt": [ + "17.22.0" + ], + "debt crisis": [ + "17.22.0" + ], + "decade starts": [ + "17.40.0" + ], + "decaying copper infrastructure": [ + "17.78.0" + ], + "deceased people suspected": [ + "17.40.0" + ], + "december": [ + "17.74.0" + ], + "deception": [ + "17.53.0" + ], + "decide anew": [ + "17.34.0" + ], + "decide single handedly": [ + "17.34.0" + ], + "decide whatâs": [ + "17.69.0" + ], + "decidedly political orientation": [ + "17.29.0" + ], + "declaration": [ + "17.17.0" + ], + "decorated found objects": [ + "17.12.0" + ], + "deedee halleck": [ + "17.47.0" + ], + "deep": [ + "17.16.2", + "17.16.3" + ], + "deep cast mines": [ + "17.95.0" + ], + "deep local": [ + "17.16.1", + "17.16.2", + "17.16.3" + ], + "deep nervous breakdown": [ + "17.83.0" + ], + "deeply effecting architecture": [ + "17.20.0" + ], + "deeply held belief": [ + "17.15.0" + ], + "deeply reactionary idea": [ + "17.78.0" + ], + "deeply symbolic level": [ + "17.59.0" + ], + "default background colour": [ + "17.76.0" + ], + "define social movements": [ + "17.91.0" + ], + "define themselves vis": [ + "17.62.0" + ], + "defined essentialist crap": [ + "17.71.0" + ], + "defined themselves": [ + "17.74.0" + ], + "definite erotic edge": [ + "17.42.0" + ], + "definitely naďve": [ + "17.46.0" + ], + "definition": [ + "17.19.0" + ], + "degres": [ + "17.16.0" + ], + "deja vu reading": [ + "17.39.1" + ], + "dejavu font project": [ + "17.93.0" + ], + "del and roel": [ + "17.69.0" + ], + "delanda noted earlier": [ + "17.92.0" + ], + "deleting valuable documents": [ + "17.29.0" + ], + "deleuze called difference": [ + "17.31.0" + ], + "deleuzian": [ + "17.9.0" + ], + "deleuzian age": [ + "17.9.0" + ], + "deliberately construct": [ + "17.30.0" + ], + "delicate product": [ + "17.40.0" + ], + "deliver yesterdays news": [ + "17.43.0", + "17.43.1" + ], + "demented maniacs strung": [ + "17.86.0" + ], + "demo": [ + "17.58.0" + ], + "demo design": [ + "17.38.0" + ], + "demo presentation model": [ + "17.38.0" + ], + "democracy": [ + "17.34.0", + "17.39.0", + "17.78.0" + ], + "democracy actually deliver": [ + "17.31.0" + ], + "democratic action": [ + "17.30.0" + ], + "democratic deficit": [ + "17.34.0" + ], + "democratic mechanism": [ + "17.75.0" + ], + "democratic media": [ + "17.75.0" + ], + "democratic media system": [ + "17.75.0", + "17.75.0" + ], + "democratic procedures": [ + "17.34.0" + ], + "democratic process": [ + "17.78.0" + ], + "democratic project": [ + "17.78.0" + ], + "democratic technological culture": [ + "17.53.0" + ], + "democratic world": [ + "17.34.0" + ], + "demonstrators blocking": [ + "17.47.0" + ], + "dennis": [ + "17.69.0" + ], + "dennis de bel": [ + "17.69.0" + ], + "dennis de del": [ + "17.69.0", + "17.69.0" + ], + "dense history means": [ + "17.58.0" + ], + "densely wired": [ + "17.50.0" + ], + "dependent anymore": [ + "17.26.0" + ], + "deploy radar readings": [ + "17.53.0" + ], + "dery": [ + "17.78.0" + ], + "dery flame": [ + "17.58.2" + ], + "dery flame wars": [ + "17.58.2" + ], + "describe backspace": [ + "17.85.0" + ], + "design": [ + "17.14.0", + "17.38.0", + "17.52.0", + "17.58.0", + "17.62.0", + "17.65.0", + "17.67.0", + "17.68.0", + "17.93.0" + ], + "design aspect": [ + "17.38.0" + ], + "design karlsruhe": [ + "17.52.0" + ], + "design methodologies": [ + "17.14.0" + ], + "design practice": [ + "17.93.0" + ], + "design schools": [ + "17.38.0" + ], + "design sophisticated communication": [ + "17.68.0" + ], + "design world": [ + "17.14.0", + "17.38.0" + ], + "designer": [ + "17.76.0" + ], + "designer mieke gerritzen": [ + "17.38.0" + ], + "designers": [ + "17.38.0" + ], + "designing user platforms": [ + "17.14.0" + ], + "designs": [ + "17.14.0" + ], + "desire": [ + "17.91.0" + ], + "desire aiming towards": [ + "17.91.0" + ], + "desiring assemblages act": [ + "17.91.0" + ], + "desiring machines": [ + "17.91.0" + ], + "desiring potentials": [ + "17.91.0" + ], + "desperation": [ + "17.39.0" + ], + "desperation suddenly breaks": [ + "17.39.0" + ], + "despite numerous attempt": [ + "17.59.0" + ], + "destructive power": [ + "17.53.0" + ], + "determines wheather name": [ + "17.0.0" + ], + "deutsche": [ + "17.23.0" + ], + "deutsche telekom": [ + "17.23.0" + ], + "deutsche telekom makes": [ + "17.23.0" + ], + "develop free software": [ + "17.90.0" + ], + "develop individual strategies": [ + "17.11.0" + ], + "develop tribal solidarity": [ + "17.8.0" + ], + "developed collective strategies": [ + "17.70.0" + ], + "developed italian telestreets": [ + "17.12.0", + "17.12.0" + ], + "developer community": [ + "17.88.0" + ], + "developer divide": [ + "17.93.0" + ], + "developers community": [ + "17.93.0" + ], + "developing experimentation outside": [ + "17.31.0" + ], + "developing net criticism": [ + "17.25.0" + ], + "development": [ + "17.9.0", + "17.38.0" + ], + "development programs": [ + "17.39.2" + ], + "devise policy authorities": [ + "17.34.0" + ], + "diagrams evoke": [ + "17.42.0" + ], + "dialectics": [ + "17.91.0" + ], + "dialectics presupposes contradiction": [ + "17.91.0" + ], + "diaspora": [ + "17.8.0" + ], + "die erfindung russlands": [ + "17.52.0", + "17.52.0" + ], + "die kunst": [ + "17.52.0" + ], + "die kunst des": [ + "17.52.0" + ], + "difference actually bears": [ + "17.50.0" + ], + "differential con": [ + "17.91.0" + ], + "diffused net plagiarism": [ + "17.9.0" + ], + "digital": [ + "17.7.0", + "17.9.0", + "17.15.0", + "17.21.0", + "17.24.0", + "17.30.0", + "17.35.0", + "17.49.0", + "17.58.0", + "17.68.0", + "17.69.0", + "17.92.0", + "17.94.0" + ], + "digital age": [ + "17.50.0" + ], + "digital anatomy": [ + "17.51.0" + ], + "digital arena": [ + "17.9.0" + ], + "digital art": [ + "17.40.0" + ], + "digital artist": [ + "17.58.0" + ], + "digital arts": [ + "17.58.0" + ], + "digital arts community": [ + "17.40.0" + ], + "digital arts festival": [ + "17.89.0" + ], + "digital avant": [ + "17.94.0" + ], + "digital bauhaus": [ + "17.4.0" + ], + "digital bill": [ + "17.30.0" + ], + "digital city": [ + "17.9.0", + "17.21.0" + ], + "digital commons": [ + "17.9.0", + "17.11.0" + ], + "digital communication infrastructure": [ + "17.30.0" + ], + "digital communication tools": [ + "17.30.0" + ], + "digital communications": [ + "17.30.0", + "17.30.0" + ], + "digital contagions": [ + "17.92.0" + ], + "digital content available": [ + "17.15.0" + ], + "digital culture": [ + "17.14.0" + ], + "digital currency ca=": [ + "17.11.0" + ], + "digital diaspora": [ + "17.8.0" + ], + "digital discourse": [ + "17.40.0" + ], + "digital disempowerment": [ + "17.30.0" + ], + "digital divide": [ + "17.9.0", + "17.30.0" + ], + "digital drifter": [ + "17.6.0" + ], + "digital economy": [ + "17.7.0" + ], + "digital files": [ + "17.15.0", + "17.51.0" + ], + "digital gadgets": [ + "17.38.0" + ], + "digital ideas": [ + "17.9.0" + ], + "digital identifier": [ + "17.30.0" + ], + "digital identity": [ + "17.30.0" + ], + "digital identity allow": [ + "17.30.0" + ], + "digital identity look": [ + "17.30.0" + ], + "digital mass photography": [ + "17.40.0" + ], + "digital materials": [ + "17.30.0" + ], + "digital media": [ + "17.15.0", + "17.15.0", + "17.35.0", + "17.35.0", + "17.49.0", + "17.58.0", + "17.68.0" + ], + "digital media bauhaus": [ + "17.4.0" + ], + "digital media consultant": [ + "17.30.0" + ], + "digital media developments": [ + "17.58.0" + ], + "digital media industry": [ + "17.15.0" + ], + "digital media production": [ + "17.58.0" + ], + "digital media students": [ + "17.38.0" + ], + "digital networked": [ + "17.15.0", + "17.15.0" + ], + "digital networked media": [ + "17.15.0", + "17.15.0" + ], + "digital networks": [ + "17.15.0" + ], + "digital objects": [ + "17.15.0" + ], + "digital public": [ + "17.9.0" + ], + "digital public domain": [ + "17.9.0", + "17.9.0" + ], + "digital sharing": [ + "17.15.0" + ], + "digital space": [ + "17.21.0" + ], + "digital sphere": [ + "17.38.0" + ], + "digital technology": [ + "17.30.0" + ], + "digital technology development": [ + "17.38.0" + ], + "digital technology makes": [ + "17.30.0" + ], + "digital tools help": [ + "17.30.0" + ], + "digital update": [ + "17.6.0" + ], + "digital video editing": [ + "17.56.0" + ], + "digital wired": [ + "17.11.0" + ], + "digital world wide": [ + "17.50.0" + ], + "digitales": [ + "17.74.0" + ], + "dijkstra coming": [ + "17.94.0" + ], + "dimensional moving image": [ + "17.4.0" + ], + "direct contacts beyond": [ + "17.80.0" + ], + "direct experience": [ + "17.7.0" + ], + "direct explotation": [ + "17.66.0" + ], + "direct material levels": [ + "17.7.0" + ], + "direct payment system": [ + "17.58.0" + ], + "directed": [ + "17.6.1" + ], + "directly contribute": [ + "17.38.0" + ], + "directly controllable": [ + "17.91.0" + ], + "directly controllable forms": [ + "17.91.0" + ], + "directly influence digital": [ + "17.38.0" + ], + "directly targets reclaim": [ + "17.47.0" + ], + "dirty digital bauhaus": [ + "17.4.0" + ], + "disappeared": [ + "17.53.1" + ], + "disappeared from virilio": [ + "17.53.1" + ], + "disappearing": [ + "17.16.2" + ], + "disciplinary task forces": [ + "17.9.0" + ], + "disciplining rogue users": [ + "17.13.0" + ], + "disco": [ + "17.12.0" + ], + "disco volante": [ + "17.12.0", + "17.12.0" + ], + "disco volantešs position": [ + "17.12.0" + ], + "discourse": [ + "17.52.0" + ], + "discourse surrounding": [ + "17.46.0" + ], + "discoursive practices regulate": [ + "17.73.0" + ], + "discrete normalised fields": [ + "17.95.0" + ], + "discuss real life": [ + "17.83.0" + ], + "discussing digital media": [ + "17.58.0" + ], + "discussion": [ + "17.57.0", + "17.78.0" + ], + "discussion and išm": [ + "17.46.1" + ], + "discussion refers": [ + "17.10.0" + ], + "diseased lungs inflate": [ + "17.95.0" + ], + "disks becoming obsolescent": [ + "17.92.0" + ], + "disney films": [ + "17.58.0" + ], + "disney town celebration": [ + "17.13.0" + ], + "disparate social networks": [ + "17.30.0" + ], + "displacing coal dust": [ + "17.95.0" + ], + "display net art": [ + "17.81.0" + ], + "displaying html web": [ + "17.43.1" + ], + "dissenting voices argued": [ + "17.12.0" + ], + "dissolving previous bans": [ + "17.4.0" + ], + "distant geographically removed": [ + "17.78.0" + ], + "distinct digital practices": [ + "17.49.0" + ], + "distinct erotic edge": [ + "17.42.0" + ], + "distinct social networks": [ + "17.30.0" + ], + "distinct visual territory": [ + "17.40.0" + ], + "distinction nor transition": [ + "17.44.0" + ], + "distinctive assemblage": [ + "17.91.0" + ], + "distribute mp3 reports": [ + "17.43.0", + "17.43.1" + ], + "distributed throughout society": [ + "17.30.0" + ], + "distribution channels": [ + "17.43.0", + "17.43.1" + ], + "distributive desire fluctuating": [ + "17.91.0" + ], + "divergent social networks": [ + "17.30.0" + ], + "diverse media technologies": [ + "17.58.0" + ], + "diverse spaces traversible": [ + "17.48.0" + ], + "divert current": [ + "17.94.0" + ], + "diy streaming experts": [ + "17.43.0", + "17.43.1" + ], + "diy zine media": [ + "17.89.0" + ], + "dizzy vertiginous hyperreal": [ + "17.78.0" + ], + "dmx control boxes": [ + "17.65.0" + ], + "dns": [ + "17.0.0" + ], + "document": [ + "17.76.0" + ], + "documenta halle": [ + "17.24.0" + ], + "documenta workspace": [ + "17.19.0" + ], + "documentary film": [ + "17.40.0" + ], + "documentation documentation documentation": [ + "17.89.0" + ], + "doesnât": [ + "17.95.0" + ], + "doing graphic design": [ + "17.93.0" + ], + "doing satellite interception": [ + "17.24.0" + ], + "domain": [ + "17.64.0" + ], + "domain name question": [ + "17.17.0" + ], + "domain name registration": [ + "17.23.0", + "17.64.0" + ], + "domain name system": [ + "17.0.0" + ], + "domains": [ + "17.64.0" + ], + "domestic terror": [ + "17.47.0" + ], + "dominant class": [ + "17.13.0" + ], + "dominant commercial internet": [ + "17.75.0" + ], + "dominant communication language": [ + "17.68.0" + ], + "dominant power": [ + "17.29.0" + ], + "dominant regional force": [ + "17.29.0" + ], + "dominant scientific perceptions": [ + "17.65.0" + ], + "dominating academic research": [ + "17.91.0" + ], + "don": [ + "17.82.0" + ], + "donât": [ + "17.69.0", + "17.69.0", + "17.95.0" + ], + "donât cover": [ + "17.95.0" + ], + "donât knowâ": [ + "17.69.0" + ], + "donât leak": [ + "17.95.0" + ], + "donât loose power": [ + "17.95.0" + ], + "donšt define": [ + "17.46.1" + ], + "doomsday": [ + "17.40.0" + ], + "door collecting fares": [ + "17.50.0" + ], + "dot com billionaires": [ + "17.58.0" + ], + "dot com boom": [ + "17.30.0" + ], + "dot com corporations": [ + "17.65.0" + ], + "dotcom burst": [ + "17.9.0" + ], + "dotcom business model": [ + "17.9.0" + ], + "dotcom crash": [ + "17.38.0" + ], + "dotcom crash people": [ + "17.38.0" + ], + "dotcom phenomena": [ + "17.30.0" + ], + "double": [ + "17.87.0" + ], + "double glazed": [ + "17.87.0" + ], + "double glazed double": [ + "17.87.0" + ], + "doubt help ccc": [ + "17.70.0" + ], + "doug": [ + "17.45.0", + "17.58.4" + ], + "doug henwood": [ + "17.45.0", + "17.58.4" + ], + "doug henwood publishes": [ + "17.45.0", + "17.45.0" + ], + "douglas kahn=b9s": [ + "17.11.0" + ], + "downloadable software tools": [ + "17.10.0" + ], + "downloading media files": [ + "17.30.0" + ], + "drag content wise": [ + "17.40.0" + ], + "dragan": [ + "17.33.0" + ], + "dragan espenschied": [ + "17.33.0" + ], + "drawing amongst": [ + "17.91.0" + ], + "drawing web sites": [ + "17.64.0" + ], + "drift towards absence": [ + "17.46.0" + ], + "drifted towards wireless": [ + "17.69.0" + ], + "drinkin wine": [ + "17.36.0" + ], + "drippy compensatory humour": [ + "17.10.0" + ], + "driven global telecommunication": [ + "17.25.0" + ], + "driven hegemony": [ + "17.13.0" + ], + "drives huge markets": [ + "17.89.0" + ], + "drizzle looking": [ + "17.67.0" + ], + "droit de suite": [ + "17.46.0" + ], + "drx": [ + "17.33.0" + ], + "dry shape reluctant": [ + "17.55.0" + ], + "dual projection installation": [ + "17.42.0" + ], + "duchamp": [ + "17.77.0", + "17.82.0" + ], + "dutch electronic art": [ + "17.51.0", + "17.51.0" + ], + "dutch telecom kpn": [ + "17.9.0" + ], + "dynamic social fabrics": [ + "17.65.0" + ], + "dynamically updated profile": [ + "17.30.0" + ], + "dynamics": [ + "17.91.0" + ], + "dynamics break": [ + "17.68.0" + ], + "dynamics operating": [ + "17.91.0" + ], + "e-journal readme": [ + "17.55.0" + ], + "e-mail interview": [ + "17.31.0" + ], + "early": [ + "17.92.0" + ], + "early computer": [ + "17.92.0" + ], + "east": [ + "17.50.0" + ], + "east block systems": [ + "17.4.0" + ], + "east european cultures": [ + "17.50.0" + ], + "east europeans": [ + "17.77.0" + ], + "east meeting": [ + "17.77.0" + ], + "eastern european countries": [ + "17.72.0" + ], + "eastern tradition": [ + "17.73.0" + ], + "easy vc money": [ + "17.9.0" + ], + "eat tiny": [ + "17.36.0" + ], + "eat tiny quiches": [ + "17.36.0", + "17.36.0" + ], + "eater news service": [ + "17.58.0" + ], + "ec courts contending": [ + "17.35.0" + ], + "echo chamber effect": [ + "17.30.0" + ], + "ecn": [ + "17.3.0" + ], + "ecological": [ + "17.22.0" + ], + "ecological movement": [ + "17.22.0" + ], + "economic": [ + "17.15.0" + ], + "economic changes following": [ + "17.8.0" + ], + "economic development": [ + "17.80.0" + ], + "economic exchange": [ + "17.15.0" + ], + "economic exchange fails": [ + "17.15.0" + ], + "economic growth": [ + "17.13.0" + ], + "economic justice camps": [ + "17.13.0" + ], + "economic managers desperate": [ + "17.13.0" + ], + "economically underdeveloped region": [ + "17.43.0", + "17.43.1" + ], + "economics": [ + "17.21.0" + ], + "economy": [ + "17.7.0", + "17.13.0", + "17.15.0", + "17.48.0" + ], + "economy dramatically reshaped": [ + "17.13.0" + ], + "edit digital photos": [ + "17.35.0" + ], + "edith russ": [ + "17.42.0" + ], + "edith russ site": [ + "17.42.0", + "17.42.0" + ], + "editing mediawork pamphlets": [ + "17.58.0" + ], + "editing virilio live": [ + "17.53.0" + ], + "education": [ + "17.20.0", + "17.35.0" + ], + "education by trebor": [ + "17.35.0" + ], + "edutainment industry": [ + "17.59.0" + ], + "edward": [ + "17.20.0" + ], + "effective labourist politics": [ + "17.13.0" + ], + "effective media": [ + "17.16.2" + ], + "effective media tacticians": [ + "17.16.3" + ], + "efficient crash test": [ + "17.4.0" + ], + "efficient profit machines": [ + "17.7.0" + ], + "egon march": [ + "17.5.0" + ], + "egon march institute": [ + "17.5.0", + "17.5.0" + ], + "eighties": [ + "17.4.0" + ], + "eindhoven": [ + "17.94.0" + ], + "election campaign based": [ + "17.50.0" + ], + "electrical distribution box": [ + "17.87.0" + ], + "electronic art projects": [ + "17.65.0" + ], + "electronic arts festival": [ + "17.68.0" + ], + "electronic bauhaus": [ + "17.11.0" + ], + "electronic black music": [ + "17.61.0" + ], + "electronic dance": [ + "17.11.0" + ], + "electronic databases": [ + "17.90.0" + ], + "electronic frontier foundation": [ + "17.30.0" + ], + "electronic human system": [ + "17.42.0" + ], + "electronic media": [ + "17.12.0" + ], + "electronic media networks": [ + "17.11.0" + ], + "electronic music": [ + "17.65.0" + ], + "electronic music movement": [ + "17.65.0" + ], + "electronic poetry": [ + "17.55.0" + ], + "electronic poetry center": [ + "17.55.0" + ], + "electronic reviews": [ + "17.53.0" + ], + "electronic weaponry –": [ + "17.42.0" + ], + "element": [ + "17.66.0" + ], + "elisabeth eisenstein makes": [ + "17.18.0" + ], + "email address": [ + "17.64.0" + ], + "email address unless": [ + "17.41.0" + ], + "email exchange charles": [ + "17.46.0" + ], + "email interview": [ + "17.5.0", + "17.83.0" + ], + "embedded inside fiction": [ + "17.61.0" + ], + "emergent patterning amongst": [ + "17.91.0" + ], + "emerging communications networks": [ + "17.47.0" + ], + "emerging information technologies": [ + "17.30.0" + ], + "emerging social behaviors": [ + "17.30.0" + ], + "emerging technologies": [ + "17.30.0" + ], + "emotional": [ + "17.84.0" + ], + "empire": [ + "17.37.0", + "17.39.2", + "17.44.0" + ], + "empire that zizek": [ + "17.39.1" + ], + "employ software thoughtlessly": [ + "17.10.0" + ], + "empty condition": [ + "17.20.0" + ], + "empty memory operation": [ + "17.20.0" + ], + "en hardware knowledge": [ + "17.38.0" + ], + "enable massive customisation": [ + "17.49.0" + ], + "enabled abstract sex": [ + "17.91.0", + "17.91.0" + ], + "enabled telestreet": [ + "17.12.0" + ], + "encourage direct participation": [ + "17.30.0" + ], + "endless growing fantasy": [ + "17.38.0" + ], + "enemy coopts public": [ + "17.13.0" + ], + "energy": [ + "17.60.0" + ], + "energy travels efficiently": [ + "17.60.0" + ], + "engelbart somehow assumed": [ + "17.30.0" + ], + "engine": [ + "17.86.0" + ], + "engine turns coal": [ + "17.95.0" + ], + "engineering": [ + "17.62.0" + ], + "engines": [ + "17.86.0" + ], + "englandâs north east": [ + "17.95.0" + ], + "english dubbed patois": [ + "17.86.0" + ], + "english speaking person": [ + "17.86.0" + ], + "english speaking west": [ + "17.62.0" + ], + "english translation": [ + "17.70.0" + ], + "enitre internet community": [ + "17.30.0" + ], + "enjoy personal relations": [ + "17.31.0" + ], + "enjoys giving padeluum": [ + "17.70.0" + ], + "enlistment system records": [ + "17.95.0" + ], + "enormous mythology": [ + "17.75.0" + ], + "ensemble": [ + "17.7.0" + ], + "ensure public access": [ + "17.47.0" + ], + "ensures people waste": [ + "17.41.0" + ], + "entertainment tool": [ + "17.40.0" + ], + "entire historic center": [ + "17.65.0" + ], + "entire life cycle": [ + "17.41.0" + ], + "entire local radiostation": [ + "17.2.0" + ], + "entire profit chain": [ + "17.80.0" + ], + "entire scientific community": [ + "17.91.0" + ], + "entire struggle": [ + "17.37.0" + ], + "entire tradition": [ + "17.37.0" + ], + "entire village moves": [ + "17.20.0" + ], + "entire web": [ + "17.83.0" + ], + "entitlement hierarchy": [ + "17.13.0" + ], + "environmental resource": [ + "17.7.0" + ], + "environmental resource management": [ + "17.7.0", + "17.7.0" + ], + "environmental technologies": [ + "17.30.0" + ], + "environmental technology": [ + "17.30.0" + ], + "ephemeral aesthetic act": [ + "17.68.0" + ], + "epidermis": [ + "17.55.0" + ], + "epistemologic constraints seduce": [ + "17.25.0" + ], + "equally global level": [ + "17.37.0" + ], + "equating computer viruses": [ + "17.92.0", + "17.92.0" + ], + "era": [ + "17.46.1" + ], + "era defined aesthetics": [ + "17.68.0" + ], + "erik kjaer": [ + "17.17.0" + ], + "erik kjaer larsen": [ + "17.17.0" + ], + "erotic": [ + "17.42.0" + ], + "error message form": [ + "17.81.0" + ], + "eshun": [ + "17.61.0" + ], + "eshun sonic fiction": [ + "17.61.0" + ], + "especially communist tradition": [ + "17.37.0" + ], + "especially social movements": [ + "17.91.0" + ], + "espenschied": [ + "17.33.0" + ], + "essential infrastructure": [ + "17.47.0" + ], + "essentialist crap": [ + "17.71.0" + ], + "essentialist strategy": [ + "17.71.0" + ], + "essentially translocal media": [ + "17.16.2" + ], + "establish majorities beyond": [ + "17.34.0" + ], + "established academic education": [ + "17.11.0" + ], + "established democratic routines": [ + "17.34.0" + ], + "established proprietary": [ + "17.13.0" + ], + "ethics people feel": [ + "17.14.0" + ], + "eugene thacker": [ + "17.51.0" + ], + "eugene thacker work": [ + "17.51.0" + ], + "euromayday mailing list": [ + "17.66.0" + ], + "europa": [ + "17.31.0" + ], + "europe": [ + "17.28.0", + "17.39.2", + "17.56.0", + "17.79.0" + ], + "europe=b9s german speaking": [ + "17.11.0" + ], + "european": [ + "17.17.0", + "17.39.0", + "17.58.1", + "17.73.0" + ], + "european contemporary art": [ + "17.40.0" + ], + "european continent": [ + "17.52.0" + ], + "european council": [ + "17.34.0" + ], + "european counter network": [ + "17.3.0" + ], + "european cuntries": [ + "17.77.0" + ], + "european descendents": [ + "17.50.0" + ], + "european films": [ + "17.59.0" + ], + "european imaginary": [ + "17.73.0" + ], + "european inquisitorial model": [ + "17.59.0" + ], + "european integration": [ + "17.77.0" + ], + "european internet policy": [ + "17.34.0", + "17.34.0" + ], + "european media takes": [ + "17.47.0" + ], + "european metal": [ + "17.50.0" + ], + "european modern": [ + "17.37.0" + ], + "european negativism": [ + "17.52.0" + ], + "european phenomenological psychology": [ + "17.46.1" + ], + "european position": [ + "17.17.0" + ], + "european social democracies": [ + "17.31.0" + ], + "european stock": [ + "17.50.0" + ], + "european tradition": [ + "17.73.0" + ], + "european tradition prescribed": [ + "17.73.0" + ], + "europeans": [ + "17.77.0" + ], + "europeans took wired": [ + "17.58.2" + ], + "eutelsat television satellite": [ + "17.53.0" + ], + "evade radar detection": [ + "17.42.0" + ], + "evening courses": [ + "17.4.0" + ], + "event": [ + "17.38.0" + ], + "event realized": [ + "17.56.0" + ], + "events": [ + "17.16.1" + ], + "events happening recently": [ + "17.60.0" + ], + "eventually prove unsolvable": [ + "17.41.0" + ], + "eventually totally": [ + "17.0.0" + ], + "evermore ventriloquising th": [ + "17.78.0" + ], + "everyday": [ + "17.15.0", + "17.48.0" + ], + "everyday culture": [ + "17.48.0" + ], + "everyday life": [ + "17.8.0", + "17.48.0" + ], + "everyday life context": [ + "17.7.0" + ], + "everyday reality instead": [ + "17.92.0" + ], + "evil forces": [ + "17.9.0" + ], + "evoke hybrid home": [ + "17.42.0" + ], + "ex oriente lux": [ + "17.40.0" + ], + "exact words ghislaine": [ + "17.39.1" + ], + "exactly luthers argument": [ + "17.18.0" + ], + "examined power relationships": [ + "17.22.0" + ], + "example banking information": [ + "17.24.0" + ], + "example barricelli": [ + "17.92.0" + ], + "example esther dyson": [ + "17.45.0" + ], + "example nils barricelli": [ + "17.92.0" + ], + "excess communication profits": [ + "17.47.0" + ], + "excessive availability fuels": [ + "17.15.0" + ], + "exchange": [ + "17.15.0" + ], + "exchanging scientific documents": [ + "17.63.0" + ], + "excited by american": [ + "17.53.1" + ], + "exercise continuous control": [ + "17.49.0" + ], + "exercise imperial force": [ + "17.44.0" + ], + "exhaustive nor neutral": [ + "17.65.0" + ], + "exhibition": [ + "17.94.0" + ], + "exhibition purely based": [ + "17.73.0" + ], + "exhibition space": [ + "17.56.0" + ], + "existential": [ + "17.73.0" + ], + "existential ability": [ + "17.73.0" + ], + "existential acts": [ + "17.73.0" + ], + "existential crisis giving": [ + "17.91.0" + ], + "existential operative system": [ + "17.73.0" + ], + "existential practices": [ + "17.73.0" + ], + "existential stream": [ + "17.73.0" + ], + "existential task": [ + "17.73.0" + ], + "existing commercial media": [ + "17.75.0" + ], + "existing communications industries": [ + "17.75.0" + ], + "existing constituency": [ + "17.30.0" + ], + "existing consumer hardware": [ + "17.69.0" + ], + "existing discourse focuses": [ + "17.49.0" + ], + "existing historical times": [ + "17.40.0" + ], + "existing karate game": [ + "17.4.0" + ], + "existing linguistic codes": [ + "17.89.0" + ], + "existing material": [ + "17.10.0" + ], + "existing representational": [ + "17.39.2" + ], + "existing social networks": [ + "17.30.0" + ], + "expansive toplevel namespace": [ + "17.0.0" + ], + "expatriate south african": [ + "17.50.0" + ], + "expected": [ + "17.33.0" + ], + "expensive commodity": [ + "17.87.0" + ], + "experience": [ + "17.4.0", + "17.24.0", + "17.46.1", + "17.51.0", + "17.72.0", + "17.73.0" + ], + "experience doing solar": [ + "17.30.0" + ], + "experience joyful encounters": [ + "17.91.0" + ], + "experiental electronic arts": [ + "17.46.0" + ], + "experimental": [ + "17.11.0" + ], + "experimental initiatives": [ + "17.43.0", + "17.43.1" + ], + "experimental live": [ + "17.5.0" + ], + "experimental poetry": [ + "17.55.0" + ], + "experimental radio": [ + "17.11.0" + ], + "experimental radio program": [ + "17.11.0", + "17.11.0" + ], + "experimental radio teamwork": [ + "17.11.0", + "17.11.0" + ], + "explaining via email": [ + "17.5.0" + ], + "explanation": [ + "17.52.0" + ], + "explicit political action": [ + "17.82.0" + ], + "explicitly interactive art": [ + "17.65.0" + ], + "explicitly transnational flows": [ + "17.13.0" + ], + "explore hybrid identities": [ + "17.46.1" + ], + "explore related themes": [ + "17.91.0" + ], + "explore unknown land": [ + "17.61.0" + ], + "explored direct collaborations": [ + "17.51.0" + ], + "exploring dynamic design": [ + "17.93.0" + ], + "express political views": [ + "17.37.0" + ], + "extend dimitri prikov": [ + "17.28.0" + ], + "extended educational programme": [ + "17.94.0" + ], + "extended live radio": [ + "17.5.0", + "17.5.0" + ], + "extension": [ + "17.39.2" + ], + "extensive debate": [ + "17.39.2" + ], + "extensive spaces": [ + "17.48.0" + ], + "exterior metal paint": [ + "17.87.0" + ], + "extraordinarily democratic": [ + "17.75.0" + ], + "extraordinary condition imposed": [ + "17.41.0" + ], + "extraordinary editing capacities": [ + "17.25.0" + ], + "extreme medical intervention": [ + "17.7.0" + ], + "extreme political movements": [ + "17.29.0" + ], + "extremely affordable compared": [ + "17.66.0" + ], + "extremely dubious": [ + "17.20.0" + ], + "extremely exciting": [ + "17.20.0" + ], + "extremely exiting": [ + "17.20.0" + ], + "extremely limited budget": [ + "17.7.0" + ], + "extremely stimulating": [ + "17.20.0" + ], + "face": [ + "17.58.3" + ], + "fact": [ + "17.58.3" + ], + "factory": [ + "17.90.0" + ], + "factory of unhappiness": [ + "17.90.0" + ], + "fafblog": [ + "17.36.0" + ], + "fafnir": [ + "17.36.0" + ], + "fairly equal basic": [ + "17.46.0" + ], + "fairly traditional opportunity": [ + "17.13.0" + ], + "fairly widely reported": [ + "17.12.0" + ], + "fakeshop": [ + "17.51.0" + ], + "familiarise themselves": [ + "17.88.0" + ], + "famous paul virilio": [ + "17.92.0" + ], + "famous quote reciting": [ + "17.91.0" + ], + "fan": [ + "17.89.0" + ], + "fancy clothes": [ + "17.23.1" + ], + "fans": [ + "17.89.0" + ], + "fashionable financial discourse": [ + "17.45.0" + ], + "fashionable mass taste": [ + "17.38.0" + ], + "fast changing landscape": [ + "17.14.0" + ], + "fast changing world": [ + "17.63.0" + ], + "fast munitions ripping": [ + "17.95.0" + ], + "favor direct action": [ + "17.12.0" + ], + "favorable trend": [ + "17.55.0" + ], + "favorable trend established": [ + "17.55.0" + ], + "favorite projection artist": [ + "17.65.0" + ], + "favorite punching bag": [ + "17.48.0" + ], + "feature": [ + "17.6.1" + ], + "feature film": [ + "17.6.1" + ], + "feature length": [ + "17.4.0" + ], + "feature length film": [ + "17.4.0" + ], + "fecht": [ + "17.20.0" + ], + "fecht june": [ + "17.20.0" + ], + "federal district court": [ + "17.0.0" + ], + "federal reserve bank": [ + "17.45.0" + ], + "feel": [ + "17.16.0", + "17.16.3", + "17.67.0" + ], + "feel comforted": [ + "17.41.0" + ], + "feel possible connection": [ + "17.16.0" + ], + "feel time": [ + "17.41.0" + ], + "feel time passing": [ + "17.41.0" + ], + "feels refreshingly unconstrained": [ + "17.94.0" + ], + "felix von leitner": [ + "17.70.0" + ], + "fem": [ + "17.16.1" + ], + "fem snd": [ + "17.16.1" + ], + "female": [ + "17.16.1", + "17.70.0" + ], + "female artist": [ + "17.70.0" + ], + "female artists whos": [ + "17.71.0" + ], + "female artists won": [ + "17.70.0" + ], + "female asian artist": [ + "17.79.0" + ], + "female computer experts": [ + "17.71.0" + ], + "female extension": [ + "17.70.0", + "17.71.0" + ], + "female hacker": [ + "17.70.0" + ], + "female musicians": [ + "17.16.1" + ], + "female voice giving": [ + "17.24.0" + ], + "feminism": [ + "17.19.0", + "17.71.0" + ], + "feminist": [ + "17.71.0" + ], + "feminist consciousness": [ + "17.71.0" + ], + "feminist media theory": [ + "17.71.0" + ], + "feminist/ gender studies": [ + "17.74.0" + ], + "fetish object via": [ + "17.48.0" + ], + "fetishised formalistic perversion": [ + "17.88.0" + ], + "fi design functions": [ + "17.64.0" + ], + "fi html": [ + "17.64.0" + ], + "fi porn genre": [ + "17.6.0" + ], + "fiber": [ + "17.69.0" + ], + "fiber festival": [ + "17.69.0" + ], + "fiber optic cables": [ + "17.21.0" + ], + "fibre": [ + "17.23.1" + ], + "fibreculture": [ + "17.46.2" + ], + "fibreculture interview": [ + "17.46.2" + ], + "fiction": [ + "17.51.0", + "17.61.0" + ], + "fictional art documentary": [ + "17.4.0" + ], + "fictional biography": [ + "17.4.0" + ], + "fictional image flow": [ + "17.49.0" + ], + "fido": [ + "17.3.0" + ], + "fido bbs": [ + "17.3.0" + ], + "fido bbs technology": [ + "17.3.0", + "17.3.0" + ], + "fido boards people": [ + "17.3.0", + "17.3.0" + ], + "fido bulletin boards": [ + "17.3.0" + ], + "fido technology": [ + "17.3.0", + "17.3.0" + ], + "field": [ + "17.13.0" + ], + "field work": [ + "17.13.0" + ], + "file": [ + "17.88.0" + ], + "file structure level": [ + "17.88.0" + ], + "file structures": [ + "17.88.0" + ], + "file structures themselves": [ + "17.88.0" + ], + "files": [ + "17.93.0" + ], + "film": [ + "17.4.0", + "17.6.0", + "17.6.1", + "17.32.0", + "17.42.0" + ], + "film camera": [ + "17.42.0" + ], + "film camera pans": [ + "17.42.0" + ], + "film medium": [ + "17.4.0" + ], + "film medium represented": [ + "17.4.0" + ], + "film she directed": [ + "17.6.1" + ], + "film theory imitates": [ + "17.63.0" + ], + "filmmaking": [ + "17.4.0" + ], + "films": [ + "17.4.0" + ], + "filtering and cultural": [ + "17.6.1" + ], + "final essential modality": [ + "17.12.0" + ], + "final storyboard coalesces": [ + "17.42.0" + ], + "final storyboards": [ + "17.42.0" + ], + "final version": [ + "17.82.0" + ], + "finally discovered video": [ + "17.6.0" + ], + "finally featured": [ + "17.67.0" + ], + "finally looking brighter": [ + "17.67.0" + ], + "finance": [ + "17.45.0" + ], + "financial": [ + "17.45.0" + ], + "financial electronic network": [ + "17.22.0" + ], + "financial growth leading": [ + "17.41.0" + ], + "financial markets": [ + "17.22.0", + "17.45.0", + "17.45.0" + ], + "financial promotions": [ + "17.41.0" + ], + "financial services": [ + "17.41.0" + ], + "financial transactions": [ + "17.45.0" + ], + "financial turmoil": [ + "17.43.1" + ], + "find": [ + "17.17.0", + "17.18.0", + "17.19.0", + "17.62.0", + "17.67.0", + "17.70.0" + ], + "fine compilation": [ + "17.11.0" + ], + "finger sammiches": [ + "17.36.0" + ], + "finite nor operating": [ + "17.93.0" + ], + "fired computers": [ + "17.95.0" + ], + "firms": [ + "17.75.0" + ], + "fitted genetic structures": [ + "17.91.0" + ], + "five co": [ + "17.87.0" + ], + "five community workers": [ + "17.87.0" + ], + "five competing datasets": [ + "17.95.0" + ], + "five minute slot": [ + "17.12.0" + ], + "five minutes": [ + "17.14.0" + ], + "five minutes festival": [ + "17.14.0" + ], + "five minutes reader": [ + "17.86.0" + ], + "five monitors": [ + "17.81.0" + ], + "five odd sequences": [ + "17.62.0" + ], + "five sgi": [ + "17.81.0" + ], + "fix digital information": [ + "17.83.0" + ], + "fixed art objects": [ + "17.26.0" + ], + "flame wars": [ + "17.58.2" + ], + "flash animators": [ + "17.58.0" + ], + "fledged socialist government": [ + "17.28.0" + ], + "flexible media vectors": [ + "17.48.0" + ], + "floating agent digitale": [ + "17.6.0" + ], + "florian cramer": [ + "17.10.0" + ], + "florian cramer writes": [ + "17.92.0" + ], + "floss": [ + "17.93.0" + ], + "floss approaches": [ + "17.93.0" + ], + "floss makes apparent": [ + "17.93.0" + ], + "floyd light shows": [ + "17.65.0" + ], + "fm radio": [ + "17.43.0", + "17.43.1" + ], + "follow standard patterns": [ + "17.7.0" + ], + "following email exchange": [ + "17.13.0" + ], + "following interview focuses": [ + "17.43.1" + ], + "following morning walking": [ + "17.67.0" + ], + "following short conversation/interview": [ + "17.69.0" + ], + "font": [ + "17.93.0" + ], + "food": [ + "17.15.0" + ], + "food production": [ + "17.7.0" + ], + "football": [ + "17.89.0" + ], + "football club": [ + "17.89.0" + ], + "football fan": [ + "17.89.0" + ], + "football fan culture": [ + "17.89.0" + ], + "football industry": [ + "17.89.0" + ], + "forbid strong cryptography": [ + "17.17.0" + ], + "force public recognition": [ + "17.59.0" + ], + "forces": [ + "17.91.0" + ], + "forces was carried": [ + "17.53.1" + ], + "forcing government officials": [ + "17.47.0" + ], + "ford intuitively understood": [ + "17.7.0" + ], + "fordist factory": [ + "17.90.0" + ], + "fordist proletarian": [ + "17.35.0" + ], + "fordist proletarian subject": [ + "17.35.0" + ], + "foreign body": [ + "17.18.0" + ], + "foreign body inside": [ + "17.18.0" + ], + "foreign exchange market": [ + "17.22.0" + ], + "foreign realm": [ + "17.92.0" + ], + "forget daily boredom": [ + "17.8.0" + ], + "forget economic opportunities": [ + "17.52.0" + ], + "form": [ + "17.15.0", + "17.16.2", + "17.16.3", + "17.37.0", + "17.41.0", + "17.42.0", + "17.49.0", + "17.55.0" + ], + "form dominate content": [ + "17.79.0" + ], + "form follows function": [ + "17.11.0" + ], + "form of congratulating": [ + "17.16.2" + ], + "form of power": [ + "17.37.0" + ], + "form of seeking": [ + "17.16.2" + ], + "form/media versus control": [ + "17.88.0" + ], + "formal business constraints": [ + "17.10.0" + ], + "formal equality enjoyed": [ + "17.15.0" + ], + "formal instruction code": [ + "17.10.0" + ], + "formal representation": [ + "17.15.0" + ], + "formal structure consisting": [ + "17.34.0" + ], + "formally named linktank—": [ + "17.30.0" + ], + "formally speaking": [ + "17.51.0" + ], + "format primarily designed": [ + "17.93.0" + ], + "formats": [ + "17.43.0", + "17.43.1" + ], + "formats suddenly": [ + "17.43.0" + ], + "formed polar opposites": [ + "17.37.0" + ], + "former chief editor": [ + "17.72.0" + ], + "former cultures dealt": [ + "17.63.0" + ], + "former east": [ + "17.4.0" + ], + "former eastern bloc": [ + "17.40.0" + ], + "former fellow student": [ + "17.94.0" + ], + "former mining": [ + "17.95.0" + ], + "former normal people": [ + "17.4.0" + ], + "former socialist countries": [ + "17.4.0" + ], + "former soviet union": [ + "17.62.0" + ], + "former sovjet equivalent": [ + "17.28.0" + ], + "former xrl crew": [ + "17.5.0" + ], + "former yugoslavia based": [ + "17.8.0" + ], + "forms": [ + "17.31.0", + "17.37.0", + "17.66.0" + ], + "forms resist pre": [ + "17.12.0" + ], + "forthcoming spam book": [ + "17.92.0" + ], + "forty-foot shipping container": [ + "17.87.0" + ], + "forum": [ + "17.44.0" + ], + "foster audio streaming": [ + "17.11.0" + ], + "foster cooperation": [ + "17.11.0" + ], + "foucault": [ + "17.27.0" + ], + "foucault sits upright": [ + "17.78.0" + ], + "found": [ + "17.70.0" + ], + "found amongst youngsters": [ + "17.8.0" + ], + "foundation constant vzw": [ + "17.93.0" + ], + "founded graphic design": [ + "17.93.0" + ], + "fourteen days ago": [ + "17.71.0" + ], + "frame": [ + "17.32.0" + ], + "frame anthropology": [ + "17.90.0" + ], + "frame based data": [ + "17.43.0", + "17.43.1" + ], + "frame of mind": [ + "17.32.0" + ], + "france": [ + "17.1.0", + "17.16.1", + "17.22.0" + ], + "franco": [ + "17.90.0" + ], + "franco berardi": [ + "17.90.0" + ], + "frank": [ + "17.63.0" + ], + "frank hartmann": [ + "17.63.0" + ], + "frank hartmann book": [ + "17.63.0" + ], + "frank hartmann recently": [ + "17.63.0" + ], + "frank proudly reported": [ + "17.63.0" + ], + "frankfurt school dismissal": [ + "17.59.0" + ], + "fraught hospitality offered": [ + "17.50.0" + ], + "frederic madre": [ + "17.54.0", + "17.57.0" + ], + "frederic madre sing": [ + "17.57.0", + "17.57.0" + ], + "free": [ + "17.0.0", + "17.17.0", + "17.71.0", + "17.73.0", + "17.93.0" + ], + "free /": [ + "17.67.0" + ], + "free access": [ + "17.47.0" + ], + "free developer receives": [ + "17.71.0" + ], + "free europe": [ + "17.69.0" + ], + "free floating signifier": [ + "17.45.0" + ], + "free flow": [ + "17.43.0", + "17.43.1" + ], + "free media": [ + "17.0.0" + ], + "free media scene": [ + "17.8.0" + ], + "free media theory": [ + "17.68.0", + "17.68.0" + ], + "free namespace": [ + "17.0.0" + ], + "free performance": [ + "17.56.0" + ], + "free publication": [ + "17.17.0" + ], + "free radio activities": [ + "17.56.0" + ], + "free radio movement": [ + "17.8.0" + ], + "free software activist": [ + "17.93.0" + ], + "free software allows": [ + "17.93.0" + ], + "free software coders": [ + "17.93.0" + ], + "free software developers": [ + "17.93.0", + "17.93.0" + ], + "free software gained": [ + "17.35.0" + ], + "free software self": [ + "17.10.0" + ], + "free software tools": [ + "17.93.0", + "17.93.0" + ], + "free software websites": [ + "17.10.0" + ], + "free speech": [ + "17.17.0", + "17.17.0" + ], + "free trade zone": [ + "17.17.0" + ], + "freedom": [ + "17.73.0" + ], + "freestanding arcade game": [ + "17.83.0" + ], + "freezing cold evening": [ + "17.67.0" + ], + "french cultural agency": [ + "17.6.0" + ], + "french net": [ + "17.54.0" + ], + "french net artist": [ + "17.54.0" + ], + "french republican": [ + "17.39.0" + ], + "french republican slogan": [ + "17.39.0" + ], + "french republican tradition": [ + "17.37.0", + "17.39.0", + "17.39.0" + ], + "french revolution": [ + "17.37.0" + ], + "french troops": [ + "17.53.0" + ], + "frequencies secret services": [ + "17.24.0" + ], + "frequently depending": [ + "17.8.0" + ], + "freyhoff": [ + "17.5.0" + ], + "frictions amongst tribes": [ + "17.8.0" + ], + "friends mailing list": [ + "17.58.1" + ], + "friendship connotes cooperation": [ + "17.46.0" + ], + "fronting fakers worldwide": [ + "17.86.0" + ], + "frozen": [ + "17.26.0" + ], + "frozen tango position": [ + "17.46.0" + ], + "fuller": [ + "17.10.0", + "17.76.0", + "17.86.0" + ], + "fun": [ + "17.54.0", + "17.94.0" + ], + "fun with software": [ + "17.94.0" + ], + "functional operative ability": [ + "17.73.0" + ], + "functional structures": [ + "17.73.0" + ], + "fundacio antoni tapies": [ + "17.29.0" + ], + "fundamental social process": [ + "17.34.0" + ], + "funding": [ + "17.85.0" + ], + "funnily": [ + "17.58.4" + ], + "funware": [ + "17.94.0" + ], + "future": [ + "17.36.0", + "17.80.0" + ], + "future ars electronica": [ + "17.70.0" + ], + "future wolf": [ + "17.36.0" + ], + "futures markets": [ + "17.45.0" + ], + "fysical limits": [ + "17.73.0" + ], + "gal": [ + "17.27.0" + ], + "galactic hacker": [ + "17.14.0" + ], + "galactic hacker party": [ + "17.14.0", + "17.14.0" + ], + "galleries": [ + "17.64.0" + ], + "gallery": [ + "17.5.0", + "17.64.0" + ], + "gallery context": [ + "17.64.0", + "17.64.0" + ], + "gallery doing performance": [ + "17.5.0" + ], + "gallery domains": [ + "17.64.0" + ], + "gallery domains points": [ + "17.64.0" + ], + "gallery education project": [ + "17.64.0" + ], + "gallery owners": [ + "17.67.0" + ], + "gallery site": [ + "17.64.0" + ], + "game": [ + "17.40.0", + "17.83.0" + ], + "game called darwin": [ + "17.92.0" + ], + "games": [ + "17.49.0" + ], + "ganick": [ + "17.55.0" + ], + "gapsevicius": [ + "17.54.0" + ], + "garcia": [ + "17.46.2" + ], + "garcia notes": [ + "17.46.2" + ], + "garcia response": [ + "17.46.2" + ], + "garde serves little": [ + "17.58.0" + ], + "garden plot holders": [ + "17.71.0" + ], + "garrin": [ + "17.23.0", + "17.23.1" + ], + "gashiahoo indian": [ + "17.25.0" + ], + "gayatri": [ + "17.25.0" + ], + "gayatri chakravorty": [ + "17.25.0" + ], + "gayatri chakravorty spivak": [ + "17.25.0", + "17.25.0" + ], + "gayatri spivak works": [ + "17.25.0" + ], + "geek cultures": [ + "17.94.0" + ], + "geert": [ + "17.1.0", + "17.6.1", + "17.9.0", + "17.21.0", + "17.23.0", + "17.23.1", + "17.29.0", + "17.45.0", + "17.46.2", + "17.76.0" + ], + "geert lovinck": [ + "17.46.2" + ], + "geert lovink": [ + "17.1.0", + "17.6.0", + "17.9.0", + "17.13.0", + "17.18.0", + "17.19.0", + "17.21.0", + "17.22.0", + "17.23.0", + "17.23.1", + "17.23.1", + "17.25.0", + "17.27.0", + "17.28.0", + "17.29.0", + "17.45.0", + "17.50.0", + "17.65.0", + "17.68.0", + "17.76.0", + "17.80.0" + ], + "geert lovink berlin-based": [ + "17.34.0" + ], + "geert lovink charles": [ + "17.46.0" + ], + "geert lovink călin": [ + "17.40.0" + ], + "geert lovink doug": [ + "17.45.0" + ], + "geert lovink held": [ + "17.21.0" + ], + "geert lovink hybrid": [ + "17.28.0" + ], + "geert lovink kevin": [ + "17.50.0" + ], + "geert lovink light": [ + "17.65.0" + ], + "geert lovink made": [ + "17.76.0" + ], + "geert lovink makrolab": [ + "17.24.0" + ], + "geert lovink micz": [ + "17.43.0", + "17.43.1" + ], + "geert lovink mid": [ + "17.30.0" + ], + "geert lovink peter": [ + "17.58.0" + ], + "geert lovink shu": [ + "17.6.0" + ], + "geert lovink steven": [ + "17.80.0" + ], + "geert lovink toshiya": [ + "17.8.0" + ], + "geert lovink viennese": [ + "17.63.0" + ], + "geert lovink wrote": [ + "17.23.1", + "17.23.1" + ], + "geke van dijk": [ + "17.14.0" + ], + "gender": [ + "17.73.0" + ], + "gender roles": [ + "17.74.0" + ], + "gender studies": [ + "17.71.0" + ], + "gene media forum": [ + "17.51.0" + ], + "general": [ + "17.84.0" + ], + "general idea": [ + "17.84.0" + ], + "generalised free access": [ + "17.9.0" + ], + "generalized social": [ + "17.7.0" + ], + "generate test footage": [ + "17.42.0" + ], + "generation gap phenomena": [ + "17.8.0" + ], + "generation internet honed": [ + "17.30.0" + ], + "generation media designers": [ + "17.38.0" + ], + "generation-online and posted": [ + "17.44.0" + ], + "generation_online mailing list": [ + "17.44.0" + ], + "generation’ online community": [ + "17.30.0" + ], + "generative art refers": [ + "17.70.0" + ], + "generative design": [ + "17.93.0" + ], + "generative design field": [ + "17.93.0" + ], + "generic city": [ + "17.20.0" + ], + "generic dictionary words": [ + "17.0.0" + ], + "generic systems": [ + "17.93.0" + ], + "genetic bodies": [ + "17.51.0" + ], + "genetic drugs": [ + "17.91.0" + ], + "genetic mixing": [ + "17.91.0" + ], + "genetically grown forms": [ + "17.92.0" + ], + "genetically modified seeds": [ + "17.7.0" + ], + "genome project strives": [ + "17.49.0" + ], + "genuine critical debate": [ + "17.68.0" + ], + "georg philipp harsdoerffer": [ + "17.10.0" + ], + "george": [ + "17.22.0" + ], + "george bush": [ + "17.22.0" + ], + "george soros": [ + "17.22.0" + ], + "geppettošs workshop": [ + "17.12.0" + ], + "gerald raunig=b9s compilation": [ + "17.11.0" + ], + "german": [ + "17.11.0", + "17.17.0", + "17.52.0", + "17.63.0" + ], + "german art": [ + "17.11.0", + "17.52.0" + ], + "german art academy": [ + "17.11.0" + ], + "german art critic": [ + "17.52.0", + "17.52.0" + ], + "german federal ministry": [ + "17.6.0" + ], + "german hacker": [ + "17.70.0" + ], + "german industry": [ + "17.93.0" + ], + "german industry standards": [ + "17.93.0" + ], + "german magazine radikal": [ + "17.3.0" + ], + "german media": [ + "17.63.0" + ], + "german media archeology": [ + "17.63.0", + "17.63.0" + ], + "german media theorist": [ + "17.63.0" + ], + "german media theory": [ + "17.92.0" + ], + "german policy expert": [ + "17.34.0" + ], + "german radio": [ + "17.11.0" + ], + "german radio theory": [ + "17.11.0" + ], + "german standards": [ + "17.11.0" + ], + "german studies convention": [ + "17.71.0" + ], + "german theory tradition": [ + "17.63.0" + ], + "german trade union": [ + "17.71.0" + ], + "german traditions": [ + "17.11.0" + ], + "german understanding": [ + "17.11.0" + ], + "german women groups": [ + "17.72.0" + ], + "germans special history": [ + "17.17.0" + ], + "germany": [ + "17.11.0", + "17.17.0", + "17.19.0", + "17.22.0", + "17.52.0", + "17.77.1" + ], + "getting people educated": [ + "17.75.0" + ], + "getting ready": [ + "17.24.0" + ], + "giant word objects": [ + "17.61.0" + ], + "giblets": [ + "17.36.0" + ], + "gibson wrote neuromancer": [ + "17.68.0" + ], + "gift economy plus": [ + "17.48.0" + ], + "gigabyte hard drive": [ + "17.6.0" + ], + "girls": [ + "17.16.0", + "17.16.1", + "17.16.2", + "17.16.3", + "17.59.0" + ], + "give": [ + "17.67.0" + ], + "giving equal rules": [ + "17.73.0" + ], + "glahn": [ + "17.5.0" + ], + "glitches beyond predictable": [ + "17.93.0" + ], + "global": [ + "17.21.0", + "17.25.0", + "17.47.0", + "17.90.0" + ], + "global air power": [ + "17.53.0" + ], + "global capital flows": [ + "17.59.0" + ], + "global characteristics": [ + "17.92.0" + ], + "global cooperation": [ + "17.39.0" + ], + "global corporate power": [ + "17.78.0" + ], + "global economy close": [ + "17.22.0" + ], + "global environmental collapse": [ + "17.30.0" + ], + "global finance": [ + "17.45.0" + ], + "global information dominance": [ + "17.53.0" + ], + "global internet governance": [ + "17.34.0", + "17.34.0" + ], + "global knowledge": [ + "17.25.0", + "17.25.0" + ], + "global knowledge conference": [ + "17.25.0", + "17.25.0" + ], + "global markets realigning": [ + "17.95.0" + ], + "global media": [ + "17.47.0", + "17.75.0" + ], + "global media meeting": [ + "17.47.0" + ], + "global media system": [ + "17.75.0" + ], + "global monetary policy": [ + "17.45.0" + ], + "global movement": [ + "17.90.0" + ], + "global network people": [ + "17.14.0" + ], + "global online citizens": [ + "17.9.0" + ], + "global reach makes": [ + "17.48.0" + ], + "global surveillance": [ + "17.53.0" + ], + "global telecommunications": [ + "17.25.0", + "17.25.0" + ], + "global telecommunications combined": [ + "17.25.0" + ], + "global telestreet": [ + "17.12.0" + ], + "global village": [ + "17.25.0" + ], + "global war": [ + "17.53.0" + ], + "global/local networking culture": [ + "17.9.0" + ], + "globalisation movement": [ + "17.47.0" + ], + "globalization": [ + "17.37.0" + ], + "globalization movements": [ + "17.37.0" + ], + "globalization protest movements": [ + "17.37.0", + "17.37.0" + ], + "globalization protests": [ + "17.47.0" + ], + "globalize equal relationships": [ + "17.37.0" + ], + "globally constituted accident": [ + "17.53.0" + ], + "globally recognized currently": [ + "17.0.0" + ], + "globe including": [ + "17.11.0" + ], + "gloomy wall street": [ + "17.45.0" + ], + "glossy posh pages": [ + "17.67.0" + ], + "glue software": [ + "17.2.0" + ], + "gm food": [ + "17.7.0" + ], + "goal": [ + "17.19.0" + ], + "gone beyond troubling": [ + "17.48.0" + ], + "good": [ + "17.67.0", + "17.79.0" + ], + "good net.art": [ + "17.79.0" + ], + "good open source": [ + "17.35.0" + ], + "good things": [ + "17.58.2" + ], + "gore originally spoke": [ + "17.80.0" + ], + "goriunova olga goriunova": [ + "17.94.0" + ], + "gotcha": [ + "17.59.0" + ], + "governance": [ + "17.34.0" + ], + "government": [ + "17.17.0", + "17.80.0" + ], + "government agenda": [ + "17.50.0" + ], + "government led juggernaut": [ + "17.30.0" + ], + "government policy": [ + "17.50.0" + ], + "government regulating content": [ + "17.21.0" + ], + "government subsidy": [ + "17.75.0" + ], + "government willing": [ + "17.12.0" + ], + "governmental actors": [ + "17.34.0" + ], + "governmental advisory committee": [ + "17.34.0" + ], + "governmental advisory council": [ + "17.34.0" + ], + "governmental budget policies": [ + "17.40.0" + ], + "governmental law": [ + "17.73.0" + ], + "governmental officials": [ + "17.34.0" + ], + "governments": [ + "17.34.0", + "17.39.2" + ], + "governments lose power": [ + "17.39.2" + ], + "gps": [ + "17.53.0", + "17.57.0" + ], + "gps art": [ + "17.57.0" + ], + "graduate labs": [ + "17.14.0" + ], + "grafiti": [ + "17.54.0" + ], + "graham": [ + "17.46.1" + ], + "graham harwood": [ + "17.95.0" + ], + "grandiose urban space": [ + "17.65.0" + ], + "graphic design": [ + "17.93.0", + "17.93.0" + ], + "graphic design agency": [ + "17.93.0", + "17.93.0" + ], + "graphic user interfaces": [ + "17.63.0" + ], + "graphite bomb": [ + "17.53.0" + ], + "grass roots communitcation": [ + "17.47.0" + ], + "grass roots initiatives": [ + "17.72.0" + ], + "gratis cd roms": [ + "17.10.0" + ], + "gravity": [ + "17.33.0" + ], + "gravity interview": [ + "17.33.0" + ], + "gravity won": [ + "17.33.0" + ], + "great": [ + "17.60.0" + ], + "green": [ + "17.46.0", + "17.76.0" + ], + "greenburg formalist": [ + "17.46.2" + ], + "greenburg formalist constraints": [ + "17.46.2" + ], + "greenburgšs": [ + "17.46.1" + ], + "greenpeace": [ + "17.22.0" + ], + "greenpeace international": [ + "17.22.0" + ], + "greenšs": [ + "17.46.1" + ], + "greenšs book": [ + "17.46.1" + ], + "greenšs desire": [ + "17.46.1" + ], + "gregg describes ross": [ + "17.13.0", + "17.13.0" + ], + "gregory whiteread=b9s compilation": [ + "17.11.0" + ], + "grey hat stategy": [ + "17.64.0" + ], + "gropius demanded": [ + "17.11.0" + ], + "gropius=b9 demanded": [ + "17.11.0" + ], + "gropius=b9 slogan": [ + "17.11.0" + ], + "group": [ + "17.7.0", + "17.19.0", + "17.25.0", + "17.71.0", + "17.72.0", + "17.85.0" + ], + "group innen": [ + "17.19.0" + ], + "groups": [ + "17.3.0", + "17.7.0", + "17.72.0" + ], + "groups working": [ + "17.7.0" + ], + "grow": [ + "17.41.0" + ], + "grow virtual plants": [ + "17.41.0" + ], + "growing client requirements": [ + "17.85.0" + ], + "growing list": [ + "17.43.0", + "17.43.1" + ], + "growing power": [ + "17.22.0" + ], + "growth": [ + "17.15.0" + ], + "growth rate increases": [ + "17.41.0" + ], + "groys": [ + "17.52.0" + ], + "gsm 3g signals": [ + "17.69.0" + ], + "gsm project": [ + "17.57.0" + ], + "guess cultures fertilize": [ + "17.14.0" + ], + "guided missiles fired": [ + "17.42.0" + ], + "gulf war": [ + "17.53.0" + ], + "guys": [ + "17.77.0" + ], + "hacker club": [ + "17.70.0" + ], + "hacker conference": [ + "17.70.0" + ], + "hacker context": [ + "17.70.0" + ], + "hacker cracker": [ + "17.70.0" + ], + "hacker culture doesn": [ + "17.71.0" + ], + "hacking": [ + "17.3.0", + "17.70.0" + ], + "hacking in progress": [ + "17.3.0" + ], + "hacking meets net": [ + "17.9.0" + ], + "hague-accused war": [ + "17.39.1" + ], + "hague-accused war criminals": [ + "17.39.1" + ], + "half dozen convenings": [ + "17.30.0" + ], + "halleck": [ + "17.47.0" + ], + "halleck by jakob": [ + "17.47.0" + ], + "hallo": [ + "17.29.0" + ], + "hallo from workspace": [ + "17.29.0" + ], + "ham radio onwards": [ + "17.13.0" + ], + "hamburg germany": [ + "17.19.0" + ], + "hand": [ + "17.25.0", + "17.27.0", + "17.46.0", + "17.46.2" + ], + "hand shapes art": [ + "17.46.0" + ], + "hand utterly unravelling": [ + "17.78.0" + ], + "handbuch der tonstudiotechnik": [ + "17.11.0" + ], + "handle cmyk output": [ + "17.93.0" + ], + "happened": [ + "17.53.1", + "17.74.0" + ], + "happened five minutes": [ + "17.36.0" + ], + "happening public space": [ + "17.6.0" + ], + "happy": [ + "17.6.1", + "17.40.0" + ], + "happy doomsday": [ + "17.40.0" + ], + "happy mobile nomad": [ + "17.9.0" + ], + "happy new year": [ + "17.6.1" + ], + "happy stock markets": [ + "17.45.0" + ], + "haptic interfaces": [ + "17.63.0" + ], + "hard": [ + "17.6.0" + ], + "hard wearing carpet": [ + "17.87.0" + ], + "hard core avant": [ + "17.4.0" + ], + "hard level": [ + "17.23.1" + ], + "hard plastic": [ + "17.87.0" + ], + "hard social stats": [ + "17.89.0" + ], + "hard time dealing": [ + "17.60.0" + ], + "hard time doing": [ + "17.69.0" + ], + "hard time understanding": [ + "17.14.0", + "17.29.0" + ], + "hard virtual domains": [ + "17.0.0" + ], + "hardboiled economic topic": [ + "17.23.0" + ], + "hardcore reality coming": [ + "17.86.0" + ], + "hardt": [ + "17.37.0", + "17.39.0", + "17.39.1", + "17.39.2" + ], + "hardt by ognjen": [ + "17.37.0" + ], + "hardt calls": [ + "17.39.0", + "17.39.0", + "17.39.1", + "17.39.2" + ], + "hardt drily": [ + "17.39.0" + ], + "hardt visited": [ + "17.37.0" + ], + "hardt visited zagreb": [ + "17.37.0" + ], + "hardware modem called": [ + "17.69.0" + ], + "harrow ha1 3tp": [ + "17.53.1", + "17.58.1" + ], + "hartmann": [ + "17.63.0" + ], + "harvesting ip addresses": [ + "17.81.0" + ], + "harwood": [ + "17.95.0" + ], + "hastily discard projects": [ + "17.67.0" + ], + "heady an complicated": [ + "17.36.0" + ], + "health": [ + "17.95.0" + ], + "health care": [ + "17.7.0" + ], + "health hazard": [ + "17.7.0" + ], + "health records": [ + "17.95.0" + ], + "hear": [ + "17.24.0" + ], + "hear stockholm aero": [ + "17.24.0" + ], + "hear employees express": [ + "17.13.0" + ], + "hear standard accusations": [ + "17.71.0" + ], + "heard guillermo gomez": [ + "17.7.0" + ], + "heard pit schultz": [ + "17.41.0" + ], + "hearted animic endorsement": [ + "17.78.0" + ], + "heartedly resist cultural": [ + "17.39.1" + ], + "heath": [ + "17.2.0" + ], + "heath bunting": [ + "17.2.0", + "17.2.0" + ], + "heath bunting proposed": [ + "17.2.0", + "17.2.0" + ], + "hedonistic desire": [ + "17.8.0" + ], + "hedonistic subculture youth": [ + "17.8.0" + ], + "hedonistic youth": [ + "17.8.0" + ], + "hegemonic israeli art": [ + "17.27.0" + ], + "heirarchical file structures": [ + "17.88.0" + ], + "held in hybrid": [ + "17.21.0" + ], + "helen mayer harrison": [ + "17.46.0" + ], + "hell.com": [ + "17.82.0" + ], + "hell.com send": [ + "17.82.0" + ], + "help generate": [ + "17.42.0" + ], + "help independent voices": [ + "17.30.0" + ], + "help pull wires": [ + "17.80.0" + ], + "help schools reconnect": [ + "17.80.0" + ], + "help social struggles": [ + "17.1.0" + ], + "help west european": [ + "17.77.0" + ], + "helpful technological tools": [ + "17.8.0" + ], + "henry miller tell": [ + "17.61.0" + ], + "henwood": [ + "17.45.0", + "17.58.4" + ], + "henwood by geert": [ + "17.45.0" + ], + "herbert spencer social": [ + "17.78.0" + ], + "heritage": [ + "17.86.0" + ], + "hermetic belief system": [ + "17.52.0" + ], + "heroic formation story": [ + "17.7.0" + ], + "herzegovina": [ + "17.39.1" + ], + "heterogeneous spaces": [ + "17.27.0" + ], + "hidden becoming revealed": [ + "17.60.0" + ], + "hidden elitist ideas": [ + "17.59.0" + ], + "hidden messages": [ + "17.60.0" + ], + "hiding code": [ + "17.93.0" + ], + "high": [ + "17.75.0" + ], + "high number": [ + "17.77.1" + ], + "highly": [ + "17.18.0" + ], + "highly contributed": [ + "17.9.0" + ], + "highly elaborate site": [ + "17.18.0" + ], + "highly functional organisms": [ + "17.7.0" + ], + "highly hierarchical": [ + "17.18.0" + ], + "highly hierarchized maps": [ + "17.18.0" + ], + "highly incarnated": [ + "17.18.0" + ], + "highly influence": [ + "17.9.0" + ], + "highly localized": [ + "17.18.0" + ], + "highly political applications": [ + "17.38.0" + ], + "highly populous countries": [ + "17.22.0" + ], + "highly related": [ + "17.23.0" + ], + "highly scalable system": [ + "17.23.0" + ], + "highly situated commitments": [ + "17.12.0" + ], + "highly skilled women": [ + "17.70.0" + ], + "highly socialized": [ + "17.18.0" + ], + "highly specialized knowledge": [ + "17.9.0" + ], + "highly unstable environment": [ + "17.51.0" + ], + "historic art genre": [ + "17.77.0" + ], + "historic avantgardes": [ + "17.77.0" + ], + "historical data": [ + "17.40.0" + ], + "historical debate": [ + "17.26.0" + ], + "historical example perfectly": [ + "17.75.0" + ], + "historical examples": [ + "17.92.0" + ], + "historical formation": [ + "17.49.0" + ], + "historical standards": [ + "17.45.0" + ], + "historically tuned field": [ + "17.92.0" + ], + "historicist bent": [ + "17.65.0" + ], + "hiya": [ + "17.53.1", + "17.58.1" + ], + "hogeschool van amsterdam": [ + "17.14.0", + "17.14.0" + ], + "hold active connections": [ + "17.12.0" + ], + "hold isp": [ + "17.17.0" + ], + "hold on charles": [ + "17.46.1" + ], + "holds advanced degrees": [ + "17.49.0" + ], + "holistic drive towards": [ + "17.9.0" + ], + "hollywood film project": [ + "17.31.0" + ], + "hollywood neither invented": [ + "17.31.0" + ], + "hollywood tolerate gnutella": [ + "17.9.0" + ], + "holmes": [ + "17.31.0" + ], + "home satellite dish": [ + "17.24.0" + ], + "home shopping channels": [ + "17.26.0" + ], + "homeland": [ + "17.39.1" + ], + "homeland war": [ + "17.39.1" + ], + "homepage": [ + "17.77.0" + ], + "homo sapiens": [ + "17.62.0" + ], + "homo sapiens wouldn": [ + "17.62.0" + ], + "homo scene": [ + "17.14.0" + ], + "homogenizing forces": [ + "17.38.0" + ], + "hong kong": [ + "17.56.0" + ], + "honored guerrilla tactic": [ + "17.47.0" + ], + "hopefully software art": [ + "17.10.0" + ], + "horizontal taxonomic approach": [ + "17.46.0" + ], + "hour sessions": [ + "17.85.0" + ], + "hourly news programs": [ + "17.43.1" + ], + "hours": [ + "17.82.0" + ], + "hours riots flare": [ + "17.53.0" + ], + "house product": [ + "17.40.0" + ], + "howard dean campaign": [ + "17.30.0" + ], + "html": [ + "17.57.0", + "17.76.0" + ], + "html code": [ + "17.57.0", + "17.57.0" + ], + "html docs directory": [ + "17.88.0" + ], + "html document": [ + "17.76.0" + ], + "html source": [ + "17.57.0" + ], + "huge concrete stadium": [ + "17.60.0" + ], + "huge controle": [ + "17.1.0" + ], + "huge firewall": [ + "17.17.0" + ], + "huge power blocks": [ + "17.17.0" + ], + "huge sound instrument": [ + "17.60.0" + ], + "huge wave": [ + "17.17.0" + ], + "huge web sites": [ + "17.1.0" + ], + "hugely popular blog": [ + "17.67.0" + ], + "hull": [ + "17.89.0" + ], + "hull city": [ + "17.89.0" + ], + "hull city fans": [ + "17.89.0", + "17.89.0" + ], + "hull city fc": [ + "17.89.0" + ], + "hull city football": [ + "17.89.0" + ], + "hull city ubiquitous": [ + "17.89.0" + ], + "hull fans": [ + "17.89.0" + ], + "human": [ + "17.42.0", + "17.91.0", + "17.92.0" + ], + "human beats": [ + "17.42.0" + ], + "human creativity": [ + "17.37.0" + ], + "human factor alert": [ + "17.63.0" + ], + "human genome": [ + "17.7.0" + ], + "human optimism": [ + "17.91.0" + ], + "human optimism involves": [ + "17.91.0" + ], + "human rights activists": [ + "17.14.0" + ], + "human rights council": [ + "17.25.0" + ], + "human rights proved": [ + "17.34.0" + ], + "human social bind": [ + "17.92.0" + ], + "humanitarian": [ + "17.29.0" + ], + "humanoid iku coders": [ + "17.6.0" + ], + "hundred art websites": [ + "17.70.0" + ], + "hundred dollar computer": [ + "17.14.0" + ], + "hundred students attending": [ + "17.14.0" + ], + "hundred thousand people": [ + "17.37.0" + ], + "hungarian filmstudios": [ + "17.4.0" + ], + "hungary": [ + "17.4.0" + ], + "hungiarian computer graphic": [ + "17.4.0" + ], + "hybrid": [ + "17.1.0", + "17.21.0", + "17.23.1", + "17.26.0" + ], + "hybrid forms coming": [ + "17.5.0" + ], + "hybrid media": [ + "17.1.0" + ], + "hybrid post dotcom": [ + "17.30.0" + ], + "hybrid workspace documenta": [ + "17.23.0", + "17.23.0", + "17.23.1", + "17.23.1" + ], + "hybrid workspace project": [ + "17.43.0", + "17.43.1" + ], + "hype": [ + "17.18.0" + ], + "hype surrounding": [ + "17.43.0", + "17.43.1" + ], + "hypermedia research": [ + "17.53.1" + ], + "hypermedia research centre": [ + "17.53.1", + "17.53.1", + "17.58.1" + ], + "ibm invests billions": [ + "17.71.0" + ], + "ica": [ + "17.64.0" + ], + "ica domains": [ + "17.64.0" + ], + "ica domains left": [ + "17.64.0" + ], + "ica in london": [ + "17.53.1" + ], + "ica site": [ + "17.64.0", + "17.64.0" + ], + "icann": [ + "17.34.0" + ], + "icann elections": [ + "17.34.0" + ], + "icc": [ + "17.56.0" + ], + "icf.de": [ + "17.77.1" + ], + "iconophilic means following": [ + "17.18.0" + ], + "ict": [ + "17.7.0" + ], + "idea": [ + "17.0.0", + "17.18.0", + "17.38.0", + "17.60.0", + "17.71.0", + "17.74.0", + "17.80.0", + "17.81.0", + "17.82.0", + "17.84.0" + ], + "idea gains force": [ + "17.93.0" + ], + "ideal employee": [ + "17.13.0" + ], + "idealistic drive": [ + "17.9.0" + ], + "ideas": [ + "17.9.0", + "17.38.0", + "17.82.0", + "17.84.0" + ], + "identify": [ + "17.16.0" + ], + "identify as woman": [ + "17.16.0", + "17.16.3" + ], + "identities": [ + "17.20.0" + ], + "identity": [ + "17.20.0", + "17.27.0", + "17.30.0", + "17.32.0", + "17.62.0", + "17.73.0" + ], + "identity art": [ + "17.32.0" + ], + "ideological formations": [ + "17.37.0" + ], + "ideological position": [ + "17.37.0" + ], + "ideologically schizophrenic moment": [ + "17.7.0" + ], + "ideology": [ + "17.58.1", + "17.58.4" + ], + "idiosyncratic voices": [ + "17.30.0" + ], + "idlanguage=1&idpublication=1&nrissu": [ + "17.12.0" + ], + "idle": [ + "17.41.0" + ], + "idle processor cycles": [ + "17.41.0" + ], + "idle time": [ + "17.41.0" + ], + "ietf": [ + "17.34.0" + ], + "ietf beyond": [ + "17.34.0" + ], + "ietf chair founded": [ + "17.34.0" + ], + "igor stromajer": [ + "17.57.0" + ], + "iku": [ + "17.6.1" + ], + "ildiko enyedys films": [ + "17.4.0", + "17.4.0" + ], + "ile=article&sid=59&mode=thread&": [ + "17.12.0" + ], + "illegal radio": [ + "17.68.0" + ], + "illogical emotions towards": [ + "17.28.0" + ], + "illusionist powers lying": [ + "17.40.0" + ], + "image": [ + "17.18.0", + "17.41.0", + "17.73.0" + ], + "image based medium": [ + "17.18.0", + "17.18.0" + ], + "image processing device": [ + "17.18.0" + ], + "images": [ + "17.18.0", + "17.73.0" + ], + "images demonstrate transformation": [ + "17.18.0", + "17.18.0" + ], + "imaginary outside position": [ + "17.63.0" + ], + "imaginary production forms": [ + "17.31.0" + ], + "imaginary sound worlds": [ + "17.61.0" + ], + "imagine": [ + "17.2.0" + ], + "imagine networked music": [ + "17.61.0" + ], + "imagine peoples experience": [ + "17.2.0" + ], + "imagine pushing": [ + "17.39.0" + ], + "imagine pushing social": [ + "17.39.0" + ], + "imagined design workflow": [ + "17.93.0" + ], + "imc": [ + "17.47.0" + ], + "imcs": [ + "17.47.0" + ], + "imf": [ + "17.22.0" + ], + "immanent analysis": [ + "17.61.0" + ], + "immanent net sound": [ + "17.61.0" + ], + "immaterial artworks outside": [ + "17.68.0" + ], + "immaterial labor": [ + "17.31.0" + ], + "immateriality makes": [ + "17.65.0" + ], + "immediately feasable": [ + "17.0.0" + ], + "immediately profitable limited": [ + "17.4.0" + ], + "immense geographical territories": [ + "17.53.0" + ], + "immense permanent meeting": [ + "17.78.0" + ], + "immense positional importance": [ + "17.86.0" + ], + "immense territories amount": [ + "17.53.0" + ], + "immersive section": [ + "17.49.0" + ], + "immigration system": [ + "17.86.0" + ], + "imperialistic discourse dominated": [ + "17.47.0" + ], + "implications software art": [ + "17.94.0", + "17.94.0" + ], + "implicit key question": [ + "17.92.0" + ], + "implied designing behavior": [ + "17.14.0" + ], + "important": [ + "17.1.0", + "17.20.0", + "17.44.0", + "17.46.1", + "17.59.0", + "17.71.0", + "17.72.0" + ], + "important art": [ + "17.46.1" + ], + "important point": [ + "17.20.0" + ], + "impressive list": [ + "17.50.0" + ], + "impressively vigorous sales": [ + "17.45.0" + ], + "improved display technology": [ + "17.4.0" + ], + "improved recording": [ + "17.4.0" + ], + "improvisational nature": [ + "17.10.0" + ], + "include aboriginal motifs": [ + "17.46.0" + ], + "include commonwealth dead": [ + "17.95.0" + ], + "includes developers": [ + "17.93.0" + ], + "includes factors relating": [ + "17.13.0" + ], + "includes mailing lists": [ + "17.71.0" + ], + "includes various factors": [ + "17.66.0" + ], + "including amber nectar": [ + "17.89.0" + ], + "including artistic ones": [ + "17.68.0" + ], + "including cultural ones": [ + "17.88.0" + ], + "including internet culture": [ + "17.46.0" + ], + "including rebeca mendez": [ + "17.58.0" + ], + "income communit ies": [ + "17.80.0" + ], + "incorporate net art": [ + "17.70.0", + "17.70.0" + ], + "incorporate oriental themes": [ + "17.50.0" + ], + "increased police presence": [ + "17.42.0" + ], + "increased powers": [ + "17.42.0" + ], + "increasing camera surveillance": [ + "17.42.0" + ], + "increasing financial difficulties": [ + "17.4.0" + ], + "increasingly abstract cultures": [ + "17.50.0" + ], + "increasingly aware": [ + "17.30.0" + ], + "increasingly narrow cultural": [ + "17.87.0" + ], + "increasingly rare": [ + "17.50.0" + ], + "incredibly gothic moment": [ + "17.51.0" + ], + "indeed seen fit": [ + "17.87.0" + ], + "independant media": [ + "17.29.0" + ], + "independant media project": [ + "17.29.0" + ], + "independent": [ + "17.56.0" + ], + "independent curator": [ + "17.68.0" + ], + "independent fanzine editor": [ + "17.89.0" + ], + "independent media": [ + "17.43.0", + "17.43.1", + "17.47.0", + "17.47.0", + "17.56.0", + "17.56.0" + ], + "independent media center": [ + "17.47.0", + "17.47.0" + ], + "independent media culture": [ + "17.56.0", + "17.56.0" + ], + "independent media make": [ + "17.47.0" + ], + "independent media play": [ + "17.47.0" + ], + "independent media pros": [ + "17.30.0" + ], + "independent radio network": [ + "17.43.0", + "17.43.0", + "17.43.1", + "17.43.1" + ], + "independent scene": [ + "17.43.0", + "17.43.1" + ], + "independent social life": [ + "17.72.0" + ], + "independent technical counternetwork": [ + "17.0.0" + ], + "independent versus dominant": [ + "17.14.0" + ], + "india": [ + "17.62.0" + ], + "india connecting directly": [ + "17.21.0" + ], + "indian entrepreneur collaborating": [ + "17.14.0" + ], + "indian government": [ + "17.14.0" + ], + "indian nationalism picked": [ + "17.25.0" + ], + "indigenous materials": [ + "17.50.0" + ], + "individual career": [ + "17.11.0" + ], + "individual forms": [ + "17.68.0" + ], + "individual plan": [ + "17.11.0" + ], + "individual poet establishes": [ + "17.55.0" + ], + "individual solutions leave": [ + "17.31.0" + ], + "individual speech act": [ + "17.52.0" + ], + "individual users": [ + "17.34.0" + ], + "individual users worldwide": [ + "17.34.0" + ], + "indolent idealistic southerner": [ + "17.68.0" + ], + "indonesia": [ + "17.43.0", + "17.43.1" + ], + "industrial": [ + "17.62.0" + ], + "industrialize custom creativity": [ + "17.13.0" + ], + "industries constantly prey": [ + "17.31.0" + ], + "industry": [ + "17.35.0", + "17.80.0" + ], + "indy media": [ + "17.47.0", + "17.47.0" + ], + "indy media activity": [ + "17.47.0" + ], + "indymedia centers": [ + "17.47.0" + ], + "indymedia recently celebrated": [ + "17.47.0" + ], + "indymedia remain platforms": [ + "17.90.0" + ], + "inevitable distortion occurs": [ + "17.85.0" + ], + "inevitably becoming digital": [ + "17.69.0" + ], + "infantile ascii art": [ + "17.54.0" + ], + "influence peddling": [ + "17.78.0" + ], + "influenced worldwide perception": [ + "17.14.0" + ], + "influential master thinker": [ + "17.13.0" + ], + "info": [ + "17.3.0", + "17.6.1", + "17.29.0", + "17.46.2", + "17.58.2", + "17.58.3", + "17.58.4", + "17.77.1" + ], + "info nettime": [ + "17.77.1" + ], + "info nettime-l": [ + "17.6.1", + "17.58.3" + ], + "infor mation infrastructure": [ + "17.80.0" + ], + "information": [ + "17.1.0", + "17.7.0", + "17.14.0", + "17.17.0", + "17.18.0", + "17.24.0", + "17.30.0", + "17.34.0", + "17.53.0", + "17.59.0", + "17.88.0", + "17.90.0" + ], + "information bomb": [ + "17.53.0", + "17.53.0" + ], + "information design": [ + "17.88.0" + ], + "information design analysis": [ + "17.88.0" + ], + "information design level": [ + "17.88.0" + ], + "information equals noise": [ + "17.52.0" + ], + "information require dealing": [ + "17.91.0" + ], + "information societies depend": [ + "17.34.0" + ], + "information society": [ + "17.34.0" + ], + "information structure": [ + "17.88.0" + ], + "information structures": [ + "17.88.0" + ], + "information systems": [ + "17.53.0", + "17.88.0" + ], + "information technologies contain": [ + "17.35.0" + ], + "information technology": [ + "17.66.0" + ], + "information technology sector": [ + "17.66.0" + ], + "information transmission": [ + "17.53.0" + ], + "infrastructure": [ + "17.30.0", + "17.80.0" + ], + "initial clash": [ + "17.38.0" + ], + "initial idea": [ + "17.95.0" + ], + "initial idea mieke": [ + "17.38.0" + ], + "initial part": [ + "17.85.0" + ], + "initiative generates lots": [ + "17.14.0" + ], + "initiatives": [ + "17.72.0" + ], + "inkscape": [ + "17.93.0" + ], + "inkscape users quickly": [ + "17.93.0" + ], + "innen": [ + "17.19.0" + ], + "inner circle successfully": [ + "17.34.0" + ], + "innocuous hobby site": [ + "17.41.0" + ], + "innovative direct action": [ + "17.66.0" + ], + "innovative scientific": [ + "17.91.0" + ], + "innovative strategies": [ + "17.66.0" + ], + "input data": [ + "17.92.0" + ], + "insecurite du territoire_": [ + "17.53.0" + ], + "inside": [ + "17.57.0" + ], + "inside jamaica": [ + "17.87.0" + ], + "inspiration page": [ + "17.83.0" + ], + "inspirational dave douglass": [ + "17.95.0" + ], + "inspire social practices": [ + "17.14.0" + ], + "inspired": [ + "17.58.4" + ], + "inspired nor hindered": [ + "17.14.0" + ], + "installation": [ + "17.65.0" + ], + "installation space experience": [ + "17.51.0" + ], + "instance": [ + "17.2.0", + "17.49.0", + "17.79.0" + ], + "instance george battaille": [ + "17.51.0" + ], + "instance pirate radio": [ + "17.8.0" + ], + "instant satisfactory pleasure": [ + "17.91.0" + ], + "institution jumping onto": [ + "17.10.0" + ], + "institutional market": [ + "17.31.0" + ], + "institutional support": [ + "17.56.0" + ], + "institutional support anymore": [ + "17.56.0" + ], + "institutionalised art festivals": [ + "17.10.0" + ], + "institutionally secured position": [ + "17.52.0" + ], + "institutions": [ + "17.32.0" + ], + "instruction code": [ + "17.10.0" + ], + "insuring successful actions": [ + "17.7.0" + ], + "integral version": [ + "17.9.0" + ], + "integrated": [ + "17.42.0" + ], + "integrated police": [ + "17.42.0" + ], + "integrated policing platform": [ + "17.42.0" + ], + "integrated weapons platform": [ + "17.42.0" + ], + "intellectual": [ + "17.13.0" + ], + "intellectual content": [ + "17.32.0" + ], + "intellectual property": [ + "17.13.0", + "17.48.0" + ], + "intelligent conflict": [ + "17.66.0" + ], + "intelligent political strategy": [ + "17.66.0" + ], + "intense financial speculation": [ + "17.43.0", + "17.43.1" + ], + "intensive animal reservoirs": [ + "17.92.0" + ], + "intensive capitalist investment": [ + "17.91.0" + ], + "intensive code life": [ + "17.92.0" + ], + "intensive life": [ + "17.92.0" + ], + "intensive textual explorations": [ + "17.61.0" + ], + "intensively enjoyed doing": [ + "17.65.0" + ], + "inter media institute": [ + "17.8.0" + ], + "interactive": [ + "17.49.0" + ], + "interactive computer installation": [ + "17.40.0" + ], + "interactive displays": [ + "17.40.0" + ], + "interactive event": [ + "17.47.0" + ], + "interactive installation happy": [ + "17.40.0" + ], + "interactive internet project": [ + "17.46.0" + ], + "interactive media artist": [ + "17.40.0" + ], + "interactive television set": [ + "17.18.0" + ], + "interception equipment": [ + "17.24.0" + ], + "interdisciplinary plus media": [ + "17.4.0" + ], + "interdisciplinary research project": [ + "17.34.0" + ], + "interested": [ + "17.42.0" + ], + "interesting": [ + "17.9.0", + "17.10.0", + "17.53.1", + "17.60.0", + "17.69.0", + "17.84.0", + "17.92.0" + ], + "interface": [ + "17.76.0", + "17.81.0" + ], + "interface design": [ + "17.38.0" + ], + "interface design aspect": [ + "17.38.0" + ], + "interfaces": [ + "17.81.0" + ], + "interfaces provide five": [ + "17.81.0" + ], + "intergovernmental regime": [ + "17.34.0" + ], + "intergovernmental root convention": [ + "17.34.0" + ], + "interim report": [ + "17.38.0" + ], + "interlacing device": [ + "17.50.0" + ], + "intermedia": [ + "17.4.0" + ], + "international": [ + "17.0.0", + "17.20.0", + "17.22.0", + "17.28.0", + "17.34.0", + "17.72.0" + ], + "international agreements": [ + "17.34.0" + ], + "international art exhibition": [ + "17.11.0" + ], + "international board": [ + "17.28.0" + ], + "international browser": [ + "17.76.0" + ], + "international browser day": [ + "17.76.0", + "17.76.0" + ], + "international browserday": [ + "17.38.0" + ], + "international browserday started": [ + "17.38.0" + ], + "international civil society": [ + "17.34.0", + "17.34.0" + ], + "international community nor": [ + "17.14.0" + ], + "international courts": [ + "17.14.0" + ], + "international curatorial board": [ + "17.28.0" + ], + "international diplomacy": [ + "17.14.0" + ], + "international forums": [ + "17.34.0" + ], + "international level": [ + "17.22.0" + ], + "international media fame": [ + "17.34.0" + ], + "international monetairy fund": [ + "17.28.0" + ], + "international monetary fund": [ + "17.25.0" + ], + "international network": [ + "17.28.0" + ], + "international news media": [ + "17.29.0" + ], + "international organizations": [ + "17.34.0" + ], + "international policies": [ + "17.34.0" + ], + "international policy": [ + "17.34.0" + ], + "international regime": [ + "17.34.0" + ], + "international telecommunications union": [ + "17.47.0" + ], + "international women university": [ + "17.6.0" + ], + "internet activists": [ + "17.75.0" + ], + "internet affects matters": [ + "17.34.0" + ], + "internet application par": [ + "17.38.0" + ], + "internet art works": [ + "17.57.0" + ], + "internet business manager": [ + "17.0.0" + ], + "internet cinema": [ + "17.46.0" + ], + "internet community": [ + "17.80.0" + ], + "internet critic frank": [ + "17.63.0" + ], + "internet directory service": [ + "17.0.0" + ], + "internet experience": [ + "17.75.0" + ], + "internet fit": [ + "17.75.0" + ], + "internet governance": [ + "17.34.0" + ], + "internet industry": [ + "17.34.0" + ], + "internet issues": [ + "17.75.0" + ], + "internet laws": [ + "17.17.0" + ], + "internet management": [ + "17.34.0" + ], + "internet public": [ + "17.32.0" + ], + "internet radio": [ + "17.11.0" + ], + "internet reform": [ + "17.75.0" + ], + "internet revitalize democracy": [ + "17.30.0" + ], + "internet search engine": [ + "17.86.0", + "17.86.0" + ], + "internet services adressed": [ + "17.17.0" + ], + "internet society": [ + "17.34.0" + ], + "internet universality etc": [ + "17.18.0" + ], + "internet work": [ + "17.55.0" + ], + "interpret software art": [ + "17.10.0" + ], + "interstate highway coming": [ + "17.75.0" + ], + "interstitial lines overlap": [ + "17.60.0" + ], + "intervention": [ + "17.16.0", + "17.29.0" + ], + "intervention intervention strategy": [ + "17.29.0" + ], + "interventions": [ + "17.16.1" + ], + "interventions at events": [ + "17.16.1" + ], + "interview": [ + "17.2.0", + "17.6.1", + "17.23.1", + "17.32.0", + "17.33.0", + "17.39.1", + "17.46.2", + "17.67.0", + "17.82.0" + ], + "interview by geert": [ + "17.46.2" + ], + "interview jeanette hofmann": [ + "17.34.0" + ], + "interview made": [ + "17.84.0" + ], + "interview posted yesterday": [ + "17.24.0" + ], + "interview with anand": [ + "17.62.0" + ], + "interview with catherine": [ + "17.26.0" + ], + "interview with franco": [ + "17.90.0" + ], + "interview with james": [ + "17.85.0" + ], + "interview with mark": [ + "17.60.0" + ], + "interview with michael": [ + "17.37.0" + ], + "interview with mouchette": [ + "17.32.0" + ], + "interview with paul": [ + "17.23.1" + ], + "interview with richard": [ + "17.41.0" + ], + "interview with saskia": [ + "17.21.0" + ], + "interview with tom": [ + "17.88.0" + ], + "intimate": [ + "17.57.0" + ], + "intimate bbs systems": [ + "17.8.0" + ], + "intimate channels": [ + "17.8.0" + ], + "intimate messages": [ + "17.89.0" + ], + "intrinsically related": [ + "17.91.0" + ], + "intro": [ + "17.6.1" + ], + "introduce manseur jacobi": [ + "17.47.0" + ], + "introduction": [ + "17.16.2" + ], + "introduction grow exponentially": [ + "17.7.0" + ], + "intrusive art critics": [ + "17.46.0" + ], + "invent female hackers": [ + "17.70.0" + ], + "invented": [ + "17.77.1" + ], + "inventive effects": [ + "17.10.0" + ], + "inventive forces": [ + "17.10.0" + ], + "inventive intermediate role": [ + "17.10.0" + ], + "investment": [ + "17.41.0" + ], + "investment banking departments": [ + "17.45.0" + ], + "investment substitutes effort": [ + "17.41.0" + ], + "involve differential relations": [ + "17.91.0" + ], + "involved": [ + "17.60.0", + "17.71.0" + ], + "involves constant updates": [ + "17.49.0" + ], + "involves materials": [ + "17.49.0" + ], + "inward looking position": [ + "17.46.0" + ], + "iosif király": [ + "17.40.0", + "17.40.0" + ], + "ip address corresponds": [ + "17.81.0" + ], + "ip address space": [ + "17.0.0" + ], + "ip inside employee": [ + "17.13.0" + ], + "ip jackpot economy": [ + "17.13.0" + ], + "ip monopoly enforcement": [ + "17.13.0" + ], + "ip rights": [ + "17.13.0" + ], + "iraq war demo": [ + "17.12.0" + ], + "irina aktagonova rules": [ + "17.73.0" + ], + "irregular public performances": [ + "17.93.0" + ], + "islands": [ + "17.3.0" + ], + "isolated information ghetto": [ + "17.1.0" + ], + "isole nella rete": [ + "17.3.0" + ], + "isp": [ + "17.17.0" + ], + "israeli": [ + "17.27.0" + ], + "israeli artists aya": [ + "17.27.0" + ], + "israeli presence": [ + "17.27.0" + ], + "israeli society": [ + "17.27.0" + ], + "issue": [ + "17.21.0", + "17.49.0" + ], + "issue anymore": [ + "17.42.0" + ], + "issue bandwidth": [ + "17.21.0" + ], + "issue political": [ + "17.13.0" + ], + "issues": [ + "17.51.0", + "17.75.0" + ], + "issues forth": [ + "17.42.0" + ], + "italian": [ + "17.12.0", + "17.68.0" + ], + "italian abridged version": [ + "17.9.0" + ], + "italian autonomia movement": [ + "17.66.0" + ], + "italian autonomous theorists": [ + "17.13.0" + ], + "italian chainworkers": [ + "17.66.0" + ], + "italian communist party": [ + "17.12.0", + "17.44.0" + ], + "italian creative labor": [ + "17.68.0" + ], + "italian exiles": [ + "17.31.0" + ], + "italian hacker congress": [ + "17.70.0" + ], + "italian media": [ + "17.12.0" + ], + "italian media activism": [ + "17.12.0", + "17.12.0" + ], + "italian media militants": [ + "17.12.0", + "17.12.0" + ], + "italian mediascape": [ + "17.12.0", + "17.12.0" + ], + "italian microbroadcasters": [ + "17.12.0" + ], + "italian operaist movement": [ + "17.31.0" + ], + "italian politics": [ + "17.12.0" + ], + "italian tactical television": [ + "17.12.0" + ], + "italian telestreet works": [ + "17.12.0" + ], + "italian telestreets": [ + "17.12.0" + ], + "italian translation": [ + "17.44.0" + ], + "italy": [ + "17.3.0", + "17.68.0", + "17.77.1" + ], + "itâs": [ + "17.69.0", + "17.69.0", + "17.95.0", + "17.95.0" + ], + "itâs 300 meters": [ + "17.69.0" + ], + "itâs argument": [ + "17.95.0" + ], + "itâs called": [ + "17.69.0" + ], + "itâs context": [ + "17.95.0" + ], + "itâs exhibits": [ + "17.95.0" + ], + "itâs illogical": [ + "17.69.0" + ], + "itâs interrelation": [ + "17.95.0" + ], + "itâs nice": [ + "17.69.0" + ], + "itâs probably": [ + "17.95.0" + ], + "itâs received uncritically": [ + "17.95.0" + ], + "itâs retro": [ + "17.69.0" + ], + "itâs ripped": [ + "17.95.0" + ], + "itâs true": [ + "17.69.0" + ], + "itâs ultra slow": [ + "17.69.0" + ], + "iâm": [ + "17.69.0", + "17.95.0", + "17.95.0" + ], + "iâm completely uninterested": [ + "17.95.0" + ], + "iâm hinting": [ + "17.95.0" + ], + "iâve heard": [ + "17.69.0" + ], + "išm": [ + "17.46.1" + ], + "išm looking forward": [ + "17.46.1", + "17.46.1" + ], + "jacquard loom weaves": [ + "17.50.0" + ], + "jakob": [ + "17.47.0" + ], + "jakob weingartner": [ + "17.47.0" + ], + "jamaica": [ + "17.87.0" + ], + "jamaica street": [ + "17.87.0" + ], + "jamaica street culture": [ + "17.87.0" + ], + "james": [ + "17.85.0" + ], + "james stevens": [ + "17.85.0" + ], + "james stevens james": [ + "17.85.0" + ], + "jancovic": [ + "17.72.0" + ], + "janos sugar": [ + "17.4.0" + ], + "januari": [ + "17.84.0" + ], + "january": [ + "17.83.0" + ], + "japan": [ + "17.8.0", + "17.56.0", + "17.79.0" + ], + "japan colonial": [ + "17.8.0" + ], + "japanese": [ + "17.8.0", + "17.56.0" + ], + "japanese apache tribe": [ + "17.8.0", + "17.8.0" + ], + "japanese contemporary theory": [ + "17.8.0" + ], + "japanese kids": [ + "17.56.0" + ], + "japanese kids respond": [ + "17.56.0" + ], + "japanese media": [ + "17.8.0", + "17.69.0" + ], + "japanese media theory": [ + "17.8.0", + "17.8.0" + ], + "japanese national government": [ + "17.8.0" + ], + "japanese obsessive behavior": [ + "17.8.0" + ], + "japanese politics": [ + "17.8.0" + ], + "japanese young": [ + "17.56.0" + ], + "japanese young people": [ + "17.56.0" + ], + "japanese youth": [ + "17.8.0" + ], + "jean baudrillardâs response": [ + "17.69.0" + ], + "jean denmars involved": [ + "17.95.0", + "17.95.0" + ], + "jeanette hofmann": [ + "17.34.0" + ], + "jeanette hofmann talks": [ + "17.34.0" + ], + "jeff kennett agenda": [ + "17.50.0" + ], + "jeff koons": [ + "17.70.0" + ], + "jerusalem": [ + "17.27.0" + ], + "jet set willy": [ + "17.94.0" + ], + "jevbrett": [ + "17.81.0" + ], + "jevbrett tilman": [ + "17.81.0" + ], + "jevbrett tilman baumgärtel": [ + "17.81.0" + ], + "job": [ + "17.74.0" + ], + "jodi and frederic": [ + "17.57.0" + ], + "john": [ + "17.53.0" + ], + "john armitage": [ + "17.53.0", + "17.53.0" + ], + "john armitage below": [ + "17.53.0" + ], + "john armitage~": [ + "17.53.0" + ], + "john rawls": [ + "17.37.0" + ], + "joint subject formed": [ + "17.94.0" + ], + "jordan": [ + "17.42.0" + ], + "jordan crandall": [ + "17.42.0", + "17.42.0" + ], + "joseph muller brockman": [ + "17.93.0" + ], + "josé luis cuevas": [ + "17.65.0" + ], + "journalist amy goodman": [ + "17.47.0" + ], + "journalist erik kjaer": [ + "17.17.0" + ], + "joy entails entering": [ + "17.91.0" + ], + "joy involve": [ + "17.91.0" + ], + "joyful passions": [ + "17.91.0" + ], + "jpeg image": [ + "17.49.0" + ], + "judicial systems": [ + "17.14.0" + ], + "july": [ + "17.23.1", + "17.36.0" + ], + "july 1st bulgaria": [ + "17.28.0" + ], + "jump and start": [ + "17.23.1" + ], + "june": [ + "17.20.0", + "17.90.0" + ], + "junk bond cowboys": [ + "17.45.0" + ], + "junk bond universe": [ + "17.45.0" + ], + "justifiable personal response": [ + "17.30.0" + ], + "justify increased military": [ + "17.42.0" + ], + "kabbalistic language speculation": [ + "17.10.0" + ], + "kapelica gallery": [ + "17.5.0" + ], + "karatani labeled nam": [ + "17.8.0" + ], + "karl marx wrote": [ + "17.90.0" + ], + "karlsruhe": [ + "17.52.0" + ], + "kassel school": [ + "17.63.0" + ], + "keenan": [ + "17.29.0" + ], + "keeping abortion legal": [ + "17.72.0" + ], + "keeping oneself free": [ + "17.55.0" + ], + "keiko": [ + "17.79.0" + ], + "keiko suzuki": [ + "17.79.0" + ], + "keith hardt": [ + "17.39.2", + "17.39.2" + ], + "ken jordan": [ + "17.30.0" + ], + "kept alive artificially": [ + "17.65.0" + ], + "kept strictly technical": [ + "17.93.0" + ], + "kerning systems": [ + "17.93.0" + ], + "kevin driscoll attributed": [ + "17.92.0" + ], + "kevin kelly liable": [ + "17.45.0" + ], + "kevin murray": [ + "17.50.0" + ], + "kevin murray writings": [ + "17.50.0" + ], + "key access": [ + "17.91.0" + ], + "key book reviews": [ + "17.53.0" + ], + "key practice": [ + "17.92.0" + ], + "key prerequisite": [ + "17.92.0" + ], + "kibla": [ + "17.77.1" + ], + "kibla in maribor": [ + "17.77.1" + ], + "kick ass programmers": [ + "17.30.0" + ], + "kind": [ + "17.2.0", + "17.20.0", + "17.21.0", + "17.22.0", + "17.23.1", + "17.31.0", + "17.39.1", + "17.39.2", + "17.42.0", + "17.51.0", + "17.56.0", + "17.60.0", + "17.67.0", + "17.72.0", + "17.73.0", + "17.82.0", + "17.84.0", + "17.92.0", + "17.95.0" + ], + "kind comments": [ + "17.39.1" + ], + "kinds": [ + "17.42.0", + "17.93.0", + "17.94.0", + "17.95.0" + ], + "kittlerian technological determinism": [ + "17.63.0" + ], + "kjaer larsen": [ + "17.17.0" + ], + "klaus theweleit described": [ + "17.9.0" + ], + "klaus theweleit published": [ + "17.46.0" + ], + "knowledge": [ + "17.13.0", + "17.25.0", + "17.63.0", + "17.95.0" + ], + "knowledge conference": [ + "17.25.0" + ], + "knowledge economy": [ + "17.13.0" + ], + "kodwo eshun": [ + "17.61.0" + ], + "kodwo eshun sonic": [ + "17.61.0" + ], + "kommentar multimediagesetz": [ + "17.17.0" + ], + "koolhaas": [ + "17.20.0" + ], + "korean residents": [ + "17.8.0" + ], + "korean residents started": [ + "17.8.0" + ], + "kosovars": [ + "17.53.1" + ], + "kosovo": [ + "17.53.0" + ], + "kosovo war": [ + "17.53.0" + ], + "kosovo war led": [ + "17.53.0", + "17.53.0" + ], + "kosovo war map": [ + "17.53.0", + "17.53.0" + ], + "kosovo war prompted": [ + "17.53.0", + "17.53.0" + ], + "kuda": [ + "17.35.0" + ], + "kuda strongly opts": [ + "17.35.0" + ], + "kunst des fliehens": [ + "17.52.0" + ], + "kunstforum": [ + "17.20.0" + ], + "kunstforum international": [ + "17.20.0" + ], + "kunstvermittlung und vermittlungskunst": [ + "17.11.0" + ], + "künstlerhaus bethanien": [ + "17.40.0" + ], + "la fabbrica dell": [ + "17.90.0" + ], + "la rivoluzione estetica": [ + "17.68.0" + ], + "label": [ + "17.7.0" + ], + "labor": [ + "17.31.0", + "17.66.0" + ], + "labor laws comes": [ + "17.66.0" + ], + "labor makes multi": [ + "17.9.0" + ], + "labor precarity": [ + "17.66.0" + ], + "labour": [ + "17.13.0", + "17.48.0" + ], + "labour activist andrew": [ + "17.13.0" + ], + "labour market": [ + "17.13.0" + ], + "labour movement": [ + "17.13.0" + ], + "labour precarity issue": [ + "17.13.0" + ], + "lacks content": [ + "17.8.0" + ], + "lajos kassak died": [ + "17.4.0" + ], + "lang earlier": [ + "17.92.0" + ], + "language": [ + "17.49.0", + "17.55.0", + "17.63.0" + ], + "language based": [ + "17.93.0" + ], + "language cultural studies": [ + "17.48.0" + ], + "language poets": [ + "17.55.0" + ], + "lap500 directory": [ + "17.0.0" + ], + "larger art world": [ + "17.7.0" + ], + "larger audience": [ + "17.79.0" + ], + "larger character sets": [ + "17.93.0" + ], + "larger gnu/linux distros": [ + "17.93.0" + ], + "larger militarized systems": [ + "17.42.0" + ], + "larger movement": [ + "17.14.0" + ], + "largest media": [ + "17.75.0" + ], + "largest media firms": [ + "17.75.0" + ], + "largest private contractor": [ + "17.0.0" + ], + "largest selling commodity": [ + "17.87.0" + ], + "laroche=b9s": [ + "17.11.0" + ], + "late 1960s crisis": [ + "17.46.0" + ], + "late 1960âs": [ + "17.95.0" + ], + "late 20th century": [ + "17.68.0" + ], + "late 80s": [ + "17.58.0" + ], + "late 80s onwards": [ + "17.13.0" + ], + "late 90s moment": [ + "17.58.0" + ], + "late eighteenth century": [ + "17.13.0" + ], + "late twentieth century": [ + "17.92.0" + ], + "latin popular festivity": [ + "17.65.0" + ], + "latin rhetorical term": [ + "17.58.0" + ], + "latour": [ + "17.18.0" + ], + "latter remains blind": [ + "17.91.0" + ], + "laughter": [ + "17.70.0", + "17.71.0" + ], + "launched via tubes": [ + "17.53.0" + ], + "laurence": [ + "17.74.0" + ], + "laurence rassel": [ + "17.74.0" + ], + "lavishly funded efforts": [ + "17.13.0" + ], + "law": [ + "17.17.0" + ], + "law enformcement agencies": [ + "17.17.0" + ], + "law takes actions": [ + "17.47.0" + ], + "laws": [ + "17.17.0" + ], + "lazy thoughts": [ + "17.58.2", + "17.58.3" + ], + "lbo newsletter": [ + "17.45.0" + ], + "le monde diplomatique": [ + "17.1.0" + ], + "le problčme de": [ + "17.63.0" + ], + "lea": [ + "17.6.0", + "17.6.1" + ], + "lea asked": [ + "17.6.1" + ], + "lea cheang": [ + "17.6.0" + ], + "lea left": [ + "17.6.0" + ], + "lea left taipeh": [ + "17.6.0" + ], + "leading role played": [ + "17.12.0" + ], + "learn": [ + "17.25.0" + ], + "learned sound editing": [ + "17.74.0" + ], + "leave privacy laws": [ + "17.42.0" + ], + "lecture": [ + "17.27.0" + ], + "lecture class called": [ + "17.83.0" + ], + "led engineering class": [ + "17.34.0" + ], + "lee scratch perry": [ + "17.91.0" + ], + "left": [ + "17.39.2" + ], + "left business": [ + "17.58.4" + ], + "left business observer": [ + "17.45.0", + "17.45.0", + "17.58.4", + "17.58.4" + ], + "left complain": [ + "17.0.0" + ], + "left movements": [ + "17.39.2" + ], + "left poetry finally": [ + "17.55.0" + ], + "left sucking dust": [ + "17.13.0" + ], + "left warwick university": [ + "17.61.0" + ], + "leftist academic circles": [ + "17.8.0" + ], + "leftist models occurred": [ + "17.9.0" + ], + "legal transactions involving": [ + "17.45.0" + ], + "legendary radio alice": [ + "17.12.0" + ], + "leonardo da vinci": [ + "17.82.0" + ], + "leonardo magazine called": [ + "17.65.0" + ], + "letter": [ + "17.33.0" + ], + "letter generator": [ + "17.94.0" + ], + "letter requesting inclusion": [ + "17.0.0" + ], + "letters ica": [ + "17.64.0" + ], + "lev": [ + "17.49.0" + ], + "lev manovich": [ + "17.49.0", + "17.49.0" + ], + "lev manovich http": [ + "17.49.0" + ], + "lev manovich suggests": [ + "17.49.0", + "17.49.0" + ], + "level": [ + "17.6.0", + "17.9.0", + "17.23.0", + "17.61.0" + ], + "level domains": [ + "17.23.0" + ], + "level of providing": [ + "17.23.1" + ], + "leveling force": [ + "17.29.0" + ], + "liberate materials anymore": [ + "17.7.0" + ], + "liberation": [ + "17.53.1" + ], + "liberation war": [ + "17.53.1" + ], + "liberatory political systems": [ + "17.78.0" + ], + "libertarianism originated cheek": [ + "17.58.2" + ], + "licenses wouldnât read": [ + "17.69.0" + ], + "life": [ + "17.42.0", + "17.48.0", + "17.66.0", + "17.68.0", + "17.83.0", + "17.91.0", + "17.92.0" + ], + "life changes": [ + "17.55.0" + ], + "life demanding taking": [ + "17.91.0" + ], + "life expressive modalities": [ + "17.68.0" + ], + "life forms": [ + "17.61.0" + ], + "life instead started": [ + "17.61.0" + ], + "life public spaces": [ + "17.68.0" + ], + "life writing life": [ + "17.55.0" + ], + "light": [ + "17.65.0" + ], + "light beams": [ + "17.65.0" + ], + "liked ascii": [ + "17.54.0" + ], + "limit software art": [ + "17.10.0" + ], + "limited functionality": [ + "17.30.0" + ], + "limited geographical footprint": [ + "17.13.0" + ], + "limits social cooperation": [ + "17.37.0" + ], + "linda wallace": [ + "17.24.0" + ], + "line": [ + "17.16.1" + ], + "line collaborative sustainability": [ + "17.46.0" + ], + "line workers": [ + "17.13.0" + ], + "linear historicist narrative": [ + "17.65.0" + ], + "linear interfaces": [ + "17.68.0" + ], + "linear narrative": [ + "17.65.0", + "17.68.0" + ], + "lingo": [ + "17.76.0" + ], + "linguistic abuse causes": [ + "17.68.0" + ], + "linguistic sabotage": [ + "17.68.0" + ], + "linked via network": [ + "17.41.0" + ], + "linking line": [ + "17.88.0" + ], + "linking strand represents": [ + "17.88.0" + ], + "links": [ + "17.88.0" + ], + "linux developer": [ + "17.93.0" + ], + "linux install party": [ + "17.74.0" + ], + "linux server": [ + "17.35.0" + ], + "lisa": [ + "17.81.0" + ], + "lisa jevbrett": [ + "17.81.0" + ], + "lisa jevbrett tilman": [ + "17.81.0" + ], + "list": [ + "17.67.0", + "17.87.0" + ], + "listen": [ + "17.2.0" + ], + "literally doesnât": [ + "17.69.0" + ], + "literary": [ + "17.25.0" + ], + "literary critical practice": [ + "17.25.0" + ], + "literary experts": [ + "17.71.0" + ], + "literature index": [ + "17.53.0" + ], + "lithuanian": [ + "17.54.0" + ], + "lithuanian net": [ + "17.54.0" + ], + "lithuanian net artist": [ + "17.54.0", + "17.54.0" + ], + "little art gallery": [ + "17.67.0" + ], + "little bit": [ + "17.23.0" + ], + "little bit abstract": [ + "17.23.0" + ], + "little bit puzzled": [ + "17.77.0" + ], + "little bit utopian": [ + "17.1.0" + ], + "little bit worrying": [ + "17.77.0" + ], + "little explanatory value": [ + "17.62.0" + ], + "little island": [ + "17.4.0" + ], + "little job": [ + "17.4.0" + ], + "little proof": [ + "17.77.0" + ], + "little public attention": [ + "17.4.0" + ], + "little public debate": [ + "17.75.0" + ], + "little spaces": [ + "17.48.0" + ], + "live background image": [ + "17.4.0" + ], + "live net reporting": [ + "17.3.0" + ], + "live ones life": [ + "17.8.0" + ], + "lived network": [ + "17.89.0" + ], + "lively internet scene": [ + "17.68.0" + ], + "lively media scene": [ + "17.68.0" + ], + "living": [ + "17.27.0" + ], + "living in santa": [ + "17.58.2" + ], + "ljudmila": [ + "17.77.0", + "17.79.0" + ], + "ljudmila media lab": [ + "17.84.0" + ], + "ljudmila west": [ + "17.77.0" + ], + "ljudmila west project": [ + "17.77.0" + ], + "ljudmilla": [ + "17.77.1" + ], + "ll continue tomorrow": [ + "17.83.0" + ], + "local": [ + "17.12.0", + "17.16.2", + "17.16.3" + ], + "local business etc": [ + "17.39.1" + ], + "local carrying": [ + "17.2.0" + ], + "local circumstances considered": [ + "17.40.0" + ], + "local community actions": [ + "17.89.0" + ], + "local contact": [ + "17.87.0" + ], + "local contexts": [ + "17.16.2", + "17.16.3" + ], + "local council": [ + "17.89.0" + ], + "local fm frequency": [ + "17.11.0" + ], + "local frequency": [ + "17.43.0" + ], + "local funding agencies": [ + "17.58.0" + ], + "local histories": [ + "17.12.0" + ], + "local hosted radio": [ + "17.69.0" + ], + "local hub": [ + "17.43.0" + ], + "local isp": [ + "17.43.0" + ], + "local licenses": [ + "17.43.0", + "17.43.1" + ], + "local media scene": [ + "17.14.0" + ], + "local population": [ + "17.89.0" + ], + "local radical lawyer": [ + "17.12.0" + ], + "local radio stations": [ + "17.43.0", + "17.43.0", + "17.43.1", + "17.43.1" + ], + "local telephone company": [ + "17.87.0" + ], + "local television viewers": [ + "17.24.0" + ], + "local trading system": [ + "17.8.0" + ], + "localized": [ + "17.18.0" + ], + "locally connect media": [ + "17.18.0" + ], + "locally situated bomb": [ + "17.53.0" + ], + "locations using": [ + "17.69.0" + ], + "logic sign system": [ + "17.63.0" + ], + "london galleries": [ + "17.64.0" + ], + "londonâs east": [ + "17.95.0" + ], + "lone wolf individual": [ + "17.30.0" + ], + "long": [ + "17.45.0" + ], + "longer": [ + "17.71.0" + ], + "look kinda": [ + "17.30.0" + ], + "looked": [ + "17.33.0" + ], + "loom": [ + "17.50.0" + ], + "loose arrangement continued": [ + "17.85.0" + ], + "loosely bounded solidarity": [ + "17.39.2" + ], + "looseness required": [ + "17.95.0" + ], + "lose cultural networks": [ + "17.9.0" + ], + "losing culture due": [ + "17.38.0" + ], + "lost tram conductors": [ + "17.50.0" + ], + "lot": [ + "17.5.0", + "17.18.0", + "17.21.0", + "17.28.0", + "17.51.0", + "17.60.0", + "17.69.0", + "17.71.0", + "17.77.0", + "17.84.0" + ], + "lots": [ + "17.4.0" + ], + "louise lemieux bérubé": [ + "17.50.0" + ], + "lousy software": [ + "17.35.0", + "17.35.0" + ], + "love letter": [ + "17.94.0" + ], + "love letter generator": [ + "17.94.0", + "17.94.0" + ], + "lovely african woman": [ + "17.25.0" + ], + "lovers play games": [ + "17.83.0" + ], + "lovinck": [ + "17.46.2" + ], + "lovink": [ + "17.1.0", + "17.21.0", + "17.22.0", + "17.23.0", + "17.23.1", + "17.45.0", + "17.76.0" + ], + "lovink charles green": [ + "17.46.0" + ], + "lovink călin": [ + "17.40.0" + ], + "lovink călin dan": [ + "17.40.0" + ], + "lovink doug": [ + "17.45.0" + ], + "lovink doug henwood": [ + "17.45.0" + ], + "lovink held": [ + "17.21.0" + ], + "lovink hybrid": [ + "17.28.0" + ], + "lovink hybrid workspace": [ + "17.28.0" + ], + "lovink kevin": [ + "17.50.0" + ], + "lovink kevin murray": [ + "17.50.0" + ], + "lovink light": [ + "17.65.0" + ], + "lovink makrolab": [ + "17.24.0" + ], + "lovink micz": [ + "17.43.0", + "17.43.1" + ], + "lovink micz flor": [ + "17.43.0", + "17.43.1" + ], + "lovink peter lunenfeld": [ + "17.58.0" + ], + "lovink shu": [ + "17.6.0" + ], + "lovink shu lea": [ + "17.6.0" + ], + "lovink steven miller": [ + "17.80.0" + ], + "lovink toshiya ueno": [ + "17.8.0" + ], + "lovink viennese media": [ + "17.63.0" + ], + "lovink wrote": [ + "17.23.1" + ], + "low bit rate": [ + "17.43.1" + ], + "low bitrate": [ + "17.43.0" + ], + "low political profile": [ + "17.40.0" + ], + "low tech taking": [ + "17.43.0", + "17.43.1" + ], + "low-tech weapons": [ + "17.53.1" + ], + "lower income communities": [ + "17.21.0" + ], + "luchezar": [ + "17.28.0" + ], + "luchezar boyadjiev": [ + "17.28.0" + ], + "luciana parisi": [ + "17.91.0", + "17.91.0" + ], + "luciana parisi interview": [ + "17.91.0", + "17.91.0" + ], + "luis pérez": [ + "17.65.0" + ], + "lumby": [ + "17.59.0" + ], + "lunenfeld": [ + "17.58.3" + ], + "lunenfeld wrote": [ + "17.58.3" + ], + "lungs": [ + "17.95.0" + ], + "lutterberg": [ + "17.24.0" + ], + "lynn hershman leeson": [ + "17.53.0" + ], + "mac running webstar": [ + "17.0.0" + ], + "machine": [ + "17.18.0", + "17.95.0" + ], + "machine beats synchronize": [ + "17.42.0" + ], + "machines": [ + "17.58.1", + "17.92.0" + ], + "machines than social": [ + "17.58.1" + ], + "made": [ + "17.22.0", + "17.32.0", + "17.76.0" + ], + "made in januari": [ + "17.84.0" + ], + "made in march": [ + "17.2.0" + ], + "made with alexei": [ + "17.84.0" + ], + "magazine cover cds": [ + "17.41.0" + ], + "magazine frakcija": [ + "17.37.0" + ], + "magazine publishing": [ + "17.75.0" + ], + "magazine telepolis": [ + "17.61.0" + ], + "mailinglist adressed": [ + "17.17.0" + ], + "main design specification": [ + "17.65.0" + ], + "main moving force": [ + "17.57.0" + ], + "main operation": [ + "17.65.0" + ], + "main protagonist": [ + "17.65.0" + ], + "main scribus developer": [ + "17.93.0" + ], + "main stream critics": [ + "17.47.0" + ], + "main stream media": [ + "17.47.0" + ], + "mainstream": [ + "17.47.0", + "17.59.0" + ], + "mainstream media": [ + "17.36.0", + "17.47.0", + "17.47.0" + ], + "mainstream media especially": [ + "17.37.0" + ], + "mainstream media visit": [ + "17.47.0" + ], + "mainstream porn industry": [ + "17.6.0" + ], + "mainstream software": [ + "17.88.0" + ], + "mainstream western art": [ + "17.40.0" + ], + "maintained corporate office": [ + "17.87.0" + ], + "major": [ + "17.22.0" + ], + "major media outlets": [ + "17.30.0" + ], + "make": [ + "17.1.0", + "17.2.0", + "17.6.0", + "17.10.0", + "17.14.0", + "17.18.0", + "17.20.0", + "17.23.1", + "17.28.0", + "17.30.0", + "17.31.0", + "17.32.0", + "17.48.0", + "17.56.0", + "17.59.0", + "17.61.0", + "17.62.0", + "17.67.0", + "17.72.0", + "17.74.0", + "17.81.0", + "17.84.0", + "17.86.0", + "17.93.0" + ], + "make media art": [ + "17.67.0" + ], + "make public research": [ + "17.14.0" + ], + "make radio": [ + "17.11.0" + ], + "make software art": [ + "17.10.0" + ], + "makes": [ + "17.14.0", + "17.93.0" + ], + "makes artistic sense": [ + "17.77.0" + ], + "makes floss developer": [ + "17.93.0" + ], + "makes good": [ + "17.58.2" + ], + "makes good things": [ + "17.58.2" + ], + "making": [ + "17.4.0", + "17.58.1" + ], + "making net art": [ + "17.57.0" + ], + "making virtual": [ + "17.58.1" + ], + "making virtual machines": [ + "17.58.1" + ], + "making works unmediated": [ + "17.46.2" + ], + "makrolab": [ + "17.24.0" + ], + "male dominance": [ + "17.6.0" + ], + "malicious code": [ + "17.92.0" + ], + "malicious intended crime": [ + "17.92.0" + ], + "malicious payload": [ + "17.92.0" + ], + "malicious software started": [ + "17.92.0" + ], + "malnutrition rate immediately": [ + "17.22.0" + ], + "managed health care": [ + "17.7.0" + ], + "managerial techniques": [ + "17.31.0" + ], + "manchester university press": [ + "17.71.0" + ], + "mandatory gsp device": [ + "17.30.0" + ], + "manic tulipomania aspect": [ + "17.45.0" + ], + "manipulate singular results": [ + "17.93.0" + ], + "manovich": [ + "17.49.0" + ], + "manual labour involved": [ + "17.13.0" + ], + "manuel": [ + "17.58.4" + ], + "manuel castells": [ + "17.58.1", + "17.58.4" + ], + "manuel castells today": [ + "17.58.1", + "17.58.4" + ], + "manufacture fashion gear": [ + "17.8.0" + ], + "map": [ + "17.81.0" + ], + "map maker trying": [ + "17.81.0" + ], + "marc": [ + "17.1.0" + ], + "marc chemillier": [ + "17.1.0" + ], + "march": [ + "17.2.0" + ], + "margins amusing ourselves": [ + "17.75.0" + ], + "maribor": [ + "17.77.1" + ], + "maribor fans": [ + "17.89.0" + ], + "maribor football fans": [ + "17.89.0" + ], + "marion": [ + "17.31.0" + ], + "marion von": [ + "17.31.0" + ], + "marion von osten": [ + "17.31.0", + "17.31.0" + ], + "marius babias=b9 compilation": [ + "17.11.0" + ], + "mark": [ + "17.60.0" + ], + "mark bain": [ + "17.60.0" + ], + "mark coté": [ + "17.12.0" + ], + "mark coté describes": [ + "17.12.0" + ], + "mark dery": [ + "17.78.0" + ], + "market": [ + "17.22.0", + "17.45.0", + "17.48.0", + "17.80.0" + ], + "market forces": [ + "17.17.0" + ], + "market looks incomprehensible": [ + "17.45.0" + ], + "market subcultural desire": [ + "17.31.0" + ], + "markets": [ + "17.22.0", + "17.45.0" + ], + "markets actually fall": [ + "17.22.0" + ], + "marko": [ + "17.5.0", + "17.24.0" + ], + "marko kosnik": [ + "17.5.0", + "17.5.0" + ], + "marko kosnik told": [ + "17.5.0" + ], + "marko peljhan": [ + "17.24.0", + "17.24.0" + ], + "marko peljhan/projekt atol": [ + "17.24.0" + ], + "marleen": [ + "17.26.0" + ], + "marleen stikker": [ + "17.26.0" + ], + "marloes de valk": [ + "17.94.0" + ], + "married couples": [ + "17.46.0" + ], + "marvelous negative dialectics": [ + "17.45.0" + ], + "marx beyond marx": [ + "17.31.0" + ], + "marx=b9 notions": [ + "17.35.0" + ], + "mary": [ + "17.78.0" + ], + "mary dery": [ + "17.78.0" + ], + "maría cecilia": [ + "17.66.0" + ], + "maría cecilia fernández": [ + "17.66.0", + "17.66.0" + ], + "mask": [ + "17.86.0" + ], + "mask mongrel": [ + "17.86.0" + ], + "masks": [ + "17.86.0" + ], + "masks perform operations": [ + "17.86.0" + ], + "masochist assemblage": [ + "17.91.0" + ], + "mass": [ + "17.48.0", + "17.68.0" + ], + "mass communication": [ + "17.68.0" + ], + "mass communication eludes": [ + "17.68.0" + ], + "mass communication theory": [ + "17.15.0" + ], + "mass manipulative form": [ + "17.59.0" + ], + "mass media": [ + "17.75.0" + ], + "mass medium": [ + "17.59.0" + ], + "mass medium refers": [ + "17.11.0" + ], + "masses": [ + "17.48.0" + ], + "massive ad campaigns": [ + "17.4.0" + ], + "matching technologies": [ + "17.30.0" + ], + "matching technologies expert": [ + "17.30.0" + ], + "material commenting digitally": [ + "17.40.0" + ], + "material labour conditions": [ + "17.13.0" + ], + "materialâs ability": [ + "17.95.0" + ], + "matthew": [ + "17.76.0", + "17.86.0" + ], + "matthew fuller": [ + "17.10.0", + "17.68.0", + "17.76.0", + "17.86.0" + ], + "maximum action": [ + "17.4.0" + ], + "maximum community awareness": [ + "17.87.0" + ], + "maybe answer sometimes": [ + "17.3.0" + ], + "maybe itâs": [ + "17.69.0" + ], + "maybe iâm": [ + "17.95.0" + ], + "mayday": [ + "17.66.0" + ], + "mcchesney": [ + "17.75.0" + ], + "mcf": [ + "17.66.0" + ], + "mckenzie wark": [ + "17.48.0" + ], + "meaning": [ + "17.15.0" + ], + "meaningful political communities": [ + "17.15.0" + ], + "meaningless content": [ + "17.15.0" + ], + "means apple focuses": [ + "17.38.0" + ], + "means equally loved": [ + "17.70.0" + ], + "means highly socialized": [ + "17.18.0" + ], + "means inventing procedures": [ + "17.39.0" + ], + "means taking care": [ + "17.68.0" + ], + "meanwhile che guavara": [ + "17.48.0" + ], + "media": [ + "17.0.0", + "17.1.0", + "17.4.0", + "17.6.0", + "17.8.0", + "17.9.0", + "17.11.0", + "17.12.0", + "17.13.0", + "17.14.0", + "17.15.0", + "17.16.1", + "17.16.2", + "17.16.3", + "17.23.0", + "17.26.0", + "17.28.0", + "17.29.0", + "17.30.0", + "17.35.0", + "17.36.0", + "17.38.0", + "17.40.0", + "17.41.0", + "17.42.0", + "17.43.0", + "17.43.1", + "17.46.0", + "17.47.0", + "17.48.0", + "17.49.0", + "17.50.0", + "17.51.0", + "17.52.0", + "17.56.0", + "17.58.0", + "17.59.0", + "17.61.0", + "17.63.0", + "17.67.0", + "17.68.0", + "17.69.0", + "17.71.0", + "17.73.0", + "17.75.0", + "17.83.0", + "17.86.0", + "17.89.0", + "17.92.0", + "17.95.0" + ], + "media + technology": [ + "17.0.0" + ], + "media activism": [ + "17.6.0", + "17.8.0", + "17.15.0", + "17.15.0" + ], + "media actually reports": [ + "17.37.0" + ], + "media aesthetics": [ + "17.15.0" + ], + "media alternative": [ + "17.12.0" + ], + "media archaeology": [ + "17.69.0" + ], + "media art cliques": [ + "17.41.0" + ], + "media art critics": [ + "17.67.0", + "17.67.0" + ], + "media art crowd": [ + "17.67.0", + "17.67.0" + ], + "media art education": [ + "17.35.0" + ], + "media art essays": [ + "17.67.0", + "17.67.0" + ], + "media art event": [ + "17.40.0" + ], + "media art exhibitions": [ + "17.67.0" + ], + "media art piece": [ + "17.67.0" + ], + "media art work": [ + "17.46.0" + ], + "media art works": [ + "17.58.0" + ], + "media art world": [ + "17.41.0", + "17.41.0" + ], + "media artist": [ + "17.56.0" + ], + "media arts &": [ + "17.15.0" + ], + "media arts education": [ + "17.11.0", + "17.11.0" + ], + "media arts field": [ + "17.6.0", + "17.6.0" + ], + "media arts lacks": [ + "17.8.0" + ], + "media arts organization": [ + "17.40.0" + ], + "media bla-blog": [ + "17.36.0" + ], + "media blitz": [ + "17.47.0" + ], + "media bloggity": [ + "17.36.0" + ], + "media bloggity blog": [ + "17.36.0" + ], + "media business": [ + "17.8.0" + ], + "media business forces": [ + "17.30.0" + ], + "media buy people": [ + "17.59.0", + "17.59.0" + ], + "media center": [ + "17.35.0" + ], + "media centre": [ + "17.89.0" + ], + "media channels": [ + "17.43.0", + "17.43.1" + ], + "media channels looking": [ + "17.89.0" + ], + "media commentators": [ + "17.59.0" + ], + "media computers": [ + "17.49.0" + ], + "media computers enable": [ + "17.49.0" + ], + "media consumers access": [ + "17.59.0" + ], + "media covering": [ + "17.89.0" + ], + "media create": [ + "17.13.0" + ], + "media critic look": [ + "17.59.0" + ], + "media cultural producers": [ + "17.67.0" + ], + "media culture": [ + "17.9.0", + "17.41.0", + "17.56.0", + "17.58.0", + "17.92.0" + ], + "media culture re": [ + "17.46.0" + ], + "media cultures": [ + "17.16.2" + ], + "media design": [ + "17.14.0", + "17.38.0", + "17.58.0" + ], + "media design students": [ + "17.38.0", + "17.38.0" + ], + "media dictatorship": [ + "17.12.0" + ], + "media don": [ + "17.56.0" + ], + "media employees": [ + "17.13.0" + ], + "media employees helped": [ + "17.13.0" + ], + "media equipment": [ + "17.56.0" + ], + "media event": [ + "17.56.0" + ], + "media files": [ + "17.43.0", + "17.43.1" + ], + "media firms": [ + "17.75.0" + ], + "media generation": [ + "17.63.0" + ], + "media handle information": [ + "17.53.0" + ], + "media induced": [ + "17.40.0" + ], + "media industry casualties": [ + "17.85.0" + ], + "media intervention": [ + "17.89.0" + ], + "media literacy": [ + "17.59.0" + ], + "media makers": [ + "17.47.0" + ], + "media markt": [ + "17.69.0" + ], + "media moralism": [ + "17.59.0" + ], + "media necessarily": [ + "17.16.2" + ], + "media net art": [ + "17.51.0" + ], + "media ontological question": [ + "17.52.0" + ], + "media outlets": [ + "17.30.0" + ], + "media philosopher frank": [ + "17.63.0" + ], + "media philosophy": [ + "17.63.0" + ], + "media philosophy enter": [ + "17.35.0" + ], + "media philosophy starts": [ + "17.63.0", + "17.63.0" + ], + "media player": [ + "17.43.0", + "17.43.1" + ], + "media power": [ + "17.1.0" + ], + "media powers deal": [ + "17.23.0" + ], + "media practice": [ + "17.67.0" + ], + "media recuperation phase": [ + "17.40.0" + ], + "media reporting": [ + "17.59.0" + ], + "media rights": [ + "17.89.0" + ], + "media sphere": [ + "17.59.0" + ], + "media system": [ + "17.75.0" + ], + "media tacticians": [ + "17.16.2" + ], + "media technologies": [ + "17.58.0", + "17.89.0" + ], + "media technology": [ + "17.30.0" + ], + "media technology themselves": [ + "17.8.0" + ], + "media themselve": [ + "17.1.0" + ], + "media theorist": [ + "17.8.0", + "17.15.0", + "17.56.0" + ], + "media theory courses": [ + "17.63.0" + ], + "media tools": [ + "17.16.2" + ], + "media tools plays": [ + "17.16.1", + "17.16.2", + "17.16.3" + ], + "media tribes": [ + "17.8.0" + ], + "media vectors": [ + "17.48.0" + ], + "media war": [ + "17.4.0" + ], + "media wars": [ + "17.29.0" + ], + "mediated presence generates": [ + "17.14.0" + ], + "medical technology inserted": [ + "17.95.0" + ], + "mediterranean debt": [ + "17.22.0", + "17.22.0" + ], + "medium": [ + "17.4.0", + "17.57.0", + "17.68.0", + "17.69.0" + ], + "medosch": [ + "17.17.0" + ], + "meeting": [ + "17.12.0" + ], + "meeting franco berardi": [ + "17.12.0", + "17.12.0" + ], + "meeting in ljubljana": [ + "17.19.0" + ], + "meetings": [ + "17.16.1" + ], + "melbourne": [ + "17.50.0" + ], + "melbourne albanians": [ + "17.50.0" + ], + "melbourne albanians initially": [ + "17.50.0" + ], + "melbourne albanians originate": [ + "17.50.0", + "17.50.0" + ], + "melbourne and hong": [ + "17.56.0" + ], + "melbourne art": [ + "17.50.0" + ], + "melbourne art curator": [ + "17.50.0", + "17.50.0" + ], + "melbourne cultural life": [ + "17.50.0" + ], + "meld rigorous art": [ + "17.58.0" + ], + "melkweg": [ + "17.16.1" + ], + "memetic rhetoric play": [ + "17.78.0" + ], + "memory": [ + "17.20.0" + ], + "mental wheels spinning": [ + "17.13.0" + ], + "mention african rights": [ + "17.29.0" + ], + "mention structural weakness": [ + "17.10.0" + ], + "mention walker evans": [ + "17.26.0" + ], + "mentioned office software": [ + "17.87.0" + ], + "mentioned terre thaemlitz": [ + "17.74.0" + ], + "merchant navyâs 28": [ + "17.95.0" + ], + "mere practical device": [ + "17.50.0" + ], + "merge bodily functions": [ + "17.6.0" + ], + "mervin": [ + "17.87.0" + ], + "mervin jarman": [ + "17.87.0" + ], + "mess called global": [ + "17.68.0" + ], + "messy reality": [ + "17.65.0" + ], + "met": [ + "17.85.0" + ], + "met jon bains": [ + "17.85.0", + "17.85.0" + ], + "met les motherby": [ + "17.89.0" + ], + "met nick land": [ + "17.61.0" + ], + "meta level": [ + "17.6.0" + ], + "meta role model": [ + "17.31.0" + ], + "metal plates bearing": [ + "17.95.0" + ], + "meter gear": [ + "17.24.0" + ], + "mexican": [ + "17.65.0" + ], + "mexican art": [ + "17.65.0" + ], + "mexican company": [ + "17.65.0" + ], + "mexican history": [ + "17.65.0" + ], + "mexican institute": [ + "17.65.0" + ], + "mexican scholars consider": [ + "17.65.0" + ], + "mexican technological": [ + "17.65.0", + "17.65.0" + ], + "mexican technological culture": [ + "17.65.0", + "17.65.0" + ], + "mexico": [ + "17.65.0" + ], + "mexico city": [ + "17.65.0" + ], + "mexico city citizens": [ + "17.65.0" + ], + "mez/mary anne breeze": [ + "17.71.0" + ], + "mf>describe backspace": [ + "17.85.0" + ], + "mi machine": [ + "17.86.0" + ], + "michael": [ + "17.37.0", + "17.39.0" + ], + "michael dickreiter=b9s": [ + "17.11.0" + ], + "michael dieter": [ + "17.69.0" + ], + "michael hardt": [ + "17.37.0", + "17.39.0", + "17.39.0", + "17.39.2" + ], + "michael hardt calls": [ + "17.39.0", + "17.39.0" + ], + "michael hardt drily": [ + "17.39.0", + "17.39.0" + ], + "michael hardt means": [ + "17.39.2" + ], + "michael hardt visited": [ + "17.37.0" + ], + "michael van eeden": [ + "17.38.0" + ], + "michel foucault writes": [ + "17.46.0" + ], + "micro fm movement": [ + "17.11.0" + ], + "micro media actions": [ + "17.12.0" + ], + "microfascist assemblage spreading": [ + "17.91.0" + ], + "microwave videolink transmitter": [ + "17.24.0", + "17.24.0" + ], + "micz": [ + "17.43.0", + "17.43.1" + ], + "micz flor": [ + "17.43.0", + "17.43.0", + "17.43.1", + "17.43.1" + ], + "micz flor lived": [ + "17.43.0", + "17.43.0", + "17.43.1", + "17.43.1" + ], + "mid 90s": [ + "17.8.0" + ], + "mid 90s media": [ + "17.8.0" + ], + "middle class family": [ + "17.40.0" + ], + "middle class utopias": [ + "17.13.0" + ], + "middle range apparatus": [ + "17.61.0" + ], + "mieke": [ + "17.38.0" + ], + "mieke gerritzen": [ + "17.38.0", + "17.38.0" + ], + "migrant media video": [ + "17.86.0" + ], + "migrants encounter heavy": [ + "17.11.0" + ], + "miklos": [ + "17.4.0" + ], + "miklos erdely": [ + "17.4.0" + ], + "miklos erdely told": [ + "17.4.0" + ], + "miklos peternak published": [ + "17.4.0" + ], + "milan": [ + "17.66.0" + ], + "milan collective chainworkers": [ + "17.66.0", + "17.66.0" + ], + "militarized gps played": [ + "17.53.0" + ], + "military": [ + "17.29.0", + "17.42.0", + "17.53.0" + ], + "militry tribunal idea": [ + "17.47.0" + ], + "milking identity data": [ + "17.30.0" + ], + "miller": [ + "17.80.0" + ], + "miltos manetas": [ + "17.68.0" + ], + "mimic adobe photoshop": [ + "17.35.0" + ], + "mimic military searchlights": [ + "17.65.0" + ], + "mind": [ + "17.32.0" + ], + "mind parries participatorydemocracy": [ + "17.78.0" + ], + "mindaugas": [ + "17.54.0" + ], + "mindaugas gapsevicius": [ + "17.54.0" + ], + "miners": [ + "17.95.0" + ], + "mines": [ + "17.95.0" + ], + "mini fm": [ + "17.43.0", + "17.43.1" + ], + "mini fm net": [ + "17.43.0", + "17.43.1" + ], + "miniature world war": [ + "17.53.0" + ], + "minimalist modularity brings": [ + "17.93.0" + ], + "minimum amount": [ + "17.7.0" + ], + "minimum qualifying definitions": [ + "17.92.0" + ], + "minister": [ + "17.17.0" + ], + "ministers declaration": [ + "17.17.0", + "17.17.0" + ], + "ministry": [ + "17.5.0" + ], + "minutes": [ + "17.16.0", + "17.16.2", + "17.16.3" + ], + "minutes forces people": [ + "17.38.0" + ], + "minutes presentation": [ + "17.16.0", + "17.16.3" + ], + "mir": [ + "17.24.0" + ], + "mirko condic": [ + "17.39.1" + ], + "mirroring text regime": [ + "17.9.0" + ], + "misunderstanding": [ + "17.58.1", + "17.58.2" + ], + "misunderstanding to clear": [ + "17.58.2", + "17.58.3" + ], + "mit press": [ + "17.58.0" + ], + "mixed visual space": [ + "17.41.0" + ], + "mixing design geneology": [ + "17.93.0" + ], + "mixing universal": [ + "17.93.0" + ], + "mobile": [ + "17.57.0", + "17.89.0" + ], + "mobile media": [ + "17.89.0" + ], + "mobile media laboratory": [ + "17.87.0" + ], + "mobile media model": [ + "17.89.0" + ], + "mobile phone": [ + "17.89.0" + ], + "mobile phone service": [ + "17.89.0" + ], + "mode": [ + "17.73.0" + ], + "model": [ + "17.19.0", + "17.31.0" + ], + "modeling behavior": [ + "17.14.0" + ], + "moderated mailing": [ + "17.6.1" + ], + "moderated mailing list": [ + "17.6.0", + "17.6.1", + "17.6.1", + "17.7.0", + "17.8.0", + "17.9.0", + "17.10.0", + "17.11.0", + "17.12.0", + "17.13.0", + "17.14.0", + "17.15.0", + "17.30.0", + "17.31.0", + "17.32.0", + "17.33.0", + "17.34.0", + "17.35.0", + "17.36.0", + "17.37.0", + "17.38.0", + "17.39.0", + "17.39.1", + "17.39.2", + "17.40.0", + "17.41.0", + "17.42.0", + "17.43.0", + "17.43.1", + "17.44.0", + "17.45.0", + "17.46.0", + "17.46.1", + "17.46.2", + "17.47.0", + "17.48.0", + "17.49.0", + "17.50.0", + "17.51.0", + "17.52.0", + "17.53.0", + "17.53.1", + "17.54.0", + "17.55.0", + "17.56.0", + "17.57.0", + "17.58.0", + "17.58.1", + "17.58.2", + "17.58.3", + "17.58.4", + "17.59.0", + "17.60.0", + "17.61.0", + "17.62.0", + "17.63.0", + "17.64.0", + "17.65.0", + "17.66.0", + "17.68.0", + "17.69.0", + "17.74.0", + "17.81.0", + "17.82.0", + "17.87.0", + "17.88.0", + "17.89.0", + "17.90.0", + "17.91.0", + "17.92.0", + "17.93.0", + "17.94.0", + "17.95.0" + ], + "modern body work": [ + "17.73.0" + ], + "modern commercial communication": [ + "17.68.0" + ], + "modern digital devices": [ + "17.68.0" + ], + "modern décor": [ + "17.42.0" + ], + "modern era": [ + "17.37.0" + ], + "modern european political": [ + "17.37.0" + ], + "modern media culture": [ + "17.92.0" + ], + "modern military technology": [ + "17.39.0", + "17.39.1" + ], + "modern paradigm": [ + "17.68.0" + ], + "modern programs including": [ + "17.11.0" + ], + "modern revolutions": [ + "17.37.0" + ], + "modern scientific author": [ + "17.63.0" + ], + "modern social organization": [ + "17.68.0" + ], + "modern technology": [ + "17.39.0" + ], + "modern transistor radio": [ + "17.69.0" + ], + "molar organizations operating": [ + "17.91.0" + ], + "molecular model resulting": [ + "17.88.0" + ], + "molecular structures created": [ + "17.88.0" + ], + "moment actually contributes": [ + "17.58.0" + ], + "moment hull city": [ + "17.89.0" + ], + "momentary journalistic surplus": [ + "17.63.0" + ], + "monde": [ + "17.44.0" + ], + "mondo": [ + "17.58.2" + ], + "money": [ + "17.9.0", + "17.22.0", + "17.23.1", + "17.45.0" + ], + "money goes exclusively": [ + "17.7.0" + ], + "mongrel": [ + "17.86.0" + ], + "mongrel population chips": [ + "17.87.0" + ], + "mongrel work": [ + "17.86.0" + ], + "monika": [ + "17.5.0" + ], + "monika glahn": [ + "17.5.0" + ], + "monologic mantras": [ + "17.65.0" + ], + "monopolize live events": [ + "17.61.0" + ], + "monopoly legislation": [ + "17.78.0" + ], + "month": [ + "17.85.0" + ], + "monumental red rock": [ + "17.58.0" + ], + "monumental scale": [ + "17.65.0" + ], + "monumental size makes": [ + "17.65.0" + ], + "moscow": [ + "17.84.0" + ], + "moscow conceptional circle": [ + "17.28.0" + ], + "motivations": [ + "17.46.2" + ], + "mouchette": [ + "17.32.0" + ], + "mounted display allows": [ + "17.42.0" + ], + "mounted smart bombs": [ + "17.42.0" + ], + "mouths": [ + "17.86.0" + ], + "move beyond representation": [ + "17.41.0" + ], + "move towards centralisation": [ + "17.87.0" + ], + "move towards innerspace": [ + "17.61.0" + ], + "movement": [ + "17.1.0", + "17.3.0", + "17.9.0", + "17.13.0", + "17.37.0", + "17.44.0", + "17.47.0", + "17.66.0", + "17.90.0" + ], + "movement media": [ + "17.47.0" + ], + "movement media comng": [ + "17.47.0", + "17.47.0" + ], + "movements": [ + "17.37.0", + "17.39.2", + "17.91.0" + ], + "movements hardt": [ + "17.39.2", + "17.39.2" + ], + "movie": [ + "17.74.0" + ], + "movimento del cognitariato": [ + "17.90.0" + ], + "moving towards": [ + "17.9.0" + ], + "msg body": [ + "17.6.1", + "17.18.0" + ], + "multi layered meanings": [ + "17.52.0" + ], + "multicellular organic life": [ + "17.91.0" + ], + "multilingual republicart website": [ + "17.31.0" + ], + "multimedia": [ + "17.77.1" + ], + "multimedia center": [ + "17.77.1" + ], + "multimedia center kibla": [ + "17.77.1", + "17.77.1" + ], + "multimedia law": [ + "17.17.0" + ], + "multiple dwelling piece": [ + "17.51.0" + ], + "multiple human force": [ + "17.37.0" + ], + "multitude": [ + "17.37.0", + "17.39.2" + ], + "multitudes": [ + "17.31.0" + ], + "mumia": [ + "17.47.0" + ], + "mumia abu jamal": [ + "17.47.0" + ], + "munich kunstverein": [ + "17.31.0" + ], + "murray": [ + "17.50.0" + ], + "museum": [ + "17.26.0" + ], + "museums": [ + "17.26.0" + ], + "music": [ + "17.61.0" + ], + "music scenes": [ + "17.41.0" + ], + "musicians": [ + "17.16.1" + ], + "mutant ninja": [ + "17.58.2" + ], + "mutant ninja hackers": [ + "17.58.2" + ], + "mute inscrutable legitimator": [ + "17.78.0" + ], + "mutual process whereby": [ + "17.91.0" + ], + "myopic short sightedness": [ + "17.80.0" + ], + "nam jun paik": [ + "17.52.0" + ], + "name.space": [ + "17.0.0", + "17.23.0" + ], + "name.space nameservers": [ + "17.0.0" + ], + "name.space toplevel": [ + "17.0.0" + ], + "name.space works": [ + "17.0.0" + ], + "napster mp3 craze": [ + "17.56.0" + ], + "narrative": [ + "17.49.0", + "17.73.0" + ], + "narrow studio space": [ + "17.12.0" + ], + "narrow time frame": [ + "17.34.0" + ], + "narrowband broadcast networks": [ + "17.30.0" + ], + "narrowly configured sets": [ + "17.88.0" + ], + "narrowly technical approaches": [ + "17.93.0" + ], + "natalie": [ + "17.83.0" + ], + "natalie bookchin": [ + "17.83.0" + ], + "nathalie": [ + "17.16.0" + ], + "nation state": [ + "17.78.0" + ], + "nation-state": [ + "17.44.0" + ], + "national": [ + "17.12.0", + "17.27.0", + "17.48.0", + "17.53.1", + "17.80.0", + "17.86.0" + ], + "national compromise": [ + "17.48.0" + ], + "national computer art": [ + "17.4.0" + ], + "national gallery": [ + "17.86.0" + ], + "national government": [ + "17.12.0" + ], + "national government level": [ + "17.80.0" + ], + "national heritage": [ + "17.86.0", + "17.86.0" + ], + "national heritage crest": [ + "17.86.0" + ], + "national heritage project": [ + "17.86.0" + ], + "national identity": [ + "17.27.0" + ], + "national information infrastructure": [ + "17.80.0" + ], + "national infrastructure": [ + "17.80.0" + ], + "national liberation": [ + "17.53.1" + ], + "national liberation war": [ + "17.53.1" + ], + "national metal": [ + "17.95.0" + ], + "national missile shield": [ + "17.42.0" + ], + "national news": [ + "17.12.0" + ], + "national opera": [ + "17.57.0" + ], + "national party politics": [ + "17.12.0" + ], + "national pride": [ + "17.4.0" + ], + "national research": [ + "17.80.0" + ], + "national science foundation": [ + "17.0.0" + ], + "national security agency": [ + "17.0.0" + ], + "national telecommunication monopolies": [ + "17.34.0" + ], + "national telecommunications": [ + "17.47.0" + ], + "national territories": [ + "17.48.0" + ], + "national workshops": [ + "17.39.0" + ], + "native canadian american": [ + "17.25.0" + ], + "native mexican practice": [ + "17.65.0" + ], + "natura naturans": [ + "17.92.0" + ], + "natural": [ + "17.86.0" + ], + "natural language rules": [ + "17.70.0" + ], + "natural selection": [ + "17.86.0", + "17.86.0" + ], + "natural selection front": [ + "17.86.0", + "17.86.0" + ], + "natural selection offers": [ + "17.86.0", + "17.86.0" + ], + "natural selection project": [ + "17.86.0", + "17.86.0" + ], + "natural selection started": [ + "17.86.0", + "17.86.0" + ], + "natural witnessed presence": [ + "17.14.0" + ], + "nature": [ + "17.48.0", + "17.91.0" + ], + "nature wolf blitzer": [ + "17.36.0", + "17.36.0" + ], + "naval power": [ + "17.53.0" + ], + "navigate": [ + "17.57.0" + ], + "navigate data environments": [ + "17.38.0" + ], + "naïve": [ + "17.70.0" + ], + "naïve understanding": [ + "17.70.0" + ], + "nearly infinite amount": [ + "17.7.0" + ], + "necessarily": [ + "17.62.0" + ], + "necessarily implies": [ + "17.53.0" + ], + "necessarily progressive politically": [ + "17.69.0" + ], + "nectar": [ + "17.89.0" + ], + "neglected nor denied": [ + "17.14.0" + ], + "negotiate using": [ + "17.7.0" + ], + "negri": [ + "17.39.2" + ], + "negri and lazzarato": [ + "17.9.0" + ], + "negri readers": [ + "17.39.2" + ], + "neil strauss=b9": [ + "17.11.0" + ], + "neither access": [ + "17.52.0" + ], + "neither elitist avant": [ + "17.52.0" + ], + "neither represent truth": [ + "17.52.0" + ], + "neither spectacular failures": [ + "17.89.0" + ], + "nella rete": [ + "17.3.0" + ], + "nepal": [ + "17.43.0", + "17.43.1" + ], + "net": [ + "17.0.0", + "17.1.0", + "17.3.0", + "17.5.0", + "17.6.0", + "17.9.0", + "17.17.0", + "17.18.0", + "17.21.0", + "17.23.0", + "17.26.0", + "17.30.0", + "17.32.0", + "17.33.0", + "17.40.0", + "17.49.0", + "17.51.0", + "17.54.0", + "17.57.0", + "17.58.4", + "17.59.0", + "17.68.0", + "17.70.0", + "17.71.0", + "17.76.0", + "17.77.0", + "17.79.0", + "17.80.0", + "17.81.0", + "17.82.0", + "17.84.0" + ], + "net aid campaign": [ + "17.11.0" + ], + "net art achieves": [ + "17.41.0" + ], + "net art colleagues": [ + "17.70.0", + "17.70.0" + ], + "net art community": [ + "17.54.0" + ], + "net art competition": [ + "17.70.0", + "17.70.0" + ], + "net art culture": [ + "17.71.0", + "17.71.0" + ], + "net art dead": [ + "17.49.0" + ], + "net art generator": [ + "17.70.0" + ], + "net art generators": [ + "17.70.0", + "17.70.0" + ], + "net art interesting": [ + "17.70.0" + ], + "net art looks": [ + "17.40.0" + ], + "net art people": [ + "17.32.0", + "17.32.0" + ], + "net art pices": [ + "17.81.0", + "17.81.0" + ], + "net art piece": [ + "17.51.0", + "17.57.0", + "17.57.0", + "17.81.0", + "17.81.0" + ], + "net art product": [ + "17.40.0" + ], + "net art projects": [ + "17.54.0", + "17.54.0", + "17.77.0", + "17.77.0" + ], + "net art viruses": [ + "17.92.0" + ], + "net artist": [ + "17.54.0", + "17.70.0" + ], + "net artists": [ + "17.77.0" + ], + "net artists don": [ + "17.10.0" + ], + "net arts": [ + "17.54.0" + ], + "net changed considerably": [ + "17.30.0" + ], + "net connection": [ + "17.54.0" + ], + "net criticism": [ + "17.6.1", + "17.54.0", + "17.58.3", + "17.58.4", + "17.63.0", + "17.80.0" + ], + "net culture brings": [ + "17.80.0" + ], + "net evolve": [ + "17.80.0" + ], + "net idealism": [ + "17.80.0" + ], + "net indeed": [ + "17.70.0" + ], + "net recently kicked": [ + "17.0.0" + ], + "net reporting marked": [ + "17.3.0", + "17.3.0" + ], + "net.art in london": [ + "17.84.0" + ], + "net.art picture": [ + "17.79.0" + ], + "net.radio": [ + "17.43.0", + "17.43.1" + ], + "netscape browser software": [ + "17.75.0" + ], + "nettime": [ + "17.6.1", + "17.19.0", + "17.29.0", + "17.33.0", + "17.39.1", + "17.39.2", + "17.44.0", + "17.46.2", + "17.53.1", + "17.54.0", + "17.58.1", + "17.58.2", + "17.58.3", + "17.58.4", + "17.63.0", + "17.77.1", + "17.79.0", + "17.84.0" + ], + "nettime unstable digest": [ + "17.10.0" + ], + "nettime-l": [ + "17.6.1" + ], + "nettimešs history": [ + "17.46.1" + ], + "network": [ + "17.0.0", + "17.2.0", + "17.3.0", + "17.9.0", + "17.23.0", + "17.30.0", + "17.43.0", + "17.43.1", + "17.71.0", + "17.80.0", + "17.90.0" + ], + "network distribution tends": [ + "17.93.0" + ], + "network doesn": [ + "17.9.0" + ], + "network paradigms": [ + "17.92.0" + ], + "network sector": [ + "17.9.0" + ], + "network societies": [ + "17.92.0" + ], + "network society": [ + "17.30.0", + "17.30.0" + ], + "network solutions": [ + "17.0.0", + "17.23.0", + "17.23.0" + ], + "network solutions controls": [ + "17.0.0", + "17.0.0" + ], + "network solutions inc": [ + "17.23.0" + ], + "network solutions inc.": [ + "17.23.0" + ], + "network solutions rootserver": [ + "17.0.0" + ], + "network technology nor": [ + "17.43.0", + "17.43.1" + ], + "networked art": [ + "17.58.0" + ], + "networked context": [ + "17.64.0" + ], + "networked economy shouldn": [ + "17.58.0" + ], + "networked media": [ + "17.15.0" + ], + "networked revolutionary leader": [ + "17.65.0" + ], + "networked thinking looks": [ + "17.61.0" + ], + "networks": [ + "17.3.0", + "17.9.0", + "17.30.0", + "17.71.0", + "17.80.0", + "17.92.0" + ], + "networks contribute": [ + "17.30.0" + ], + "new-media art education": [ + "17.35.0" + ], + "newly constituted level": [ + "17.91.0" + ], + "newly established v2lab": [ + "17.40.0" + ], + "news announcement concerning": [ + "17.28.0" + ], + "news media": [ + "17.29.0" + ], + "newton harrison": [ + "17.46.0" + ], + "nfc chips using": [ + "17.69.0" + ], + "ngo": [ + "17.25.0" + ], + "ngos": [ + "17.25.0", + "17.29.0", + "17.34.0" + ], + "nic land": [ + "17.61.0" + ], + "nice": [ + "17.69.0" + ], + "night": [ + "17.5.0" + ], + "night vision cameras": [ + "17.42.0" + ], + "nike phrase correctly": [ + "17.9.0" + ], + "nineteenth century hayday": [ + "17.37.0" + ], + "ninja hackers": [ + "17.58.2" + ], + "nl/~nettime/ contact": [ + "17.0.0", + "17.1.0", + "17.2.0", + "17.3.0", + "17.4.0", + "17.5.0", + "17.17.0", + "17.18.0", + "17.19.0", + "17.20.0", + "17.21.0", + "17.22.0", + "17.23.0", + "17.23.1", + "17.24.0", + "17.25.0", + "17.26.0", + "17.27.0", + "17.28.0", + "17.29.0", + "17.72.0", + "17.73.0", + "17.75.0", + "17.76.0", + "17.77.0", + "17.77.1", + "17.78.0", + "17.79.0", + "17.84.0", + "17.85.0", + "17.86.0" + ], + "nobel peace prize": [ + "17.77.0" + ], + "node": [ + "17.88.0" + ], + "nodes carries information": [ + "17.88.0" + ], + "nomadic cultural analysis": [ + "17.92.0" + ], + "nomadsland magazine": [ + "17.61.0" + ], + "non-open source software": [ + "17.35.0" + ], + "nonorganic electronic network": [ + "17.90.0" + ], + "nor spectacular successes": [ + "17.89.0" + ], + "norm setting function": [ + "17.34.0" + ], + "normal art scene": [ + "17.82.0" + ], + "normal objects": [ + "17.82.0" + ], + "normal radio": [ + "17.43.0", + "17.43.1" + ], + "north east coast": [ + "17.89.0" + ], + "northern europe inhabit": [ + "17.12.0" + ], + "nosce te ipsum": [ + "17.4.0" + ], + "notion": [ + "17.15.0", + "17.18.0", + "17.25.0", + "17.29.0", + "17.92.0" + ], + "notion of sharing": [ + "17.15.0" + ], + "novel titled season": [ + "17.8.0" + ], + "novi": [ + "17.35.0" + ], + "novi sad": [ + "17.35.0" + ], + "ntt": [ + "17.56.0" + ], + "nuclear power": [ + "17.53.0" + ], + "number": [ + "17.62.0", + "17.77.1", + "17.87.0" + ], + "number of computers": [ + "17.77.1" + ], + "number of hosts": [ + "17.77.1" + ], + "numerical representation": [ + "17.41.0" + ], + "numerous mailing lists": [ + "17.70.0" + ], + "n´t": [ + "17.17.0" + ], + "object": [ + "17.48.0" + ], + "object available": [ + "17.15.0" + ], + "obscure itâs origins": [ + "17.95.0" + ], + "obscure technical": [ + "17.43.0", + "17.43.1" + ], + "observer": [ + "17.58.4" + ], + "obsolete": [ + "17.85.0" + ], + "obsolete projects": [ + "17.85.0" + ], + "obstinate promotional campaigns": [ + "17.40.0" + ], + "obtain considering italy": [ + "17.68.0" + ], + "obtain cultural hegemony": [ + "17.13.0" + ], + "obtain wonderful": [ + "17.68.0" + ], + "obvious political connotations": [ + "17.40.0" + ], + "occasional symbolic reference": [ + "17.45.0" + ], + "occupation forces": [ + "17.53.1" + ], + "oceanâs trade routes": [ + "17.95.0" + ], + "odd historical singularity": [ + "17.45.0" + ], + "offer": [ + "17.3.0" + ], + "offer analytical content": [ + "17.32.0" + ], + "offer differentiated service": [ + "17.75.0" + ], + "offer targeted": [ + "17.30.0" + ], + "offered training": [ + "17.74.0" + ], + "office workers etc": [ + "17.6.0" + ], + "office workplaces": [ + "17.13.0" + ], + "offices and homes": [ + "17.77.1" + ], + "official development banks": [ + "17.45.0" + ], + "official documenta info": [ + "17.29.0" + ], + "official ideology": [ + "17.40.0" + ], + "offshore transfers started": [ + "17.13.0" + ], + "offshore workforce employees": [ + "17.13.0" + ], + "ognjen": [ + "17.39.2" + ], + "ognjen strpic": [ + "17.37.0", + "17.39.0", + "17.39.1" + ], + "ok book publishing": [ + "17.4.0" + ], + "okwui enwezor negotiate": [ + "17.46.0" + ], + "older gravity": [ + "17.33.0" + ], + "older gravity interview": [ + "17.33.0" + ], + "olga": [ + "17.94.0" + ], + "olga goriunova": [ + "17.10.0", + "17.94.0" + ], + "olga goriunova olga": [ + "17.94.0" + ], + "omnipresent official artist": [ + "17.40.0" + ], + "on-line journal": [ + "17.3.0" + ], + "ongoing recession result": [ + "17.8.0" + ], + "online": [ + "17.30.0", + "17.51.0" + ], + "online actions": [ + "17.9.0" + ], + "online community infrastructures": [ + "17.30.0" + ], + "online genetic body": [ + "17.51.0" + ], + "online identity": [ + "17.30.0" + ], + "online magazine telepolis": [ + "17.61.0", + "17.61.0" + ], + "online participants experience": [ + "17.51.0" + ], + "online text archive": [ + "17.9.0" + ], + "op=modload&name=news&": [ + "17.12.0" + ], + "open": [ + "17.35.0", + "17.52.0", + "17.93.0" + ], + "open fonts": [ + "17.93.0" + ], + "open source": [ + "17.35.0", + "17.93.0" + ], + "open source alternatives": [ + "17.35.0" + ], + "open source database": [ + "17.35.0" + ], + "open source distinction": [ + "17.35.0" + ], + "open source publishing": [ + "17.93.0" + ], + "open source software": [ + "17.35.0", + "17.93.0" + ], + "open spaces": [ + "17.52.0" + ], + "opera theoretica internetica": [ + "17.57.0" + ], + "operating system": [ + "17.70.0", + "17.70.0" + ], + "operative": [ + "17.73.0" + ], + "operative system": [ + "17.73.0" + ], + "opinions and analyses": [ + "17.45.0" + ], + "opportunity": [ + "17.16.1" + ], + "opposite": [ + "17.19.0" + ], + "oppositional movements merely": [ + "17.48.0" + ], + "optimism": [ + "17.91.0" + ], + "orangerie": [ + "17.20.0", + "17.23.1" + ], + "orchestrate public research": [ + "17.14.0" + ], + "order": [ + "17.0.0", + "17.42.0" + ], + "ordinary career path": [ + "17.14.0" + ], + "ordinary jamaicans living": [ + "17.87.0" + ], + "ordinary satellite receiver": [ + "17.43.0" + ], + "ordinary web pages": [ + "17.43.0", + "17.43.1" + ], + "ordinating activist demonstrations": [ + "17.89.0" + ], + "org contact": [ + "17.15.0", + "17.50.0" + ], + "org domains": [ + "17.23.0" + ], + "org list": [ + "17.58.0" + ], + "org wolfgang sützl": [ + "17.15.0" + ], + "organic intellectual work": [ + "17.13.0" + ], + "organic living energy": [ + "17.91.0" + ], + "organisation": [ + "17.19.0" + ], + "organisation linking artistic": [ + "17.74.0" + ], + "organisation web": [ + "17.41.0" + ], + "organisations/critical technology advocates": [ + "17.87.0" + ], + "organising": [ + "17.19.0" + ], + "organization called scholars": [ + "17.13.0" + ], + "organization embodying": [ + "17.40.0" + ], + "organizational processes": [ + "17.39.2" + ], + "organizational reform": [ + "17.34.0" + ], + "organizational sciences": [ + "17.14.0" + ], + "organizations": [ + "17.34.0" + ], + "organizations civil society": [ + "17.34.0" + ], + "organize special programs": [ + "17.11.0" + ], + "organize themselves politically": [ + "17.31.0" + ], + "organized form": [ + "17.20.0" + ], + "organizing experimental projects": [ + "17.5.0" + ], + "organizing independent activities": [ + "17.56.0" + ], + "organizing nam": [ + "17.8.0" + ], + "oriented art": [ + "17.28.0" + ], + "oriented art system": [ + "17.10.0" + ], + "oriented capitalist society": [ + "17.31.0" + ], + "oriented information society": [ + "17.34.0" + ], + "original": [ + "17.58.3", + "17.82.0" + ], + "original rawls framework": [ + "17.37.0" + ], + "original statements": [ + "17.17.0" + ], + "originated": [ + "17.58.2" + ], + "osp": [ + "17.93.0" + ], + "osten": [ + "17.31.0" + ], + "osten in preparation": [ + "17.31.0" + ], + "otherwise complicated series": [ + "17.83.0" + ], + "otherwise normal people": [ + "17.77.0" + ], + "otheršs behavior": [ + "17.46.1" + ], + "otheršs experience": [ + "17.46.1" + ], + "outreach project targetted": [ + "17.64.0" + ], + "outside hybrid workspace": [ + "17.27.0" + ], + "outside shareholders eliminated": [ + "17.45.0" + ], + "outside space": [ + "17.56.0" + ], + "overall european movement": [ + "17.68.0" + ], + "overlapping issues occurring": [ + "17.7.0" + ], + "overtly political artists": [ + "17.7.0" + ], + "overwork severely haemorrhage": [ + "17.13.0" + ], + "own abilities": [ + "17.85.0" + ], + "own academic training": [ + "17.13.0" + ], + "own adventures": [ + "17.93.0" + ], + "own anarchist politics": [ + "17.8.0" + ], + "own autonomous space": [ + "17.46.0" + ], + "own autonomous zones": [ + "17.72.0" + ], + "own capacitance": [ + "17.69.0" + ], + "own choosing": [ + "17.48.0" + ], + "own cultural success": [ + "17.52.0" + ], + "own cultures": [ + "17.50.0" + ], + "own customised software": [ + "17.87.0" + ], + "own cycles": [ + "17.41.0" + ], + "own daily practice": [ + "17.27.0" + ], + "own developers circle": [ + "17.93.0" + ], + "own home addresses": [ + "17.28.0" + ], + "own horizontal plane": [ + "17.88.0" + ], + "own language": [ + "17.38.0" + ], + "own life forms": [ + "17.61.0" + ], + "own light patterns": [ + "17.65.0" + ], + "own local items": [ + "17.12.0" + ], + "own manifold inter": [ + "17.91.0" + ], + "own manipulations explicit": [ + "17.93.0" + ], + "own mba line": [ + "17.11.0" + ], + "own media art": [ + "17.41.0" + ], + "own merit": [ + "17.69.0" + ], + "own monthly newsletter": [ + "17.45.0" + ], + "own net crawlers": [ + "17.49.0" + ], + "own personal ambitions": [ + "17.88.0" + ], + "own personal blog": [ + "17.67.0" + ], + "own personal kinds": [ + "17.42.0" + ], + "own presence": [ + "17.52.0" + ], + "own private property": [ + "17.48.0" + ], + "own profile information": [ + "17.30.0" + ], + "own radical otherness": [ + "17.48.0" + ], + "own radio studio": [ + "17.11.0" + ], + "own radio waves": [ + "17.69.0" + ], + "own representationâ scrupulous": [ + "17.95.0" + ], + "own strategies": [ + "17.93.0" + ], + "own technological expertise": [ + "17.80.0" + ], + "own terrors": [ + "17.48.0" + ], + "own theoretical discourse": [ + "17.52.0" + ], + "own theory based": [ + "17.8.0" + ], + "own thinking processes": [ + "17.40.0" + ], + "own training sessions": [ + "17.85.0" + ], + "own visual language": [ + "17.38.0" + ], + "own world audition": [ + "17.61.0" + ], + "oxford university press": [ + "17.75.0" + ], + "page": [ + "17.83.0" + ], + "pages": [ + "17.84.0" + ], + "paid": [ + "17.33.0" + ], + "paid little attention": [ + "17.45.0" + ], + "painstaking international debate": [ + "17.0.0" + ], + "paint rags stuck": [ + "17.50.0" + ], + "painter peter halley": [ + "17.58.0" + ], + "palais": [ + "17.54.0" + ], + "palais de tokyo/site": [ + "17.6.0" + ], + "palais tokyo": [ + "17.54.0", + "17.54.0" + ], + "palais tokyo mailinglist": [ + "17.54.0", + "17.54.0" + ], + "palestinians": [ + "17.27.0" + ], + "palmer lev": [ + "17.49.0" + ], + "palmer lev manovich": [ + "17.49.0" + ], + "palmers cross": [ + "17.87.0" + ], + "palmers cross jamaica": [ + "17.87.0", + "17.87.0" + ], + "palmers cross primary": [ + "17.87.0" + ], + "panel female takeover": [ + "17.70.0" + ], + "panels drinkin": [ + "17.36.0" + ], + "panels drinkin wine": [ + "17.36.0" + ], + "paper tiger television": [ + "17.6.0", + "17.6.0" + ], + "papiers": [ + "17.1.0" + ], + "papiers groups": [ + "17.1.0" + ], + "papiers movement": [ + "17.1.0" + ], + "parading national heroes": [ + "17.65.0" + ], + "parallel imaginaries": [ + "17.92.0" + ], + "parallel network based": [ + "17.69.0" + ], + "parallel processing based": [ + "17.92.0" + ], + "parallel universe": [ + "17.45.0" + ], + "paraphrase allen ginsberg": [ + "17.13.0" + ], + "paraplegic veteran mirko": [ + "17.39.1" + ], + "parasites sucking life": [ + "17.91.0" + ], + "parasitical machine": [ + "17.92.0" + ], + "parasiting process accounting": [ + "17.91.0" + ], + "parisian literary experiments": [ + "17.58.0" + ], + "parrika is author": [ + "17.92.0" + ], + "part": [ + "17.11.0", + "17.38.0", + "17.51.0", + "17.85.0", + "17.92.0" + ], + "part war": [ + "17.39.1" + ], + "part war veterans": [ + "17.39.1" + ], + "partial machines": [ + "17.91.0" + ], + "participating radio stations": [ + "17.43.0", + "17.43.1" + ], + "participatory democracy": [ + "17.78.0", + "17.78.0" + ], + "particular boost": [ + "17.61.0" + ], + "particular films": [ + "17.51.0" + ], + "particular ideological baggage": [ + "17.37.0" + ], + "particular nature": [ + "17.10.0" + ], + "particular obsessive figure": [ + "17.61.0" + ], + "particular period": [ + "17.88.0" + ], + "particular piece": [ + "17.92.0" + ], + "particular popular visual": [ + "17.49.0" + ], + "particular programming language": [ + "17.35.0" + ], + "particular project": [ + "17.61.0" + ], + "particular scenes invent": [ + "17.10.0" + ], + "particular structural forms": [ + "17.88.0" + ], + "particular technical information": [ + "17.72.0" + ], + "particular text mode": [ + "17.61.0" + ], + "particular vectors": [ + "17.61.0" + ], + "particularly apposite speculation": [ + "17.50.0" + ], + "particularly immersive californian": [ + "17.58.0" + ], + "particularly impressed": [ + "17.58.0" + ], + "parties": [ + "17.29.0" + ], + "partly akira asada": [ + "17.8.0" + ], + "party": [ + "17.8.0", + "17.16.0", + "17.16.1" + ], + "party discipline": [ + "17.12.0" + ], + "party scene": [ + "17.8.0" + ], + "party with female": [ + "17.16.1" + ], + "past": [ + "17.28.0" + ], + "past intellectuals believed": [ + "17.1.0" + ], + "patented lumia projectors": [ + "17.65.0" + ], + "paternalistic media images": [ + "17.59.0" + ], + "paul": [ + "17.0.0", + "17.23.1", + "17.53.0" + ], + "paul allen": [ + "17.60.0" + ], + "paul garrin": [ + "17.0.0", + "17.23.0", + "17.23.1", + "17.23.1" + ], + "pax": [ + "17.25.0" + ], + "pax electronica": [ + "17.25.0" + ], + "pay": [ + "17.67.0" + ], + "pays network solutions": [ + "17.0.0", + "17.0.0" + ], + "pc knights outside": [ + "17.9.0" + ], + "pc/macweb publishing software": [ + "17.87.0" + ], + "peace": [ + "17.72.0" + ], + "peace movement": [ + "17.47.0", + "17.47.0" + ], + "peace movement adress": [ + "17.47.0" + ], + "peace movement“": [ + "17.47.0" + ], + "peasants internet culture": [ + "17.40.0" + ], + "peer distribution channel": [ + "17.43.1" + ], + "peer distribution channels": [ + "17.43.0" + ], + "peljhan": [ + "17.24.0" + ], + "pension funds": [ + "17.22.0" + ], + "people": [ + "17.0.0", + "17.1.0", + "17.2.0", + "17.3.0", + "17.4.0", + "17.5.0", + "17.8.0", + "17.9.0", + "17.14.0", + "17.18.0", + "17.19.0", + "17.20.0", + "17.21.0", + "17.22.0", + "17.26.0", + "17.28.0", + "17.29.0", + "17.30.0", + "17.31.0", + "17.32.0", + "17.33.0", + "17.34.0", + "17.38.0", + "17.39.0", + "17.39.2", + "17.40.0", + "17.41.0", + "17.48.0", + "17.51.0", + "17.52.0", + "17.56.0", + "17.57.0", + "17.59.0", + "17.60.0", + "17.61.0", + "17.62.0", + "17.64.0", + "17.65.0", + "17.67.0", + "17.69.0", + "17.71.0", + "17.72.0", + "17.73.0", + "17.74.0", + "17.75.0", + "17.77.0", + "17.79.0", + "17.80.0", + "17.82.0", + "17.83.0", + "17.84.0", + "17.85.0", + "17.86.0", + "17.87.0", + "17.88.0", + "17.90.0", + "17.93.0" + ], + "people actively assume": [ + "17.65.0" + ], + "people actually decide": [ + "17.69.0" + ], + "people called architects": [ + "17.20.0" + ], + "people called photographers": [ + "17.20.0" + ], + "people direct experience": [ + "17.7.0" + ], + "people feel somehow": [ + "17.3.0" + ], + "people getting emailouts": [ + "17.64.0" + ], + "people granted interviews": [ + "17.93.0" + ], + "people involved peripherally": [ + "17.30.0" + ], + "people participating openly": [ + "17.30.0" + ], + "people seeking shelter": [ + "17.50.0" + ], + "people start thinking": [ + "17.44.0" + ], + "people started using": [ + "17.61.0" + ], + "people themselve speak": [ + "17.1.0" + ], + "people using media": [ + "17.14.0" + ], + "people voice": [ + "17.33.0" + ], + "peoples communication charter": [ + "17.18.0" + ], + "peoples creative desires": [ + "17.73.0" + ], + "peoples everyday lives": [ + "17.78.0" + ], + "peoplešs behavior": [ + "17.46.1" + ], + "perceives operating systems": [ + "17.10.0" + ], + "perception": [ + "17.53.0" + ], + "perfect dramatic friction": [ + "17.7.0" + ], + "perfect individuals": [ + "17.63.0" + ], + "perfect language maybe": [ + "17.63.0" + ], + "perfect marketing tool": [ + "17.71.0" + ], + "perfectly reasonable statement": [ + "17.18.0" + ], + "perfectly sensible": [ + "17.18.0" + ], + "perform corporate technologies": [ + "17.65.0" + ], + "perform virtual tasks": [ + "17.90.0" + ], + "performance art": [ + "17.65.0" + ], + "performances tended towards": [ + "17.46.1" + ], + "performative architectural utilization": [ + "17.65.0" + ], + "performers": [ + "17.16.1" + ], + "period": [ + "17.46.0" + ], + "permanent activity": [ + "17.52.0" + ], + "permanent autonomous net": [ + "17.0.0", + "17.0.0" + ], + "permanent autonomous network": [ + "17.23.0" + ], + "permanent change": [ + "17.52.0" + ], + "permanent change taking": [ + "17.52.0" + ], + "permanent topological change": [ + "17.52.0" + ], + "permanent web presence": [ + "17.40.0" + ], + "permeable organizational structures": [ + "17.39.2" + ], + "perpetuating email virus": [ + "17.92.0" + ], + "perry luciana parisi": [ + "17.91.0" + ], + "persian gulf war": [ + "17.53.0", + "17.53.0" + ], + "person": [ + "17.19.0" + ], + "person action games": [ + "17.49.0" + ], + "personal": [ + "17.73.0" + ], + "personal background": [ + "17.72.0" + ], + "personal expressive": [ + "17.68.0" + ], + "personal information": [ + "17.30.0" + ], + "personal life looked": [ + "17.72.0" + ], + "personal reason": [ + "17.14.0" + ], + "personal text commentary": [ + "17.89.0" + ], + "personal web sites": [ + "17.55.0" + ], + "personšs behavior": [ + "17.46.1" + ], + "peter": [ + "17.55.0", + "17.58.0", + "17.58.3" + ], + "peter arnett using": [ + "17.24.0" + ], + "peter books": [ + "17.55.0" + ], + "peter ganick": [ + "17.55.0" + ], + "peter lang": [ + "17.92.0" + ], + "peter lang earlier": [ + "17.92.0", + "17.92.0" + ], + "peter lunenfeld": [ + "17.58.0", + "17.58.3" + ], + "peter lunenfeld reminds": [ + "17.46.0" + ], + "peter lunenfeld wrote": [ + "17.58.3", + "17.58.3" + ], + "peter work": [ + "17.55.0" + ], + "phenomena": [ + "17.26.0", + "17.52.0" + ], + "philosopher frank hartmann": [ + "17.63.0" + ], + "philosopher toni negri": [ + "17.44.0" + ], + "philosophical enquiry": [ + "17.91.0" + ], + "philosophical perspective": [ + "17.63.0" + ], + "philosophical questions deleuze": [ + "17.63.0" + ], + "philosophy": [ + "17.63.0" + ], + "philosophy projects": [ + "17.35.0" + ], + "phone": [ + "17.89.0" + ], + "phone conversations": [ + "17.17.0" + ], + "phone media": [ + "17.89.0" + ], + "phone sex ore": [ + "17.17.0" + ], + "phone wars projects": [ + "17.95.0" + ], + "phonograms treaty": [ + "17.75.0" + ], + "photo album online": [ + "17.38.0" + ], + "photographers robert smithson": [ + "17.61.0" + ], + "photoshop manipulated photos": [ + "17.70.0" + ], + "picture": [ + "17.79.0" + ], + "picture quite recently": [ + "17.79.0" + ], + "piece": [ + "17.57.0", + "17.64.0", + "17.65.0", + "17.81.0" + ], + "piece for artforum": [ + "17.58.2" + ], + "pieces mean freedom": [ + "17.73.0" + ], + "pieces using text": [ + "17.4.0" + ], + "pierre bézier": [ + "17.93.0" + ], + "pierre huyghebaert": [ + "17.93.0" + ], + "pink floyd": [ + "17.65.0" + ], + "pink floyd light": [ + "17.65.0", + "17.65.0" + ], + "pirate dx website": [ + "17.79.0" + ], + "pirate radio": [ + "17.69.0", + "17.69.0" + ], + "pirate radio manual": [ + "17.69.0" + ], + "pirate radio stations": [ + "17.8.0", + "17.11.0" + ], + "pit": [ + "17.0.0" + ], + "pit schultz": [ + "17.0.0", + "17.10.0" + ], + "place": [ + "17.3.0", + "17.26.0", + "17.52.0", + "17.53.0", + "17.57.0", + "17.74.0", + "17.90.0" + ], + "plan nor willingness": [ + "17.67.0" + ], + "planetwork": [ + "17.30.0" + ], + "planetwork conference": [ + "17.30.0" + ], + "planetwork conference actually": [ + "17.30.0" + ], + "planetwork deliberately aimed": [ + "17.30.0" + ], + "plant": [ + "17.41.0" + ], + "plant and vns": [ + "17.71.0" + ], + "plate systems": [ + "17.93.0" + ], + "play computer games": [ + "17.83.0" + ], + "play tottenham roughnecks": [ + "17.86.0" + ], + "player": [ + "17.43.0", + "17.43.1" + ], + "players": [ + "17.43.0", + "17.43.1" + ], + "playing field": [ + "17.75.0" + ], + "playing via internet": [ + "17.5.0" + ], + "please inspect contents": [ + "17.2.0" + ], + "pleasure": [ + "17.91.0" + ], + "plug": [ + "17.16.0" + ], + "plug pulled immediately": [ + "17.0.0" + ], + "plus page books": [ + "17.58.0" + ], + "plus sculpture plus": [ + "17.18.0" + ], + "poet": [ + "17.55.0" + ], + "poetry": [ + "17.55.0" + ], + "poetry center": [ + "17.55.0" + ], + "poets": [ + "17.55.0" + ], + "poets press": [ + "17.55.0" + ], + "poets work": [ + "17.55.0" + ], + "point": [ + "17.20.0", + "17.46.0", + "17.68.0", + "17.71.0", + "17.78.0", + "17.85.0" + ], + "pointedly ironic term": [ + "17.58.0" + ], + "points raised": [ + "17.46.1" + ], + "polar inertia": [ + "17.53.0" + ], + "polar inertia involving": [ + "17.53.0" + ], + "police games available": [ + "17.86.0" + ], + "police undercover provacateurs": [ + "17.47.0" + ], + "policing": [ + "17.42.0" + ], + "policing system watches": [ + "17.42.0" + ], + "policy": [ + "17.34.0" + ], + "policy arrangements": [ + "17.34.0" + ], + "policy debates surrounding": [ + "17.75.0" + ], + "policy fields": [ + "17.34.0" + ], + "policy issues related": [ + "17.34.0" + ], + "policy research collective": [ + "17.25.0" + ], + "political": [ + "17.3.0", + "17.8.0", + "17.15.0", + "17.29.0", + "17.34.0", + "17.37.0", + "17.39.0", + "17.46.1", + "17.53.0", + "17.72.0", + "17.73.0", + "17.78.0", + "17.80.0", + "17.90.0" + ], + "political activist practices": [ + "17.7.0" + ], + "political activists": [ + "17.46.1" + ], + "political activity": [ + "17.37.0" + ], + "political campaign": [ + "17.12.0" + ], + "political chess match": [ + "17.7.0" + ], + "political citizenship": [ + "17.78.0" + ], + "political code": [ + "17.78.0" + ], + "political debate": [ + "17.75.0" + ], + "political decision": [ + "17.78.0" + ], + "political democracy": [ + "17.78.0" + ], + "political economy": [ + "17.75.0" + ], + "political everyday life": [ + "17.34.0" + ], + "political issues": [ + "17.75.0" + ], + "political map": [ + "17.40.0" + ], + "political mythology": [ + "17.40.0" + ], + "political opinions reflect": [ + "17.34.0" + ], + "political organization": [ + "17.7.0" + ], + "political organizing": [ + "17.37.0" + ], + "political process": [ + "17.78.0" + ], + "political project": [ + "17.78.0" + ], + "political provider": [ + "17.3.0" + ], + "political question": [ + "17.39.0" + ], + "political repressive concept": [ + "17.73.0" + ], + "political resistance": [ + "17.78.0" + ], + "political response": [ + "17.30.0" + ], + "political science talk": [ + "17.8.0" + ], + "political situation unravels": [ + "17.50.0" + ], + "political steam": [ + "17.80.0" + ], + "political strategy": [ + "17.66.0" + ], + "political strategy detailing": [ + "17.80.0" + ], + "political subject capable": [ + "17.37.0" + ], + "political system": [ + "17.40.0" + ], + "political unification": [ + "17.40.0" + ], + "political violence": [ + "17.37.0" + ], + "political weakness": [ + "17.80.0" + ], + "politically determined system": [ + "17.95.0" + ], + "politically invisible people": [ + "17.39.1" + ], + "politically neutral procedures": [ + "17.34.0" + ], + "politically oriented": [ + "17.31.0" + ], + "politically speaking planetwork": [ + "17.30.0" + ], + "politicians getting ready": [ + "17.24.0" + ], + "politics": [ + "17.8.0", + "17.12.0", + "17.21.0", + "17.29.0", + "17.42.0", + "17.46.1", + "17.46.2", + "17.53.0" + ], + "politics towards arts": [ + "17.9.0" + ], + "polling booth throw": [ + "17.78.0" + ], + "pool": [ + "17.16.0" + ], + "pool party": [ + "17.16.0", + "17.16.3" + ], + "pool-prj": [ + "17.16.1" + ], + "poor": [ + "17.21.0" + ], + "poor east europeans": [ + "17.77.0" + ], + "poor social": [ + "17.89.0" + ], + "poorer western suburbs": [ + "17.50.0" + ], + "pop": [ + "17.61.0" + ], + "pop culture": [ + "17.40.0" + ], + "pop culture formats": [ + "17.40.0" + ], + "pop fashion admits": [ + "17.8.0" + ], + "pop music scene": [ + "17.68.0" + ], + "pope": [ + "17.76.0" + ], + "popular": [ + "17.59.0" + ], + "popular culture": [ + "17.59.0", + "17.61.0", + "17.92.0" + ], + "popular digital culture": [ + "17.30.0" + ], + "popular evening news": [ + "17.4.0" + ], + "popular flash design": [ + "17.38.0" + ], + "popular left imagination": [ + "17.30.0" + ], + "popular pre": [ + "17.30.0" + ], + "popular sentiment": [ + "17.13.0" + ], + "population control lobby": [ + "17.25.0" + ], + "porn": [ + "17.6.0" + ], + "porsche": [ + "17.23.1" + ], + "portable document format": [ + "17.93.0" + ], + "porto": [ + "17.44.0" + ], + "porto alegre": [ + "17.39.2", + "17.44.0" + ], + "porto alegre opponents": [ + "17.44.0" + ], + "porto alegre sad": [ + "17.44.0" + ], + "portuguese": [ + "17.50.0" + ], + "positing video artists": [ + "17.46.0" + ], + "position": [ + "17.17.0", + "17.52.0", + "17.59.0", + "17.73.0" + ], + "position towards collage": [ + "17.20.0" + ], + "position yourself properly": [ + "17.40.0" + ], + "possibly due": [ + "17.10.0" + ], + "possibly software production": [ + "17.10.0" + ], + "post dotcom essay": [ + "17.46.0" + ], + "post-digital": [ + "17.69.0" + ], + "postcolonial food initiatives": [ + "17.7.0" + ], + "posted data": [ + "17.24.0" + ], + "postmodern pastiche eclecticism": [ + "17.8.0" + ], + "postmodern theory": [ + "17.69.0" + ], + "postmodern thesis generator": [ + "17.70.0" + ], + "potential art genre": [ + "17.10.0" + ], + "potential economic value": [ + "17.13.0" + ], + "potential of empire": [ + "17.39.1" + ], + "potentially enormous audiences": [ + "17.75.0" + ], + "potentially violent situations": [ + "17.95.0" + ], + "potentials tending towards": [ + "17.91.0" + ], + "potepoettext electronic index": [ + "17.55.0" + ], + "potepoetzine and potepoettext": [ + "17.55.0" + ], + "power": [ + "17.1.0", + "17.22.0", + "17.28.0", + "17.37.0", + "17.44.0", + "17.48.0", + "17.59.0", + "17.78.0", + "17.95.0" + ], + "power division": [ + "17.34.0" + ], + "power division taking": [ + "17.34.0" + ], + "power dynamics inherent": [ + "17.42.0" + ], + "power normally reserved": [ + "17.53.0" + ], + "power status quo": [ + "17.14.0" + ], + "power takes": [ + "17.0.0" + ], + "powerful structures": [ + "17.9.0" + ], + "practical difficulties simply": [ + "17.4.0" + ], + "practical theory": [ + "17.15.0" + ], + "practical utility": [ + "17.50.0" + ], + "practice": [ + "17.62.0", + "17.67.0", + "17.93.0" + ], + "practices": [ + "17.14.0", + "17.31.0", + "17.73.0" + ], + "practices black humor": [ + "17.40.0" + ], + "practices exposes people": [ + "17.31.0" + ], + "practise": [ + "17.18.0" + ], + "pragmatic revolutionary politics": [ + "17.39.0" + ], + "pragmatics progressive solutions": [ + "17.78.0" + ], + "prearranged forms": [ + "17.68.0" + ], + "precarious": [ + "17.66.0" + ], + "precarity": [ + "17.66.0" + ], + "precise automatic equivalent": [ + "17.61.0" + ], + "precision weaponry constituted": [ + "17.42.0" + ], + "predicted numerous times": [ + "17.45.0" + ], + "predominant cultural representation": [ + "17.68.0" + ], + "prefer dynamic processes": [ + "17.62.0" + ], + "prefer local autonomy": [ + "17.12.0" + ], + "prefer mailing lists": [ + "17.11.0" + ], + "presence": [ + "17.14.0", + "17.29.0" + ], + "present": [ + "17.27.0", + "17.85.0" + ], + "presentation": [ + "17.16.0" + ], + "press": [ + "17.47.0" + ], + "pressure corporate press": [ + "17.47.0" + ], + "presumed bodily habits": [ + "17.92.0" + ], + "pretty bad listener": [ + "17.13.0" + ], + "pretty idiosyncratic concept": [ + "17.81.0" + ], + "prevent democratic social": [ + "17.37.0" + ], + "previous historical period": [ + "17.49.0" + ], + "previous paradigms obsolete": [ + "17.14.0" + ], + "previously agreed engagement": [ + "17.87.0" + ], + "previously separate technical": [ + "17.30.0" + ], + "primarily": [ + "17.58.4" + ], + "primarily inspired": [ + "17.58.4" + ], + "primary force": [ + "17.37.0" + ], + "primary organizational conception": [ + "17.37.0" + ], + "prime minister called": [ + "17.39.1" + ], + "prime minister koizumi": [ + "17.8.0" + ], + "print": [ + "17.55.0" + ], + "print media activities": [ + "17.55.0" + ], + "print work": [ + "17.55.0" + ], + "printed": [ + "17.77.1" + ], + "printing technology involved": [ + "17.70.0" + ], + "privacy": [ + "17.42.0" + ], + "privacy debates online": [ + "17.42.0" + ], + "privacy issues": [ + "17.42.0" + ], + "private": [ + "17.21.0", + "17.26.0" + ], + "private collections": [ + "17.48.0" + ], + "private communication networks": [ + "17.69.0" + ], + "private digital": [ + "17.21.0", + "17.21.0" + ], + "private digital space": [ + "17.21.0", + "17.21.0" + ], + "private radio networks": [ + "17.11.0" + ], + "private registry company": [ + "17.0.0" + ], + "private sector": [ + "17.80.0" + ], + "private stations": [ + "17.11.0" + ], + "privatizing community assets": [ + "17.30.0" + ], + "privileged position": [ + "17.28.0" + ], + "probably makes sense": [ + "17.94.0" + ], + "probably radically democratic": [ + "17.59.0" + ], + "problem": [ + "17.71.0" + ], + "problems": [ + "17.72.0", + "17.73.0" + ], + "process": [ + "17.34.0", + "17.90.0", + "17.91.0" + ], + "process trust appeared": [ + "17.14.0" + ], + "processes": [ + "17.92.0" + ], + "processes involved": [ + "17.70.0" + ], + "processes taking": [ + "17.52.0" + ], + "processor cycles": [ + "17.41.0" + ], + "produce conceptual installations": [ + "17.40.0" + ], + "produce inside/outside conflicts": [ + "17.73.0" + ], + "produce urban radio": [ + "17.11.0" + ], + "produced scientific knowledge": [ + "17.63.0" + ], + "produced scifi porn": [ + "17.6.0" + ], + "producing localised zine": [ + "17.89.0" + ], + "producing surplus value": [ + "17.66.0" + ], + "production": [ + "17.31.0", + "17.66.0" + ], + "productive compositional dynamics": [ + "17.91.0" + ], + "productive existential experiences": [ + "17.73.0" + ], + "productive methodology internally": [ + "17.80.0" + ], + "productive patterning": [ + "17.91.0" + ], + "productivism gone mad": [ + "17.46.0" + ], + "productivist aesthetic implicit": [ + "17.46.0" + ], + "products available meet": [ + "17.30.0" + ], + "products dominated life": [ + "17.95.0" + ], + "professional": [ + "17.19.0" + ], + "professional artist": [ + "17.19.0" + ], + "professional computer journals": [ + "17.92.0" + ], + "professional design practice": [ + "17.58.0" + ], + "professional life students": [ + "17.38.0" + ], + "professional tv technique": [ + "17.4.0" + ], + "professor antonio damasio": [ + "17.14.0" + ], + "profit margins increase": [ + "17.80.0" + ], + "profit organisation": [ + "17.74.0" + ], + "profit streaming initiatives": [ + "17.43.0", + "17.43.1" + ], + "profound": [ + "17.78.0" + ], + "profound corrossive impact": [ + "17.78.0" + ], + "profound disjunct": [ + "17.78.0" + ], + "profound impact": [ + "17.78.0" + ], + "profound influential entity": [ + "17.78.0" + ], + "profound level": [ + "17.78.0" + ], + "program": [ + "17.5.0", + "17.11.0" + ], + "program for curatorial": [ + "17.27.0" + ], + "programmed corporate scheme": [ + "17.6.0" + ], + "programmers": [ + "17.10.0" + ], + "programmers typically don": [ + "17.10.0" + ], + "programming languages forming": [ + "17.10.0" + ], + "programs": [ + "17.11.0" + ], + "progress": [ + "17.3.0" + ], + "progress event": [ + "17.3.0" + ], + "progressive agenda": [ + "17.30.0" + ], + "progressive technology agenda": [ + "17.30.0" + ], + "project": [ + "17.5.0", + "17.7.0", + "17.11.0", + "17.24.0", + "17.37.0", + "17.51.0", + "17.54.0", + "17.57.0", + "17.60.0", + "17.64.0", + "17.67.0", + "17.77.0", + "17.81.0", + "17.84.0", + "17.85.0", + "17.86.0", + "17.87.0", + "17.89.0", + "17.93.0", + "17.95.0" + ], + "project called": [ + "17.16.1" + ], + "project continues growing": [ + "17.41.0" + ], + "project heath": [ + "17.2.0" + ], + "project heath bunting": [ + "17.2.0" + ], + "project looks set": [ + "17.87.0" + ], + "project manager micz": [ + "17.43.0", + "17.43.1" + ], + "project work": [ + "17.85.0" + ], + "projects": [ + "17.7.0", + "17.55.0", + "17.60.0", + "17.67.0", + "17.77.0", + "17.85.0", + "17.93.0" + ], + "projekt atol": [ + "17.24.0" + ], + "promoting digital ideas": [ + "17.9.0" + ], + "proper business proposal": [ + "17.89.0" + ], + "proper licence": [ + "17.93.0" + ], + "proper print dialogue": [ + "17.93.0" + ], + "property": [ + "17.48.0" + ], + "property assets": [ + "17.13.0" + ], + "property grab": [ + "17.13.0" + ], + "property grabbers": [ + "17.13.0" + ], + "propose": [ + "17.16.0", + "17.16.3" + ], + "propose open source": [ + "17.35.0" + ], + "proposed": [ + "17.2.0", + "17.16.0" + ], + "proposed very simple": [ + "17.16.0", + "17.16.3" + ], + "proprietary culture masquerading": [ + "17.86.0" + ], + "proprietary ip regime": [ + "17.13.0" + ], + "proprietary software projects": [ + "17.93.0" + ], + "proprietary switching system": [ + "17.76.0" + ], + "proprietary tools": [ + "17.93.0" + ], + "protected national market": [ + "17.48.0" + ], + "proved": [ + "17.58.1" + ], + "proved totally correct": [ + "17.53.0" + ], + "provide crucial functionality": [ + "17.30.0" + ], + "provide global services": [ + "17.21.0" + ], + "provide independent news": [ + "17.68.0" + ], + "provide instant contact": [ + "17.50.0" + ], + "provide specific expertise": [ + "17.34.0" + ], + "provided fresh perspectives": [ + "17.92.0" + ], + "provides random access": [ + "17.81.0" + ], + "providing bandwidth": [ + "17.23.0", + "17.23.1" + ], + "providing bandwidth ourselves": [ + "17.23.0", + "17.23.1" + ], + "providing sms": [ + "17.89.0" + ], + "proximate environmental relations": [ + "17.91.0" + ], + "prácticas artísticas": [ + "17.66.0" + ], + "pseudo historical avant": [ + "17.68.0" + ], + "psychedelic trance techno": [ + "17.8.0" + ], + "psychology": [ + "17.46.1" + ], + "public": [ + "17.0.0", + "17.3.0", + "17.7.0", + "17.14.0", + "17.16.1", + "17.16.2", + "17.16.3", + "17.17.0", + "17.21.0", + "17.23.0", + "17.26.0", + "17.32.0", + "17.47.0", + "17.59.0", + "17.64.0", + "17.72.0", + "17.80.0" + ], + "public access": [ + "17.9.0", + "17.47.0" + ], + "public access movement": [ + "17.47.0" + ], + "public access terminals": [ + "17.17.0" + ], + "public art": [ + "17.32.0" + ], + "public art institutions": [ + "17.89.0" + ], + "public broadcasting": [ + "17.59.0" + ], + "public broadcasting service": [ + "17.59.0" + ], + "public culture": [ + "17.89.0" + ], + "public digital": [ + "17.21.0" + ], + "public digital space": [ + "17.21.0", + "17.21.0" + ], + "public eye": [ + "17.13.0" + ], + "public funding via": [ + "17.47.0" + ], + "public health advisors": [ + "17.95.0" + ], + "public intellectual": [ + "17.13.0" + ], + "public interest": [ + "17.80.0" + ], + "public media spectrum": [ + "17.13.0" + ], + "public radio networks": [ + "17.11.0" + ], + "public relations people": [ + "17.72.0" + ], + "public research": [ + "17.14.0" + ], + "public research makes": [ + "17.14.0" + ], + "public sector": [ + "17.80.0" + ], + "public sector subsidy": [ + "17.75.0" + ], + "public space": [ + "17.21.0", + "17.26.0", + "17.32.0", + "17.68.0", + "17.72.0" + ], + "public space anymore": [ + "17.26.0", + "17.26.0" + ], + "public sphere": [ + "17.34.0" + ], + "public work projects": [ + "17.7.0" + ], + "publication license v1": [ + "17.71.0" + ], + "publication “jordan crandall": [ + "17.42.0" + ], + "publicly bonded couples": [ + "17.46.0" + ], + "publicly distance": [ + "17.46.0" + ], + "publicly funded galleries": [ + "17.64.0" + ], + "publish readable editions": [ + "17.55.0" + ], + "published by peter": [ + "17.92.0" + ], + "publishing audio info": [ + "17.3.0" + ], + "publishing final results": [ + "17.93.0" + ], + "publishing software": [ + "17.87.0" + ], + "pure accidental crossing": [ + "17.73.0" + ], + "pure blog posts": [ + "17.36.0" + ], + "pure method fails": [ + "17.80.0" + ], + "pure temporal essence": [ + "17.36.0" + ], + "purely negative sense": [ + "17.71.0" + ], + "purely physical force": [ + "17.31.0" + ], + "purely representational figure": [ + "17.70.0" + ], + "purely technical systems": [ + "17.71.0" + ], + "purified subject position": [ + "17.91.0" + ], + "push capitalism towards": [ + "17.90.0" + ], + "pushing social": [ + "17.39.0" + ], + "pushing social cooperation": [ + "17.37.0", + "17.39.0" + ], + "put": [ + "17.57.0", + "17.82.0" + ], + "quaker raph levien": [ + "17.93.0" + ], + "quality control personnel": [ + "17.35.0" + ], + "quarterly subscription system": [ + "17.85.0" + ], + "question": [ + "17.10.0", + "17.20.0", + "17.23.0", + "17.23.1", + "17.39.0", + "17.52.0", + "17.59.0", + "17.62.0", + "17.73.0", + "17.92.0" + ], + "question strategies": [ + "17.11.0" + ], + "questions": [ + "17.16.2", + "17.16.3" + ], + "quiches an finger": [ + "17.36.0" + ], + "quickly form communities": [ + "17.89.0" + ], + "quiet conservative life": [ + "17.86.0" + ], + "rabbit batch jobs": [ + "17.92.0" + ], + "race studies": [ + "17.37.0" + ], + "rachel baker": [ + "17.89.0" + ], + "racial antiracist struggle": [ + "17.37.0" + ], + "racial categorisation": [ + "17.86.0" + ], + "racial classifications": [ + "17.86.0" + ], + "racial stereotypes relate": [ + "17.86.0" + ], + "radical factions": [ + "17.12.0" + ], + "radical media activist": [ + "17.8.0" + ], + "radical net criticism": [ + "17.80.0" + ], + "radical political/technical concepts": [ + "17.0.0" + ], + "radical software production": [ + "17.76.0" + ], + "radicalize concepts": [ + "17.59.0" + ], + "radicalize media concepts": [ + "17.59.0" + ], + "radically critique": [ + "17.59.0" + ], + "radikal search engine": [ + "17.0.0" + ], + "radio": [ + "17.2.0", + "17.5.0", + "17.11.0", + "17.24.0", + "17.43.0", + "17.43.1", + "17.47.0", + "17.69.0" + ], + "radio 68h": [ + "17.43.0" + ], + "radio 68h consists": [ + "17.43.0" + ], + "radio 68h indonesia": [ + "17.43.0" + ], + "radio alice": [ + "17.12.0", + "17.68.0", + "17.69.0" + ], + "radio amateur": [ + "17.69.0" + ], + "radio amateur gear": [ + "17.24.0" + ], + "radio amateurs": [ + "17.24.0" + ], + "radio broadcasting": [ + "17.43.0", + "17.43.1" + ], + "radio drama": [ + "17.11.0" + ], + "radio free asia": [ + "17.69.0", + "17.69.0" + ], + "radio happened": [ + "17.69.0" + ], + "radio havana cuba": [ + "17.69.0" + ], + "radio home run": [ + "17.69.0" + ], + "radio movement": [ + "17.11.0" + ], + "radio network": [ + "17.43.0", + "17.43.1" + ], + "radio networks": [ + "17.43.0" + ], + "radio picked": [ + "17.69.0" + ], + "radio pirate": [ + "17.69.0" + ], + "radio pirates": [ + "17.69.0" + ], + "radio program": [ + "17.11.0" + ], + "radio program offers": [ + "17.11.0" + ], + "radio receiver": [ + "17.24.0", + "17.43.0" + ], + "radio started": [ + "17.69.0" + ], + "radio stations": [ + "17.11.0", + "17.43.0", + "17.43.1", + "17.69.0" + ], + "radio student": [ + "17.5.0" + ], + "radio technology": [ + "17.69.0" + ], + "radio theory": [ + "17.11.0" + ], + "radio waves": [ + "17.69.0" + ], + "radio68h available soon": [ + "17.43.0" + ], + "raises contemporary issues": [ + "17.42.0" + ], + "ralf homann": [ + "17.11.0" + ], + "random news article": [ + "17.36.0" + ], + "ranking french military": [ + "17.53.0" + ], + "rankled": [ + "17.58.1" + ], + "rankles": [ + "17.58.3" + ], + "rapidly increasing division": [ + "17.46.0" + ], + "rassel": [ + "17.74.0" + ], + "rassel by cornelia": [ + "17.74.0" + ], + "rating authorities": [ + "17.17.0" + ], + "rating systems": [ + "17.17.0" + ], + "rating systems issue": [ + "17.17.0" + ], + "rave": [ + "17.8.0" + ], + "rave culture people": [ + "17.8.0", + "17.8.0" + ], + "rave scene": [ + "17.8.0" + ], + "raw files themselves": [ + "17.93.0" + ], + "raw material": [ + "17.95.0" + ], + "raw unfiltered opinion": [ + "17.36.0" + ], + "re completely negative": [ + "17.37.0" + ], + "re looking": [ + "17.67.0" + ], + "re receiving day": [ + "17.75.0" + ], + "reaching mass circulation": [ + "17.52.0" + ], + "read": [ + "17.77.1" + ], + "read army fraction": [ + "17.17.0" + ], + "read hakim bey=b9s": [ + "17.11.0" + ], + "read my book": [ + "17.46.2" + ], + "read norbert wiener": [ + "17.61.0" + ], + "read original documents": [ + "17.35.0" + ], + "read tetsuo kogawa": [ + "17.11.0" + ], + "read texts": [ + "17.38.0" + ], + "readers": [ + "17.39.2", + "17.67.0" + ], + "reading": [ + "17.58.2" + ], + "reading andrew ross": [ + "17.13.0" + ], + "reading erik davis": [ + "17.61.0" + ], + "reading kodwo eshun": [ + "17.61.0", + "17.61.0" + ], + "reading mondo": [ + "17.58.2" + ], + "readme": [ + "17.55.0" + ], + "real": [ + "17.9.0", + "17.25.0", + "17.45.0", + "17.78.0", + "17.82.0" + ], + "real audio server": [ + "17.17.0" + ], + "real audio service": [ + "17.3.0" + ], + "real behavior outside": [ + "17.73.0" + ], + "real buildings pretending": [ + "17.65.0" + ], + "real burden": [ + "17.71.0" + ], + "real efforts taking": [ + "17.42.0" + ], + "real estate boom": [ + "17.13.0" + ], + "real existing discontent": [ + "17.13.0" + ], + "real fysical body": [ + "17.73.0" + ], + "real immanent engineers": [ + "17.91.0" + ], + "real life": [ + "17.73.0" + ], + "real life action": [ + "17.4.0" + ], + "real life appear": [ + "17.83.0" + ], + "real life experiences": [ + "17.4.0" + ], + "real life meetings": [ + "17.1.0" + ], + "real little surprise": [ + "17.71.0" + ], + "real percieved benefit": [ + "17.76.0" + ], + "real personalities": [ + "17.4.0" + ], + "real pleasure": [ + "17.71.0" + ], + "real power": [ + "17.71.0" + ], + "real profound issue": [ + "17.78.0" + ], + "real research gap": [ + "17.13.0" + ], + "real socialist party": [ + "17.78.0" + ], + "real space": [ + "17.1.0" + ], + "real technical changes": [ + "17.45.0" + ], + "real time whatever": [ + "17.58.0" + ], + "real video art": [ + "17.4.0", + "17.4.0" + ], + "real video player": [ + "17.20.0" + ], + "real world": [ + "17.45.0" + ], + "reality": [ + "17.73.0" + ], + "realtime data processing": [ + "17.57.0" + ], + "rearrange disciplinary boundaries": [ + "17.35.0" + ], + "reason": [ + "17.22.0" + ], + "reason contemporary marxists": [ + "17.45.0" + ], + "reason slowly fade": [ + "17.14.0" + ], + "reasonan authentic demand": [ + "17.62.0" + ], + "reasons format accuracy": [ + "17.55.0" + ], + "rebel wall street": [ + "17.45.0" + ], + "rebuild public trust": [ + "17.80.0" + ], + "receiving signals": [ + "17.24.0" + ], + "recent aol/timewarner takeover": [ + "17.83.0" + ], + "recent capitualisation": [ + "17.78.0" + ], + "recent moral rights": [ + "17.46.0" + ], + "recent project": [ + "17.41.0" + ], + "recent telecommunication legislation": [ + "17.78.0" + ], + "recent updated version": [ + "17.6.0" + ], + "recently": [ + "17.28.0", + "17.79.0" + ], + "recently becoming popular": [ + "17.8.0" + ], + "recently extended subscription": [ + "17.85.0" + ], + "recently founded graphic": [ + "17.93.0" + ], + "recently guest researcher": [ + "17.15.0" + ], + "recently launched": [ + "17.64.0" + ], + "recently published book": [ + "17.91.0" + ], + "recently published catalogues": [ + "17.11.0" + ], + "recently released": [ + "17.88.0" + ], + "recently translated writings": [ + "17.69.0" + ], + "recently visited vienna": [ + "17.47.0" + ], + "rechtsunsicherheit als programm": [ + "17.17.0" + ], + "reciprocal symbolic economy": [ + "17.8.0" + ], + "recognising dialectical dynamics": [ + "17.91.0" + ], + "reconfigure communication infrastructure": [ + "17.47.0" + ], + "reconfigure resistant actions": [ + "17.7.0" + ], + "record": [ + "17.95.0" + ], + "record companies": [ + "17.61.0" + ], + "record generates": [ + "17.61.0" + ], + "record keeping": [ + "17.95.0" + ], + "record labels": [ + "17.61.0" + ], + "recording police abuses": [ + "17.47.0" + ], + "records": [ + "17.95.0" + ], + "recruit west indian": [ + "17.86.0" + ], + "red army fraction": [ + "17.41.0" + ], + "redirect search strings": [ + "17.86.0" + ], + "reduce cultural studies": [ + "17.8.0" + ], + "redundant computers donated": [ + "17.87.0" + ], + "refashion power relations": [ + "17.92.0" + ], + "reference system outside": [ + "17.13.0" + ], + "reference systems": [ + "17.14.0" + ], + "reflect market forces": [ + "17.65.0" + ], + "reflective tactic": [ + "17.73.0" + ], + "reform committee": [ + "17.34.0" + ], + "reform constitutes": [ + "17.34.0" + ], + "reform efforts": [ + "17.34.0" + ], + "reform process failed": [ + "17.34.0" + ], + "reform proposal": [ + "17.34.0" + ], + "regaining democratic control": [ + "17.31.0" + ], + "regard dan graham": [ + "17.46.1", + "17.46.1" + ], + "regarding media theory": [ + "17.4.0" + ], + "regarding net art": [ + "17.70.0" + ], + "regime found flexible": [ + "17.28.0" + ], + "regional crafts organization": [ + "17.50.0" + ], + "regional labour market": [ + "17.13.0" + ], + "regional leaders control": [ + "17.17.0" + ], + "registering peoplesâ lives": [ + "17.95.0" + ], + "regular media activism": [ + "17.6.0" + ], + "regular program": [ + "17.38.0" + ], + "regularly exchange ideas": [ + "17.93.0" + ], + "regulate global finance": [ + "17.45.0" + ], + "reinventing social": [ + "17.30.0" + ], + "reinventing social networks": [ + "17.30.0", + "17.30.0" + ], + "related bussiness": [ + "17.79.0" + ], + "related issues": [ + "17.34.0" + ], + "related statistical information": [ + "17.41.0" + ], + "related urls": [ + "17.6.1" + ], + "relating artistic styles": [ + "17.63.0" + ], + "relation": [ + "17.1.0", + "17.48.0", + "17.94.0" + ], + "relational": [ + "17.65.0" + ], + "relational architecture": [ + "17.65.0", + "17.65.0" + ], + "relational architecture 3": [ + "17.65.0" + ], + "relational architecture amplifies": [ + "17.65.0" + ], + "relational architecture tends": [ + "17.65.0" + ], + "relational architectures": [ + "17.65.0" + ], + "relational database": [ + "17.95.0" + ], + "relational database management": [ + "17.95.0" + ], + "relations": [ + "17.48.0" + ], + "relationship": [ + "17.90.0" + ], + "relatively easy act": [ + "17.13.0" + ], + "relatively limited utility": [ + "17.30.0" + ], + "relatively recent urban": [ + "17.20.0" + ], + "relatively straightforward attention": [ + "17.90.0" + ], + "relatively straightforward matter": [ + "17.30.0" + ], + "released a beta-version": [ + "17.88.0" + ], + "relevant aesthetic phenomenon": [ + "17.68.0" + ], + "relevant texts related": [ + "17.38.0" + ], + "religious currents obviously": [ + "17.41.0" + ], + "rem koolhaas": [ + "17.20.0" + ], + "rem koolhaas lecture": [ + "17.20.0" + ], + "remain enormous distances": [ + "17.83.0" + ], + "remain forever unclear": [ + "17.52.0" + ], + "remain silent": [ + "17.52.0" + ], + "remained low key": [ + "17.43.0", + "17.43.1" + ], + "remaining actively critical": [ + "17.7.0" + ], + "remarkable design tradition": [ + "17.14.0" + ], + "remarkable ngvision project": [ + "17.12.0" + ], + "remarkably robust line": [ + "17.78.0" + ], + "remove universal access": [ + "17.78.0" + ], + "renault car factory": [ + "17.93.0" + ], + "rephrasing": [ + "17.58.3" + ], + "reporting": [ + "17.59.0" + ], + "reports acts": [ + "17.37.0" + ], + "represent visual reality": [ + "17.49.0" + ], + "representation": [ + "17.62.0", + "17.73.0" + ], + "representative democracy": [ + "17.78.0" + ], + "representative legislation": [ + "17.78.0" + ], + "representative political institutions": [ + "17.78.0" + ], + "represented individual artists": [ + "17.56.0" + ], + "reproducible art forms": [ + "17.70.0" + ], + "reproductive anachronisms": [ + "17.7.0" + ], + "require deliberate effort": [ + "17.30.0" + ], + "requires version update": [ + "17.6.0" + ], + "research": [ + "17.13.0", + "17.14.0", + "17.15.0", + "17.24.0", + "17.46.1" + ], + "research centre": [ + "17.53.1" + ], + "research methodology": [ + "17.13.0" + ], + "research methodology offers": [ + "17.13.0" + ], + "research project": [ + "17.81.0" + ], + "research scientist prevalent": [ + "17.58.0" + ], + "research station": [ + "17.24.0" + ], + "research station makrolab": [ + "17.24.0", + "17.24.0" + ], + "research strongly suggests": [ + "17.14.0" + ], + "researcher living": [ + "17.15.0" + ], + "residence": [ + "17.33.0" + ], + "residence dragan": [ + "17.33.0" + ], + "residence dragan espenschied": [ + "17.33.0", + "17.33.0" + ], + "resistant forces": [ + "17.7.0" + ], + "resistant vectors": [ + "17.7.0" + ], + "resource": [ + "17.7.0" + ], + "resource management": [ + "17.7.0" + ], + "resource managers": [ + "17.7.0" + ], + "resourcing idle time": [ + "17.41.0", + "17.41.0" + ], + "respectand strange weatherreached": [ + "17.13.0", + "17.13.0" + ], + "respected theorist": [ + "17.63.0" + ], + "response": [ + "17.46.2" + ], + "responsible function": [ + "17.34.0" + ], + "restored schönberg": [ + "17.70.0" + ], + "resulted": [ + "17.16.1" + ], + "resulting images chart": [ + "17.49.0" + ], + "resulting output": [ + "17.88.0" + ], + "resulting software": [ + "17.88.0" + ], + "resurgent class awareness": [ + "17.48.0" + ], + "resurgent nationalism": [ + "17.48.0" + ], + "retired outdated copies": [ + "17.6.0" + ], + "retrain unemployed women": [ + "17.74.0" + ], + "reveal hidden": [ + "17.60.0" + ], + "revenue flow": [ + "17.80.0" + ], + "revise democratic principles": [ + "17.34.0" + ], + "revolutionary law created": [ + "17.73.0" + ], + "revolutionary romantic appeal": [ + "17.4.0" + ], + "revue quart monde": [ + "17.63.0" + ], + "rewritten eleven times": [ + "17.61.0" + ], + "rhizome list etc": [ + "17.10.0" + ], + "rhizome subscribers": [ + "17.82.0" + ], + "rich multimedia contents": [ + "17.68.0" + ], + "richard": [ + "17.53.1", + "17.58.1", + "17.58.2", + "17.58.3", + "17.58.4", + "17.78.0" + ], + "richard barbrook": [ + "17.53.1", + "17.58.1", + "17.58.4", + "17.78.0" + ], + "richard barbrook wrote": [ + "17.58.4", + "17.58.4" + ], + "richard pierre davis": [ + "17.86.0" + ], + "richard wright": [ + "17.41.0" + ], + "richard wright covers": [ + "17.41.0" + ], + "ridiculously cheap sums": [ + "17.70.0" + ], + "rightist conspiracy theories": [ + "17.52.0" + ], + "robert": [ + "17.75.0" + ], + "robert bresson": [ + "17.32.0" + ], + "robert kurz": [ + "17.48.0" + ], + "robert mcchesney robert": [ + "17.75.0" + ], + "robert reich calls": [ + "17.48.0" + ], + "robust employment sector": [ + "17.13.0" + ], + "rodney king affair": [ + "17.53.0" + ], + "roel": [ + "17.69.0" + ], + "roel roscam": [ + "17.69.0" + ], + "roel roscam abbing": [ + "17.69.0", + "17.69.0" + ], + "roland barthes suggested": [ + "17.10.0" + ], + "role": [ + "17.14.0", + "17.46.1", + "17.79.0" + ], + "role model": [ + "17.31.0" + ], + "role plays constant": [ + "17.74.0" + ], + "romania": [ + "17.40.0" + ], + "romanian": [ + "17.40.0" + ], + "romanian art": [ + "17.40.0" + ], + "romanian art critic": [ + "17.40.0", + "17.40.0" + ], + "romanian context features": [ + "17.40.0" + ], + "romanian history": [ + "17.40.0" + ], + "romanian intelligentsia": [ + "17.40.0" + ], + "romanian pavilion": [ + "17.40.0" + ], + "room": [ + "17.85.0" + ], + "root server file": [ + "17.34.0" + ], + "roots initiatives": [ + "17.72.0" + ], + "rootservers currently": [ + "17.0.0" + ], + "rosanne": [ + "17.42.0" + ], + "rosanne altstatt": [ + "17.42.0" + ], + "rosanne altstatt rosanne": [ + "17.42.0" + ], + "roscam": [ + "17.69.0" + ], + "roscam abbing": [ + "17.69.0" + ], + "ross": [ + "17.13.0" + ], + "ross describes": [ + "17.13.0" + ], + "rotterdam film festival": [ + "17.40.0" + ], + "rough technical architecture": [ + "17.30.0" + ], + "royal festival hall": [ + "17.64.0" + ], + "rra": [ + "17.69.0" + ], + "rsg carnivore project": [ + "17.10.0" + ], + "rtmark expressing uncertainty": [ + "17.7.0" + ], + "rudolf hilferding wrote": [ + "17.45.0" + ], + "rumanian revolution": [ + "17.4.0" + ], + "rumanian tv revolution": [ + "17.4.0" + ], + "runcom command script": [ + "17.92.0" + ], + "runme.org": [ + "17.94.0" + ], + "running regular cybersalons": [ + "17.53.1" + ], + "russ site": [ + "17.42.0" + ], + "ruthless transnational corporate": [ + "17.58.0" + ], + "rwanda": [ + "17.29.0" + ], + "régine debatty": [ + "17.67.0" + ], + "s11 protests demonstrated": [ + "17.47.0" + ], + "s11 song": [ + "17.47.0" + ], + "saatchi gallery": [ + "17.64.0" + ], + "sad": [ + "17.35.0" + ], + "sad empire": [ + "17.44.0" + ], + "sadie": [ + "17.61.0" + ], + "sadie plant": [ + "17.61.0" + ], + "safety zone": [ + "17.8.0" + ], + "saint": [ + "17.66.0" + ], + "saint andy warhol": [ + "17.46.0" + ], + "saint bernard": [ + "17.1.0" + ], + "saint bernard church": [ + "17.1.0", + "17.1.0" + ], + "saint precarious": [ + "17.66.0" + ], + "saint precarious stands": [ + "17.66.0" + ], + "salon.com doug henwood": [ + "17.45.0" + ], + "sammiches an hang": [ + "17.36.0" + ], + "samuel pepysâ days": [ + "17.95.0" + ], + "san diego region": [ + "17.58.0" + ], + "san francisco ca": [ + "17.60.0" + ], + "san francisco reached": [ + "17.30.0" + ], + "sans": [ + "17.1.0" + ], + "sans papiers": [ + "17.1.0" + ], + "sans papiers groups": [ + "17.1.0" + ], + "sans papiers movement": [ + "17.1.0", + "17.1.0" + ], + "santa cruz": [ + "17.58.2" + ], + "sarajevo": [ + "17.29.0" + ], + "saskia": [ + "17.21.0" + ], + "saskia sassen": [ + "17.21.0" + ], + "saskia sassen calls": [ + "17.25.0" + ], + "saskia sassen spoke": [ + "17.26.0", + "17.29.0" + ], + "sassen": [ + "17.21.0" + ], + "satellite": [ + "17.24.0" + ], + "satellite links": [ + "17.23.1", + "17.23.1" + ], + "satellite links etc": [ + "17.23.1" + ], + "satellite receiver": [ + "17.24.0" + ], + "satellite telephone system": [ + "17.24.0" + ], + "saudi oil barons": [ + "17.44.0" + ], + "savings accounts": [ + "17.41.0" + ], + "savings banks": [ + "17.41.0" + ], + "savski": [ + "17.5.0" + ], + "saxon media theories": [ + "17.48.0" + ], + "scale": [ + "17.23.1", + "17.65.0" + ], + "scale economic development": [ + "17.80.0" + ], + "scale monologic representation": [ + "17.65.0" + ], + "scale productions": [ + "17.6.0" + ], + "scale public installations": [ + "17.6.0" + ], + "scale technological culture": [ + "17.9.0" + ], + "scale urban spaces": [ + "17.65.0" + ], + "scandal born thanks": [ + "17.68.0" + ], + "scanner": [ + "17.2.0" + ], + "scanning": [ + "17.16.0", + "17.16.2", + "17.16.3" + ], + "scanning the girls": [ + "17.16.0", + "17.16.2", + "17.16.3" + ], + "scarcity": [ + "17.15.0" + ], + "schedule": [ + "17.16.1" + ], + "schizo analyses counted": [ + "17.73.0" + ], + "scholz": [ + "17.35.0" + ], + "school": [ + "17.52.0", + "17.63.0" + ], + "school for design": [ + "17.52.0" + ], + "school of communications": [ + "17.53.1" + ], + "schools": [ + "17.38.0", + "17.80.0" + ], + "schröder/blair paper": [ + "17.31.0" + ], + "schultz": [ + "17.0.0" + ], + "schönberg": [ + "17.70.0", + "17.71.0" + ], + "schönberg installation": [ + "17.71.0" + ], + "schöneberg": [ + "17.70.0" + ], + "science": [ + "17.18.0", + "17.51.0", + "17.61.0", + "17.91.0" + ], + "science develops steps": [ + "17.14.0" + ], + "science fiction": [ + "17.51.0", + "17.61.0", + "17.91.0" + ], + "science fiction books": [ + "17.91.0" + ], + "science fiction films": [ + "17.51.0" + ], + "science fiction offers": [ + "17.91.0" + ], + "science fiction re": [ + "17.61.0" + ], + "science fiction texts": [ + "17.91.0" + ], + "science fiction writers": [ + "17.51.0" + ], + "sciences": [ + "17.14.0", + "17.51.0" + ], + "sciences basic issues": [ + "17.14.0" + ], + "sciences retrieve": [ + "17.14.0" + ], + "scientific backgrounds": [ + "17.91.0" + ], + "scientific discipline": [ + "17.91.0" + ], + "scientific discourses": [ + "17.91.0" + ], + "scientific enquiry participates": [ + "17.91.0" + ], + "scientific research": [ + "17.40.0" + ], + "scientific research tool": [ + "17.40.0" + ], + "scientific theory": [ + "17.91.0" + ], + "scientific truths": [ + "17.91.0" + ], + "scientist confusion reminds": [ + "17.58.0" + ], + "scientists ­ken goldberg": [ + "17.58.0" + ], + "scratch perry luciana": [ + "17.91.0" + ], + "screen": [ + "17.50.0" + ], + "screenal net art": [ + "17.51.0", + "17.51.0" + ], + "screensaver": [ + "17.41.0" + ], + "scribus": [ + "17.93.0" + ], + "seahawks": [ + "17.60.0" + ], + "search": [ + "17.86.0" + ], + "search engine": [ + "17.61.0", + "17.86.0" + ], + "search engine pulls": [ + "17.61.0" + ], + "search engines": [ + "17.86.0", + "17.86.0" + ], + "search engines etc": [ + "17.88.0" + ], + "searchlight beams": [ + "17.65.0" + ], + "searchlights": [ + "17.65.0" + ], + "seattle indymedia": [ + "17.47.0" + ], + "seattle indymedia site": [ + "17.47.0", + "17.47.0" + ], + "seattle seahawks": [ + "17.60.0" + ], + "seattle site": [ + "17.47.0" + ], + "secret": [ + "17.2.0" + ], + "secret conference": [ + "17.84.0" + ], + "secret internet terrorist": [ + "17.77.0" + ], + "secret service": [ + "17.2.0" + ], + "sector": [ + "17.75.0", + "17.80.0" + ], + "secure job": [ + "17.59.0" + ], + "secure niche continue": [ + "17.80.0" + ], + "secure speaking position": [ + "17.59.0" + ], + "security alarm system": [ + "17.87.0" + ], + "security discourse": [ + "17.92.0" + ], + "sedated time": [ + "17.86.0" + ], + "sedated time capsule": [ + "17.86.0" + ], + "seeks confrontation": [ + "17.30.0" + ], + "selcal signals transmitted": [ + "17.24.0" + ], + "selection": [ + "17.86.0" + ], + "selection project": [ + "17.86.0" + ], + "selfish libertarian greed": [ + "17.30.0" + ], + "semiotic frame embedded": [ + "17.90.0" + ], + "semiotic regime takes": [ + "17.0.0" + ], + "send": [ + "17.6.1" + ], + "send a correction": [ + "17.6.1" + ], + "send continuous faxes": [ + "17.72.0" + ], + "send encrypted communications": [ + "17.69.0" + ], + "sending digital data": [ + "17.69.0" + ], + "sends electromagnetic waves": [ + "17.94.0" + ], + "sennegallia": [ + "17.12.0" + ], + "sennegalliašs own telestreet": [ + "17.12.0" + ], + "sennigalliašs local government": [ + "17.12.0" + ], + "sense": [ + "17.3.0", + "17.6.0", + "17.14.0", + "17.37.0", + "17.59.0", + "17.78.0", + "17.91.0" + ], + "sense investigative journalism": [ + "17.59.0" + ], + "sense of community": [ + "17.3.0" + ], + "separate level means": [ + "17.68.0" + ], + "separate telephone line": [ + "17.87.0" + ], + "sequences enables": [ + "17.91.0" + ], + "serbian": [ + "17.53.1" + ], + "serbian occupation": [ + "17.53.1" + ], + "serbian occupation forces": [ + "17.53.1", + "17.53.1" + ], + "serious political organizing": [ + "17.75.0" + ], + "seriously consider scribus": [ + "17.93.0" + ], + "seropositive ball": [ + "17.14.0" + ], + "serpentine": [ + "17.64.0" + ], + "serpentine gallery": [ + "17.64.0" + ], + "serpentine gallery site": [ + "17.64.0", + "17.64.0" + ], + "serve civil society": [ + "17.30.0" + ], + "server": [ + "17.9.0" + ], + "server allowed access": [ + "17.81.0" + ], + "servers": [ + "17.81.0" + ], + "service": [ + "17.2.0" + ], + "services adressed": [ + "17.17.0" + ], + "setting base rates": [ + "17.15.0" + ], + "setting corporate policy": [ + "17.45.0" + ], + "setting themselves": [ + "17.31.0" + ], + "settopbox interface culture": [ + "17.56.0" + ], + "seven firms": [ + "17.75.0" + ], + "seven people hosting": [ + "17.85.0" + ], + "seven stories press": [ + "17.75.0" + ], + "severe banking crisis": [ + "17.28.0" + ], + "severs cumbersome tentacles": [ + "17.6.0" + ], + "sex": [ + "17.91.0" + ], + "sex science": [ + "17.91.0" + ], + "sex science fiction": [ + "17.91.0" + ], + "sf called": [ + "17.8.0" + ], + "shadowy american quality": [ + "17.78.0" + ], + "shafts required pumping": [ + "17.95.0" + ], + "share": [ + "17.3.0", + "17.15.0" + ], + "share intelligence information": [ + "17.42.0" + ], + "shared artistic destiny": [ + "17.58.0" + ], + "sharing": [ + "17.15.0" + ], + "sharing culture": [ + "17.15.0" + ], + "sharing economy": [ + "17.15.0" + ], + "sharing knowledge allowed": [ + "17.66.0" + ], + "sharply divided opinions": [ + "17.7.0" + ], + "shigata": [ + "17.56.0" + ], + "shiny short dress": [ + "17.79.0" + ], + "shipping container": [ + "17.87.0" + ], + "shipping network": [ + "17.69.0" + ], + "shopping mall": [ + "17.26.0" + ], + "short interview": [ + "17.33.0", + "17.84.0" + ], + "short interview made": [ + "17.84.0" + ], + "short piece instruction": [ + "17.92.0" + ], + "short time ago": [ + "17.71.0" + ], + "shouldnât scale": [ + "17.69.0" + ], + "show": [ + "17.19.0", + "17.38.0", + "17.94.0" + ], + "show net art": [ + "17.70.0" + ], + "shows": [ + "17.50.0" + ], + "shu": [ + "17.6.0", + "17.6.1" + ], + "shu lea": [ + "17.6.0", + "17.6.0", + "17.6.1" + ], + "shu lea asked": [ + "17.6.1" + ], + "shu lea chang": [ + "17.79.0" + ], + "shu lea cheang": [ + "17.6.0", + "17.6.0" + ], + "shu lea left": [ + "17.6.0" + ], + "shulgin": [ + "17.83.0", + "17.84.0" + ], + "shulgin made": [ + "17.84.0" + ], + "side": [ + "17.16.1" + ], + "sidestep readymade wizardware": [ + "17.10.0" + ], + "sign system respond": [ + "17.9.0" + ], + "signals": [ + "17.24.0" + ], + "signals information": [ + "17.24.0" + ], + "significant difference": [ + "17.50.0" + ], + "significant online presence": [ + "17.50.0" + ], + "significant work": [ + "17.46.2" + ], + "silicon valley techno": [ + "17.58.0" + ], + "silicon valleyâs buzzwords": [ + "17.69.0" + ], + "similar experience": [ + "17.14.0" + ], + "similar independent medias": [ + "17.72.0" + ], + "similar situation": [ + "17.77.1" + ], + "similar structural position": [ + "17.61.0" + ], + "similar tendencies": [ + "17.61.0" + ], + "similar visionary magnitude": [ + "17.14.0" + ], + "simon": [ + "17.76.0" + ], + "simon martin lips": [ + "17.78.0" + ], + "simon pope": [ + "17.76.0" + ], + "simple": [ + "17.16.0", + "17.16.3" + ], + "simple adolescent jealousy": [ + "17.0.0" + ], + "simple literary inventions": [ + "17.68.0" + ], + "simple practitioner": [ + "17.0.0" + ], + "simple things": [ + "17.16.0", + "17.16.3" + ], + "simpler products coming": [ + "17.88.0" + ], + "simply fining media": [ + "17.59.0" + ], + "simply intellectual modesty": [ + "17.58.0" + ], + "single application won": [ + "17.30.0" + ], + "single human situation": [ + "17.63.0" + ], + "single person": [ + "17.19.0" + ], + "single researcher doing": [ + "17.13.0" + ], + "site": [ + "17.6.0", + "17.33.0", + "17.41.0", + "17.47.0", + "17.54.0", + "17.64.0", + "17.77.0", + "17.82.0", + "17.88.0" + ], + "site for media": [ + "17.42.0" + ], + "site hell.com": [ + "17.82.0" + ], + "sites": [ + "17.64.0", + "17.82.0", + "17.88.0" + ], + "sites appear towards": [ + "17.10.0" + ], + "sitting": [ + "17.57.0" + ], + "situation": [ + "17.28.0", + "17.62.0", + "17.66.0", + "17.77.1" + ], + "situation constitutes": [ + "17.34.0" + ], + "situation in bulgaria": [ + "17.28.0" + ], + "situations human dignity": [ + "17.14.0" + ], + "six billion increasingly": [ + "17.30.0" + ], + "six months": [ + "17.87.0" + ], + "six months time": [ + "17.87.0" + ], + "sixties approach": [ + "17.38.0" + ], + "skeptical camp versus": [ + "17.78.0" + ], + "skewed news": [ + "17.36.0" + ], + "skill knowledge workers": [ + "17.13.0" + ], + "skilled computer": [ + "17.70.0" + ], + "skills": [ + "17.84.0" + ], + "skills increased dramatically": [ + "17.8.0" + ], + "skills using adobe": [ + "17.93.0" + ], + "slanted truths": [ + "17.91.0" + ], + "slave labour project": [ + "17.95.0" + ], + "slavishly follow trends": [ + "17.41.0" + ], + "slightly ironic perspective": [ + "17.94.0" + ], + "slovenia": [ + "17.77.1" + ], + "slovenian": [ + "17.77.1" + ], + "slovenian environment smart": [ + "17.40.0" + ], + "slovenian was printed": [ + "17.77.1" + ], + "slow cooking design": [ + "17.93.0" + ], + "slow dimension": [ + "17.69.0" + ], + "slow heart beat": [ + "17.65.0" + ], + "slowly fluctuating space": [ + "17.65.0" + ], + "smart artist makes": [ + "17.70.0" + ], + "smooth painted surface": [ + "17.87.0" + ], + "sms": [ + "17.89.0" + ], + "sms credits left": [ + "17.89.0" + ], + "sms gateway": [ + "17.89.0" + ], + "sms gateway servers": [ + "17.89.0" + ], + "sms network created": [ + "17.89.0" + ], + "sms texts": [ + "17.89.0" + ], + "snafu and subjesus": [ + "17.9.0" + ], + "snap to grid": [ + "17.58.0" + ], + "snd": [ + "17.16.1" + ], + "so-called": [ + "17.4.0" + ], + "soap radio": [ + "17.55.0" + ], + "sobchack": [ + "17.58.2" + ], + "sobchack originated": [ + "17.58.2", + "17.58.2" + ], + "social": [ + "17.13.0", + "17.14.0", + "17.15.0", + "17.30.0", + "17.31.0", + "17.39.0", + "17.44.0", + "17.58.1", + "17.66.0", + "17.71.0", + "17.72.0", + "17.73.0", + "17.78.0", + "17.90.0" + ], + "social analyses": [ + "17.58.1" + ], + "social brain": [ + "17.90.0" + ], + "social centers": [ + "17.3.0" + ], + "social concerns": [ + "17.78.0" + ], + "social considerations": [ + "17.75.0" + ], + "social constructions": [ + "17.7.0" + ], + "social contract": [ + "17.30.0" + ], + "social cooperation": [ + "17.39.0" + ], + "social darwinism": [ + "17.78.0" + ], + "social democracy": [ + "17.45.0" + ], + "social democrat": [ + "17.78.0" + ], + "social democrate": [ + "17.78.0" + ], + "social democratic": [ + "17.78.0" + ], + "social democratic circles": [ + "17.45.0" + ], + "social democratic sense": [ + "17.78.0", + "17.78.0" + ], + "social disciplinary apparatuses": [ + "17.61.0" + ], + "social element": [ + "17.66.0" + ], + "social enclosures": [ + "17.30.0" + ], + "social factory": [ + "17.90.0" + ], + "social forum": [ + "17.44.0" + ], + "social hierarchies": [ + "17.7.0" + ], + "social interaction": [ + "17.30.0" + ], + "social justice": [ + "17.13.0" + ], + "social justice movements": [ + "17.13.0" + ], + "social legislative system": [ + "17.73.0" + ], + "social media": [ + "17.15.0", + "17.15.0" + ], + "social media communication": [ + "17.15.0" + ], + "social media expert": [ + "17.69.0" + ], + "social movements": [ + "17.13.0" + ], + "social multitudes": [ + "17.44.0" + ], + "social network": [ + "17.30.0", + "17.30.0" + ], + "social network sites": [ + "17.30.0", + "17.30.0" + ], + "social networking sites": [ + "17.30.0" + ], + "social networks": [ + "17.90.0" + ], + "social nexus created": [ + "17.46.1" + ], + "social phenomenology": [ + "17.46.1" + ], + "social precarity": [ + "17.66.0" + ], + "social precarity calls": [ + "17.66.0", + "17.66.0" + ], + "social precarity supercedes": [ + "17.66.0", + "17.66.0" + ], + "social production": [ + "17.66.0" + ], + "social relation": [ + "17.66.0" + ], + "social rights won": [ + "17.66.0" + ], + "social safety net": [ + "17.78.0" + ], + "social sciences": [ + "17.14.0", + "17.14.0", + "17.78.0" + ], + "social sciences taking": [ + "17.14.0" + ], + "social sculpture": [ + "17.89.0" + ], + "social situation": [ + "17.28.0" + ], + "social solidarity": [ + "17.7.0", + "17.37.0", + "17.39.0" + ], + "social sphere": [ + "17.78.0" + ], + "social struggle": [ + "17.66.0" + ], + "social theories": [ + "17.78.0" + ], + "social welfare": [ + "17.44.0" + ], + "socially engaged": [ + "17.89.0" + ], + "socially responsible investments": [ + "17.30.0" + ], + "society": [ + "17.30.0", + "17.31.0", + "17.34.0" + ], + "society advocates": [ + "17.30.0" + ], + "sofia": [ + "17.28.0" + ], + "sofia center": [ + "17.28.0" + ], + "soft industry domain": [ + "17.6.0" + ], + "softtheory particularly appropriate": [ + "17.58.0" + ], + "software": [ + "17.2.0", + "17.10.0", + "17.35.0", + "17.38.0", + "17.49.0", + "17.65.0", + "17.76.0", + "17.87.0", + "17.88.0", + "17.92.0", + "17.93.0", + "17.94.0" + ], + "software applications": [ + "17.88.0" + ], + "software art amy": [ + "17.10.0" + ], + "software art comes": [ + "17.10.0" + ], + "software art context": [ + "17.10.0", + "17.10.0" + ], + "software art exists": [ + "17.10.0", + "17.10.0" + ], + "software art helps": [ + "17.10.0" + ], + "software art opens": [ + "17.10.0" + ], + "software art projects": [ + "17.10.0" + ], + "software art repository": [ + "17.94.0", + "17.94.0" + ], + "software art self": [ + "17.10.0" + ], + "software art self-organization": [ + "17.10.0" + ], + "software art zoo": [ + "17.10.0", + "17.10.0" + ], + "software artists": [ + "17.10.0" + ], + "software artists approach": [ + "17.10.0" + ], + "software culture": [ + "17.94.0" + ], + "software cultures": [ + "17.10.0" + ], + "software displays spatially": [ + "17.88.0" + ], + "software licenses alongside": [ + "17.43.0", + "17.43.1" + ], + "software list": [ + "17.87.0" + ], + "software projects": [ + "17.93.0" + ], + "software spatially organises": [ + "17.88.0" + ], + "software thatâs useful": [ + "17.95.0" + ], + "software tools": [ + "17.93.0" + ], + "solar eclipse parties": [ + "17.8.0" + ], + "soldier": [ + "17.42.0" + ], + "soldiers": [ + "17.42.0" + ], + "sole personal responsibility": [ + "17.4.0" + ], + "solely signifying systems": [ + "17.92.0" + ], + "solid analytical skills": [ + "17.14.0" + ], + "solid social categories": [ + "17.7.0" + ], + "solid social relationships": [ + "17.30.0" + ], + "solidarities": [ + "17.39.2" + ], + "solidarity": [ + "17.39.0" + ], + "solitary master passing": [ + "17.93.0" + ], + "sollfrank": [ + "17.19.0", + "17.74.0" + ], + "sollfrank brussels": [ + "17.74.0" + ], + "solutions": [ + "17.0.0", + "17.23.0", + "17.43.0", + "17.43.1" + ], + "solutions controls": [ + "17.0.0" + ], + "somehow actually exist": [ + "17.48.0" + ], + "sometimes commercial media": [ + "17.59.0" + ], + "sometimes difficulty following": [ + "17.93.0" + ], + "sometimes imc activities": [ + "17.47.0" + ], + "sometimes professional engineers": [ + "17.56.0" + ], + "somewhat bizarre": [ + "17.9.0" + ], + "somewhat closed circles": [ + "17.9.0" + ], + "somewhat missing round": [ + "17.94.0" + ], + "somewhat normal expectation": [ + "17.38.0" + ], + "somewhat primitve": [ + "17.9.0" + ], + "somewhat regular visitor": [ + "17.40.0" + ], + "somewhat similar": [ + "17.70.0" + ], + "somewhat surprising": [ + "17.94.0" + ], + "somewhat vague concept": [ + "17.70.0" + ], + "son et lumiere": [ + "17.65.0" + ], + "sonic": [ + "17.61.0" + ], + "sonic concepts": [ + "17.61.0" + ], + "sonic evolutions happen": [ + "17.61.0" + ], + "sonic fiction": [ + "17.61.0" + ], + "sonic fiction debut": [ + "17.61.0" + ], + "sophisticated cultural production": [ + "17.31.0", + "17.31.0" + ], + "sophisticated military machines": [ + "17.53.0" + ], + "soros center": [ + "17.28.0" + ], + "soros foundation": [ + "17.28.0" + ], + "soros publishing activities": [ + "17.28.0" + ], + "sort": [ + "17.60.0", + "17.78.0" + ], + "sound": [ + "17.60.0", + "17.61.0" + ], + "sound generation software": [ + "17.88.0" + ], + "sounds": [ + "17.60.0" + ], + "sounds outside spaces": [ + "17.60.0" + ], + "sour desktop world": [ + "17.63.0" + ], + "source": [ + "17.35.0" + ], + "source database system": [ + "17.35.0" + ], + "source software": [ + "17.35.0", + "17.93.0" + ], + "south": [ + "17.50.0", + "17.62.0" + ], + "south africa": [ + "17.50.0" + ], + "south asia": [ + "17.62.0", + "17.62.0" + ], + "south asian urban": [ + "17.62.0" + ], + "south bank centres": [ + "17.64.0" + ], + "southeast asian bubble": [ + "17.45.0" + ], + "southern": [ + "17.58.0" + ], + "southern california": [ + "17.58.0" + ], + "southern europe": [ + "17.68.0" + ], + "southern europe envies": [ + "17.68.0" + ], + "southern mediterranean rim": [ + "17.22.0" + ], + "sovjet empire": [ + "17.28.0" + ], + "space": [ + "17.0.0", + "17.5.0", + "17.9.0", + "17.14.0", + "17.21.0", + "17.26.0", + "17.27.0", + "17.32.0", + "17.41.0", + "17.51.0", + "17.52.0", + "17.53.0", + "17.60.0", + "17.72.0", + "17.81.0", + "17.85.0" + ], + "space antitrust lawsuit": [ + "17.23.0" + ], + "space model creates": [ + "17.0.0" + ], + "space sits easily": [ + "17.12.0" + ], + "spaces": [ + "17.5.0", + "17.27.0", + "17.52.0", + "17.85.0" + ], + "spain": [ + "17.77.1" + ], + "spam": [ + "17.54.0" + ], + "spam art project": [ + "17.54.0" + ], + "spanish political action": [ + "17.3.0" + ], + "spanish version published": [ + "17.66.0" + ], + "spatially oriented bodies": [ + "17.51.0" + ], + "spd": [ + "17.17.0" + ], + "speak": [ + "17.59.0" + ], + "speaking": [ + "17.27.0" + ], + "speaking english": [ + "17.14.0" + ], + "speaking positions": [ + "17.59.0" + ], + "speaking university researchers": [ + "17.74.0" + ], + "special concern": [ + "17.17.0" + ], + "special decoding software": [ + "17.24.0" + ], + "special digital": [ + "17.24.0" + ], + "special meaning": [ + "17.39.1", + "17.39.2" + ], + "special phone lines": [ + "17.17.0" + ], + "special project dealing": [ + "17.11.0" + ], + "special services": [ + "17.17.0" + ], + "special significance": [ + "17.11.0" + ], + "specialised context outside": [ + "17.93.0" + ], + "specialised cultures": [ + "17.41.0" + ], + "specialised media culture": [ + "17.41.0" + ], + "specialised projects": [ + "17.93.0" + ], + "species": [ + "17.7.0" + ], + "specific baud rates": [ + "17.24.0" + ], + "specific camera orientations": [ + "17.42.0" + ], + "specific cyberfeminist": [ + "17.73.0" + ], + "specific cyberfeminist issues": [ + "17.73.0" + ], + "specific functional expression": [ + "17.73.0" + ], + "specific historical moment": [ + "17.26.0" + ], + "specific material qualities": [ + "17.10.0" + ], + "specific targeting formats": [ + "17.42.0" + ], + "specific temporal conditions": [ + "17.41.0" + ], + "specifically conceptual framework": [ + "17.58.0" + ], + "specified bands": [ + "17.69.0" + ], + "spectrum": [ + "17.24.0", + "17.69.0" + ], + "spectrum weâll": [ + "17.69.0" + ], + "speculative": [ + "17.61.0" + ], + "speculative theory embedded": [ + "17.61.0", + "17.61.0" + ], + "speculative thought": [ + "17.61.0" + ], + "speech": [ + "17.17.0" + ], + "speed": [ + "17.53.0" + ], + "speed bike tribes": [ + "17.8.0" + ], + "speed politics played": [ + "17.53.0" + ], + "speedily coming towards": [ + "17.94.0" + ], + "spencer social darwinism": [ + "17.78.0" + ], + "spescific": [ + "17.46.1" + ], + "sphere": [ + "17.90.0" + ], + "spinozist task towards": [ + "17.91.0" + ], + "spivak": [ + "17.25.0" + ], + "spivak works": [ + "17.25.0" + ], + "spoken free": [ + "17.17.0" + ], + "spontaneous intant reactions": [ + "17.36.0" + ], + "spread": [ + "17.19.0" + ], + "spreading": [ + "17.52.0" + ], + "sprint": [ + "17.23.0" + ], + "squatting unused tlds": [ + "17.0.0" + ], + "stabilizes social": [ + "17.15.0" + ], + "stable natura naturata": [ + "17.92.0" + ], + "stadium": [ + "17.60.0" + ], + "stale clichés": [ + "17.46.0" + ], + "stalker": [ + "17.76.0" + ], + "stalker browser": [ + "17.76.0" + ], + "stalker proposes": [ + "17.76.0" + ], + "stampa": [ + "17.44.0" + ], + "standard industrial employment": [ + "17.13.0" + ], + "standard setting bodies": [ + "17.34.0" + ], + "standardising ship types": [ + "17.95.0" + ], + "standards": [ + "17.30.0" + ], + "stands for extended": [ + "17.5.0" + ], + "stands for mindaugas": [ + "17.54.0" + ], + "stanford research institute": [ + "17.30.0" + ], + "start": [ + "17.61.0" + ], + "start charging $100us": [ + "17.0.0" + ], + "start developing infrastructure": [ + "17.14.0" + ], + "start getting": [ + "17.86.0" + ], + "start getting dropped": [ + "17.86.0" + ], + "start sending information": [ + "17.28.0" + ], + "started": [ + "17.4.0", + "17.40.0", + "17.61.0", + "17.72.0", + "17.80.0" + ], + "started audio streaming": [ + "17.11.0" + ], + "started till date": [ + "17.62.0" + ], + "state": [ + "17.17.0", + "17.28.0", + "17.29.0", + "17.39.0", + "17.39.2", + "17.78.0" + ], + "state secret service": [ + "17.2.0" + ], + "states": [ + "17.23.0", + "17.29.0", + "17.39.2", + "17.60.0" + ], + "states military intervention": [ + "17.29.0" + ], + "station": [ + "17.24.0", + "17.58.4" + ], + "station makrolab": [ + "17.24.0" + ], + "stations": [ + "17.43.0", + "17.43.1" + ], + "statistical data displayed": [ + "17.17.0" + ], + "stats text": [ + "17.89.0" + ], + "steady revenue stream": [ + "17.80.0" + ], + "steam": [ + "17.95.0" + ], + "steam engine": [ + "17.95.0" + ], + "step forward": [ + "17.34.0" + ], + "step forward towards": [ + "17.34.0" + ], + "step towards 80s": [ + "17.46.0" + ], + "step towards globalisation": [ + "17.62.0" + ], + "stephane mandard": [ + "17.44.0" + ], + "stereotyped media hype": [ + "17.86.0" + ], + "stereotyped racial features": [ + "17.86.0" + ], + "stereotypes": [ + "17.86.0" + ], + "stereotypical half truths": [ + "17.86.0" + ], + "steve peter": [ + "17.55.0" + ], + "steve peter ganick": [ + "17.55.0" + ], + "steven": [ + "17.80.0" + ], + "steven e. miller": [ + "17.80.0" + ], + "steven levy": [ + "17.75.0", + "17.75.0" + ], + "steven levy wrote": [ + "17.75.0" + ], + "steven miller": [ + "17.80.0" + ], + "stevens": [ + "17.85.0" + ], + "stevens james": [ + "17.85.0" + ], + "stikker": [ + "17.26.0" + ], + "stillman": [ + "17.81.0" + ], + "stock": [ + "17.45.0" + ], + "stock sellers": [ + "17.45.0" + ], + "stock company": [ + "17.45.0" + ], + "stock exchange call": [ + "17.53.0" + ], + "stock market": [ + "17.45.0" + ], + "stock markets": [ + "17.45.0", + "17.45.0" + ], + "stocks": [ + "17.45.0" + ], + "stop losing sanity": [ + "17.94.0" + ], + "strange rectangular material": [ + "17.61.0" + ], + "strange shortfilms resulted": [ + "17.4.0" + ], + "strange weather": [ + "17.13.0" + ], + "strategic doorway": [ + "17.30.0" + ], + "strategie": [ + "17.53.0" + ], + "strategies artists deploy": [ + "17.65.0" + ], + "strategy": [ + "17.39.2" + ], + "stream live video": [ + "17.65.0" + ], + "stream media": [ + "17.47.0" + ], + "stream real audio": [ + "17.77.0", + "17.77.1" + ], + "stream realmedia content": [ + "17.43.1" + ], + "streaming": [ + "17.43.0", + "17.43.1", + "17.56.0" + ], + "streaming audio": [ + "17.11.0", + "17.56.0" + ], + "streaming live audio": [ + "17.43.0" + ], + "streaming media": [ + "17.11.0", + "17.43.0", + "17.43.0", + "17.43.1", + "17.43.1", + "17.56.0" + ], + "streaming media event": [ + "17.56.0", + "17.56.0" + ], + "streaming media formats": [ + "17.43.0", + "17.43.0", + "17.43.1" + ], + "streaming media infrastructure": [ + "17.89.0" + ], + "streaming media initiatives": [ + "17.43.0", + "17.43.0", + "17.43.1", + "17.43.1" + ], + "streaming media networks": [ + "17.43.0", + "17.43.0", + "17.43.1" + ], + "streaming media players": [ + "17.43.0", + "17.43.0", + "17.43.1", + "17.43.1" + ], + "streaming media practices": [ + "17.43.0", + "17.43.1" + ], + "streaming media sector": [ + "17.43.0", + "17.43.1" + ], + "streaming servers": [ + "17.89.0" + ], + "streaming sessions": [ + "17.11.0" + ], + "street": [ + "17.45.0" + ], + "street demos": [ + "17.45.0" + ], + "streets": [ + "17.90.0" + ], + "streets / communities": [ + "17.10.0" + ], + "stretched onto adjustable": [ + "17.70.0" + ], + "stricly literal sense": [ + "17.90.0" + ], + "strike techniques ineffective": [ + "17.31.0" + ], + "strong": [ + "17.66.0", + "17.84.0" + ], + "strong creative obligations": [ + "17.73.0" + ], + "strong existential mode": [ + "17.73.0" + ], + "strong existentially": [ + "17.73.0" + ], + "strong influence": [ + "17.4.0" + ], + "strong intellectual": [ + "17.4.0" + ], + "strong moral position": [ + "17.4.0" + ], + "strong political tool": [ + "17.72.0" + ], + "strong sharing culture": [ + "17.15.0" + ], + "strong symbiotic energy": [ + "17.42.0" + ], + "strongly believe": [ + "17.14.0" + ], + "strongly controlled": [ + "17.4.0" + ], + "strpic in zagreb": [ + "17.39.0" + ], + "structural adjustment programs": [ + "17.39.2" + ], + "structuralist design approach": [ + "17.38.0" + ], + "structuralist feminism concern": [ + "17.73.0" + ], + "structure": [ + "17.81.0", + "17.88.0" + ], + "structures": [ + "17.81.0", + "17.88.0" + ], + "struggle": [ + "17.44.0", + "17.66.0" + ], + "stuck en route": [ + "17.13.0" + ], + "student": [ + "17.5.0", + "17.11.0" + ], + "student individually plans": [ + "17.11.0" + ], + "students": [ + "17.11.0", + "17.14.0", + "17.35.0", + "17.38.0" + ], + "students feel comfortable": [ + "17.34.0" + ], + "studied art theory": [ + "17.40.0" + ], + "studies": [ + "17.8.0", + "17.13.0" + ], + "studio": [ + "17.12.0" + ], + "studio produced strong": [ + "17.4.0" + ], + "studying popular culture": [ + "17.13.0" + ], + "style": [ + "17.68.0" + ], + "style avant garde": [ + "17.48.0" + ], + "style direct": [ + "17.66.0" + ], + "subcultural scenes": [ + "17.8.0" + ], + "subcultural urban tribes": [ + "17.8.0" + ], + "subject": [ + "17.27.0" + ], + "subjectivity": [ + "17.73.0" + ], + "subjects": [ + "17.27.0" + ], + "submissive foreign policy": [ + "17.39.1" + ], + "subreal": [ + "17.40.0" + ], + "subscription": [ + "17.85.0" + ], + "substantial middle class": [ + "17.22.0" + ], + "subtle camera intrusion": [ + "17.42.0" + ], + "subtle messages sent": [ + "17.79.0" + ], + "subvert strict divisions": [ + "17.93.0" + ], + "successful art practice": [ + "17.46.0" + ], + "successful hungarian video": [ + "17.4.0" + ], + "successfully avoid": [ + "17.73.0" + ], + "sudden cooperation": [ + "17.39.0" + ], + "suddenly creating zones": [ + "17.9.0" + ], + "sufficiency enriching projects": [ + "17.85.0" + ], + "sufficiently clara sopht": [ + "17.70.0" + ], + "sufficiently describes freedom": [ + "17.13.0" + ], + "suggest richard barbrook": [ + "17.78.0", + "17.78.0" + ], + "suicide rate": [ + "17.22.0" + ], + "suit governement policies": [ + "17.74.0" + ], + "summit led": [ + "17.34.0" + ], + "sunday september": [ + "17.56.0" + ], + "super studio": [ + "17.58.0" + ], + "super studio serves": [ + "17.58.0" + ], + "superseded real space": [ + "17.53.0" + ], + "supplying sustainable business": [ + "17.43.0", + "17.43.1" + ], + "support": [ + "17.30.0", + "17.85.0" + ], + "support civil society": [ + "17.30.0" + ], + "support democratic engagement": [ + "17.30.0" + ], + "support development countries": [ + "17.17.0" + ], + "support people coming": [ + "17.8.0" + ], + "support the container": [ + "17.87.0" + ], + "supporting content production": [ + "17.23.0" + ], + "supporting network": [ + "17.23.0" + ], + "supportive local": [ + "17.12.0" + ], + "suppose": [ + "17.64.0" + ], + "suppose art critics": [ + "17.46.0" + ], + "suppose itâs": [ + "17.95.0" + ], + "supposed aura surrounding": [ + "17.46.0" + ], + "supreme political power": [ + "17.75.0" + ], + "surely code art": [ + "17.70.0", + "17.70.0" + ], + "surface screen visual": [ + "17.10.0" + ], + "surplus value": [ + "17.66.0" + ], + "surprisingly rare": [ + "17.93.0" + ], + "surprisingly rich formats": [ + "17.93.0" + ], + "surveillance": [ + "17.42.0" + ], + "surveillance cameras anymore": [ + "17.42.0" + ], + "survive disney": [ + "17.13.0" + ], + "susan": [ + "17.22.0" + ], + "susan george": [ + "17.22.0" + ], + "suspend design education": [ + "17.20.0" + ], + "suspend seeing transport": [ + "17.95.0" + ], + "suspicion amongst users": [ + "17.59.0" + ], + "suspicion towards": [ + "17.43.0", + "17.43.1" + ], + "suspicious": [ + "17.77.1" + ], + "sustain reciprocal exchange": [ + "17.28.0" + ], + "sustain vapor theory": [ + "17.58.0" + ], + "sustainable income models": [ + "17.13.0" + ], + "sustainable industry": [ + "17.13.0" + ], + "sustainable job economy": [ + "17.13.0" + ], + "sustainable social networks": [ + "17.30.0" + ], + "sustained using yesterday": [ + "17.45.0" + ], + "suzuki": [ + "17.79.0" + ], + "suzuki has appeared": [ + "17.79.0" + ], + "swedish approach": [ + "17.45.0" + ], + "swedish capital didn": [ + "17.45.0" + ], + "swirling rainbow nebula": [ + "17.39.2" + ], + "symbiotic combination enables": [ + "17.91.0" + ], + "symbolic": [ + "17.15.0" + ], + "symbolic exchange": [ + "17.15.0" + ], + "symbolic exchange determines": [ + "17.15.0" + ], + "symbolic exchange explains": [ + "17.15.0", + "17.15.0" + ], + "system": [ + "17.0.0", + "17.24.0", + "17.30.0", + "17.42.0", + "17.45.0", + "17.70.0", + "17.71.0", + "17.73.0", + "17.87.0", + "17.88.0", + "17.92.0" + ], + "system called leximap": [ + "17.18.0" + ], + "system cornelia sollfrank": [ + "17.70.0" + ], + "system programmers collaborated": [ + "17.6.0" + ], + "systems": [ + "17.24.0", + "17.42.0", + "17.71.0", + "17.88.0", + "17.92.0", + "17.95.0" + ], + "tactical": [ + "17.1.0", + "17.2.0", + "17.7.0", + "17.9.0", + "17.16.1", + "17.16.2", + "17.16.3" + ], + "tactical action": [ + "17.9.0" + ], + "tactical line": [ + "17.9.0" + ], + "tactical media": [ + "17.0.0", + "17.1.0", + "17.2.0", + "17.7.0", + "17.7.0", + "17.9.0", + "17.16.2", + "17.16.3" + ], + "tactical media background": [ + "17.5.0" + ], + "tactical media conferences": [ + "17.9.0" + ], + "tactical media movement": [ + "17.15.0" + ], + "tactical media necessarily": [ + "17.16.1", + "17.16.2", + "17.16.2", + "17.16.3", + "17.16.3" + ], + "tactical media passing": [ + "17.9.0" + ], + "tactical media practitioners": [ + "17.7.0" + ], + "tactical media production": [ + "17.7.0" + ], + "tactical media tools": [ + "17.10.0" + ], + "tactical television": [ + "17.14.0" + ], + "tactical television makers": [ + "17.12.0" + ], + "tactics": [ + "17.16.2" + ], + "tactics of appropriation": [ + "17.16.2", + "17.16.3" + ], + "takers": [ + "17.58.3" + ], + "takes historical perspectives": [ + "17.92.0" + ], + "taking": [ + "17.58.3" + ], + "taking linear narrative": [ + "17.68.0" + ], + "taking wired": [ + "17.58.3" + ], + "talented cultural worker": [ + "17.43.0", + "17.43.1" + ], + "talk": [ + "17.67.0" + ], + "talked": [ + "17.16.0" + ], + "tame otherwise": [ + "17.83.0" + ], + "tamil speaking children": [ + "17.14.0" + ], + "tandom surfing": [ + "17.7.0" + ], + "target particular audiences": [ + "17.69.0" + ], + "targeted communications network—": [ + "17.30.0" + ], + "targeted media": [ + "17.30.0" + ], + "tate": [ + "17.64.0" + ], + "tate gallery": [ + "17.64.0" + ], + "tate modern goes": [ + "17.6.0" + ], + "taxing transactions doesn": [ + "17.45.0" + ], + "tcp/ip dns settings": [ + "17.0.0" + ], + "teach conceptual design": [ + "17.14.0" + ], + "teach web aesthetics": [ + "17.68.0", + "17.68.0" + ], + "teacher training course": [ + "17.25.0" + ], + "teaching media theory": [ + "17.40.0" + ], + "teaching web aesthetics": [ + "17.68.0", + "17.68.0" + ], + "team consistently fails": [ + "17.89.0" + ], + "teams creating programs": [ + "17.11.0" + ], + "tech capitalist enterprises": [ + "17.58.0" + ], + "tech employees": [ + "17.13.0" + ], + "tech maquiladora factories": [ + "17.65.0" + ], + "technical": [ + "17.38.0", + "17.81.0", + "17.92.0" + ], + "technical capacities taht": [ + "17.21.0" + ], + "technical characteristics": [ + "17.92.0" + ], + "technical cultures growing": [ + "17.95.0" + ], + "technical development": [ + "17.38.0" + ], + "technical development connected": [ + "17.38.0" + ], + "technical issues": [ + "17.93.0" + ], + "technical limitations": [ + "17.43.0", + "17.43.1" + ], + "technical limitations suddenly": [ + "17.43.0", + "17.43.1" + ], + "technical overlaps": [ + "17.95.0" + ], + "technical research project": [ + "17.81.0", + "17.81.0" + ], + "technical solutions available": [ + "17.34.0" + ], + "technically": [ + "17.16.0", + "17.16.3" + ], + "technically still time": [ + "17.16.0", + "17.16.3" + ], + "techno culture": [ + "17.8.0" + ], + "techno trance scene": [ + "17.8.0" + ], + "techno utopian fantasy": [ + "17.80.0" + ], + "technological": [ + "17.65.0" + ], + "technological actualization": [ + "17.65.0" + ], + "technological actualization means": [ + "17.65.0" + ], + "technological correctness": [ + "17.65.0" + ], + "technological development": [ + "17.65.0" + ], + "technological differences worldwide": [ + "17.43.0", + "17.43.1" + ], + "technological frameworks": [ + "17.63.0" + ], + "technological innovation": [ + "17.46.0", + "17.63.0" + ], + "technological innovation except": [ + "17.46.0" + ], + "technological languages": [ + "17.65.0" + ], + "technological logistics systems": [ + "17.24.0" + ], + "technological speed": [ + "17.8.0" + ], + "technologies": [ + "17.58.0", + "17.62.0" + ], + "technology": [ + "17.3.0", + "17.7.0", + "17.18.0", + "17.38.0", + "17.42.0", + "17.63.0", + "17.65.0", + "17.69.0", + "17.74.0", + "17.80.0", + "17.87.0" + ], + "technology development process": [ + "17.80.0" + ], + "technology oriented media": [ + "17.63.0" + ], + "technoscientific capitalist responsibility": [ + "17.91.0" + ], + "teenage mutant": [ + "17.58.2" + ], + "teenage mutant ninja": [ + "17.58.2" + ], + "tel aviv": [ + "17.27.0" + ], + "telecommunications": [ + "17.25.0", + "17.75.0" + ], + "telecommunications providers": [ + "17.17.0" + ], + "telephone interview": [ + "17.23.0", + "17.23.1" + ], + "telepolis": [ + "17.17.0" + ], + "telestreet gathering": [ + "17.12.0" + ], + "telestreet groups": [ + "17.12.0" + ], + "telestreet meeting": [ + "17.12.0" + ], + "telestreet movement": [ + "17.12.0" + ], + "telestreet networks": [ + "17.12.0" + ], + "telestreet reclaims": [ + "17.12.0" + ], + "telestreet strong": [ + "17.12.0" + ], + "telestreet works": [ + "17.12.0" + ], + "telestreets operate": [ + "17.12.0" + ], + "telestreets range": [ + "17.12.0" + ], + "television": [ + "17.12.0", + "17.29.0", + "17.59.0" + ], + "television access": [ + "17.60.0" + ], + "television makers march": [ + "17.12.0" + ], + "television media": [ + "17.47.0" + ], + "television news media": [ + "17.29.0" + ], + "television revolution": [ + "17.40.0" + ], + "television series produced": [ + "17.14.0" + ], + "temporal perspectives": [ + "17.92.0" + ], + "temporary family home": [ + "17.85.0" + ], + "temporary media labs": [ + "17.43.0", + "17.43.1" + ], + "temporary sms network": [ + "17.89.0" + ], + "temporary yellow cathedral": [ + "17.93.0" + ], + "ten languages": [ + "17.1.0" + ], + "tending towards": [ + "17.91.0" + ], + "tending towards becoming": [ + "17.91.0" + ], + "tends towards": [ + "17.91.0" + ], + "tense user": [ + "17.94.0" + ], + "tentative hospitality": [ + "17.50.0" + ], + "term": [ + "17.8.0", + "17.19.0", + "17.48.0", + "17.71.0" + ], + "term cultural diaspora": [ + "17.8.0" + ], + "term digital diaspora": [ + "17.8.0" + ], + "term heavily spread": [ + "17.19.0" + ], + "term immaterial labor": [ + "17.31.0" + ], + "term international reputation": [ + "17.94.0" + ], + "term strategic objectives": [ + "17.30.0" + ], + "term tactical essentialism": [ + "17.7.0" + ], + "terms": [ + "17.20.0", + "17.49.0", + "17.91.0" + ], + "terms =8cold=b9": [ + "17.11.0" + ], + "terre thaemlitz": [ + "17.74.0" + ], + "territory": [ + "17.53.0" + ], + "terror“ lead primarily": [ + "17.47.0" + ], + "test footage": [ + "17.42.0" + ], + "tetsuo kogawa": [ + "17.11.0" + ], + "text": [ + "17.55.0", + "17.63.0" + ], + "text etc": [ + "17.88.0" + ], + "text filtering": [ + "17.6.1" + ], + "text geert touches": [ + "17.9.0" + ], + "text generating algorithms": [ + "17.94.0" + ], + "textile weaving": [ + "17.50.0" + ], + "texts": [ + "17.55.0" + ], + "textual fractions nevertheless": [ + "17.63.0" + ], + "th ecentury": [ + "17.78.0" + ], + "th national community": [ + "17.48.0" + ], + "thacker": [ + "17.51.0" + ], + "thacker work": [ + "17.51.0" + ], + "thacker work centers": [ + "17.51.0" + ], + "thames": [ + "17.86.0" + ], + "thank paul virilio": [ + "17.53.0" + ], + "thatâs": [ + "17.69.0", + "17.69.0" + ], + "thatâs happening": [ + "17.69.0" + ], + "thatâs whatâs worrying": [ + "17.95.0" + ], + "theatre": [ + "17.57.0" + ], + "thematic": [ + "17.16.2", + "17.16.3" + ], + "thematic complex plagiarism": [ + "17.70.0" + ], + "thematic threads": [ + "17.16.1", + "17.16.2", + "17.16.3" + ], + "theoretical discourse": [ + "17.52.0" + ], + "theoretical writings": [ + "17.25.0" + ], + "theorist mckenzie wark": [ + "17.48.0" + ], + "theorist organizing anti": [ + "17.8.0" + ], + "theorize everyday life": [ + "17.8.0" + ], + "theorizing everyday experience": [ + "17.15.0" + ], + "theory affects practice": [ + "17.62.0", + "17.62.0" + ], + "theory based processes": [ + "17.94.0" + ], + "theory fiction": [ + "17.61.0" + ], + "theory lectures": [ + "17.4.0" + ], + "theory publisher semiotext": [ + "17.30.0" + ], + "thereby adding gossip": [ + "17.59.0" + ], + "thereâs": [ + "17.69.0", + "17.95.0" + ], + "thing": [ + "17.69.0", + "17.77.0", + "17.82.0", + "17.87.0" + ], + "things": [ + "17.14.0", + "17.16.0", + "17.19.0", + "17.60.0", + "17.69.0", + "17.72.0", + "17.79.0", + "17.82.0", + "17.94.0", + "17.95.0" + ], + "thinking": [ + "17.73.0" + ], + "thinking rigorous thoughts": [ + "17.58.2" + ], + "third level domains": [ + "17.23.0" + ], + "third party recommendations": [ + "17.30.0" + ], + "third production possibility": [ + "17.4.0" + ], + "third world": [ + "17.7.0" + ], + "third world network": [ + "17.25.0" + ], + "thomas kuhn elaborated": [ + "17.14.0" + ], + "thorough customisation": [ + "17.49.0" + ], + "thought": [ + "17.61.0" + ], + "thoughtful": [ + "17.46.2" + ], + "thoughtful and wise": [ + "17.46.2" + ], + "thoughts": [ + "17.58.2", + "17.58.3" + ], + "thoughts on castells": [ + "17.58.3" + ], + "threadbear shopworn": [ + "17.78.0" + ], + "threads": [ + "17.16.2", + "17.16.3" + ], + "threat": [ + "17.2.0" + ], + "threaten civil liberties": [ + "17.42.0" + ], + "thresholds lend themselves": [ + "17.91.0" + ], + "threw off greenburg": [ + "17.46.2" + ], + "thwarted technocratic elite": [ + "17.13.0" + ], + "tiered system": [ + "17.75.0" + ], + "tigertxt": [ + "17.89.0" + ], + "tilman": [ + "17.77.0", + "17.81.0" + ], + "tilman baumgaertel": [ + "17.77.0", + "17.81.0" + ], + "tilman baumgärtel": [ + "17.77.0", + "17.81.0", + "17.81.0" + ], + "tim russert scheduled": [ + "17.36.0" + ], + "time": [ + "17.2.0", + "17.4.0", + "17.5.0", + "17.9.0", + "17.14.0", + "17.16.0", + "17.16.3", + "17.22.0", + "17.24.0", + "17.25.0", + "17.27.0", + "17.28.0", + "17.32.0", + "17.38.0", + "17.40.0", + "17.41.0", + "17.43.0", + "17.43.1", + "17.46.0", + "17.53.0", + "17.60.0", + "17.62.0", + "17.67.0", + "17.69.0", + "17.74.0", + "17.75.0", + "17.77.0", + "17.79.0", + "17.81.0", + "17.83.0", + "17.85.0", + "17.87.0", + "17.90.0", + "17.94.0" + ], + "time artistic director": [ + "17.50.0" + ], + "time buy condoms": [ + "17.28.0" + ], + "time consuming project": [ + "17.81.0" + ], + "time discussing ‘online": [ + "17.67.0" + ], + "time heath bunting": [ + "17.85.0", + "17.85.0" + ], + "time inevitably packaging": [ + "17.10.0" + ], + "time lapse": [ + "17.41.0" + ], + "time lapse cinematography": [ + "17.41.0" + ], + "time lapse images": [ + "17.41.0" + ], + "time lapse sequence": [ + "17.62.0" + ], + "time marx spoke": [ + "17.90.0" + ], + "time project tries": [ + "17.41.0" + ], + "time solo production": [ + "17.46.0" + ], + "time space": [ + "17.41.0" + ], + "time to propose": [ + "17.16.0", + "17.16.3" + ], + "time tries": [ + "17.41.0" + ], + "time users": [ + "17.41.0" + ], + "times": [ + "17.83.0", + "17.94.0" + ], + "times german radio": [ + "17.11.0" + ], + "tiny art community": [ + "17.89.0" + ], + "tiny little willie": [ + "17.86.0" + ], + "tiny minuscule issue": [ + "17.51.0" + ], + "tiny quiches": [ + "17.36.0" + ], + "tissues indeed implies": [ + "17.91.0" + ], + "tjebbe van tijen": [ + "17.14.0" + ], + "today": [ + "17.46.1" + ], + "today sharing": [ + "17.15.0" + ], + "tokyo": [ + "17.1.0", + "17.6.0", + "17.54.0", + "17.56.0" + ], + "tokyo atopic site": [ + "17.6.0" + ], + "tokyo central government": [ + "17.6.0", + "17.6.0" + ], + "tokyo government": [ + "17.6.0" + ], + "tolerable expiration dates": [ + "17.11.0" + ], + "tom": [ + "17.29.0", + "17.88.0" + ], + "tom betts": [ + "17.88.0" + ], + "tom betts /nullpointer": [ + "17.88.0" + ], + "tom fecht june": [ + "17.20.0" + ], + "tom keenan": [ + "17.29.0" + ], + "tom kilburn succeeded": [ + "17.94.0" + ], + "tone": [ + "17.58.1" + ], + "toni negri": [ + "17.44.0" + ], + "toni negri philosopher": [ + "17.44.0", + "17.44.0" + ], + "toni negri proposed": [ + "17.37.0" + ], + "tool": [ + "17.72.0" + ], + "tool initially designed": [ + "17.93.0" + ], + "tools": [ + "17.30.0", + "17.93.0" + ], + "top corporate officers": [ + "17.0.0" + ], + "top five": [ + "17.58.0" + ], + "top five film": [ + "17.58.0" + ], + "top level": [ + "17.23.0" + ], + "top level domains": [ + "17.23.0", + "17.23.0" + ], + "top publishing software": [ + "17.87.0" + ], + "top rated architecture": [ + "17.58.0" + ], + "toplevel": [ + "17.0.0" + ], + "toplevel namespace": [ + "17.0.0" + ], + "toshiya": [ + "17.8.0" + ], + "toshiya ueno": [ + "17.8.0" + ], + "total competence consciousness": [ + "17.4.0" + ], + "total crash": [ + "17.45.0" + ], + "total independence": [ + "17.91.0" + ], + "total systemic phase": [ + "17.91.0" + ], + "total world product": [ + "17.45.0" + ], + "totalitarian": [ + "17.39.1" + ], + "totalitarian central meta": [ + "17.58.0" + ], + "totalitarian movements": [ + "17.39.2" + ], + "totalizing force": [ + "17.29.0" + ], + "totally boring": [ + "17.71.0" + ], + "totally critique screenal": [ + "17.51.0" + ], + "totally personal": [ + "17.67.0" + ], + "totally self regulating": [ + "17.0.0" + ], + "totally selfish person": [ + "17.67.0" + ], + "totally separate issues": [ + "17.0.0" + ], + "towards collaborative process": [ + "17.31.0" + ], + "towards issues related": [ + "17.38.0" + ], + "towards p2p systems": [ + "17.9.0" + ], + "tower hill": [ + "17.95.0" + ], + "tower hill memorial": [ + "17.95.0" + ], + "toy rebel wall": [ + "17.45.0" + ], + "trace technological developments": [ + "17.65.0" + ], + "track binary code": [ + "17.93.0" + ], + "track yasser arafat": [ + "17.53.0" + ], + "tracked synchronization system": [ + "17.42.0" + ], + "tradition": [ + "17.63.0" + ], + "tradition of documenta": [ + "17.26.0" + ], + "traditional": [ + "17.84.0" + ], + "traditional =8cgerman hoerspiel=8c": [ + "17.11.0" + ], + "traditional art": [ + "17.84.0" + ], + "traditional art institutions": [ + "17.84.0" + ], + "traditional art system": [ + "17.10.0" + ], + "traditional cultural theorists": [ + "17.11.0" + ], + "traditional expressive modes": [ + "17.46.0" + ], + "traditional frameworks practiced": [ + "17.94.0" + ], + "traditional media": [ + "17.47.0" + ], + "traditional narrative form": [ + "17.49.0" + ], + "traditional prints": [ + "17.46.0" + ], + "traditionally organized architectural": [ + "17.20.0" + ], + "training": [ + "17.74.0" + ], + "training center": [ + "17.74.0", + "17.74.0" + ], + "training centers": [ + "17.74.0" + ], + "training people vocationally": [ + "17.59.0" + ], + "training projects": [ + "17.74.0" + ], + "tram system": [ + "17.50.0" + ], + "trams provide": [ + "17.50.0" + ], + "trams rescue melbourne": [ + "17.50.0" + ], + "trance rave scenes": [ + "17.8.0" + ], + "transaction systems": [ + "17.10.0" + ], + "transcribing visual information": [ + "17.63.0" + ], + "transformation": [ + "17.18.0" + ], + "transformin internet power": [ + "17.36.0" + ], + "transgenic": [ + "17.7.0" + ], + "transgenic food": [ + "17.7.0" + ], + "transgenic production": [ + "17.7.0" + ], + "translocal media": [ + "17.16.2" + ], + "translocal media cultures": [ + "17.16.2" + ], + "transmitting discrete values": [ + "17.69.0" + ], + "transnational": [ + "17.39.2" + ], + "transnational capital": [ + "17.39.2" + ], + "transnational communication infrastructure": [ + "17.34.0" + ], + "transnational corporate": [ + "17.65.0" + ], + "transnational corporate capitalism": [ + "17.65.0" + ], + "transnational corporate power": [ + "17.78.0", + "17.78.0" + ], + "transnational institute": [ + "17.22.0" + ], + "transnational labor movements": [ + "17.39.2" + ], + "transnational media monoliths": [ + "17.78.0" + ], + "transnational policy fields": [ + "17.34.0" + ], + "transnational power": [ + "17.39.2" + ], + "transnational public sphere": [ + "17.34.0" + ], + "transnational settings": [ + "17.34.0" + ], + "transnational sphere fails": [ + "17.34.0" + ], + "transparant threadbear blind": [ + "17.78.0" + ], + "transsylvanian town arad": [ + "17.40.0" + ], + "transversal relationships amongst": [ + "17.8.0" + ], + "treating artists unprofessionally": [ + "17.71.0" + ], + "trebor": [ + "17.35.0" + ], + "trebor scholz": [ + "17.35.0" + ], + "tremendous tidal wave": [ + "17.87.0" + ], + "trended towards": [ + "17.69.0" + ], + "tribal studies": [ + "17.8.0" + ], + "tribe": [ + "17.8.0" + ], + "tribes": [ + "17.8.0" + ], + "trigger": [ + "17.42.0" + ], + "tripple underscored italiced": [ + "17.78.0" + ], + "trouble national boundaries": [ + "17.48.0" + ], + "true contradictory function": [ + "17.18.0" + ], + "truly global artist": [ + "17.6.0" + ], + "truly historical": [ + "17.92.0" + ], + "truly influence people": [ + "17.14.0" + ], + "truly innovative dynamics": [ + "17.68.0" + ], + "truly stepping forward": [ + "17.25.0" + ], + "trust": [ + "17.14.0", + "17.30.0" + ], + "trusted interactions": [ + "17.30.0" + ], + "trusted third parties": [ + "17.30.0" + ], + "truth": [ + "17.52.0" + ], + "truth vice versa": [ + "17.86.0" + ], + "tuesday": [ + "17.36.0" + ], + "tun yuh hand": [ + "17.86.0" + ], + "turning idle time": [ + "17.41.0" + ], + "tv age model": [ + "17.68.0" + ], + "tv audiences watching": [ + "17.53.0" + ], + "tv reduced": [ + "17.53.0" + ], + "tv revolution allowed": [ + "17.40.0" + ], + "tv station": [ + "17.53.0" + ], + "twelve tone music": [ + "17.70.0" + ], + "twisting 3d forms": [ + "17.61.0" + ], + "type": [ + "17.55.0" + ], + "type=3dradio": [ + "17.11.0" + ], + "typical californian blend": [ + "17.30.0" + ], + "typical european": [ + "17.58.1" + ], + "typical hacker": [ + "17.70.0" + ], + "typical liberal statements": [ + "17.17.0" + ], + "typical post": [ + "17.30.0" + ], + "typographer david carson": [ + "17.61.0" + ], + "typographers painfully difficult": [ + "17.93.0" + ], + "typographic standardization projects": [ + "17.93.0" + ], + "typographic systems": [ + "17.93.0" + ], + "uck": [ + "17.53.1" + ], + "uck partisans": [ + "17.53.1" + ], + "ueber das neue": [ + "17.52.0" + ], + "ugly town planning": [ + "17.89.0" + ], + "uk based artist": [ + "17.64.0" + ], + "uk class struggle": [ + "17.95.0" + ], + "uk cultural studies": [ + "17.8.0" + ], + "uk currently produces": [ + "17.95.0" + ], + "ulay": [ + "17.46.0" + ], + "ulay apparently met": [ + "17.46.0" + ], + "ulf": [ + "17.5.0" + ], + "ulf freyhoff": [ + "17.5.0" + ], + "ultimate moral judgement": [ + "17.91.0" + ], + "ultimate web page": [ + "17.83.0", + "17.83.0" + ], + "un world summits": [ + "17.34.0" + ], + "uncommissioned web": [ + "17.64.0" + ], + "uncommissioned web sites": [ + "17.64.0" + ], + "uncritical reception": [ + "17.58.4" + ], + "underground": [ + "17.2.0" + ], + "underground secret": [ + "17.2.0" + ], + "underground secret service": [ + "17.2.0", + "17.2.0" + ], + "underlying political": [ + "17.80.0" + ], + "underlying technical": [ + "17.30.0" + ], + "understand": [ + "17.29.0" + ], + "understand bauhaus university": [ + "17.11.0" + ], + "understand compositional dynamics": [ + "17.91.0" + ], + "understand net art": [ + "17.49.0" + ], + "understanding media files": [ + "17.43.0", + "17.43.1" + ], + "unelected wto officials": [ + "17.13.0" + ], + "unemployed women": [ + "17.74.0" + ], + "unesco": [ + "17.87.0" + ], + "unexplored viral domains": [ + "17.92.0" + ], + "unified global look": [ + "17.38.0" + ], + "unifying markets": [ + "17.95.0" + ], + "unique potential": [ + "17.47.0" + ], + "unique profit": [ + "17.80.0" + ], + "unique static pattern": [ + "17.65.0" + ], + "uniquely democratic nature": [ + "17.10.0" + ], + "unit": [ + "17.87.0" + ], + "unite contemporary thinkers": [ + "17.58.0" + ], + "united": [ + "17.23.0", + "17.29.0" + ], + "united states": [ + "17.23.0", + "17.28.0", + "17.29.0" + ], + "united states department": [ + "17.23.0" + ], + "united states federal": [ + "17.23.0" + ], + "united states military": [ + "17.29.0" + ], + "universal": [ + "17.83.0" + ], + "universal access": [ + "17.78.0" + ], + "universal page": [ + "17.83.0", + "17.83.0" + ], + "universal page http": [ + "17.83.0" + ], + "universal page signals": [ + "17.83.0" + ], + "universal protection machines": [ + "17.92.0" + ], + "universal statements": [ + "17.83.0" + ], + "universal technology appears": [ + "17.93.0" + ], + "universal viral machine": [ + "17.92.0", + "17.92.0" + ], + "universities offer radio": [ + "17.11.0" + ], + "university": [ + "17.11.0", + "17.15.0" + ], + "university of westminster": [ + "17.53.1" + ], + "university system": [ + "17.75.0" + ], + "unknown web site": [ + "17.41.0" + ], + "unlike pirate radio": [ + "17.43.0", + "17.43.1" + ], + "unparalleled political emergency": [ + "17.12.0" + ], + "unplugged participatory democracy": [ + "17.78.0" + ], + "unstable media": [ + "17.40.0" + ], + "unsubscribe": [ + "17.16.0", + "17.16.2", + "17.16.3" + ], + "untold animated gifs": [ + "17.64.0" + ], + "untrustworthy fashion online": [ + "17.30.0" + ], + "updates vns matrix": [ + "17.6.0" + ], + "upper middle classes": [ + "17.21.0" + ], + "uptight licensing policies": [ + "17.93.0" + ], + "upwardly mobile gays": [ + "17.6.0" + ], + "urban": [ + "17.8.0", + "17.20.0", + "17.62.0" + ], + "urban condition": [ + "17.20.0" + ], + "urban design": [ + "17.62.0" + ], + "urban fashion": [ + "17.20.0" + ], + "urban life takes": [ + "17.20.0" + ], + "urban rave tribes": [ + "17.8.0", + "17.8.0" + ], + "urban subcultural tribes": [ + "17.8.0" + ], + "urban techno tribes": [ + "17.8.0" + ], + "urban tribes": [ + "17.8.0", + "17.8.0" + ], + "url": [ + "17.76.0", + "17.77.0", + "17.77.1" + ], + "url repeated hundreds": [ + "17.82.0" + ], + "urls": [ + "17.54.0" + ], + "useful historical resources": [ + "17.92.0" + ], + "useless frictions amongst": [ + "17.8.0" + ], + "user": [ + "17.41.0", + "17.49.0", + "17.58.0", + "17.76.0", + "17.88.0" + ], + "user computer games": [ + "17.40.0" + ], + "user experience design": [ + "17.94.0" + ], + "user idle time": [ + "17.41.0" + ], + "users": [ + "17.41.0" + ], + "users idle time": [ + "17.41.0" + ], + "using 3d modeling": [ + "17.51.0" + ], + "using cell phones": [ + "17.13.0" + ], + "using corporate tools": [ + "17.47.0" + ], + "using design methodologies": [ + "17.14.0" + ], + "using digital anatomy": [ + "17.51.0" + ], + "using existing tools": [ + "17.30.0" + ], + "using feedback": [ + "17.69.0" + ], + "using female partners": [ + "17.46.0" + ], + "using greg ulmer": [ + "17.7.0" + ], + "using hybrid media": [ + "17.1.0" + ], + "using light beams": [ + "17.65.0" + ], + "using morphing programs": [ + "17.51.0" + ], + "using multiple identities": [ + "17.14.0" + ], + "using outworn metaphor": [ + "17.38.0" + ], + "using services": [ + "17.14.0" + ], + "using speculative analysis": [ + "17.61.0" + ], + "using vcr technology": [ + "17.8.0" + ], + "using versioning systems": [ + "17.93.0" + ], + "using whatever medium": [ + "17.6.0" + ], + "usual dreary parade": [ + "17.76.0" + ], + "utb series": [ + "17.63.0" + ], + "utopian cyber": [ + "17.80.0" + ], + "utopian ideas speak": [ + "17.9.0" + ], + "utopian political movements": [ + "17.12.0" + ], + "utterly unconstraint": [ + "17.78.0" + ], + "vague moral unease": [ + "17.90.0" + ], + "valorising technical accuracy": [ + "17.92.0" + ], + "values collective action": [ + "17.30.0" + ], + "vampire buildings": [ + "17.65.0" + ], + "van amsterdam": [ + "17.14.0", + "17.14.0" + ], + "vanguard cultural position": [ + "17.46.0" + ], + "vapor theorizing": [ + "17.58.0" + ], + "various activities": [ + "17.70.0" + ], + "various aesthetical processes": [ + "17.70.0" + ], + "various camera technologies": [ + "17.42.0" + ], + "various circuitry diagrams": [ + "17.42.0" + ], + "various command centers": [ + "17.42.0" + ], + "various formats": [ + "17.40.0" + ], + "various forms": [ + "17.7.0" + ], + "various genome projects": [ + "17.7.0" + ], + "various intelligence": [ + "17.42.0" + ], + "various parameters interfering": [ + "17.93.0" + ], + "various proposals": [ + "17.34.0" + ], + "various thematic complexes": [ + "17.70.0" + ], + "various theoretical discourses": [ + "17.52.0" + ], + "varying skill sets": [ + "17.11.0" + ], + "vast cable network": [ + "17.69.0" + ], + "vast database systems": [ + "17.42.0" + ], + "ve barely started": [ + "17.30.0" + ], + "ve effectively constructed": [ + "17.64.0" + ], + "ve encountered arguments": [ + "17.92.0" + ], + "ve found correlations": [ + "17.83.0" + ], + "ve heard talk": [ + "17.50.0" + ], + "ve noticed frequently": [ + "17.7.0" + ], + "ve published": [ + "17.68.0" + ], + "ve read statements": [ + "17.7.0" + ], + "ve started": [ + "17.83.0" + ], + "vector format": [ + "17.93.0" + ], + "vector hackers invent": [ + "17.48.0" + ], + "vectorial elevation": [ + "17.65.0" + ], + "vectors": [ + "17.48.0" + ], + "verbal answers": [ + "17.10.0" + ], + "verbal expression relevant": [ + "17.10.0" + ], + "verklärte nacht": [ + "17.70.0" + ], + "version": [ + "17.82.0" + ], + "version edited": [ + "17.66.0" + ], + "versioning systems": [ + "17.93.0" + ], + "vesna": [ + "17.72.0" + ], + "vesna jancovic": [ + "17.72.0" + ], + "veteran mirko": [ + "17.39.1" + ], + "veteran mirko condic": [ + "17.39.1" + ], + "via radio": [ + "17.8.0" + ], + "video": [ + "17.4.0", + "17.24.0", + "17.46.1", + "17.77.0" + ], + "video art scenes": [ + "17.41.0" + ], + "video art work": [ + "17.4.0" + ], + "video collectives": [ + "17.6.0" + ], + "video diary": [ + "17.6.0" + ], + "video initiatives": [ + "17.56.0" + ], + "video interview series": [ + "17.63.0" + ], + "video technique": [ + "17.4.0" + ], + "videokunst aus bulgarien": [ + "17.28.0" + ], + "videos rodney king": [ + "17.53.0" + ], + "viennese media": [ + "17.63.0" + ], + "viennese media philosopher": [ + "17.63.0" + ], + "viennese media theorist": [ + "17.63.0", + "17.63.0" + ], + "view": [ + "17.27.0" + ], + "view complex installations": [ + "17.65.0" + ], + "viewing audience": [ + "17.42.0" + ], + "vigilant activity": [ + "17.47.0" + ], + "village station": [ + "17.58.4" + ], + "vilém flusser": [ + "17.63.0" + ], + "violence": [ + "17.37.0" + ], + "violent edge": [ + "17.42.0" + ], + "viral": [ + "17.92.0" + ], + "virginia woolf summed": [ + "17.31.0" + ], + "virilio": [ + "17.53.0", + "17.53.1" + ], + "virilio analysis": [ + "17.53.1" + ], + "virtual": [ + "17.48.0", + "17.58.1", + "17.65.0", + "17.90.0" + ], + "virtual architecture": [ + "17.65.0", + "17.65.0" + ], + "virtual architecture tends": [ + "17.65.0" + ], + "virtual class": [ + "17.90.0" + ], + "virtual domains": [ + "17.0.0", + "17.0.0" + ], + "virtual geography": [ + "17.48.0", + "17.48.0" + ], + "virtual machines": [ + "17.58.1" + ], + "virtual mass": [ + "17.11.0" + ], + "virtual muralism": [ + "17.65.0" + ], + "virtual power structures": [ + "17.22.0", + "17.22.0" + ], + "virtual reality": [ + "17.30.0" + ], + "virtual reality pieces": [ + "17.65.0" + ], + "virtual record labels": [ + "17.61.0" + ], + "virtual republic": [ + "17.48.0" + ], + "virtual shopping mall": [ + "17.30.0" + ], + "virtual spaces": [ + "17.27.0" + ], + "virtual studio": [ + "17.61.0" + ], + "virtual studios": [ + "17.61.0" + ], + "virtual worker": [ + "17.90.0" + ], + "virtual world": [ + "17.7.0" + ], + "virulent activist critique": [ + "17.31.0" + ], + "virulent nationalism": [ + "17.25.0" + ], + "virus": [ + "17.92.0" + ], + "virus examples mark": [ + "17.92.0" + ], + "viruses": [ + "17.92.0" + ], + "visible human": [ + "17.51.0" + ], + "visible human project": [ + "17.51.0" + ], + "vision": [ + "17.53.0" + ], + "vision machines": [ + "17.53.0" + ], + "visionary city officials": [ + "17.47.0" + ], + "visionary conceptual thinking": [ + "17.38.0" + ], + "visit english based": [ + "17.8.0" + ], + "visited zagreb": [ + "17.37.0" + ], + "visiting documenta": [ + "17.23.0" + ], + "visual": [ + "17.49.0" + ], + "visual aesthetics": [ + "17.41.0" + ], + "visual arts department": [ + "17.49.0", + "17.49.0" + ], + "visual culture": [ + "17.38.0", + "17.46.0", + "17.49.0", + "17.49.0", + "17.58.0" + ], + "visual knowledge traced": [ + "17.46.0" + ], + "visual material": [ + "17.41.0" + ], + "visual modes": [ + "17.41.0" + ], + "visual system": [ + "17.42.0" + ], + "visualisation application": [ + "17.88.0" + ], + "visualized informational relations": [ + "17.63.0" + ], + "vital business articulations": [ + "17.68.0" + ], + "vital information": [ + "17.14.0" + ], + "vito campanelli": [ + "17.68.0", + "17.68.0" + ], + "vito campanelli published": [ + "17.68.0" + ], + "vivien sobchack": [ + "17.58.2" + ], + "vns matrix": [ + "17.71.0" + ], + "vocational training": [ + "17.74.0" + ], + "voice": [ + "17.33.0" + ], + "voice services": [ + "17.24.0" + ], + "volante": [ + "17.12.0" + ], + "volume debating list": [ + "17.45.0" + ], + "volunteer basis wasn": [ + "17.66.0" + ], + "volunteer initiatives desirable": [ + "17.31.0" + ], + "von": [ + "17.31.0" + ], + "von bonin": [ + "17.70.0" + ], + "von osten": [ + "17.31.0" + ], + "vorbis file format": [ + "17.11.0" + ], + "vote": [ + "17.78.0" + ], + "vsat connection1 server": [ + "17.87.0" + ], + "vuk": [ + "17.77.1", + "17.79.0" + ], + "walker art": [ + "17.83.0" + ], + "walker art center": [ + "17.6.0", + "17.83.0", + "17.83.0" + ], + "wall": [ + "17.45.0" + ], + "wall project": [ + "17.14.0" + ], + "wall st": [ + "17.45.0" + ], + "wall street": [ + "17.45.0", + "17.45.0" + ], + "wall street analysts": [ + "17.45.0" + ], + "wall street busily": [ + "17.45.0", + "17.45.0" + ], + "wall street economist": [ + "17.45.0" + ], + "walls": [ + "17.26.0" + ], + "walls water condensates": [ + "17.71.0" + ], + "walter benjamin warned": [ + "17.53.0" + ], + "walter gropius demanded": [ + "17.11.0", + "17.35.0" + ], + "walter gropius propagated": [ + "17.11.0" + ], + "walter klingenbeck=b9s": [ + "17.11.0" + ], + "wanted": [ + "17.57.0", + "17.74.0" + ], + "wap cell phone": [ + "17.56.0" + ], + "war": [ + "17.29.0", + "17.39.1", + "17.53.0", + "17.53.1", + "17.72.0" + ], + "war criminals": [ + "17.39.1" + ], + "war in kosovo": [ + "17.53.0" + ], + "war nor": [ + "17.44.0" + ], + "war situation anymore": [ + "17.72.0" + ], + "war tv": [ + "17.12.0" + ], + "war veterans": [ + "17.39.1" + ], + "war waged solely": [ + "17.53.0" + ], + "wasnât": [ + "17.69.0" + ], + "wave": [ + "17.69.0" + ], + "waves donât": [ + "17.69.0" + ], + "waving designer floor": [ + "17.61.0" + ], + "weak stock markets": [ + "17.45.0" + ], + "weapons platform": [ + "17.42.0" + ], + "weaving": [ + "17.50.0" + ], + "weaving metaphor": [ + "17.50.0" + ], + "web": [ + "17.5.0", + "17.30.0", + "17.32.0", + "17.41.0", + "17.51.0", + "17.64.0", + "17.68.0", + "17.75.0", + "17.76.0", + "17.81.0", + "17.82.0", + "17.83.0", + "17.85.0", + "17.88.0" + ], + "web aesthetics": [ + "17.68.0" + ], + "web aesthetics consists": [ + "17.68.0", + "17.68.0" + ], + "web aesthetics play": [ + "17.68.0" + ], + "web aesthetics research": [ + "17.68.0" + ], + "web cameras": [ + "17.77.0" + ], + "web continues": [ + "17.68.0" + ], + "web design": [ + "17.43.1", + "17.58.0", + "17.68.0" + ], + "web design agency": [ + "17.85.0" + ], + "web design scene": [ + "17.8.0" + ], + "web designers": [ + "17.68.0" + ], + "web films": [ + "17.43.1" + ], + "web infome": [ + "17.49.0" + ], + "web infome develops": [ + "17.49.0" + ], + "web interface": [ + "17.81.0" + ], + "web merged": [ + "17.83.0" + ], + "web page": [ + "17.76.0", + "17.83.0", + "17.83.0" + ], + "web pages": [ + "17.83.0" + ], + "web project": [ + "17.70.0" + ], + "web servers": [ + "17.81.0" + ], + "web site": [ + "17.40.0", + "17.41.0", + "17.41.0", + "17.47.0", + "17.76.0", + "17.77.0", + "17.88.0" + ], + "web site packed": [ + "17.76.0" + ], + "web sites": [ + "17.64.0", + "17.70.0" + ], + "web sites manually": [ + "17.70.0" + ], + "web stalker": [ + "17.76.0" + ], + "web stalker browser": [ + "17.76.0", + "17.76.0" + ], + "web stalker establishes": [ + "17.76.0", + "17.76.0" + ], + "web stalker moves": [ + "17.76.0", + "17.76.0" + ], + "web stalker proposes": [ + "17.76.0", + "17.76.0" + ], + "web visualisation": [ + "17.88.0" + ], + "web visualisation application": [ + "17.88.0" + ], + "webby": [ + "17.33.0" + ], + "webby awards": [ + "17.33.0", + "17.33.0" + ], + "webby awards site": [ + "17.33.0", + "17.33.0" + ], + "webby awards winner": [ + "17.33.0" + ], + "webmapping software": [ + "17.88.0" + ], + "website": [ + "17.1.0", + "17.77.0", + "17.79.0", + "17.82.0" + ], + "website manager": [ + "17.89.0" + ], + "webtracer": [ + "17.88.0" + ], + "webtracer software": [ + "17.88.0" + ], + "webtracer software spatially": [ + "17.88.0" + ], + "webtracer structure": [ + "17.88.0" + ], + "weekend brainstorming session": [ + "17.30.0" + ], + "weekly radio program": [ + "17.11.0" + ], + "weeks": [ + "17.5.0" + ], + "weingartner": [ + "17.47.0" + ], + "weird overdetermined object": [ + "17.92.0" + ], + "weird proposal coming": [ + "17.9.0" + ], + "weird world": [ + "17.92.0" + ], + "west": [ + "17.58.2", + "17.62.0", + "17.77.0" + ], + "west europeans": [ + "17.77.0", + "17.77.1" + ], + "west german media": [ + "17.11.0", + "17.11.0" + ], + "western": [ + "17.62.0", + "17.72.0" + ], + "western architecture concerns": [ + "17.62.0" + ], + "western cliché": [ + "17.65.0" + ], + "western colonial mind": [ + "17.7.0" + ], + "western cosmology": [ + "17.7.0" + ], + "western cultural infrastructure": [ + "17.4.0" + ], + "western culture": [ + "17.15.0" + ], + "western cultures": [ + "17.40.0" + ], + "western europe": [ + "17.4.0" + ], + "western influences": [ + "17.40.0" + ], + "western mythology results": [ + "17.7.0" + ], + "western societies": [ + "17.31.0", + "17.40.0" + ], + "western societies tend": [ + "17.31.0" + ], + "western techno perfection": [ + "17.65.0" + ], + "western women": [ + "17.72.0" + ], + "western women groups": [ + "17.72.0" + ], + "weâll": [ + "17.69.0" + ], + "weâre": [ + "17.69.0" + ], + "whatâs happening": [ + "17.69.0" + ], + "whilst compositional dynamics": [ + "17.91.0" + ], + "whilst the container": [ + "17.87.0" + ], + "white australia policy": [ + "17.50.0" + ], + "white paper describing": [ + "17.30.0" + ], + "whoever iâm": [ + "17.95.0" + ], + "whomever": [ + "17.16.0" + ], + "whomever we feel": [ + "17.16.0" + ], + "wide web": [ + "17.75.0" + ], + "wider": [ + "17.46.2" + ], + "wider psycho-social context": [ + "17.46.2" + ], + "wider range": [ + "17.87.0" + ], + "wider technologically developed": [ + "17.87.0" + ], + "willem van weelden": [ + "17.78.0", + "17.78.0" + ], + "william burroughs": [ + "17.46.0" + ], + "william gibson behaviouralism": [ + "17.46.0" + ], + "win": [ + "17.33.0" + ], + "win people": [ + "17.33.0" + ], + "win people voice": [ + "17.33.0" + ], + "wind powered communication": [ + "17.24.0" + ], + "windows media player": [ + "17.35.0" + ], + "windows operating system": [ + "17.35.0" + ], + "windows xp sp2": [ + "17.92.0" + ], + "winning strategy": [ + "17.80.0" + ], + "wipo copyright treaty": [ + "17.75.0" + ], + "wipo performances": [ + "17.75.0" + ], + "wired at face": [ + "17.58.3" + ], + "wired contemporary gallery": [ + "17.50.0" + ], + "wired magazine tells": [ + "17.55.0" + ], + "wireless": [ + "17.69.0" + ], + "wireless application protocol": [ + "17.57.0" + ], + "wireless digital mobile": [ + "17.6.0" + ], + "wireless paying cards": [ + "17.69.0" + ], + "wireless versus wired": [ + "17.69.0" + ], + "wise": [ + "17.46.2" + ], + "wise unchallenged consortium": [ + "17.87.0" + ], + "wittenberg": [ + "17.77.1" + ], + "wolf": [ + "17.36.0" + ], + "wolf blitzer": [ + "17.36.0", + "17.36.0" + ], + "wolf blitzer interview": [ + "17.36.0", + "17.36.0" + ], + "wolfgang": [ + "17.15.0" + ], + "wolfgang sützl": [ + "17.15.0", + "17.15.0" + ], + "woman": [ + "17.16.0", + "17.74.0" + ], + "women": [ + "17.19.0", + "17.25.0", + "17.71.0", + "17.72.0", + "17.74.0" + ], + "women getting involved": [ + "17.72.0" + ], + "women groups": [ + "17.72.0" + ], + "women initiatives": [ + "17.72.0" + ], + "women studies": [ + "17.72.0" + ], + "women themselves probably": [ + "17.74.0" + ], + "women training": [ + "17.74.0" + ], + "women training center": [ + "17.74.0", + "17.74.0" + ], + "women using technnology": [ + "17.74.0" + ], + "women working": [ + "17.74.0" + ], + "won": [ + "17.33.0" + ], + "won the people": [ + "17.33.0" + ], + "wont necessarily divide": [ + "17.5.0" + ], + "word baltica sounds": [ + "17.57.0" + ], + "word document": [ + "17.87.0" + ], + "word engineering entails": [ + "17.91.0" + ], + "word processing software": [ + "17.87.0" + ], + "words": [ + "17.37.0" + ], + "words ghislaine glasson": [ + "17.39.1" + ], + "work": [ + "17.0.0", + "17.1.0", + "17.4.0", + "17.5.0", + "17.6.0", + "17.7.0", + "17.9.0", + "17.10.0", + "17.13.0", + "17.16.0", + "17.16.3", + "17.18.0", + "17.19.0", + "17.20.0", + "17.25.0", + "17.26.0", + "17.31.0", + "17.32.0", + "17.35.0", + "17.38.0", + "17.40.0", + "17.41.0", + "17.42.0", + "17.46.0", + "17.46.1", + "17.48.0", + "17.49.0", + "17.51.0", + "17.53.0", + "17.55.0", + "17.57.0", + "17.58.0", + "17.60.0", + "17.61.0", + "17.62.0", + "17.63.0", + "17.64.0", + "17.65.0", + "17.66.0", + "17.67.0", + "17.69.0", + "17.70.0", + "17.71.0", + "17.73.0", + "17.74.0", + "17.77.0", + "17.79.0", + "17.80.0", + "17.81.0", + "17.82.0", + "17.83.0", + "17.84.0", + "17.85.0", + "17.86.0", + "17.89.0", + "17.90.0", + "17.92.0", + "17.93.0", + "17.94.0", + "17.95.0" + ], + "worker": [ + "17.90.0" + ], + "workers": [ + "17.31.0", + "17.44.0", + "17.90.0" + ], + "working": [ + "17.5.0", + "17.7.0", + "17.40.0", + "17.51.0", + "17.58.1", + "17.60.0", + "17.72.0", + "17.74.0", + "17.79.0", + "17.83.0" + ], + "working group": [ + "17.34.0" + ], + "working place": [ + "17.74.0" + ], + "works": [ + "17.0.0", + "17.26.0", + "17.46.0", + "17.46.1", + "17.61.0", + "17.67.0", + "17.82.0", + "17.84.0", + "17.94.0" + ], + "works unmediated": [ + "17.46.2" + ], + "workshop": [ + "17.69.0" + ], + "workspace": [ + "17.19.0", + "17.20.0", + "17.21.0", + "17.23.1", + "17.26.0" + ], + "workspace at orangerie": [ + "17.20.0" + ], + "workspace documenta": [ + "17.23.0", + "17.23.1" + ], + "workspace in kassel": [ + "17.3.0" + ], + "world": [ + "17.1.0", + "17.14.0", + "17.25.0", + "17.26.0", + "17.27.0", + "17.34.0", + "17.38.0", + "17.44.0", + "17.45.0", + "17.47.0", + "17.48.0", + "17.50.0", + "17.52.0", + "17.58.1", + "17.58.2", + "17.58.3", + "17.58.4", + "17.61.0", + "17.74.0", + "17.75.0", + "17.94.0", + "17.95.0" + ], + "world bank": [ + "17.25.0" + ], + "world forum": [ + "17.44.0", + "17.44.0" + ], + "world glamorizes narcissism": [ + "17.46.0" + ], + "world health organisation": [ + "17.95.0" + ], + "world jamaica": [ + "17.87.0" + ], + "world makes": [ + "17.58.1", + "17.58.2", + "17.58.3" + ], + "world makes good": [ + "17.58.1", + "17.58.2", + "17.58.3" + ], + "world merely exists": [ + "17.52.0" + ], + "world order": [ + "17.25.0" + ], + "world social": [ + "17.44.0" + ], + "world social forum": [ + "17.44.0", + "17.44.0" + ], + "world strides": [ + "17.6.0" + ], + "world summit": [ + "17.34.0" + ], + "world summits": [ + "17.34.0" + ], + "world summits special": [ + "17.34.0" + ], + "world telecommunications infrastructure": [ + "17.47.0" + ], + "world tool kit": [ + "17.40.0" + ], + "world trade": [ + "17.25.0" + ], + "world war": [ + "17.53.0" + ], + "world war ii": [ + "17.14.0" + ], + "world wide": [ + "17.75.0" + ], + "world wide wait": [ + "17.23.0", + "17.23.0" + ], + "world wide web": [ + "17.43.0", + "17.43.1", + "17.59.0", + "17.68.0", + "17.68.0", + "17.75.0", + "17.75.0", + "17.83.0", + "17.86.0" + ], + "worldbank": [ + "17.22.0" + ], + "worldwide judicial system": [ + "17.14.0" + ], + "worldwide male dominance": [ + "17.6.0" + ], + "worm spreads": [ + "17.92.0" + ], + "worse completely erased": [ + "17.26.0" + ], + "worst formalist experiments": [ + "17.77.0" + ], + "worth revisiting briefly": [ + "17.12.0" + ], + "worthless stock options": [ + "17.48.0" + ], + "wright": [ + "17.41.0" + ], + "wright covers": [ + "17.41.0" + ], + "write": [ + "17.55.0", + "17.67.0" + ], + "write html code": [ + "17.57.0" + ], + "write solid": [ + "17.35.0" + ], + "write towards": [ + "17.62.0" + ], + "writer daniil kharms": [ + "17.94.0" + ], + "writer franco berardi": [ + "17.12.0" + ], + "writer merely writes": [ + "17.55.0" + ], + "writers / reporters": [ + "17.67.0" + ], + "writing": [ + "17.25.0", + "17.55.0", + "17.67.0" + ], + "writing texts": [ + "17.55.0" + ], + "written": [ + "17.2.0", + "17.55.0" + ], + "wrote": [ + "17.23.1", + "17.58.1", + "17.58.3", + "17.58.4" + ], + "wsis": [ + "17.34.0" + ], + "wsis process": [ + "17.34.0" + ], + "wtc/pentagon bombings changed": [ + "17.47.0" + ], + "wwii victory parades": [ + "17.65.0" + ], + "xenophobia": [ + "17.1.0" + ], + "yangtze delta": [ + "17.13.0" + ], + "yangtze delta workplaces": [ + "17.13.0" + ], + "yeah": [ + "17.77.0" + ], + "yeah jeff koons": [ + "17.70.0" + ], + "year": [ + "17.6.1", + "17.79.0", + "17.84.0" + ], + "years": [ + "17.4.0", + "17.9.0", + "17.22.0", + "17.40.0", + "17.79.0" + ], + "years ago": [ + "17.79.0" + ], + "years yukiko shigata": [ + "17.56.0" + ], + "yes itâs": [ + "17.95.0" + ], + "yesterday with ackbar": [ + "17.24.0" + ], + "york bank wire": [ + "17.45.0" + ], + "york ny 10014-0704": [ + "17.58.4" + ], + "york times magazine": [ + "17.75.0" + ], + "york-based australian": [ + "17.48.0" + ], + "york-based australian media": [ + "17.48.0" + ], + "yorker essayist called": [ + "17.78.0" + ], + "young": [ + "17.56.0" + ], + "young people": [ + "17.56.0" + ], + "yourself liable": [ + "17.45.0" + ], + "youâll": [ + "17.69.0" + ], + "youâll build": [ + "17.69.0" + ], + "youâre": [ + "17.69.0" + ], + "yukiko shigata": [ + "17.56.0" + ], + "zagreb": [ + "17.39.0" + ], + "zagreb interview": [ + "17.37.0" + ], + "zamir": [ + "17.72.0" + ], + "zamir women": [ + "17.72.0" + ], + "zamir women conference": [ + "17.72.0" + ], + "zazie": [ + "17.32.0" + ], + "zealand": [ + "17.50.0" + ], + "zentrum der peripherie": [ + "17.11.0" + ], + "zero positive ball": [ + "17.14.0" + ], + "zip 1960s": [ + "17.46.0" + ], + "zizek warns": [ + "17.39.1" + ], + "zurich art space": [ + "17.11.0" + ], + "zócalo": [ + "17.65.0", + "17.65.0" + ], + "zócalo plaza": [ + "17.65.0" + ], + "zócalo square": [ + "17.65.0" + ], + "~globally constituted accident~": [ + "17.53.0" + ], + "~specific~ accident": [ + "17.53.0" + ], + "‘integrated policing platform’": [ + "17.42.0" + ], + "‘trust’ amongst peers": [ + "17.30.0" + ], + "âdigital radio switchoverâ": [ + "17.69.0" + ], + "âimprovised machineâ implies": [ + "17.95.0" + ], + "âneedsâ italian fascism": [ + "17.95.0" + ], + "âprimaryâ raw materials": [ + "17.95.0" + ], + "âtwo facedâ aspects": [ + "17.69.0" + ], + "âunnecessarily intricateâ allows": [ + "17.95.0" + ] + }, + "selected": { + "activism": [ + "17.12.0" + ], + "apache web server": [ + "17.35.0" + ], + "art history": [ + "17.4.0", + "17.28.0", + "17.40.0", + "17.46.0" + ], + "ascii art": [ + "17.54.0", + "17.54.0" + ], + "bbs": [ + "17.3.0", + "17.4.0", + "17.72.0" + ], + "beaux arts": [ + "17.26.0", + "17.26.0" + ], + "berlin": [ + "17.5.0", + "17.16.0", + "17.16.1" + ], + "blogging": [ + "17.36.0" + ], + "bologna": [ + "17.12.0" + ], + "broadcast media": [ + "17.30.0" + ], + "californian ideology": [ + "17.58.0", + "17.58.1", + "17.58.4" + ], + "ccc": [ + "17.70.0" + ], + "chaos computer club": [ + "17.70.0", + "17.70.0", + "17.71.0" + ], + "cognitariat": [ + "17.90.0" + ], + "cognitive work": [ + "17.90.0" + ], + "collaborative text filtering": [ + "17.6.1" + ], + "conceptual art": [ + "17.46.0", + "17.46.0" + ], + "contemporary art": [ + "17.10.0", + "17.26.0", + "17.28.0", + "17.28.0", + "17.46.0" + ], + "copyright": [ + "17.82.0" + ], + "critical art ensemble": [ + "17.7.0", + "17.7.0", + "17.51.0" + ], + "ctheory": [ + "17.53.0" + ], + "deep europe": [ + "17.29.0" + ], + "documenta": [ + "17.18.0", + "17.19.0", + "17.20.0", + "17.23.0", + "17.23.1", + "17.24.0", + "17.25.0", + "17.26.0", + "17.27.0", + "17.79.0" + ], + "e-mail": [ + "17.16.0", + "17.16.1", + "17.16.2", + "17.16.3", + "17.21.0", + "17.31.0", + "17.55.0" + ], + "ecological crisis": [ + "17.22.0" + ], + "electronic arts": [ + "17.68.0" + ], + "email": [ + "17.64.0" + ], + "free software": [ + "17.10.0", + "17.10.0", + "17.35.0", + "17.35.0", + "17.71.0", + "17.93.0" + ], + "gayatri spivak": [ + "17.25.0", + "17.25.0" + ], + "generative art": [ + "17.70.0" + ], + "hacker": [ + "17.70.0" + ], + "hackers": [ + "17.58.2", + "17.70.0" + ], + "hamburg": [ + "17.19.0" + ], + "henri lefebvre": [ + "17.53.1" + ], + "history": [ + "17.18.0", + "17.40.0", + "17.46.2", + "17.69.0" + ], + "hybrid workspace": [ + "17.5.0", + "17.18.0", + "17.21.0", + "17.22.0", + "17.23.0", + "17.23.0", + "17.23.1", + "17.26.0", + "17.27.0", + "17.28.0", + "17.79.0" + ], + "indymedia": [ + "17.47.0" + ], + "internet": [ + "17.0.0", + "17.1.0", + "17.2.0", + "17.3.0", + "17.5.0", + "17.8.0", + "17.9.0", + "17.14.0", + "17.17.0", + "17.21.0", + "17.27.0", + "17.30.0", + "17.32.0", + "17.34.0", + "17.35.0", + "17.43.0", + "17.43.1", + "17.44.0", + "17.47.0", + "17.50.0", + "17.55.0", + "17.56.0", + "17.57.0", + "17.59.0", + "17.63.0", + "17.68.0", + "17.69.0", + "17.72.0", + "17.73.0", + "17.75.0", + "17.77.0", + "17.80.0", + "17.81.0", + "17.83.0", + "17.89.0" + ], + "jodi": [ + "17.77.0", + "17.82.0" + ], + "kassel": [ + "17.1.0", + "17.20.0", + "17.23.0", + "17.23.1", + "17.27.0" + ], + "leibniz": [ + "17.18.0" + ], + "ljubljana": [ + "17.5.0", + "17.19.0" + ], + "london": [ + "17.64.0", + "17.84.0", + "17.85.0" + ], + "mailing list": [ + "17.6.1", + "17.70.0", + "17.90.0" + ], + "mailing lists": [ + "17.11.0", + "17.48.0", + "17.82.0", + "17.93.0" + ], + "mailinglist": [ + "17.79.0" + ], + "majordomo": [ + "17.6.1", + "17.58.3" + ], + "media art": [ + "17.6.0", + "17.8.0", + "17.11.0", + "17.40.0", + "17.41.0", + "17.42.0", + "17.46.0", + "17.49.0", + "17.56.0", + "17.58.0", + "17.67.0" + ], + "media arts": [ + "17.6.0", + "17.11.0", + "17.40.0", + "17.56.0", + "17.56.0", + "17.65.0" + ], + "media theory": [ + "17.4.0", + "17.4.0", + "17.8.0", + "17.58.0", + "17.63.0", + "17.68.0" + ], + "nam june paik": [ + "17.70.0", + "17.71.0" + ], + "net art": [ + "17.32.0", + "17.40.0", + "17.49.0", + "17.51.0", + "17.54.0", + "17.54.0", + "17.57.0", + "17.68.0", + "17.70.0", + "17.71.0", + "17.77.0", + "17.81.0", + "17.82.0" + ], + "net.art": [ + "17.9.0", + "17.32.0", + "17.79.0", + "17.82.0", + "17.84.0" + ], + "paris": [ + "17.18.0" + ], + "paul virilio": [ + "17.53.0", + "17.53.0" + ], + "rave culture": [ + "17.8.0" + ], + "rhizome": [ + "17.82.0" + ], + "rotterdam": [ + "17.73.0" + ], + "san francisco": [ + "17.1.0", + "17.30.0", + "17.60.0" + ], + "seattle": [ + "17.47.0", + "17.60.0" + ], + "software art": [ + "17.10.0", + "17.94.0" + ], + "soros": [ + "17.28.0" + ], + "spam art": [ + "17.54.0" + ], + "telephone": [ + "17.23.1" + ], + "telestreet": [ + "17.12.0" + ], + "temporary autonomous zone": [ + "17.8.0" + ], + "temporary autonomous zones": [ + "17.8.0", + "17.90.0" + ], + "texte zur kunst": [ + "17.9.0" + ], + "theory": [ + "17.8.0", + "17.9.0", + "17.13.0", + "17.38.0", + "17.48.0", + "17.58.0", + "17.61.0", + "17.62.0", + "17.63.0", + "17.68.0" + ], + "vapor theory": [ + "17.58.0", + "17.58.0" + ], + "video art": [ + "17.4.0", + "17.71.0", + "17.77.0" + ], + "visual arts": [ + "17.9.0" + ], + "vuk cosic": [ + "17.77.0", + "17.77.1" + ], + "wired": [ + "17.58.3", + "17.58.4" + ] + } +} \ No newline at end of file diff --git a/index/2.DeepEurope-index.js b/index/2.DeepEurope-index.js new file mode 100644 index 0000000..39f1c52 --- /dev/null +++ b/index/2.DeepEurope-index.js @@ -0,0 +1,2894 @@ +{ + "orphan": { + "18:36": [ + "2.4.1" + ], + "> deep europe": [ + "2.2.0" + ], + ">geert lovink hided": [ + "2.3.0" + ], + "actual lively elements": [ + "2.7.0" + ], + "administrate freedom means": [ + "2.7.0" + ], + "administrate yourself": [ + "2.7.0" + ], + "admit": [ + "2.2.0" + ], + "albania current national": [ + "2.7.0" + ], + "albanian": [ + "2.7.0" + ], + "albanian art": [ + "2.7.0", + "2.7.0" + ], + "albanian art magazine": [ + "2.7.0" + ], + "albanian video artworks": [ + "2.7.0" + ], + "albanians": [ + "2.7.0" + ], + "alexander": [ + "2.4.2" + ], + "alexander proposed": [ + "2.4.2" + ], + "alive authors don": [ + "2.3.5" + ], + "amy": [ + "2.4.2" + ], + "amy alexander": [ + "2.4.2" + ], + "amy alexander proposed": [ + "2.4.2", + "2.4.2" + ], + "ana": [ + "2.3.4" + ], + "andreas": [ + "2.0.0", + "2.1.0", + "2.2.0", + "2.3.1", + "2.3.5" + ], + "andreas & inke": [ + "2.0.0" + ], + "andreas and inke": [ + "2.1.0" + ], + "andreas broeckmann": [ + "2.3.5" + ], + "anna": [ + "2.1.0", + "2.2.0", + "2.3.0", + "2.3.1", + "2.3.5", + "2.3.5" + ], + "anna balint": [ + "2.1.0", + "2.2.0", + "2.3.0", + "2.3.2", + "2.3.5" + ], + "anna or gert": [ + "2.3.1" + ], + "anna originally": [ + "2.1.0" + ], + "annick": [ + "2.4.2" + ], + "annick and eric": [ + "2.4.2" + ], + "announcements": [ + "2.4.2" + ], + "anthropological text book": [ + "2.8.0" + ], + "approval amongst politicians": [ + "2.8.0" + ], + "armed troops trhough": [ + "2.9.1" + ], + "arns": [ + "2.3.5" + ], + "art": [ + "2.0.0", + "2.3.4", + "2.4.1", + "2.4.3", + "2.5.0", + "2.7.0" + ], + "art and culture": [ + "2.0.0" + ], + "art communities": [ + "2.4.3" + ], + "art definitions": [ + "2.3.2" + ], + "art education situation": [ + "2.5.0" + ], + "art gallery": [ + "2.7.0" + ], + "art market": [ + "2.7.0" + ], + "art scene": [ + "2.3.4", + "2.3.4" + ], + "artforum": [ + "2.4.0" + ], + "artistic": [ + "2.4.0", + "2.4.1", + "2.4.3", + "2.5.0" + ], + "artistic and political": [ + "2.4.0", + "2.4.1", + "2.4.3", + "2.5.0" + ], + "arts": [ + "2.7.0" + ], + "artwroks": [ + "2.6.1" + ], + "ascii art definitions": [ + "2.3.2" + ], + "authenticity": [ + "2.3.5" + ], + "author": [ + "2.3.5" + ], + "authors": [ + "2.3.5" + ], + "avoid ethnic tensions": [ + "2.7.0" + ], + "balint": [ + "2.1.0", + "2.2.0", + "2.3.0", + "2.3.2", + "2.3.5" + ], + "balkan ghosts": [ + "2.7.0" + ], + "balkan identity": [ + "2.7.0" + ], + "bandwidth": [ + "2.8.0" + ], + "beautiful": [ + "2.3.3" + ], + "belgrade opposition": [ + "2.9.0" + ], + "belgrade university": [ + "2.9.0" + ], + "belgrade university entered": [ + "2.9.0", + "2.9.0" + ], + "benson": [ + "2.3.5" + ], + "berisha": [ + "2.7.0" + ], + "berlin": [ + "2.4.1", + "2.5.0" + ], + "beyond boredom": [ + "2.7.0" + ], + "beyond mere description": [ + "2.7.0" + ], + "big": [ + "2.9.1" + ], + "big german": [ + "2.9.1" + ], + "big german newspapers": [ + "2.9.1" + ], + "big western": [ + "2.9.1" + ], + "big western media": [ + "2.9.1" + ], + "biggest": [ + "2.9.1" + ], + "biggest demonstrations": [ + "2.9.1" + ], + "biligual german/english edition": [ + "2.8.0" + ], + "bistro": [ + "2.4.3" + ], + "blatant political message": [ + "2.8.0" + ], + "boats": [ + "2.9.1" + ], + "boring": [ + "2.3.3" + ], + "boring syndicate": [ + "2.3.3" + ], + "boring syndicate mailings": [ + "2.3.3" + ], + "boyadiev": [ + "2.2.0", + "2.3.0" + ], + "boyadiev has coined": [ + "2.3.0" + ], + "boyadiev i immediatley": [ + "2.2.0" + ], + "boyadjiev": [ + "2.3.5" + ], + "brand": [ + "2.3.3" + ], + "broeckmann": [ + "2.3.5" + ], + "broeckmann galloway": [ + "3.8.0" + ], + "=dwdggi3ygik&feature=youtu": [ + "3.19.2" + ], + "=e1szl=f3 barab=e1si": [ + "3.7.11" + ], + "> >shifts ahead": [ + "3.1.0" + ], + "> >unavoidable mediation": [ + "3.1.0" + ], + "> critical analysis": [ + "3.1.0" + ], + "> daily lives": [ + "3.1.0" + ], + "> environmental etc": [ + "3.1.0" + ], + ">audiences lacking home": [ + "3.24.7" + ], + ">geert lovink wrote": [ + "3.25.2" + ], + "abandoned mailing lists": [ + "3.15.0-p.179" + ], + "abbreviated wish list": [ + "3.24.8" + ], + "abounds in techno-culture": [ + "3.5.1" + ], + "absolute": [ + "3.15.0" + ], + "absolute freedom": [ + "3.7.5" + ], + "absolute horizontal relations": [ + "3.7.2", + "3.7.5" + ], + "abstraction layer covering": [ + "3.22.26" + ], + "abyme": [ + "3.12.3" + ], + "academic fomo": [ + "3.22.21" + ], + "academy": [ + "3.24.2" + ], + "accept": [ + "3.7.2", + "3.7.5" + ], + "accept incomplete knowledge": [ + "3.18.3" + ], + "accept inflexibility": [ + "3.7.3" + ], + "accepted physical ‘inner": [ + "3.16.3" + ], + "accessgrid": [ + "3.22.17" + ], + "accessing listserve": [ + "3.22.14" + ], + "accidentally": [ + "3.21.0-p.183" + ], + "account": [ + "3.15.1" + ], + "account or convey": [ + "3.15.1" + ], + "accredited organizations": [ + "3.8.0" + ], + "accredited standards developers": [ + "3.8.0" + ], + "accumulate data": [ + "3.14.0" + ], + "accumulating data": [ + "3.14.0" + ], + "acknowledge": [ + "3.12.1" + ], + "acknowledge the posts": [ + "3.12.1" + ], + "acquire additional qualities": [ + "3.2.0" + ], + "act": [ + "3.5.4", + "3.12.1", + "3.15.1", + "3.25.1", + "3.25.2" + ], + "action and association": [ + "3.4.1" + ], + "activating art": [ + "3.19.0" + ], + "active social wisdom": [ + "3.0.0", + "3.1.0" + ], + "active wisdom": [ + "3.1.0" + ], + "actively involved": [ + "3.10.1" + ], + "actively involved activists": [ + "3.10.1", + "3.10.1" + ], + "activists pursue techniques": [ + "3.2.0" + ], + "activities": [ + "3.18.1" + ], + "activities were initially": [ + "3.12.0" + ], + "activity": [ + "3.19.1" + ], + "actors": [ + "3.7.2" + ], + "acts": [ + "3.5.4" + ], + "actual authoring stuff": [ + "3.6.3" + ], + "actual chapter": [ + "3.24.0" + ], + "actual chapter contribution": [ + "3.24.0", + "3.24.0" + ], + "actual dynamic relations": [ + "3.6.0" + ], + "actual network systems": [ + "3.20.0", + "3.20.0" + ], + "actual writing": [ + "3.6.3" + ], + "actually accepted protocols": [ + "3.8.0" + ], + "actually move data": [ + "3.8.0" + ], + "ad hoc": [ + "3.6.0" + ], + "ad hominem attack": [ + "3.8.0" + ], + "add to debates": [ + "3.22.7" + ], + "adding extra meta": [ + "3.8.0" + ], + "address political issues": [ + "3.17.1" + ], + "address specific situations": [ + "3.2.0" + ], + "addressed issues connected": [ + "3.8.0" + ], + "adherence": [ + "3.7.5" + ], + "admin page": [ + "3.22.27" + ], + "admit that filliou": [ + "3.18.0" + ], + "adopt ietf protocols": [ + "3.8.0" + ], + "adopted": [ + "3.22.3", + "3.22.5" + ], + "adopted 1/2 sister": [ + "3.22.3" + ], + "adopted person": [ + "3.22.3" + ], + "adult movie theaters": [ + "3.8.0" + ], + "advanced form": [ + "3.22.30" + ], + "advertise distributed architectures": [ + "3.8.0" + ], + "aesthetic": [ + "3.19.1" + ], + "aesthetic experience": [ + "3.19.1" + ], + "affective": [ + "3.7.9" + ], + "affective forms": [ + "3.22.19" + ], + "afternoon": [ + "3.22.6" + ], + "agamben": [ + "3.5.4" + ], + "aged artists": [ + "3.18.2" + ], + "aged artists friends": [ + "3.18.2" + ], + "agents": [ + "3.7.1" + ], + "agents agreeing": [ + "3.7.1" + ], + "agents remain semi": [ + "3.7.1" + ], + "ages": [ + "3.7.6" + ], + "aging net": [ + "3.24.6" + ], + "aging net art": [ + "3.24.6", + "3.24.6" + ], + "agnese trocchi": [ + "3.22.12" + ], + "ago tim": [ + "3.12.0" + ], + "agonistic democracies negotiate": [ + "3.3.0" + ], + "agonistic democracy": [ + "3.3.0", + "3.3.0" + ], + "agree": [ + "3.1.0", + "3.22.2" + ], + "agree with dollyoko": [ + "3.22.21" + ], + "aims": [ + "3.4.0" + ], + "aims to deal": [ + "3.4.0" + ], + "airline transportation routes": [ + "3.7.11" + ], + "airplanes": [ + "3.22.10" + ], + "airports": [ + "3.7.3" + ], + "aka dollyoko": [ + "3.22.30" + ], + "akademie der": [ + "3.18.0-p.180" + ], + "akademie der künste": [ + "3.18.0-p.180" + ], + "aktionen der": [ + "3.18.0-p.180" + ], + "aktionen der avanatgarde": [ + "3.18.0-p.180", + "3.18.0-p.180" + ], + "alan": [ + "3.22.17", + "3.22.20" + ], + "albert hupa": [ + "3.7.0" + ], + "albert hupa wrote": [ + "3.7.0", + "3.7.0" + ], + "albert-lászló barabási attributes": [ + "3.12.3" + ], + "alex": [ + "3.5.1", + "3.12.1", + "3.12.4", + "3.15.0" + ], + "alex and eugene": [ + "3.15.0" + ], + "alex for talking": [ + "3.12.4" + ], + "alex galloway": [ + "3.5.1", + "3.12.1" + ], + "alex i guess": [ + "3.14.0" + ], + "alex recent": [ + "3.12.1" + ], + "alex recent lecture": [ + "3.12.1" + ], + "alexander": [ + "3.12.3", + "3.13.0" + ], + "alexander galloway": [ + "3.5.0", + "3.6.2", + "3.9.0", + "3.9.0" + ], + "alexander galway": [ + "3.12.3" + ], + "algorithmically-invested patterns": [ + "3.22.31" + ], + "alice": [ + "3.22.22" + ], + "alice famer": [ + "3.22.27" + ], + "alice famer references": [ + "3.22.27" + ], + "alice farmer takes": [ + "3.22.19" + ], + "all.": [ + "3.11.0" + ], + "allnetworks eventually vanish": [ + "3.20.0" + ], + "alloway": [ + "3.19.1" + ], + "aloud": [ + "3.19.5" + ], + "alternative": [ + "3.12.2", + "3.17.0-p.180", + "3.17.1", + "3.19.0-p.182" + ], + "alternative art": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "alternative funding streams": [ + "3.17.1" + ], + "alternative media centers": [ + "3.24.7" + ], + "alternative site": [ + "3.17.1" + ], + "alternatives": [ + "3.6.3" + ], + "am actually tending": [ + "3.25.2" + ], + "am looking forward": [ + "3.1.0" + ], + "am talking specifically": [ + "3.2.0" + ], + "am thinking": [ + "3.25.2" + ], + "am using dna": [ + "3.22.3" + ], + "america versus": [ + "3.7.0" + ], + "american": [ + "3.7.6" + ], + "american currency": [ + "3.7.6" + ], + "american family": [ + "3.22.6" + ], + "american fluxus circles": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "american military policy": [ + "3.7.0" + ], + "american national": [ + "3.8.0" + ], + "american national standards": [ + "3.8.0", + "3.8.0" + ], + "american peoples": [ + "3.22.1" + ], + "american standards association": [ + "3.8.0" + ], + "american tribal histories": [ + "3.22.2" + ], + "ana": [ + "3.7.12", + "3.17.0-p.180", + "3.18.0-p.180", + "3.18.2-p.181" + ], + "ana l. vald": [ + "3.7.12" + ], + "ana peraica": [ + "3.15.0-p.179", + "3.18.0-p.180" + ], + "analysing": [ + "3.18.3-p.181" + ], + "analysing and collecting": [ + "3.18.3-p.181" + ], + "analysis": [ + "3.22.2", + "3.22.4" + ], + "analysis trans": [ + "3.14.0" + ], + "analysis trans disciplinary": [ + "3.14.0" + ], + "ancestral cyberspace": [ + "3.22.28" + ], + "ancient": [ + "3.5.3" + ], + "ancient greece": [ + "3.5.3" + ], + "andintersectional practices online": [ + "3.4.3" + ], + "andre simon": [ + "3.0.0" + ], + "andreas": [ + "3.19.1-p.182" + ], + "andreas broeckman": [ + "3.15.0-p.179" + ], + "andreas broeckmann": [ + "3.20.0-p.183" + ], + "andreas weber": [ + "3.22.9" + ], + "andreas wrote": [ + "3.19.1-p.182" + ], + "angela": [ + "3.13.0" + ], + "angela merkel": [ + "3.13.0" + ], + "angela merkel cell": [ + "3.13.0" + ], + "angeles romero": [ + "3.19.2" + ], + "angry": [ + "3.19.0" + ], + "angry women": [ + "3.19.0", + "3.19.0", + "3.19.2" + ], + "angry women started": [ + "3.19.0" + ], + "animal": [ + "3.6.0" + ], + "animals": [ + "3.6.0" + ], + "animals aristotle": [ + "3.6.0" + ], + "animals aristotle famous": [ + "3.6.0" + ], + "animation": [ + "3.6.0", + "3.6.1" + ], + "animation is driven": [ + "3.6.1" + ], + "anna": [ + "3.19.1-p.182", + "3.24.2-p.199", + "3.24.4", + "3.24.7" + ], + "anna balint": [ + "3.16.0-p.179", + "3.18.3-p.181" + ], + "anna lowenhaupt": [ + "3.22.23" + ], + "anna lowenhaupt tsing": [ + "3.22.23", + "3.22.23" + ], + "anna munster": [ + "3.24.2-p.199" + ], + "anna munster paul": [ + "3.24.2-p.199" + ], + "anna schime": [ + "3.22.25" + ], + "anna wrote": [ + "3.19.1-p.182" + ], + "anne": [ + "3.24.5" + ], + "anne points": [ + "3.24.5" + ], + "annet": [ + "3.22.11" + ], + "annet decker": [ + "3.22.14" + ], + "annie": [ + "3.17.2", + "3.19.1" + ], + "annie abrahams": [ + "3.19.2" + ], + "annie abrahams brought": [ + "3.19.2" + ], + "anniversary of art": [ + "3.17.1" + ], + "announce the february": [ + "3.16.0" + ], + "announcement": [ + "3.4.0" + ], + "anonymous": [ + "3.15.1" + ], + "answer": [ + "3.25.3" + ], + "ant scenting patterns": [ + "3.22.30", + "3.22.30", + "3.22.31", + "3.22.31", + "3.22.32" + ], + "ant to maintain": [ + "3.24.5" + ], + "anthropological functioning": [ + "3.7.0" + ], + "anthropological studies tell": [ + "3.7.0" + ], + "anthropologist herman hahn": [ + "3.17.1", + "3.17.1" + ], + "anticopyright zine photostatic": [ + "3.20.0-p.183" + ], + "apocryphal mail": [ + "3.21.0-p.183" + ], + "apologies": [ + "3.19.4" + ], + "apparently the dogon": [ + "3.17.1" + ], + "apparently ‘permanent": [ + "3.19.7" + ], + "appealing option": [ + "3.22.29" + ], + "appeared": [ + "3.4.0" + ], + "approach": [ + "3.17.0" + ], + "approach to teaching": [ + "3.17.0" + ], + "appropriation": [ + "3.22.2" + ], + "apr": [ + "3.7.11" + ], + "april": [ + "3.7.5", + "3.16.2" + ], + "arbitrary": [ + "3.18.4" + ], + "arbitrary closure": [ + "3.18.4" + ], + "arboreal model": [ + "3.22.6", + "3.22.11", + "3.22.11" + ], + "arbuscural mycorrhizae": [ + "3.22.9" + ], + "architecture": [ + "3.13.2", + "3.24.2" + ], + "archival paper documents": [ + "3.22.4" + ], + "archival time": [ + "3.24.8" + ], + "archive is public": [ + "3.22.15" + ], + "argue forever": [ + "3.22.23" + ], + "argued": [ + "3.22.27" + ], + "aristotle": [ + "3.6.0", + "3.6.1" + ], + "aristotle points": [ + "3.6.1" + ], + "aristotle side": [ + "3.6.1" + ], + "arizona state": [ + "3.4.2" + ], + "armies": [ + "3.7.3" + ], + "armin": [ + "3.19.7" + ], + "arms": [ + "3.22.31" + ], + "arpa": [ + "3.9.1" + ], + "ars this september": [ + "3.22.25" + ], + "art": [ + "3.16.0", + "3.16.1", + "3.16.2", + "3.16.3", + "3.17.0", + "3.17.0-p.180", + "3.17.1", + "3.18.1", + "3.18.3", + "3.19.0", + "3.19.0-p.182", + "3.19.1", + "3.19.7", + "3.20.0", + "3.20.0-p.183", + "3.21.0-p.183", + "3.22.25", + "3.24.0", + "3.24.1", + "3.24.2", + "3.24.3", + "3.24.5", + "3.24.6", + "3.24.7", + "3.24.8" + ], + "art and communication": [ + "3.21.0-p.183" + ], + "art and culture": [ + "3.24.3" + ], + "art and life": [ + "3.16.2" + ], + "art archives": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "art birthday": [ + "3.17.1" + ], + "art bureau open": [ + "3.22.25" + ], + "art centers": [ + "3.21.0-p.183" + ], + "art circles": [ + "3.17.0-p.180", + "3.17.0-p.180", + "3.19.0-p.182", + "3.19.0-p.182" + ], + "art culture": [ + "3.16.3" + ], + "art establishment": [ + "3.16.3", + "3.16.3" + ], + "art formerly": [ + "3.24.8" + ], + "art gallery": [ + "3.16.0", + "3.16.3" + ], + "art historical": [ + "3.24.8" + ], + "art historical canon": [ + "3.24.8" + ], + "art historical scholarship": [ + "3.24.8" + ], + "art history": [ + "3.16.0", + "3.24.6" + ], + "art institutions": [ + "3.24.2" + ], + "art intervention": [ + "3.16.3" + ], + "art mail": [ + "3.21.0-p.183" + ], + "art making": [ + "3.19.7" + ], + "art market": [ + "3.22.25" + ], + "art movement": [ + "3.24.5" + ], + "art museum": [ + "3.20.0" + ], + "art museum titled": [ + "3.20.0" + ], + "art practice throughout": [ + "3.24.8" + ], + "art practices": [ + "3.24.1" + ], + "art practices situated": [ + "3.24.1" + ], + "art research": [ + "3.18.3" + ], + "art school": [ + "3.19.0" + ], + "art students": [ + "3.19.0" + ], + "art students learn": [ + "3.19.0", + "3.19.0" + ], + "art work": [ + "3.20.0" + ], + "art works": [ + "3.20.0" + ], + "art world": [ + "3.16.1", + "3.19.1", + "3.24.2", + "3.24.6" + ], + "art world described": [ + "3.19.1" + ], + "art ’s birthday": [ + "3.18.1" + ], + "arthur and marilouise": [ + "3.12.0" + ], + "article": [ + "3.9.0", + "3.13.1" + ], + "artificially force issues": [ + "3.7.8" + ], + "artist": [ + "3.16.0", + "3.18.0", + "3.18.1", + "3.18.3", + "3.19.0", + "3.19.1" + ], + "artist curator": [ + "3.19.1" + ], + "artist living": [ + "3.19.0" + ], + "artist poverty": [ + "3.18.0" + ], + "artiste doit": [ + "3.17.0-p.180" + ], + "artistic": [ + "3.16.3", + "3.21.0-p.183" + ], + "artistic research project": [ + "3.19.0" + ], + "artistically": [ + "3.24.3" + ], + "artists": [ + "3.16.0", + "3.16.3", + "3.17.3", + "3.18.0", + "3.18.1", + "3.19.1", + "3.21.0", + "3.22.13", + "3.24.0", + "3.24.1", + "3.24.2", + "3.24.7" + ], + "artists collectively succeed": [ + "3.19.7" + ], + "artists emerged": [ + "3.24.1" + ], + "artists friends": [ + "3.18.2" + ], + "artists george": [ + "3.16.0" + ], + "artists george brecht": [ + "3.16.0", + "3.16.0" + ], + "artists inhabit networks": [ + "3.16.0", + "3.16.0" + ], + "artists network": [ + "3.18.0" + ], + "artists practice": [ + "3.24.1" + ], + "artists working": [ + "3.24.1" + ], + "artists …artistic activity": [ + "3.19.7" + ], + "artists' club": [ + "3.17.3" + ], + "arts": [ + "3.17.0", + "3.17.2", + "3.24.1" + ], + "arts education": [ + "3.17.0" + ], + "arts practice": [ + "3.24.1" + ], + "artwork": [ + "3.18.1" + ], + "artworks": [ + "3.19.0" + ], + "artworld": [ + "3.24.1" + ], + "ashkenazi jewish": [ + "3.22.0" + ], + "asked": [ + "3.19.5" + ], + "aspect": [ + "3.10.1" + ], + "aspect of life": [ + "3.13.0" + ], + "aspects": [ + "3.6.1", + "3.7.4", + "3.18.1" + ], + "asserts that edward": [ + "3.9.0" + ], + "assist radical practice": [ + "3.4.2" + ], + "association": [ + "3.25.3" + ], + "association so aptly": [ + "3.25.3" + ], + "associations regarding filliou": [ + "3.18.0-p.180" + ], + "assume geert": [ + "3.13.0" + ], + "assured orderly functioning": [ + "3.7.0" + ], + "atavistic religious beliefs": [ + "3.7.0" + ], + "attack": [ + "3.24.6" + ], + "attacked digital multimedia": [ + "3.24.6", + "3.24.6" + ], + "attempt some speculations": [ + "3.21.1" + ], + "attended the open": [ + "3.17.4" + ], + "attuned": [ + "3.21.0" + ], + "aturoschaft": [ + "3.16.2" + ], + "audiences lacking home": [ + "3.24.7" + ], + "audio cds": [ + "3.19.6" + ], + "auerbach¹s": [ + "3.24.1" + ], + "australia": [ + "3.22.12" + ], + "australia council": [ + "3.22.12" + ], + "author esther dyson": [ + "3.8.0" + ], + "authoritarian social movements": [ + "3.6.2" + ], + "authority": [ + "3.15.1" + ], + "authorship": [ + "3.16.2" + ], + "auto replyer": [ + "3.17.0-p.180" + ], + "autonomous": [ + "3.22.14" + ], + "autonomy": [ + "3.6.1" + ], + "autonomy and security": [ + "3.6.1" + ], + "avant-garde activism": [ + "3.18.3" + ], + "average user doesn": [ + "3.8.0" + ], + "aviva rahmani": [ + "3.22.8" + ], + "avoid people organising": [ + "3.0.0", + "3.1.0" + ], + "aware": [ + "3.24.6" + ], + "azucena sanchez": [ + "3.22.25" + ], + "ba film production": [ + "3.16.0" + ], + "back": [ + "3.5.2", + "3.5.3", + "3.5.4", + "3.10.1", + "3.14.1", + "3.18.2", + "3.18.4", + "3.19.5", + "3.22.23" + ], + "back for sharing": [ + "3.5.2" + ], + "back form": [ + "3.18.2" + ], + "back from zagreb": [ + "3.19.5" + ], + "back on empyre": [ + "3.11.0" + ], + "back to clive": [ + "3.18.4" + ], + "background noise": [ + "3.3.0" + ], + "backlash towards romantic": [ + "3.25.0" + ], + "bad": [ + "3.6.3", + "3.15.0" + ], + "bad networks": [ + "3.15.0-p.179" + ], + "bad thing": [ + "3.15.0" + ], + "baines johnson": [ + "3.9.1" + ], + "baker": [ + "3.22.14" + ], + "balint": [ + "3.16.0-p.179" + ], + "balkan": [ + "3.24.7" + ], + "balkan flavor": [ + "3.24.7" + ], + "bandwidth": [ + "3.22.2" + ], + "bandwidth of race": [ + "3.22.2" + ], + "banks": [ + "3.7.3" + ], + "bar": [ + "3.7.12" + ], + "bar pornographix": [ + "3.7.12" + ], + "barab": [ + "3.7.11" + ], + "barab=e1si": [ + "3.7.11" + ], + "barabbasian patterns": [ + "3.22.31" + ], + "barad": [ + "3.21.0" + ], + "barad explains": [ + "3.21.0" + ], + "barad explains diffraction": [ + "3.21.0", + "3.21.0" + ], + "baran": [ + "3.7.11" + ], + "barandiagram": [ + "3.4.2" + ], + "barandiagram of centralized": [ + "3.4.2" + ], + "barbarie": [ + "3.7.12" + ], + "barbarie cheers": [ + "3.7.12" + ], + "barely visible underneath": [ + "3.22.32" + ], + "barnaby": [ + "3.17.3" + ], + "base conditions required": [ + "3.7.8" + ], + "based forever": [ + "3.22.27" + ], + "based” networks occur": [ + "3.4.2" + ], + "basic interchange standards": [ + "3.8.0" + ], + "basically": [ + "3.4.2" + ], + "beach beneath": [ + "3.22.15" + ], + "bear witness": [ + "3.22.31" + ], + "bear witness silently": [ + "3.22.31" + ], + "beauty cause double": [ + "3.5.2" + ], + "becom": [ + "3.22.10" + ], + "becoming imply territorial": [ + "3.22.11" + ], + "bees pollinating flowers": [ + "3.22.9" + ], + "begun my phd": [ + "3.16.3" + ], + "behavior": [ + "3.7.0" + ], + "beholder here relative": [ + "3.22.4" + ], + "beliefs": [ + "3.22.1" + ], + "belkin art": [ + "3.16.0" + ], + "belkin art gallery": [ + "3.16.0" + ], + "bell telephone laboratories": [ + "3.8.0" + ], + "ben": [ + "3.19.0-p.182" + ], + "ben vautier": [ + "3.19.0", + "3.19.0-p.182" + ], + "ben vautier work": [ + "3.19.0-p.182" + ], + "beneath the street": [ + "3.22.15" + ], + "benjamin": [ + "3.25.2" + ], + "benjamin defines aura": [ + "3.19.1" + ], + "benjamin geer": [ + "3.25.2" + ], + "benjamin geer wrote": [ + "3.25.2", + "3.25.2" + ], + "benson wrote": [ + "3.19.1-p.182" + ], + "bergsonian time": [ + "3.24.8" + ], + "berlin": [ + "3.18.0-p.180" + ], + "besides technical aspects": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "betwen art": [ + "3.21.0-p.183" + ], + "beuys": [ + "3.18.2" + ], + "bey": [ + "3.19.1" + ], + "beyond networks except": [ + "3.12.2" + ], + "bibliography": [ + "3.18.1-p.181" + ], + "big": [ + "3.1.0" + ], + "big data": [ + "3.12.3" + ], + "big kiss": [ + "3.19.0" + ], + "big network": [ + "3.15.0-p.179" + ], + "big society": [ + "3.1.0" + ], + "biggest vectoral class": [ + "3.22.20" + ], + "bikers": [ + "3.5.2" + ], + "biological": [ + "3.5.0" + ], + "biological species concept": [ + "3.22.9" + ], + "biopolitics": [ + "3.3.0" + ], + "biopolitics and cultural": [ + "3.3.0" + ], + "biotechnical networks": [ + "3.5.0", + "3.5.1" + ], + "birringer": [ + "3.13.1" + ], + "birth": [ + "3.22.3" + ], + "birth families reunite": [ + "3.22.3" + ], + "birthday": [ + "3.17.1", + "3.18.1" + ], + "bit": [ + "3.11.0", + "3.12.4", + "3.22.15" + ], + "bit with geert": [ + "3.11.0" + ], + "bitcoins failed": [ + "3.22.25" + ], + "bjarne stroustrup": [ + "3.8.0" + ], + "bjarne stroustrup developed": [ + "3.8.0" + ], + "black holes": [ + "3.18.1-p.181" + ], + "black slaves": [ + "3.7.12" + ], + "bland by comparison": [ + "3.22.21" + ], + "blessed human": [ + "3.7.12" + ], + "blessed human hierarchie": [ + "3.7.12" + ], + "blind on summer": [ + "3.22.19" + ], + "blockchain is taking": [ + "3.22.25" + ], + "blood": [ + "3.22.1" + ], + "blood line": [ + "3.22.1" + ], + "blood ties beyond": [ + "3.22.19" + ], + "blood types": [ + "3.22.19" + ], + "blu-tack": [ + "3.10.0" + ], + "body": [ + "3.19.1-p.182", + "3.25.1", + "3.25.2" + ], + "body in borrowed": [ + "3.22.19" + ], + "bogna konior": [ + "3.22.28", + "3.22.32" + ], + "book": [ + "3.11.0", + "3.20.0-p.183", + "3.22.9", + "3.22.20", + "3.24.2-p.199" + ], + "books discussing complexity": [ + "3.5.0" + ], + "born": [ + "3.24.2" + ], + "born digital": [ + "3.24.2" + ], + "born jonathan marshall": [ + "3.22.19" + ], + "borrowed loft": [ + "3.22.19" + ], + "borrowed loft wiping": [ + "3.22.19" + ], + "bots": [ + "3.13.1" + ], + "bound hierarchies declines": [ + "3.7.0" + ], + "bourriaud": [ + "3.24.6" + ], + "brain": [ + "3.5.2", + "3.22.29" + ], + "brain as lacan": [ + "3.5.2" + ], + "brain ritual": [ + "3.22.29" + ], + "branching": [ + "3.22.11" + ], + "branching model": [ + "3.22.11" + ], + "branching model fits": [ + "3.22.6", + "3.22.6", + "3.22.11" + ], + "brand": [ + "3.12.3" + ], + "brand network": [ + "3.12.3" + ], + "brand network provide": [ + "3.12.3" + ], + "break": [ + "3.22.11" + ], + "breaking": [ + "3.22.0" + ], + "breaks everyday routines": [ + "3.19.0-p.182" + ], + "brecht conceived": [ + "3.16.1" + ], + "brecht the eternal": [ + "3.16.0-p.179" + ], + "brett": [ + "3.22.2" + ], + "brian": [ + "3.7.1", + "3.7.11", + "3.15.0-p.179" + ], + "brian holmes": [ + "3.7.11" + ], + "brian holmes wrote": [ + "3.7.11", + "3.7.11" + ], + "bring": [ + "3.22.14" + ], + "bring in rachel": [ + "3.22.14" + ], + "bringing": [ + "3.22.16" + ], + "bringing black": [ + "3.7.12" + ], + "bringing black slaves": [ + "3.7.12", + "3.7.12" + ], + "britain": [ + "3.13.0" + ], + "british cultural": [ + "3.18.0" + ], + "british cultural studies": [ + "3.18.0", + "3.18.0" + ], + "british standards institution": [ + "3.8.0" + ], + "broad band": [ + "3.22.20" + ], + "broad technological standard": [ + "3.8.0" + ], + "broadcast communications media": [ + "3.2.0" + ], + "brown": [ + "3.16.3" + ], + "brown stem": [ + "3.22.19" + ], + "bruce stirling": [ + "3.22.19" + ], + "bruce stirling dead": [ + "3.22.19" + ], + "bruno latour": [ + "3.12.3", + "3.21.1" + ], + "budapest": [ + "3.17.3" + ], + "buddhist": [ + "3.18.1-p.181" + ], + "buddhist outlook": [ + "3.18.1-p.181" + ], + "build": [ + "3.19.4" + ], + "build a resource": [ + "3.19.4" + ], + "build thier network": [ + "3.22.3" + ], + "building affective bonds": [ + "3.22.19" + ], + "built": [ + "3.13.2" + ], + "built existential loneliness": [ + "3.7.8" + ], + "built-into": [ + "3.15.1" + ], + "bulky correspondence art": [ + "3.19.0-p.182" + ], + "bunch": [ + "3.22.24" + ], + "bunch of rich": [ + "3.22.24" + ], + "bunting": [ + "3.24.0" + ], + "bureaucratic reason vs": [ + "3.2.0" + ], + "bureaucratic sclerosis": [ + "3.2.0" + ], + "bus network": [ + "3.7.10" + ], + "bus network topology": [ + "3.7.10" + ], + "bush versus bin": [ + "3.7.0" + ], + "business": [ + "3.0.0", + "3.1.0" + ], + "business generates possibilities": [ + "3.1.0" + ], + "buzzword networking superseded": [ + "3.25.0" + ], + "cal arts": [ + "3.17.2" + ], + "calarts": [ + "3.17.4" + ], + "california institute": [ + "3.17.0" + ], + "call": [ + "3.5.2", + "3.22.21" + ], + "call himself postcybernetic": [ + "3.22.21" + ], + "call me back": [ + "3.5.2" + ], + "call the vectoralist": [ + "3.22.22" + ], + "called broad band": [ + "3.22.20" + ], + "called closed logics": [ + "3.6.0", + "3.6.2" + ], + "called unavoidable process": [ + "3.0.0", + "3.1.0" + ], + "cambridge university press": [ + "3.2.0" + ], + "canonical barandiagram": [ + "3.4.2" + ], + "canopy": [ + "3.22.8" + ], + "can¹t": [ + "3.24.1" + ], + "capable": [ + "3.25.1", + "3.25.2" + ], + "capable to act": [ + "3.25.1", + "3.25.2" + ], + "capacity": [ + "3.15.0" + ], + "capital": [ + "3.22.32" + ], + "capitalist economic system": [ + "3.2.0" + ], + "capitalist world system": [ + "3.7.0", + "3.7.0" + ], + "captured and eclipsed": [ + "3.12.2" + ], + "car culture": [ + "3.19.6" + ], + "careful differentiation stands": [ + "3.19.7" + ], + "cari goldberg janice": [ + "3.20.0-p.183", + "3.20.0-p.183" + ], + "carol-ann": [ + "3.15.1" + ], + "caroline": [ + "3.1.0" + ], + "caroline nevejan": [ + "3.1.0" + ], + "cartesian": [ + "3.24.8" + ], + "cartesian clock": [ + "3.24.8" + ], + "cartesian clock time": [ + "3.24.8", + "3.24.8" + ], + "case": [ + "3.7.2", + "3.18.3" + ], + "case of communes": [ + "3.7.2" + ], + "cases even benefit": [ + "3.13.2" + ], + "castells’ depiction": [ + "3.4.3" + ], + "castoriadis": [ + "3.7.7", + "3.7.12" + ], + "castoriadis main": [ + "3.7.7" + ], + "castoriadis main work": [ + "3.7.7" + ], + "castoriadis work": [ + "3.7.7" + ], + "catalysing the discussion": [ + "3.18.3" + ], + "catch": [ + "3.19.4" + ], + "categories neither elites": [ + "3.21.0-p.183" + ], + "categories'": [ + "3.24.3" + ], + "catholic": [ + "3.13.1", + "3.22.4", + "3.22.5" + ], + "catholic charities": [ + "3.22.4" + ], + "catholic priest": [ + "3.22.5" + ], + "cave": [ + "3.22.32" + ], + "cayman islands": [ + "3.12.2" + ], + "celebrates robert filliou": [ + "3.16.0" + ], + "celebrity": [ + "3.24.3" + ], + "cell phone": [ + "3.13.0" + ], + "censorship": [ + "3.19.1-p.182" + ], + "central american": [ + "3.22.0" + ], + "central banks": [ + "3.7.3" + ], + "central computer": [ + "3.8.0" + ], + "central europe": [ + "3.10.1" + ], + "central lightning rod": [ + "3.8.0" + ], + "central node sits": [ + "3.6.0" + ], + "centralized": [ + "3.4.2" + ], + "centralized administration": [ + "3.8.0" + ], + "centralized control means": [ + "3.8.0" + ], + "centralized power": [ + "3.5.0" + ], + "centralized power structures": [ + "3.5.0" + ], + "chain": [ + "3.18.2-p.181", + "3.18.3-p.181" + ], + "chain letter": [ + "3.18.2-p.181", + "3.18.3-p.181", + "3.18.3-p.181" + ], + "chain method": [ + "3.18.2-p.181" + ], + "challenging power networking": [ + "3.25.0" + ], + "chandavarkar": [ + "3.7.9" + ], + "chandavarkar wrote": [ + "3.7.9" + ], + "changed": [ + "3.12.5" + ], + "changing focus": [ + "3.25.0" + ], + "chapter": [ + "3.24.0", + "3.24.2-p.199", + "3.24.3" + ], + "chapter contribution": [ + "3.24.0" + ], + "chapter from anna": [ + "3.24.2-p.199" + ], + "chapter you marks": [ + "3.24.0" + ], + "charities": [ + "3.22.4" + ], + "charting": [ + "3.7.10" + ], + "cheang": [ + "3.22.26", + "3.22.29" + ], + "cheang wrote": [ + "3.22.26", + "3.22.29", + "3.22.31" + ], + "cheap air transport": [ + "3.20.0" + ], + "cheers": [ + "3.7.12" + ], + "cherokee tribes": [ + "3.22.2" + ], + "chicago titled “art": [ + "3.20.0" + ], + "child": [ + "3.22.3" + ], + "choice or coercion": [ + "3.7.2" + ], + "christianity versus": [ + "3.7.0" + ], + "christina": [ + "3.12.4" + ], + "christina for posting": [ + "3.12.4" + ], + "cia": [ + "3.9.1" + ], + "cia plot": [ + "3.9.1" + ], + "cia plot part": [ + "3.9.1" + ], + "ciao": [ + "3.22.33" + ], + "circles": [ + "3.18.1-p.181" + ], + "circulated as manuscript": [ + "3.16.0-p.179" + ], + "city university": [ + "3.21.0" + ], + "city university hong": [ + "3.21.0" + ], + "civil society organisations": [ + "3.3.0" + ], + "civil society relation": [ + "3.3.0" + ], + "civil society values": [ + "3.3.0" + ], + "cixin liu": [ + "3.22.28" + ], + "claire evans": [ + "3.22.20" + ], + "claire evans called": [ + "3.22.20" + ], + "class neither beginners": [ + "3.21.0-p.183" + ], + "class with mark": [ + "3.17.4" + ], + "classic metaphysical questions": [ + "3.11.0" + ], + "classical": [ + "3.7.8" + ], + "classical music": [ + "3.7.8" + ], + "classical tradition": [ + "3.7.8" + ], + "classification helps organize": [ + "3.8.0" + ], + "clastres": [ + "3.7.7" + ], + "clear": [ + "3.24.4" + ], + "clever fella": [ + "3.18.2" + ], + "clichés the stereotyping": [ + "3.22.2" + ], + "clive": [ + "3.16.1", + "3.18.1", + "3.18.4", + "3.19.1", + "3.19.3", + "3.19.7", + "3.21.1" + ], + "clive concern": [ + "3.21.1" + ], + "clive quoting filliou": [ + "3.18.4" + ], + "clive remake": [ + "3.21.1" + ], + "clive roberston": [ + "3.18.4" + ], + "clive roberston comments": [ + "3.18.4" + ], + "clive robertson": [ + "3.16.1", + "3.19.6" + ], + "clive ’s lucid": [ + "3.18.1" + ], + "clock time": [ + "3.24.8" + ], + "close family": [ + "3.22.5" + ], + "close grained": [ + "3.7.8" + ], + "closed": [ + "3.6.0", + "3.6.2" + ], + "closed daily report": [ + "3.15.0-p.179" + ], + "closed opposition": [ + "3.6.2" + ], + "closed systems": [ + "3.6.0" + ], + "club": [ + "3.12.5" + ], + "clumsy wordings": [ + "3.6.3" + ], + "cluster of sicilian": [ + "3.22.5" + ], + "co-operation": [ + "3.3.0" + ], + "coagulations through powwow": [ + "3.22.17" + ], + "code": [ + "3.6.0" + ], + "code luscious": [ + "3.22.19" + ], + "code luscious moon": [ + "3.22.19" + ], + "codifying system": [ + "3.5.1" + ], + "coe": [ + "3.22.2", + "3.22.4" + ], + "coe family": [ + "3.22.4" + ], + "coe family refutes": [ + "3.22.4", + "3.22.4" + ], + "coe lineage": [ + "3.22.4", + "3.22.4" + ], + "coercion": [ + "3.7.2", + "3.7.12" + ], + "cold": [ + "3.16.1" + ], + "cold mountain": [ + "3.16.1", + "3.16.1" + ], + "cold mountain poems": [ + "3.16.1", + "3.16.1" + ], + "cold mountainpoems": [ + "3.16.1" + ], + "cold war context": [ + "3.5.0", + "3.5.1" + ], + "cold war time": [ + "3.9.1" + ], + "collaboration using anger": [ + "3.19.0" + ], + "collaboration with warren": [ + "3.22.15" + ], + "collaboratively published book": [ + "3.9.0" + ], + "collapse": [ + "3.5.2" + ], + "colleagues": [ + "3.15.1", + "3.16.2" + ], + "colleagues is tempted": [ + "3.15.1" + ], + "collecting": [ + "3.18.3-p.181" + ], + "collecting spams": [ + "3.18.3-p.181" + ], + "collective": [ + "3.0.0", + "3.1.0" + ], + "collective agency": [ + "3.17.4" + ], + "collective artist practice": [ + "3.18.0" + ], + "collective power": [ + "3.7.6" + ], + "collective tape-beatles": [ + "3.20.0-p.183" + ], + "collective vns matrix": [ + "3.22.12" + ], + "collectively owned patterns": [ + "3.7.8", + "3.7.9" + ], + "colourless digital existence": [ + "3.0.0", + "3.1.0" + ], + "coming": [ + "3.22.10", + "3.22.12" + ], + "coming back": [ + "3.22.10" + ], + "coming from royalty": [ + "3.22.4" + ], + "comme faisant": [ + "3.17.0-p.180" + ], + "comme faisant partie": [ + "3.17.0-p.180" + ], + "comment": [ + "3.4.1", + "3.13.2", + "3.19.7", + "3.22.8" + ], + "comment attracted headlines": [ + "3.9.1" + ], + "comment on paper": [ + "3.19.2" + ], + "comment on trees": [ + "3.22.8" + ], + "commentary": [ + "3.19.3" + ], + "comments": [ + "3.17.2", + "3.17.3", + "3.18.4", + "3.21.0", + "3.24.2" + ], + "comments about stuart": [ + "3.18.4" + ], + "commercial realm inevitably": [ + "3.7.0" + ], + "commercial software product": [ + "3.8.0" + ], + "commercial tv station": [ + "3.16.0" + ], + "commercialization": [ + "3.4.1" + ], + "commercialization of human": [ + "3.4.1" + ], + "commercially assimilate": [ + "3.4.1" + ], + "commodification": [ + "3.0.0" + ], + "common": [ + "3.3.0", + "3.5.1", + "3.21.0", + "3.21.1", + "3.22.1" + ], + "common concern": [ + "3.4.0" + ], + "common culture": [ + "3.21.1" + ], + "common human language": [ + "3.5.1" + ], + "common identity theft": [ + "3.22.1" + ], + "common practice": [ + "3.21.0" + ], + "common projects etc": [ + "3.7.1" + ], + "commonly shared feeling": [ + "3.2.0" + ], + "commons": [ + "3.5.4", + "3.21.1", + "3.25.0" + ], + "communal network": [ + "3.15.0-p.179" + ], + "communicated in silence": [ + "3.22.30" + ], + "communication": [ + "3.6.2", + "3.7.1", + "3.15.0", + "3.21.0-p.183", + "3.22.0", + "3.22.23", + "3.22.26" + ], + "communication media": [ + "3.24.8" + ], + "communication to distance": [ + "3.21.0-p.183" + ], + "communications media": [ + "3.2.0", + "3.2.0" + ], + "communities": [ + "3.19.6" + ], + "communities of practice": [ + "3.7.8" + ], + "communitiy.": [ + "3.16.2" + ], + "community": [ + "3.21.1" + ], + "community-based": [ + "3.4.2" + ], + "community-based work": [ + "3.4.2" + ], + "companies": [ + "3.7.3", + "3.22.3" + ], + "companies like google": [ + "3.13.1" + ], + "comparative geographic distributions": [ + "3.12.5" + ], + "comparative media": [ + "3.2.0" + ], + "compels": [ + "3.22.3" + ], + "completely forgot": [ + "3.17.4" + ], + "complex": [ + "3.7.0", + "3.7.4" + ], + "complex enlists strategies": [ + "3.2.0" + ], + "complex global microstructures": [ + "3.7.0" + ], + "complex like aquinas": [ + "3.6.1" + ], + "complex networks": [ + "3.7.4", + "3.14.0" + ], + "complex networks projects": [ + "3.14.0", + "3.14.0" + ], + "complex networks science": [ + "3.14.0", + "3.14.0" + ], + "complex present": [ + "3.19.1" + ], + "complexity": [ + "3.7.0" + ], + "complexity science": [ + "3.14.0" + ], + "complexity theory": [ + "3.7.0" + ], + "complexity theory allows": [ + "3.7.0" + ], + "complimentary slime pig": [ + "3.22.32", + "3.22.32" + ], + "composing mutable worlds": [ + "3.7.0" + ], + "compost": [ + "3.22.14" + ], + "compost skor": [ + "3.22.14" + ], + "composting": [ + "3.22.14" + ], + "composting process": [ + "3.22.14" + ], + "compromised cultural": [ + "3.1.0" + ], + "computational social scientists": [ + "3.4.3", + "3.4.3" + ], + "computer": [ + "3.5.0", + "3.5.1", + "3.5.3" + ], + "computer art": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "computer networks": [ + "3.5.0" + ], + "computer science": [ + "3.5.1", + "3.5.3", + "3.5.3" + ], + "computer science computer": [ + "3.5.3" + ], + "computer science reaches": [ + "3.5.3", + "3.5.3" + ], + "computers generate": [ + "3.1.0" + ], + "conceived a mode": [ + "3.7.6" + ], + "concept": [ + "3.5.0", + "3.5.4", + "3.7.11", + "3.17.2", + "3.18.3" + ], + "concept exchange": [ + "3.17.2" + ], + "conceptual structures via": [ + "3.7.6" + ], + "concern": [ + "3.4.0" + ], + "conference": [ + "3.18.3" + ], + "conference in perth": [ + "3.22.17" + ], + "conference organisers": [ + "3.2.0" + ], + "configure biological life": [ + "3.5.0" + ], + "confronts the system": [ + "3.22.28" + ], + "connect artists practice": [ + "3.24.1", + "3.24.1" + ], + "connected": [ + "3.7.11", + "3.22.32" + ], + "connected tue jun": [ + "3.22.32" + ], + "connection": [ + "3.12.5", + "3.18.4", + "3.22.0" + ], + "connects peter halley": [ + "3.24.1" + ], + "conscience": [ + "3.5.4" + ], + "conservative media": [ + "3.12.0" + ], + "conservative media machinery": [ + "3.12.0", + "3.12.0" + ], + "considered /network effects/": [ + "3.12.3" + ], + "considered themselves modernists": [ + "3.7.8" + ], + "considérer comme": [ + "3.17.0-p.180" + ], + "considérer comme faisant": [ + "3.17.0-p.180" + ], + "consolidating gallery culture": [ + "3.22.21", + "3.22.21" + ], + "constant molecular communication": [ + "3.22.23", + "3.22.23", + "3.22.32" + ], + "constant technological inventions": [ + "3.0.0", + "3.1.0" + ], + "constructed the poipoidrome": [ + "3.17.3" + ], + "consume electronic multiples": [ + "3.24.1" + ], + "contact": [ + "3.17.3" + ], + "contemplating the forest": [ + "3.25.3" + ], + "contemporary": [ + "3.16.3" + ], + "contemporary art": [ + "3.16.3", + "3.20.0" + ], + "contemporary art culture": [ + "3.16.3", + "3.16.3" + ], + "contemporary art practices": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "contemporary network culture": [ + "3.24.1" + ], + "contemporary network cultures": [ + "3.24.0", + "3.24.0" + ], + "contemporary online environments": [ + "3.24.3" + ], + "contemporary status quo": [ + "3.19.0" + ], + "contention": [ + "3.24.8" + ], + "contested space": [ + "3.24.6" + ], + "context": [ + "3.13.1", + "3.18.3-p.181", + "3.19.2", + "3.24.8" + ], + "contextualising what jodi": [ + "3.24.1" + ], + "continue hexing capitalism": [ + "3.22.12" + ], + "continuously transform": [ + "3.7.0" + ], + "continuously unfolding": [ + "3.7.0" + ], + "contribute by looping": [ + "3.18.4" + ], + "contributions": [ + "3.19.4" + ], + "contributions from invited": [ + "3.19.4" + ], + "control": [ + "3.5.0", + "3.5.1", + "3.6.0", + "3.6.2" + ], + "control exists": [ + "3.6.2" + ], + "control operate": [ + "3.6.2" + ], + "control operate primarily": [ + "3.6.2" + ], + "control system": [ + "3.5.1" + ], + "controlled mass media": [ + "3.11.0" + ], + "controlling logic": [ + "3.6.2" + ], + "conversation eugene": [ + "3.11.0" + ], + "conversations": [ + "3.12.5" + ], + "convey": [ + "3.15.1" + ], + "convey information": [ + "3.15.1" + ], + "cool": [ + "3.24.3", + "3.24.4", + "3.24.5" + ], + "cool not cool": [ + "3.24.3" + ], + "cool via liu": [ + "3.24.3", + "3.24.3" + ], + "coordination": [ + "3.7.1" + ], + "coordination requires lots": [ + "3.7.1" + ], + "cop tools http": [ + "3.15.0-p.179" + ], + "copies and distributed": [ + "3.25.0" + ], + "copy art": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "copy ive dipped": [ + "3.12.5" + ], + "copyright using principles": [ + "3.5.4" + ], + "core internet protocols": [ + "3.8.0" + ], + "cornelius": [ + "3.7.12" + ], + "corpocratic concerns rhapsodise": [ + "3.12.3" + ], + "corporate forms built": [ + "3.22.22" + ], + "corporate players alike": [ + "3.16.0" + ], + "corporate stacks combined": [ + "3.22.21", + "3.22.21" + ], + "corporate string pulling": [ + "3.18.0" + ], + "correct lingua franca": [ + "3.2.0" + ], + "correction": [ + "3.7.12" + ], + "correspondence": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "correspondence art": [ + "3.17.0-p.180", + "3.17.0-p.180", + "3.19.0-p.182", + "3.19.0-p.182" + ], + "correspondence art infiltrated": [ + "3.19.0-p.182" + ], + "correspondence art materials": [ + "3.19.0-p.182" + ], + "correspondence art theories": [ + "3.19.0-p.182", + "3.19.0-p.182" + ], + "correspondence networks": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "cosic¹s practices": [ + "3.24.1" + ], + "cosmic zaum language": [ + "3.5.1" + ], + "counterprotocological": [ + "3.5.2" + ], + "counterprotocological practice": [ + "3.5.2" + ], + "couple": [ + "3.17.1" + ], + "couple of things": [ + "3.17.1" + ], + "course im saying": [ + "3.12.5" + ], + "courts regulate technology": [ + "3.6.0" + ], + "crash theory days": [ + "3.22.21" + ], + "crave but inspirazione": [ + "3.22.0" + ], + "create": [ + "3.7.1", + "3.7.3" + ], + "create aesthetic environments": [ + "3.7.0" + ], + "create durable": [ + "3.21.1" + ], + "create forms": [ + "3.22.32" + ], + "create free technologies": [ + "3.8.0" + ], + "create network systems": [ + "3.21.1", + "3.21.1" + ], + "create responses": [ + "3.4.1" + ], + "create specific dispositives": [ + "3.25.0" + ], + "created private lives": [ + "3.1.0" + ], + "creation": [ + "3.17.0", + "3.17.4" + ], + "creative": [ + "3.18.1", + "3.21.1" + ], + "creative arts": [ + "3.24.1" + ], + "creative commons": [ + "3.21.1" + ], + "creative commons licence": [ + "3.25.0" + ], + "creative intellectual": [ + "3.2.0" + ], + "creative production model": [ + "3.19.2" + ], + "creatures": [ + "3.22.11" + ], + "creatures and cultures": [ + "3.22.11" + ], + "criminal even terroristic": [ + "3.12.0" + ], + "criminal sexual abuse": [ + "3.22.5" + ], + "critical": [ + "3.13.2" + ], + "critical analysis": [ + "3.0.0", + "3.1.0" + ], + "critical art practice": [ + "3.18.3" + ], + "critical internet culture": [ + "3.2.0" + ], + "critical internet research": [ + "3.2.0", + "3.2.0" + ], + "critical political analysis": [ + "3.6.2" + ], + "critical question": [ + "3.13.2" + ], + "critical race theory": [ + "3.12.2" + ], + "criticism scene": [ + "3.11.0" + ], + "critique": [ + "3.19.7" + ], + "cruising": [ + "3.5.2" + ], + "crumb": [ + "3.16.3" + ], + "crumb list": [ + "3.16.3" + ], + "cruz": [ + "3.12.1" + ], + "création": [ + "3.16.0-p.179" + ], + "création permanente": [ + "3.16.0-p.179", + "3.16.0-p.179" + ], + "cultivos that tracks": [ + "3.22.25" + ], + "cultural": [ + "3.3.0", + "3.16.3", + "3.18.0", + "3.18.4", + "3.22.1", + "3.22.2", + "3.24.1" + ], + "cultural activity": [ + "3.19.7" + ], + "cultural analysis": [ + "3.14.0" + ], + "cultural analysis trans": [ + "3.14.0" + ], + "cultural appropriation": [ + "3.22.1", + "3.22.2" + ], + "cultural change": [ + "3.18.0", + "3.18.0" + ], + "cultural commentators": [ + "3.24.1" + ], + "cultural commons": [ + "3.18.3" + ], + "cultural diversity beyond": [ + "3.1.0" + ], + "cultural exchanges": [ + "3.2.0" + ], + "cultural heritage": [ + "3.22.3", + "3.22.4" + ], + "cultural impasses": [ + "3.2.0" + ], + "cultural industries": [ + "3.2.0" + ], + "cultural influence": [ + "3.14.0" + ], + "cultural scenes": [ + "3.24.3" + ], + "cultural science": [ + "3.14.0" + ], + "cultural studies 11": [ + "3.2.0" + ], + "cultural studies now’": [ + "3.18.4" + ], + "cultural studies review": [ + "3.21.1" + ], + "cultural studies’ real": [ + "3.18.4" + ], + "cultural subversion": [ + "3.3.0" + ], + "cultural/artistic tactical manoeuvres": [ + "3.24.0" + ], + "culturally and artistically": [ + "3.24.3" + ], + "culture": [ + "3.2.0", + "3.16.3", + "3.19.6", + "3.20.0-p.183", + "3.22.21", + "3.24.0", + "3.24.3", + "3.24.4" + ], + "culture attached": [ + "3.24.1" + ], + "culture marilyn manson": [ + "3.22.0" + ], + "culture.": [ + "3.24.5" + ], + "cultures": [ + "3.19.6", + "3.22.11", + "3.22.17" + ], + "cultures and networking": [ + "3.22.17" + ], + "cultures of mutating": [ + "3.22.11" + ], + "cunning practice": [ + "3.22.28" + ], + "curating": [ + "3.19.1", + "3.19.2", + "3.19.7", + "3.21.0" + ], + "curating the net": [ + "3.19.7" + ], + "curator": [ + "3.16.0", + "3.19.1" + ], + "curatorial": [ + "3.19.1" + ], + "curatorial project oreste": [ + "3.15.0-p.179" + ], + "curatorial research time": [ + "3.24.8" + ], + "curatorial strategies": [ + "3.19.1" + ], + "curators": [ + "3.19.1" + ], + "curators programmer online": [ + "3.4.2" + ], + "curiosity": [ + "3.19.6" + ], + "curiosity.": [ + "3.19.5" + ], + "current": [ + "3.21.0-p.183" + ], + "current discontent": [ + "3.4.1" + ], + "current generation hardly": [ + "3.24.2" + ], + "current movements worldwide": [ + "3.2.0" + ], + "current network formation": [ + "3.19.7" + ], + "current political discussions": [ + "3.5.0" + ], + "current power transformations": [ + "3.25.0" + ], + "current situation": [ + "3.25.0" + ], + "current state": [ + "3.5.4" + ], + "current talk": [ + "3.25.0" + ], + "current vital": [ + "3.5.2" + ], + "current vital protocol": [ + "3.5.2", + "3.5.2" + ], + "currently doctoral researcher": [ + "3.16.0" + ], + "curt cloninger posted": [ + "3.24.8" + ], + "cuseeme": [ + "3.22.17" + ], + "cyberfem": [ + "3.22.30" + ], + "cyberfeminist art collective": [ + "3.22.12" + ], + "cybermind": [ + "3.22.17" + ], + "cybermind conference": [ + "3.22.17" + ], + "cyberspace": [ + "3.22.28" + ], + "cédille": [ + "3.16.0-p.179" + ], + "cédille qui": [ + "3.16.0-p.179" + ], + "cédille qui sourit": [ + "3.16.0-p.179" + ], + "d'un réseau": [ + "3.17.0-p.180" + ], + "daily city newspaper": [ + "3.15.0-p.179" + ], + "dalai": [ + "3.15.0-p.179", + "3.18.0-p.180", + "3.18.1-p.181", + "3.18.2-p.181", + "3.18.3-p.181" + ], + "dalai lama": [ + "3.15.0-p.179", + "3.18.1-p.181", + "3.18.2-p.181", + "3.18.3-p.181", + "3.18.3-p.181", + "3.19.1-p.182" + ], + "dalai lama wrote": [ + "3.18.3-p.181", + "3.18.3-p.181" + ], + "dallas max": [ + "3.14.0" + ], + "dallas max schich": [ + "3.14.0" + ], + "dame": [ + "3.22.30" + ], + "dame of cyberfem": [ + "3.22.30" + ], + "dare": [ + "3.22.0" + ], + "dares": [ + "3.25.1", + "3.25.2" + ], + "dark": [ + "3.22.30" + ], + "dark forest": [ + "3.22.30" + ], + "darkness": [ + "3.22.17" + ], + "darko fritz": [ + "3.18.3-p.181" + ], + "darpa": [ + "3.9.1" + ], + "dartington college": [ + "3.17.2" + ], + "data on human": [ + "3.14.0" + ], + "data transfer rate": [ + "3.8.0" + ], + "data-corpse": [ + "3.22.28" + ], + "dated precisely thirty": [ + "3.15.0-p.179" + ], + "david berry": [ + "3.19.2" + ], + "david hochfelder": [ + "3.8.0" + ], + "david joselit": [ + "3.12.3" + ], + "david morton writes": [ + "3.8.0" + ], + "david ronfeldt call": [ + "3.5.0" + ], + "david waitzman": [ + "3.8.0" + ], + "day": [ + "3.24.2" + ], + "days": [ + "3.0.0", + "3.1.0", + "3.22.10", + "3.22.21", + "3.22.27" + ], + "days ago tim": [ + "3.12.0", + "3.12.0" + ], + "de facto language": [ + "3.8.0" + ], + "de la menthe": [ + "3.7.12" + ], + "de vue": [ + "3.18.0-p.180" + ], + "dead media list": [ + "3.22.19", + "3.22.19" + ], + "deal": [ + "3.4.0" + ], + "dear": [ + "3.4.0", + "3.10.1", + "3.12.2", + "3.12.3", + "3.13.2", + "3.16.2", + "3.17.0-p.180", + "3.18.0-p.180", + "3.18.1", + "3.18.1-p.181", + "3.18.2-p.181", + "3.19.7", + "3.21.0-p.183", + "3.22.10", + "3.22.11", + "3.22.12", + "3.22.26", + "3.22.27", + "3.22.29" + ], + "dear alexander": [ + "3.12.3" + ], + "dear alexander galway": [ + "3.12.3", + "3.12.3" + ], + "dear all threads": [ + "3.22.27" + ], + "dear ana": [ + "3.17.0-p.180", + "3.18.0-p.180", + "3.18.2-p.181" + ], + "dear ana peraica": [ + "3.18.0-p.180", + "3.18.0-p.180" + ], + "dear empyrians": [ + "3.22.11" + ], + "dear friend": [ + "3.21.0-p.183" + ], + "dear friend fagagaga": [ + "3.21.0-p.183" + ], + "dear friends": [ + "3.16.2" + ], + "dear geert": [ + "3.13.0", + "3.13.2" + ], + "dear jim": [ + "3.21.0-p.183" + ], + "dear john": [ + "3.22.10" + ], + "dear john jordan": [ + "3.22.10", + "3.22.10" + ], + "dear kristoffer": [ + "3.4.2" + ], + "dear list": [ + "3.16.0", + "3.19.7" + ], + "dear shu": [ + "3.22.19", + "3.22.29" + ], + "dear shu lea": [ + "3.22.19", + "3.22.19", + "3.22.29", + "3.22.29" + ], + "dear soraya": [ + "3.12.2" + ], + "dear wolf": [ + "3.18.1-p.181" + ], + "debate": [ + "3.19.3" + ], + "debate here stopped": [ + "3.19.3" + ], + "debates": [ + "3.4.3", + "3.25.1", + "3.25.2" + ], + "debord psycho-geography": [ + "3.22.10" + ], + "debordian sense": [ + "3.19.7" + ], + "decade": [ + "3.24.2" + ], + "decentralised network congress": [ + "3.19.1" + ], + "decentralised network congress’": [ + "3.19.1" + ], + "decentralized": [ + "3.4.2" + ], + "decentralized and distributed": [ + "3.4.2" + ], + "deceptively modest media": [ + "3.19.6" + ], + "decision-making exists": [ + "3.7.10" + ], + "decision-tree": [ + "3.7.10" + ], + "decision-tree or charting": [ + "3.7.10" + ], + "decisively affected balance": [ + "3.7.1" + ], + "decker once commissioned": [ + "3.22.14" + ], + "decomposition": [ + "3.22.26" + ], + "decomposition lays waste": [ + "3.22.26", + "3.22.32" + ], + "deep": [ + "3.22.12", + "3.22.16", + "3.22.30" + ], + "deep code": [ + "3.22.19" + ], + "deep code luscious": [ + "3.22.19" + ], + "deep doll": [ + "3.22.30" + ], + "deep doll space": [ + "3.22.30" + ], + "deep doll thanks": [ + "3.22.32" + ], + "deep forest": [ + "3.22.30" + ], + "deep root": [ + "3.22.12" + ], + "deep root expounding": [ + "3.22.12", + "3.22.12" + ], + "deep rooted": [ + "3.22.30" + ], + "deep sea abyss": [ + "3.22.32", + "3.22.32" + ], + "deep sleep": [ + "3.22.12" + ], + "deep sleep conjuration": [ + "3.22.12", + "3.22.12" + ], + "deep water": [ + "3.22.12" + ], + "deep water dive": [ + "3.22.12", + "3.22.12" + ], + "deep waters": [ + "3.22.16" + ], + "deeper": [ + "3.22.27" + ], + "deeper into mycorrhyizal": [ + "3.22.27" + ], + "deeply": [ + "3.22.9" + ], + "deeply political observation": [ + "3.6.0" + ], + "deeply sentient": [ + "3.22.9" + ], + "defence": [ + "3.9.1" + ], + "defence communications network": [ + "3.9.1" + ], + "defense": [ + "3.22.13" + ], + "defense just yesterday": [ + "3.22.13" + ], + "defined": [ + "3.7.2", + "3.7.5" + ], + "delay": [ + "3.22.7" + ], + "delegate": [ + "3.13.2" + ], + "delegate power": [ + "3.13.2" + ], + "delete": [ + "3.15.0-p.179" + ], + "delete message": [ + "3.18.1-p.181" + ], + "deleuze": [ + "3.7.11" + ], + "deliberately built": [ + "3.7.8" + ], + "delueze and guattari": [ + "3.22.6" + ], + "demand business models": [ + "3.1.0" + ], + "demands": [ + "3.12.2" + ], + "demands subjective tolls": [ + "3.1.0" + ], + "democracies": [ + "3.3.0" + ], + "democracy": [ + "3.3.0" + ], + "democracy klein": [ + "3.18.2" + ], + "denmark and danish": [ + "3.22.3" + ], + "dense social structures": [ + "3.25.0" + ], + "der": [ + "3.18.0-p.180" + ], + "der avanatgarde": [ + "3.18.0-p.180" + ], + "der künste berlin": [ + "3.18.0-p.180", + "3.18.0-p.180" + ], + "derived": [ + "3.5.3" + ], + "derived from computer": [ + "3.5.3" + ], + "describe the poipoidrome": [ + "3.17.1" + ], + "desert moon": [ + "3.17.4" + ], + "deserves ethnological interpretation": [ + "3.17.3" + ], + "designed": [ + "3.5.1" + ], + "designers and artists": [ + "3.10.1" + ], + "designers etc": [ + "3.13.1" + ], + "destroys his identity": [ + "3.22.28" + ], + "determining technical standards": [ + "3.8.0" + ], + "developed for working": [ + "3.22.15" + ], + "developing cycles feeding": [ + "3.6.3" + ], + "developing new ideas": [ + "3.14.0" + ], + "development constructs macro": [ + "3.7.8" + ], + "devising diverse enzymatic": [ + "3.22.23", + "3.22.32" + ], + "dialogue": [ + "3.17.4", + "3.19.3" + ], + "dialogue suddenly": [ + "3.19.3" + ], + "dialogue suddenly stops": [ + "3.19.3" + ], + "dialogue suddenly stops.": [ + "3.19.3" + ], + "diane ludin": [ + "3.22.12" + ], + "dibbell wrote": [ + "3.22.20" + ], + "dick higgins suggested": [ + "3.16.1", + "3.16.1" + ], + "didn¹t begin": [ + "3.24.1" + ], + "didn¹t happen": [ + "3.24.1" + ], + "die": [ + "3.21.1" + ], + "difference": [ + "3.5.4", + "3.6.1" + ], + "difference>absence>difference": [ + "3.6.3" + ], + "diffracting": [ + "3.21.0" + ], + "diffracting arts practice": [ + "3.21.0", + "3.21.0" + ], + "diffracting practices": [ + "3.21.0", + "3.21.0" + ], + "diffracting ‘practices": [ + "3.21.0" + ], + "diffractively reading insights": [ + "3.21.0" + ], + "digging": [ + "3.22.14" + ], + "digital": [ + "3.0.0", + "3.22.28", + "3.24.1", + "3.24.2", + "3.24.8", + "3.25.0" + ], + "digital architecture": [ + "3.24.2" + ], + "digital artisans": [ + "3.25.0" + ], + "digital commons": [ + "3.25.0", + "3.25.0" + ], + "digital commons obviously": [ + "3.25.0" + ], + "digital communications appeared": [ + "3.25.0" + ], + "digital delirium": [ + "3.12.0" + ], + "digital humanities": [ + "3.22.15" + ], + "digital humanities style": [ + "3.22.15" + ], + "digital legacies": [ + "3.18.3" + ], + "digital media": [ + "3.24.2", + "3.24.8" + ], + "digital media context": [ + "3.24.8", + "3.24.8" + ], + "digital natives": [ + "3.22.12" + ], + "digital networks": [ + "3.24.1" + ], + "digital public": [ + "3.25.0" + ], + "digital publishing workshop": [ + "3.19.2" + ], + "digital rights management": [ + "3.6.0", + "3.6.2", + "3.6.2" + ], + "digital silk": [ + "3.22.28" + ], + "digital stuff": [ + "3.18.2" + ], + "digital technology": [ + "3.22.28" + ], + "digitalisation": [ + "3.4.3" + ], + "dimension": [ + "3.15.1" + ], + "dimension to neighborhood": [ + "3.15.1" + ], + "dina karadzic": [ + "3.22.21" + ], + "dina karadzic fubar": [ + "3.22.21" + ], + "diplomats": [ + "3.6.2" + ], + "direction": [ + "3.22.6" + ], + "directions": [ + "3.12.5" + ], + "directions these conversations": [ + "3.12.5" + ], + "directive set forth": [ + "3.2.0" + ], + "dirt.": [ + "3.22.30" + ], + "disagree": [ + "3.15.1", + "3.25.1" + ], + "disagree a bit": [ + "3.11.0" + ], + "disappearance": [ + "3.12.1" + ], + "disappeared fromthe": [ + "3.4.3" + ], + "disappeared fromthe big": [ + "3.4.3" + ], + "disciplinary power": [ + "3.7.6" + ], + "disciplinary tools": [ + "3.14.0" + ], + "disconcerting presence pervades": [ + "3.22.32" + ], + "discourse relatively bland": [ + "3.22.21" + ], + "discuss": [ + "3.10.1", + "3.22.0" + ], + "discuss my essay": [ + "3.10.1" + ], + "discussed": [ + "3.7.4", + "3.22.17" + ], + "discussing": [ + "3.6.1" + ], + "discussing the difference": [ + "3.6.0", + "3.6.1" + ], + "discussion": [ + "3.7.4", + "3.9.1", + "3.12.1", + "3.16.3", + "3.17.4", + "3.18.3", + "3.19.1", + "3.19.1-p.182", + "3.19.2", + "3.19.3", + "3.19.5", + "3.19.7", + "3.22.7", + "3.24.8" + ], + "discussion about dna": [ + "3.22.7" + ], + "discussion ofnetworked": [ + "3.4.3" + ], + "discussion ofnetworked forms": [ + "3.4.3", + "3.4.3" + ], + "discussion stopped": [ + "3.19.3" + ], + "discussion tempted": [ + "3.18.3" + ], + "discussion this week": [ + "3.18.3" + ], + "discussion topic title": [ + "3.18.1" + ], + "discussions by shamelessly": [ + "3.4.0" + ], + "disguise": [ + "3.12.1" + ], + "disguise ourselves amidst": [ + "3.12.1" + ], + "dispensation mirror-struck": [ + "3.12.3" + ], + "dispersed": [ + "3.7.0", + "3.7.1" + ], + "dispersed diffusely": [ + "3.24.0" + ], + "dispersed diffusely throughout": [ + "3.24.0" + ], + "dispersed networks": [ + "3.7.1" + ], + "display web pages": [ + "3.8.0" + ], + "disrupt or mutate": [ + "3.22.11" + ], + "dissertation on fluxus": [ + "3.16.2" + ], + "distance": [ + "3.21.0-p.183" + ], + "distance telecom access": [ + "3.19.6" + ], + "distinction": [ + "3.7.9" + ], + "distinction between earlier": [ + "3.24.0" + ], + "distributed": [ + "3.7.11", + "3.22.14" + ], + "distributed communications": [ + "3.7.11" + ], + "distributed network": [ + "3.7.11" + ], + "distributed political protests": [ + "3.5.0" + ], + "distribution": [ + "3.19.1" + ], + "diverse communities": [ + "3.8.0" + ], + "diverse skills accumulate": [ + "3.2.0" + ], + "diverse stakeholder communities": [ + "3.8.0" + ], + "dna": [ + "3.22.0", + "3.22.1", + "3.22.2", + "3.22.3", + "3.22.4", + "3.22.5", + "3.22.6", + "3.22.11" + ], + "dna analysis": [ + "3.22.2", + "3.22.2", + "3.22.4", + "3.22.4", + "3.22.5" + ], + "dna code": [ + "3.2.0" + ], + "dna fingerprinting": [ + "3.22.0" + ], + "dna fingerprints": [ + "3.22.0", + "3.22.0" + ], + "dna in upper": [ + "3.22.5" + ], + "dna investigation": [ + "3.22.11" + ], + "dna kits": [ + "3.22.1", + "3.22.2", + "3.22.3" + ], + "dna promises": [ + "3.22.3", + "3.22.3" + ], + "dna quest": [ + "3.22.3" + ], + "dna records": [ + "3.22.3", + "3.22.3" + ], + "dna talk": [ + "3.22.3" + ], + "dna talk compels": [ + "3.22.3", + "3.22.3" + ], + "dna technologies": [ + "3.22.6" + ], + "dna test": [ + "3.22.4", + "3.22.4" + ], + "dna testing": [ + "3.22.3", + "3.22.3" + ], + "dna testing companies": [ + "3.22.3", + "3.22.3" + ], + "dns": [ + "3.7.4" + ], + "doctress": [ + "3.22.17" + ], + "doctress neutopia": [ + "3.22.17" + ], + "doctress neutopia stuff": [ + "3.22.17" + ], + "dogon": [ + "3.17.1", + "3.17.3" + ], + "dogon people": [ + "3.17.1" + ], + "dogon people response": [ + "3.17.1" + ], + "dogon tribe": [ + "3.17.1" + ], + "doit se considérer": [ + "3.17.0-p.180" + ], + "doll space": [ + "3.22.30" + ], + "dolly": [ + "3.22.11", + "3.22.33" + ], + "dolly and pollies": [ + "3.22.11" + ], + "dollyoko": [ + "3.22.16", + "3.22.20", + "3.22.21" + ], + "dollyoko mentions marshall": [ + "3.22.20", + "3.22.20" + ], + "dollyoko nd ken": [ + "3.22.21", + "3.22.21" + ], + "domain name system": [ + "3.7.11", + "3.8.0" + ], + "dominant": [ + "3.7.2", + "3.7.6" + ], + "dominant structures": [ + "3.7.6" + ], + "donald rumsfeld": [ + "3.12.2" + ], + "donald rumsfield": [ + "3.12.3" + ], + "dont": [ + "3.22.0" + ], + "dorothee": [ + "3.16.2" + ], + "double bind": [ + "3.5.2" + ], + "double edged sword": [ + "3.24.1" + ], + "dozen protocol pioneers": [ + "3.8.0" + ], + "draft chapter below": [ + "3.8.0" + ], + "draft standard level": [ + "3.8.0" + ], + "drafting internet standards": [ + "3.8.0", + "3.8.0" + ], + "drawn": [ + "3.4.1" + ], + "dried": [ + "3.7.12" + ], + "dried bar": [ + "3.7.12" + ], + "dried bar pornographix": [ + "3.7.12" + ], + "driving creative possibilities": [ + "3.24.8" + ], + "drug trade etc": [ + "3.1.0" + ], + "drug trafficing network": [ + "3.22.25" + ], + "duchamp demonstrated": [ + "3.24.6" + ], + "duchampian": [ + "3.5.2" + ], + "duchampian retreat": [ + "3.12.5" + ], + "duchampian urinal": [ + "3.5.2" + ], + "duct": [ + "3.10.0" + ], + "duct tape": [ + "3.10.0", + "3.15.0" + ], + "dumont": [ + "3.7.9" + ], + "dupuy and pierre": [ + "3.19.0" + ], + "dutch net": [ + "3.24.5" + ], + "dwyer": [ + "3.4.0" + ], + "dwyer started": [ + "3.4.0" + ], + "dynamic": [ + "3.7.0" + ], + "dynamics emerge": [ + "3.4.1" + ], + "e-flux journal": [ + "3.9.0" + ], + "e-flux journal site": [ + "3.9.0" + ], + "e-mail": [ + "3.15.0-p.179", + "3.19.1-p.182" + ], + "e-mail reactions": [ + "3.19.1-p.182" + ], + "e-mails": [ + "3.19.1-p.182" + ], + "earlier": [ + "3.24.0" + ], + "earlier artists": [ + "3.24.0" + ], + "earlier chapters tcp": [ + "3.8.0" + ], + "earlier network": [ + "3.24.0" + ], + "earlier network art": [ + "3.24.0", + "3.24.0" + ], + "early": [ + "3.22.17", + "3.24.1", + "3.24.2", + "3.24.5", + "3.24.7" + ], + "early history": [ + "3.24.2" + ], + "early net": [ + "3.24.5" + ], + "early net art": [ + "3.24.5" + ], + "early net radio": [ + "3.24.5" + ], + "early network practices": [ + "3.24.1" + ], + "early work": [ + "3.24.2" + ], + "earthling": [ + "3.5.2" + ], + "earthling life": [ + "3.5.2" + ], + "ease": [ + "3.5.4" + ], + "east london": [ + "3.18.4" + ], + "eastern": [ + "3.24.7" + ], + "eastern european": [ + "3.22.0", + "3.24.7" + ], + "echo": [ + "3.22.27" + ], + "ecological": [ + "3.22.10" + ], + "ecological perspective": [ + "3.22.10" + ], + "ecology": [ + "3.16.3" + ], + "economic": [ + "3.5.4", + "3.20.0" + ], + "economic blocs": [ + "3.7.0" + ], + "economic networks": [ + "3.20.0" + ], + "economically developing countries": [ + "3.2.0" + ], + "economy": [ + "3.0.0", + "3.1.0", + "3.16.0-p.179" + ], + "economy meets ngos": [ + "3.25.0" + ], + "ecstatic collective experience": [ + "3.0.0", + "3.1.0" + ], + "edges": [ + "3.5.0", + "3.5.4", + "3.18.2", + "3.18.3" + ], + "editions of galerie": [ + "3.18.2" + ], + "editors mike gunderloy": [ + "3.20.0-p.183" + ], + "education": [ + "3.17.0", + "3.17.4" + ], + "edward": [ + "3.12.0" + ], + "edward snowden": [ + "3.9.0", + "3.12.0" + ], + "edward snowden escapades": [ + "3.12.0" + ], + "edward snowden revelations": [ + "3.12.0" + ], + "effect": [ + "3.3.0" + ], + "effective beyond conceptualisation": [ + "3.16.0" + ], + "effectively taking": [ + "3.0.0" + ], + "eg lessig": [ + "3.5.4" + ], + "eg moglen etc": [ + "3.5.4" + ], + "electron dense materials": [ + "3.22.32" + ], + "electronic arms": [ + "3.22.31" + ], + "electronic civil disobedience": [ + "3.0.0", + "3.1.0" + ], + "electronic civil disturbance": [ + "3.2.0" + ], + "electronic disturbance theater": [ + "3.2.0" + ], + "element": [ + "3.7.4" + ], + "elite": [ + "3.24.5" + ], + "elizabeth warren": [ + "3.22.2" + ], + "elliot rodger": [ + "3.22.5" + ], + "elliot rodger aka": [ + "3.22.5" + ], + "else beyond uris": [ + "3.8.0" + ], + "elucidation of castells": [ + "3.6.3" + ], + "elvis presley": [ + "3.19.6" + ], + "email": [ + "3.22.17" + ], + "email list": [ + "3.11.0" + ], + "email list veterans": [ + "3.11.0", + "3.11.0" + ], + "email lists": [ + "3.22.17" + ], + "embodied": [ + "3.24.2-p.199" + ], + "embodied experiences": [ + "3.22.9" + ], + "embodied perception": [ + "3.24.2-p.199" + ], + "emergence": [ + "3.24.1" + ], + "emergent": [ + "3.7.0" + ], + "emergent activity": [ + "3.7.0" + ], + "emergent behavior": [ + "3.7.0" + ], + "emergent forms": [ + "3.16.3" + ], + "emergent identical behaviors": [ + "3.19.6" + ], + "emergent institution designed": [ + "3.2.0" + ], + "emergent institutional entities": [ + "3.2.0" + ], + "emergent networks build": [ + "3.7.8", + "3.7.9" + ], + "emergent organised networks": [ + "3.2.0", + "3.2.0" + ], + "empire": [ + "3.5.0" + ], + "empirical research": [ + "3.2.0" + ], + "employed by filliou-inspired": [ + "3.18.0" + ], + "employed online networks": [ + "3.16.0" + ], + "empyreans": [ + "3.12.3", + "3.22.26" + ], + "empyrians": [ + "3.22.11" + ], + "enable": [ + "3.7.2" + ], + "enables": [ + "3.6.1" + ], + "enables inanimate": [ + "3.6.1" + ], + "enables inanimate matter": [ + "3.6.0", + "3.6.1", + "3.6.1" + ], + "enabling": [ + "3.7.1", + "3.7.3" + ], + "enclosure": [ + "3.4.1" + ], + "enclosure movement": [ + "3.4.1" + ], + "encountered annie": [ + "3.17.2" + ], + "encounters": [ + "3.22.20" + ], + "end": [ + "3.13.1", + "3.15.0", + "3.19.1-p.182", + "3.22.12" + ], + "end i prefer": [ + "3.13.2" + ], + "end of alex": [ + "3.12.1" + ], + "ended": [ + "3.22.13" + ], + "enfolded": [ + "3.22.28" + ], + "enfolded the data-corpse": [ + "3.22.28" + ], + "engineering task force": [ + "3.8.0", + "3.8.0" + ], + "englen": [ + "3.22.13" + ], + "english": [ + "3.5.1", + "3.7.5" + ], + "english grammar": [ + "3.7.5" + ], + "english language": [ + "3.5.1", + "3.7.5" + ], + "enjoyed participating": [ + "3.17.2" + ], + "enjoyed unique histories": [ + "3.8.0" + ], + "enjoying ben": [ + "3.19.0-p.182" + ], + "enjoying ben vautier": [ + "3.19.0-p.182" + ], + "enriched using descriptive": [ + "3.8.0" + ], + "entangled": [ + "3.22.27" + ], + "entangled deeper": [ + "3.22.27" + ], + "entirely forgettable memo": [ + "3.8.0" + ], + "entirely local level": [ + "3.2.0" + ], + "entities": [ + "3.7.1" + ], + "entitled open source": [ + "3.17.0" + ], + "enuf": [ + "3.7.12" + ], + "enuf for kicking": [ + "3.7.12" + ], + "environment": [ + "3.7.3" + ], + "epistemic systems": [ + "3.7.9" + ], + "equal bad taste": [ + "3.6.3" + ], + "equally important": [ + "3.22.8" + ], + "equally predictable": [ + "3.13.0" + ], + "equally predictable mixed": [ + "3.13.0", + "3.13.0" + ], + "equally unworldly realm": [ + "3.22.32" + ], + "equally wonderful": [ + "3.22.19" + ], + "equated increasing ‘degrees": [ + "3.19.1" + ], + "equates art": [ + "3.18.3" + ], + "equity": [ + "3.5.4" + ], + "equity acts": [ + "3.5.4" + ], + "ere working": [ + "3.24.5" + ], + "erhard klein": [ + "3.18.2" + ], + "erotic video tapes": [ + "3.8.0" + ], + "escape route offered": [ + "3.6.3" + ], + "especially power laws": [ + "3.7.8" + ], + "essay": [ + "3.10.1", + "3.17.0" + ], + "essay by janet": [ + "3.17.0" + ], + "essays": [ + "3.19.4" + ], + "essence": [ + "3.12.0" + ], + "essence of edward": [ + "3.12.0" + ], + "essence raising aquestion": [ + "3.16.1" + ], + "establish boundary lines": [ + "3.21.1" + ], + "established art": [ + "3.24.2" + ], + "established art institutions": [ + "3.24.2", + "3.24.2" + ], + "establishment": [ + "3.6.2" + ], + "estes¹s": [ + "3.24.1" + ], + "et al belong": [ + "3.18.1" + ], + "etc.": [ + "3.7.3", + "3.21.0-p.183" + ], + "eternal": [ + "3.16.0", + "3.16.0-p.179", + "3.17.0-p.180", + "3.18.0", + "3.18.0-p.180", + "3.18.3", + "3.19.0-p.182", + "3.19.7", + "3.20.0-p.183" + ], + "eternal network dear": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "eternal network text": [ + "3.16.0-p.179", + "3.17.0-p.180", + "3.17.0-p.180", + "3.19.0-p.182", + "3.19.0-p.182" + ], + "eternal network’": [ + "3.19.7" + ], + "ethernal": [ + "3.19.0" + ], + "ethernal network": [ + "3.19.0" + ], + "ethics": [ + "3.13.2" + ], + "ethics they inhabit": [ + "3.13.2" + ], + "eugene": [ + "3.5.1", + "3.6.2", + "3.11.0", + "3.15.0" + ], + "eugene calls": [ + "3.11.0", + "3.12.1" + ], + "eugene inspired": [ + "3.11.0" + ], + "eugene thacker": [ + "3.5.0", + "3.5.1", + "3.6.2", + "3.9.0" + ], + "eugene thacker wrote": [ + "3.6.2", + "3.6.2" + ], + "europe": [ + "3.10.1" + ], + "europe-festival": [ + "3.25.0" + ], + "europe-festival in munich.": [ + "3.25.0" + ], + "european": [ + "3.22.0", + "3.22.3", + "3.24.7" + ], + "european and balkan": [ + "3.24.7" + ], + "european countries": [ + "3.13.0" + ], + "european royalty": [ + "3.22.3" + ], + "europes": [ + "3.7.12" + ], + "europes most important": [ + "3.7.7" + ], + "evaluate the potential": [ + "3.7.6" + ], + "evans called broad": [ + "3.22.20" + ], + "event lists": [ + "3.15.0-p.179" + ], + "events": [ + "3.15.1" + ], + "ever-new embodied experiences": [ + "3.22.9" + ], + "everyday social media": [ + "3.4.2" + ], + "evolutionary": [ + "3.24.8" + ], + "evolutionary time": [ + "3.24.8", + "3.24.8" + ], + "exceptfor the breaking": [ + "3.4.3" + ], + "exception": [ + "3.5.4" + ], + "exchange": [ + "3.12.2", + "3.17.2", + "3.25.1", + "3.25.2" + ], + "exciting": [ + "3.25.1", + "3.25.2" + ], + "exciting first phase": [ + "3.25.1", + "3.25.2" + ], + "exclusionary art system": [ + "3.16.1" + ], + "excommunication": [ + "3.11.0", + "3.12.4", + "3.12.5", + "3.13.1" + ], + "exhaling fetid breath": [ + "3.22.32" + ], + "exist": [ + "3.5.4" + ], + "existential deterritorializations": [ + "3.22.10" + ], + "existing management styles": [ + "3.2.0", + "3.25.0" + ], + "existing media forms": [ + "3.2.0" + ], + "existing research clusters": [ + "3.2.0" + ], + "exists": [ + "3.7.10" + ], + "exists relatively autonomous": [ + "3.25.0" + ], + "exists with regard": [ + "3.7.10" + ], + "exiting the system": [ + "3.12.4" + ], + "exodus of man": [ + "3.13.0" + ], + "expected mix": [ + "3.13.0" + ], + "experience": [ + "3.19.1" + ], + "experiences": [ + "3.22.9" + ], + "experiencing explosive growth": [ + "3.8.0" + ], + "experimental hypertext fiction": [ + "3.22.19" + ], + "explains": [ + "3.21.0" + ], + "explains diffraction": [ + "3.21.0" + ], + "explanation and causation": [ + "3.22.31" + ], + "explicit knowledge": [ + "3.7.8" + ], + "explicitly racist manner": [ + "3.22.1" + ], + "expression": [ + "3.21.0-p.183" + ], + "extensive": [ + "3.22.20" + ], + "extensive mass media": [ + "3.8.0" + ], + "extensive peer review": [ + "3.8.0" + ], + "extensive public discussion": [ + "3.8.0" + ], + "extensive the options": [ + "3.22.20" + ], + "external": [ + "3.24.3" + ], + "external genealogies": [ + "3.24.3" + ], + "extremely urgent": [ + "3.22.7" + ], + "extruding digital": [ + "3.22.28" + ], + "extruding digital silk": [ + "3.22.28", + "3.22.28" + ], + "fabric": [ + "3.12.0", + "3.22.28" + ], + "facebook friends disappear": [ + "3.12.5" + ], + "fact": [ + "3.7.5", + "3.22.9" + ], + "fagagaga": [ + "3.21.0-p.183" + ], + "fails": [ + "3.15.1" + ], + "failure of bitcoin": [ + "3.22.29" + ], + "faint whistling sounds": [ + "3.22.32" + ], + "fairly thin": [ + "3.22.20" + ], + "faisant partie": [ + "3.17.0-p.180" + ], + "faisant partie d'un": [ + "3.17.0-p.180" + ], + "fall": [ + "3.17.4" + ], + "false": [ + "3.22.1" + ], + "false beliefs": [ + "3.22.1" + ], + "false family narrative": [ + "3.22.1" + ], + "familial dna": [ + "3.22.4" + ], + "familial dna analysis": [ + "3.22.4", + "3.22.4" + ], + "familiar faces": [ + "3.11.0" + ], + "family": [ + "3.18.2", + "3.22.1", + "3.22.4", + "3.22.5", + "3.22.6", + "3.22.11" + ], + "family tree": [ + "3.22.6", + "3.22.11" + ], + "fantastic aspects": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "fantasy": [ + "3.22.4" + ], + "fascinating": [ + "3.12.0" + ], + "fascism and nazism": [ + "3.7.9" + ], + "fast connection": [ + "3.12.5" + ], + "fatal destinies ahead": [ + "3.0.0", + "3.1.0" + ], + "fatal wetware factor": [ + "3.0.0", + "3.1.0" + ], + "father": [ + "3.22.5" + ], + "fault": [ + "3.19.4" + ], + "faulty": [ + "3.19.4" + ], + "faulty moderator": [ + "3.19.4" + ], + "fear": [ + "3.0.0" + ], + "feasible": [ + "3.15.0" + ], + "february": [ + "3.16.0", + "3.19.3", + "3.25.0" + ], + "federal gov": [ + "3.22.4" + ], + "feel describe networks": [ + "3.20.0" + ], + "feel inappropriate describing": [ + "3.20.0" + ], + "feeling an indescribable": [ + "3.22.27" + ], + "felix": [ + "3.7.2", + "3.7.3" + ], + "felix stalder": [ + "3.7.3" + ], + "fell compelled": [ + "3.22.29" + ], + "felt": [ + "3.10.1" + ], + "female and dangerous.’": [ + "3.22.28" + ], + "feral mba": [ + "3.22.7" + ], + "ferro": [ + "3.12.1" + ], + "festival": [ + "3.4.0" + ], + "festival which aims": [ + "3.4.0" + ], + "fete": [ + "3.18.0" + ], + "fete est permanent": [ + "3.18.0" + ], + "fete permanente": [ + "3.16.0-p.179", + "3.16.0-p.179", + "3.18.0" + ], + "fetishization": [ + "3.22.10" + ], + "fetters": [ + "3.12.2" + ], + "fiction": [ + "3.24.2" + ], + "field": [ + "3.15.1" + ], + "fight": [ + "3.12.5" + ], + "fight club": [ + "3.12.5" + ], + "figure": [ + "3.22.23" + ], + "file compression system": [ + "3.8.0" + ], + "filliou": [ + "3.16.0", + "3.16.0-p.179", + "3.16.1", + "3.17.0", + "3.17.1", + "3.17.3", + "3.17.4", + "3.18.0", + "3.18.0-p.180", + "3.18.1", + "3.18.3", + "3.19.0", + "3.19.6", + "3.19.7" + ], + "filliou co-created": [ + "3.16.0" + ], + "filliou dating": [ + "3.17.1" + ], + "filliou network": [ + "3.16.0-p.179" + ], + "filliou network-idea": [ + "3.18.0-p.180" + ], + "filliou notion": [ + "3.17.0", + "3.17.4" + ], + "filliou poking": [ + "3.18.0" + ], + "filliou published": [ + "3.16.0-p.179" + ], + "filliou view": [ + "3.18.3" + ], + "filliou wrote": [ + "3.18.0" + ], + "filliou ’s concept": [ + "3.18.0" + ], + "filliou-inspired artist": [ + "3.18.0" + ], + "filliou-inspired artist collectives": [ + "3.18.0" + ], + "film": [ + "3.16.2" + ], + "film-makers coop": [ + "3.24.1" + ], + "financial crises continuously": [ + "3.7.0" + ], + "financial markets": [ + "3.7.3" + ], + "find": [ + "3.19.6", + "3.22.7", + "3.22.22" + ], + "find intriguing": [ + "3.22.22" + ], + "find it hard": [ + "3.22.7" + ], + "find the postinternet": [ + "3.22.21" + ], + "finding net": [ + "3.21.0-p.183" + ], + "finds it female": [ + "3.22.28" + ], + "finger": [ + "3.22.16" + ], + "finger fucking": [ + "3.22.16" + ], + "finger fucking francesca": [ + "3.22.16", + "3.22.16" + ], + "fingers": [ + "3.22.28", + "3.22.30" + ], + "fingers that enfolded": [ + "3.22.28" + ], + "firstly": [ + "3.16.3" + ], + "fishy": [ + "3.22.11" + ], + "fishy creatures": [ + "3.22.11" + ], + "fit": [ + "3.18.2-p.181" + ], + "fits": [ + "3.22.11" + ], + "fixed network connection": [ + "3.12.5" + ], + "flatline": [ + "3.25.1", + "3.25.2" + ], + "flatline of information": [ + "3.25.1", + "3.25.2" + ], + "flavor": [ + "3.24.7" + ], + "flexibility": [ + "3.7.1" + ], + "flight… indeed probably": [ + "3.22.6" + ], + "floating": [ + "3.22.10" + ], + "florian": [ + "3.25.0", + "3.25.3" + ], + "florian schneider": [ + "3.25.0" + ], + "florian schneider february": [ + "3.25.0" + ], + "floss": [ + "3.25.2" + ], + "floss rules set": [ + "3.25.2", + "3.25.2" + ], + "flow": [ + "3.7.10" + ], + "flow or routing": [ + "3.7.10" + ], + "flow systems": [ + "3.20.0" + ], + "floyd": [ + "3.14.1" + ], + "flux": [ + "3.9.0" + ], + "flux journal site": [ + "3.9.0" + ], + "fluxus recently": [ + "3.16.2" + ], + "focus towards software": [ + "3.25.0" + ], + "foliage and flowers": [ + "3.12.5" + ], + "folks": [ + "3.25.3" + ], + "follow an unusual": [ + "3.13.0" + ], + "following short history": [ + "3.2.0" + ], + "fomo has created": [ + "3.22.21" + ], + "food webs": [ + "3.22.8" + ], + "forces": [ + "3.0.0", + "3.1.0" + ], + "foreign": [ + "3.7.5" + ], + "foreign diplomats": [ + "3.7.5" + ], + "foreign diplomats stationed": [ + "3.7.5" + ], + "forest": [ + "3.22.9", + "3.22.30", + "3.22.32", + "3.25.3" + ], + "forests": [ + "3.22.9" + ], + "forever generate excitement": [ + "3.12.5" + ], + "forever hierarchic relationship": [ + "3.22.6", + "3.22.11" + ], + "forge messages": [ + "3.18.2-p.181" + ], + "forgive my ignorance": [ + "3.6.3" + ], + "form": [ + "3.0.0", + "3.2.0", + "3.7.0", + "3.18.2", + "3.21.0-p.183", + "3.22.13", + "3.22.28", + "3.22.32" + ], + "form of intelligence": [ + "3.22.28", + "3.22.30" + ], + "form the opening": [ + "3.18.2" + ], + "form-giving": [ + "3.6.1" + ], + "form-giving soul": [ + "3.6.1" + ], + "formal": [ + "3.5.1", + "3.7.4", + "3.24.1" + ], + "formative stages": [ + "3.12.5" + ], + "former net pioneers": [ + "3.0.0", + "3.1.0" + ], + "forming networks": [ + "3.22.7" + ], + "forms": [ + "3.2.0", + "3.4.3", + "3.7.0", + "3.7.6", + "3.7.9", + "3.22.9", + "3.22.13" + ], + "forms of life": [ + "3.22.32" + ], + "forms of power": [ + "3.7.6" + ], + "formulate common strategies": [ + "3.0.0", + "3.1.0" + ], + "foucault conceived": [ + "3.7.6" + ], + "found": [ + "3.19.1-p.182" + ], + "founded eastern europe": [ + "3.16.0" + ], + "founders": [ + "3.7.12" + ], + "fran": [ + "3.22.12" + ], + "fran llich": [ + "3.22.12" + ], + "fran llich latest": [ + "3.22.12" + ], + "fran perona": [ + "3.21.0" + ], + "fran tremendous": [ + "3.22.12" + ], + "fran tremendous endeavours": [ + "3.22.12" + ], + "france": [ + "3.7.12", + "3.19.0" + ], + "francesca": [ + "3.22.16" + ], + "francesca da rimini": [ + "3.22.12" + ], + "franco moretti": [ + "3.12.2", + "3.12.3" + ], + "francois": [ + "3.7.12" + ], + "francois lyotard": [ + "3.7.7", + "3.7.12" + ], + "francois lyotard wrote": [ + "3.7.7", + "3.7.12" + ], + "frederic neyrat": [ + "3.22.10" + ], + "free cooperation conference": [ + "3.2.0" + ], + "free information": [ + "3.5.4" + ], + "free market capitalism": [ + "3.18.1" + ], + "free network": [ + "3.6.0" + ], + "free software community": [ + "3.21.1" + ], + "free software movement": [ + "3.5.4" + ], + "free theory paper": [ + "3.25.0" + ], + "freedom": [ + "3.6.0", + "3.6.3", + "3.25.2" + ], + "freedom hardwired": [ + "3.6.3" + ], + "freedom rhetoric": [ + "3.6.3" + ], + "freely": [ + "3.19.1-p.182" + ], + "freemasonic architecture": [ + "3.17.3" + ], + "french psychoanalitics": [ + "3.7.7" + ], + "french psychoanalitics adressing": [ + "3.7.7", + "3.7.7" + ], + "friedman": [ + "3.16.0" + ], + "friedman to start": [ + "3.16.2" + ], + "friend": [ + "3.18.3-p.181" + ], + "friend fagagaga": [ + "3.21.0-p.183" + ], + "friend fagagaga comment": [ + "3.21.0-p.183" + ], + "friends": [ + "3.16.1", + "3.16.2" + ], + "friends and colleagues": [ + "3.16.2" + ], + "fritz": [ + "3.18.3-p.181" + ], + "fromthe big": [ + "3.4.3" + ], + "fruitful history": [ + "3.7.11" + ], + "ftp servers directly": [ + "3.5.1" + ], + "fubar bunch": [ + "3.22.21" + ], + "fucking": [ + "3.22.16" + ], + "fucking francesca": [ + "3.22.16" + ], + "fuks and james": [ + "3.4.2" + ], + "full of middle": [ + "3.18.2" + ], + "full-employment for humans": [ + "3.13.2" + ], + "function": [ + "3.7.4", + "3.7.10" + ], + "functioning": [ + "3.7.6" + ], + "functioning of institutions": [ + "3.7.6" + ], + "functioning of law": [ + "3.7.6" + ], + "fundamental transformation": [ + "3.25.3" + ], + "fundamental transformation including": [ + "3.25.3", + "3.25.3" + ], + "fundamentally tragic idea": [ + "3.7.9" + ], + "fundamentally transformative social": [ + "3.25.3" + ], + "fungi": [ + "3.22.9" + ], + "furtherfield": [ + "3.17.2" + ], + "future": [ + "3.10.0" + ], + "félix guattari": [ + "3.2.0" + ], + "fête": [ + "3.19.7" + ], + "fête permanent’": [ + "3.19.7" + ], + "gain influence etc": [ + "3.13.1" + ], + "gained popularity": [ + "3.18.0" + ], + "gaining importance": [ + "3.0.0", + "3.1.0" + ], + "galerie der stadt": [ + "3.18.0-p.180", + "3.18.0-p.180" + ], + "galerie erhard": [ + "3.18.2" + ], + "galerie erhard klein": [ + "3.18.2", + "3.18.2" + ], + "gallery": [ + "3.16.3" + ], + "galloway": [ + "3.5.1", + "3.6.2", + "3.6.3", + "3.9.0", + "3.12.1" + ], + "galloway and eugene": [ + "3.5.0", + "3.5.1", + "3.6.2" + ], + "galloway begins": [ + "3.9.0" + ], + "galloway expressed similar": [ + "3.19.7" + ], + "galway": [ + "3.12.3" + ], + "galway and empyreans": [ + "3.12.3" + ], + "galántai": [ + "3.17.3" + ], + "galántai ultimately": [ + "3.17.3" + ], + "galántai ultimately led": [ + "3.17.3" + ], + "gandi": [ + "3.12.4" + ], + "gansing": [ + "3.4.3" + ], + "garden tips.": [ + "3.22.25" + ], + "gary": [ + "3.19.7" + ], + "gashgirl": [ + "3.22.30" + ], + "gashgirl aka": [ + "3.22.30" + ], + "gashgirl aka dollyoko": [ + "3.22.30", + "3.22.30" + ], + "gaze": [ + "3.16.3" + ], + "geer": [ + "3.25.2" + ], + "geer wrote": [ + "3.25.2" + ], + "geert": [ + "3.6.3", + "3.9.0", + "3.11.0", + "3.12.0", + "3.12.1", + "3.13.0", + "3.13.1", + "3.13.2", + "3.25.0", + "3.25.1", + "3.25.2", + "3.25.3" + ], + "geert and florian": [ + "3.25.3" + ], + "geert and johannes": [ + "3.13.2" + ], + "geert lovink": [ + "3.0.0", + "3.1.0", + "3.6.0", + "3.6.0", + "3.9.0", + "3.9.0", + "3.12.1", + "3.25.0", + "3.25.1", + "3.25.2" + ], + "geert lovink contrasts": [ + "3.6.0" + ], + "geert lovink wrote": [ + "3.25.1", + "3.25.1", + "3.25.2" + ], + "geert recent": [ + "3.12.1" + ], + "geert recent essay": [ + "3.12.1" + ], + "geert wrote": [ + "3.13.2" + ], + "geiger": [ + "3.13.1" + ], + "gender": [ + "3.16.2" + ], + "gender and communitiy.": [ + "3.16.2" + ], + "gene expression": [ + "3.5.0" + ], + "gene expression networks": [ + "3.5.0" + ], + "genealogies": [ + "3.24.3" + ], + "general": [ + "3.5.0", + "3.22.10", + "3.24.8" + ], + "general systems theory": [ + "3.14.0" + ], + "generalization": [ + "3.10.1" + ], + "generates intentional spaces": [ + "3.22.19" + ], + "generational love affair": [ + "3.12.5", + "3.12.5" + ], + "generous mycelial conversation": [ + "3.22.19" + ], + "genetic": [ + "3.22.0" + ], + "genetic information defy": [ + "3.22.9" + ], + "genetic intranet connect": [ + "3.22.0" + ], + "genetic material": [ + "3.22.9" + ], + "genetic network": [ + "3.22.0", + "3.22.0" + ], + "genetically related siblings": [ + "3.22.6" + ], + "genetics": [ + "3.22.11" + ], + "genuinely global forms": [ + "3.7.0" + ], + "geographic": [ + "3.12.5" + ], + "geographic excommunication": [ + "3.12.5", + "3.12.5" + ], + "geographic survey reports": [ + "3.2.0" + ], + "geographically pinning galloway": [ + "3.9.0" + ], + "george": [ + "3.16.0-p.179", + "3.16.1" + ], + "george brecht": [ + "3.16.0", + "3.16.0-p.179", + "3.16.1" + ], + "george brecht conceived": [ + "3.16.1", + "3.16.1" + ], + "george withdrew": [ + "3.16.1", + "3.16.1" + ], + "german": [ + "3.16.2" + ], + "german sociologist toennies": [ + "3.7.9" + ], + "germany": [ + "3.10.1" + ], + "geschelcht": [ + "3.16.2" + ], + "geschelcht und": [ + "3.16.2" + ], + "getting classical statuary": [ + "3.1.0" + ], + "ghetto": [ + "3.24.6" + ], + "ghettoized": [ + "3.24.6" + ], + "ghost": [ + "3.6.0" + ], + "giant": [ + "3.19.7" + ], + "giant ready-made": [ + "3.19.7" + ], + "gift": [ + "3.15.1" + ], + "gift economies": [ + "3.19.6" + ], + "gilles de rais": [ + "3.22.32" + ], + "give": [ + "3.15.1" + ], + "give promises": [ + "3.18.2-p.181" + ], + "glad": [ + "3.17.2", + "3.17.3", + "3.18.3" + ], + "gleich leben": [ + "3.16.2" + ], + "gleich leben mythen": [ + "3.16.2" + ], + "global": [ + "3.7.0", + "3.17.2", + "3.25.0" + ], + "global concept": [ + "3.17.2" + ], + "global concept exchange": [ + "3.17.2" + ], + "global context": [ + "3.24.8" + ], + "global empire": [ + "3.0.0", + "3.1.0" + ], + "global financial markets": [ + "3.7.0" + ], + "global governance scenarios": [ + "3.25.0" + ], + "global managerial class": [ + "3.0.0", + "3.1.0" + ], + "global microstructures": [ + "3.7.0" + ], + "global networks": [ + "3.19.0", + "3.19.6" + ], + "global systems based": [ + "3.7.0" + ], + "global telephone network": [ + "3.20.0", + "3.20.0" + ], + "goals": [ + "3.22.10" + ], + "god scourges": [ + "3.7.12" + ], + "goldsen archive": [ + "3.24.7" + ], + "goldsmith on conceptual": [ + "3.19.2" + ], + "good": [ + "3.1.0", + "3.16.1", + "3.18.0-p.180", + "3.18.2-p.181", + "3.19.1", + "3.19.2", + "3.20.0", + "3.22.0", + "3.22.4", + "3.22.6", + "3.22.20", + "3.24.8" + ], + "good afternoon": [ + "3.22.6" + ], + "good business": [ + "3.1.0" + ], + "good connection": [ + "3.22.0" + ], + "good morning": [ + "3.20.0", + "3.22.4" + ], + "good note": [ + "3.22.22" + ], + "good sense": [ + "3.19.2" + ], + "good thing": [ + "3.1.0", + "3.22.20" + ], + "good to return": [ + "3.24.8" + ], + "good wishes": [ + "3.18.2-p.181" + ], + "good wishes wolf": [ + "3.18.2-p.181" + ], + "google": [ + "3.13.1" + ], + "gorgeous spore print": [ + "3.22.25" + ], + "govern network communications": [ + "3.8.0" + ], + "governance": [ + "3.7.2" + ], + "government": [ + "3.7.4" + ], + "governmental regulatory mandate": [ + "3.8.0" + ], + "gpl": [ + "3.5.4" + ], + "gpl etc": [ + "3.5.4" + ], + "gpl etc remains": [ + "3.5.4" + ], + "graham harman": [ + "3.21.1" + ], + "graham meikle makes": [ + "3.2.0" + ], + "graham meikle notes": [ + "3.2.0" + ], + "grained local links": [ + "3.7.8" + ], + "grammar": [ + "3.7.5" + ], + "grand": [ + "3.22.30" + ], + "grand dame": [ + "3.22.30" + ], + "grandfather": [ + "3.22.5" + ], + "grandfather ’s father": [ + "3.22.5" + ], + "grandparent": [ + "3.22.5" + ], + "great": [ + "3.18.1-p.181", + "3.22.3", + "3.22.5", + "3.22.16" + ], + "great aunt": [ + "3.22.5" + ], + "great grandparent": [ + "3.22.5" + ], + "great monthly": [ + "3.22.3" + ], + "great monthly topics.": [ + "3.22.3" + ], + "great public": [ + "3.10.1" + ], + "great public response": [ + "3.10.1" + ], + "great ressource": [ + "3.22.5" + ], + "great start": [ + "3.22.16" + ], + "greater": [ + "3.24.8" + ], + "greater relevance": [ + "3.24.8" + ], + "greece": [ + "3.5.3" + ], + "greek ancestry": [ + "3.22.5" + ], + "gregor": [ + "3.19.5" + ], + "gregory sholette": [ + "3.16.3" + ], + "grid": [ + "3.6.3" + ], + "ground building soil": [ + "3.22.9" + ], + "group": [ + "3.15.1" + ], + "groups": [ + "3.0.0", + "3.1.0", + "3.22.17" + ], + "groups of people": [ + "3.18.2" + ], + "groups were incredible": [ + "3.22.17" + ], + "guarani": [ + "3.7.7" + ], + "guarani developed": [ + "3.7.7" + ], + "guaranteeing freedom": [ + "3.6.3" + ], + "guattari": [ + "3.7.0", + "3.7.11", + "3.22.6" + ], + "guattari found": [ + "3.22.6", + "3.22.11" + ], + "hach internet": [ + "3.7.12" + ], + "hach internet schedule": [ + "3.7.12", + "3.7.12" + ], + "hacking groups": [ + "3.22.17" + ], + "hall": [ + "3.18.0", + "3.18.1", + "3.18.4", + "3.21.1" + ], + "hall acknowledges": [ + "3.18.4" + ], + "hall and williams": [ + "3.18.1" + ], + "hall at berkeley": [ + "3.22.1" + ], + "hallstatt": [ + "3.22.0" + ], + "hallstatt culture": [ + "3.22.0" + ], + "hallstatt culture marilyn": [ + "3.22.0" + ], + "ham radio operator": [ + "3.19.6" + ], + "han-shan": [ + "3.16.1" + ], + "hand back": [ + "3.10.1" + ], + "handful": [ + "3.22.20" + ], + "handful i named": [ + "3.22.20" + ], + "hankwitz wrote": [ + "3.4.0" + ], + "happen": [ + "3.22.15" + ], + "happen through groups": [ + "3.18.2" + ], + "happy oral world": [ + "3.7.8" + ], + "happy testing": [ + "3.22.3" + ], + "haraway": [ + "3.4.3" + ], + "haraway interview": [ + "3.4.3" + ], + "hard": [ + "3.13.2", + "3.22.7" + ], + "hard to delegate": [ + "3.13.2" + ], + "hard to insert": [ + "3.22.7" + ], + "hard to respond": [ + "3.22.7" + ], + "hardcore economic analysis": [ + "3.0.0", + "3.1.0" + ], + "hardt and negri": [ + "3.21.1" + ], + "hardwired": [ + "3.6.3" + ], + "harman": [ + "3.21.1" + ], + "harris has noted": [ + "3.18.3" + ], + "haus der kunst": [ + "3.16.0" + ], + "hayles": [ + "3.24.2" + ], + "hayles concept": [ + "3.24.1" + ], + "hear": [ + "3.22.0" + ], + "heartbeats": [ + "3.24.8" + ], + "heartedly enclose people": [ + "3.18.0-p.180" + ], + "heed alarm": [ + "3.22.31" + ], + "hegemonic networked institutions": [ + "3.2.0" + ], + "held the lenape": [ + "3.22.4" + ], + "helen": [ + "3.16.0" + ], + "helen belkin": [ + "3.16.0" + ], + "helen belkin art": [ + "3.16.0" + ], + "helen belkin gallery": [ + "3.16.0", + "3.16.0" + ], + "helen pritchard": [ + "3.16.0" + ], + "helen pritchard reference": [ + "3.21.1" + ], + "helen varley jamieson": [ + "3.17.0", + "3.17.0" + ], + "help wean artists": [ + "3.18.0" + ], + "helping thourgh": [ + "3.14.0" + ], + "heritage": [ + "3.22.3" + ], + "herman hahn": [ + "3.17.1" + ], + "hermes": [ + "3.9.0" + ], + "hermes metaphor aside": [ + "3.9.1" + ], + "hesitate to write": [ + "3.18.0-p.180" + ], + "heterogeneous network phenomena": [ + "3.6.0", + "3.6.0" + ], + "heterogenous and diverse": [ + "3.22.21" + ], + "hey hauffeur step": [ + "3.7.12" + ], + "hierachy": [ + "3.7.5" + ], + "hierarchal": [ + "3.7.4" + ], + "hierarchal systems": [ + "3.7.4" + ], + "hierarchically structured": [ + "3.7.9" + ], + "hierarchically structured society": [ + "3.7.9" + ], + "hierarchy": [ + "3.7.2", + "3.7.5", + "3.22.8" + ], + "high speed connections": [ + "3.24.7" + ], + "high-low": [ + "3.24.3", + "3.24.4", + "3.24.5" + ], + "high-low to cool": [ + "3.24.3" + ], + "highly": [ + "3.7.3" + ], + "highly controlled mass": [ + "3.11.0" + ], + "highly heterogenous": [ + "3.22.21" + ], + "highly recommended": [ + "3.18.2" + ], + "highly situated socio": [ + "3.4.3" + ], + "highly structured": [ + "3.7.3" + ], + "hilarious": [ + "3.22.1" + ], + "historical": [ + "3.16.3" + ], + "historical art predecessors": [ + "3.0.0", + "3.1.0" + ], + "historical connection evidences": [ + "3.24.1" + ], + "historical connections": [ + "3.24.1" + ], + "historical deconstruction": [ + "3.24.1" + ], + "historical precedent": [ + "3.24.1" + ], + "history": [ + "3.1.0", + "3.16.3", + "3.18.0", + "3.22.2", + "3.22.15", + "3.24.2", + "3.24.6" + ], + "history of networked": [ + "3.22.28" + ], + "history of people": [ + "3.7.11" + ], + "holding own names": [ + "3.15.0-p.179" + ], + "holmes": [ + "3.7.11" + ], + "holmes wrote": [ + "3.7.11" + ], + "hommage à robert": [ + "3.17.3" + ], + "honestly": [ + "3.22.21" + ], + "hong kong": [ + "3.21.0" + ], + "honorable life": [ + "3.18.1-p.181" + ], + "hoped for gain": [ + "3.18.0" + ], + "horizon": [ + "3.7.0", + "3.7.1" + ], + "horizon adherence": [ + "3.7.2" + ], + "horizontal": [ + "3.7.10" + ], + "horizontal management": [ + "3.7.10" + ], + "horizontal networks": [ + "3.19.6" + ], + "horizontal vs": [ + "3.2.0" + ], + "horizontality flattened verticality": [ + "3.19.6" + ], + "hot summer days": [ + "3.1.0" + ], + "hours enjoying": [ + "3.19.0-p.182" + ], + "hours enjoying ben": [ + "3.19.0-p.182" + ], + "html code": [ + "3.24.0" + ], + "html code etc": [ + "3.24.0" + ], + "http object": [ + "3.6.2" + ], + "hub connected": [ + "3.7.11" + ], + "hubs": [ + "3.7.11" + ], + "hudson": [ + "3.9.0" + ], + "huge": [ + "3.22.17" + ], + "huge numbers": [ + "3.22.17" + ], + "huis clos": [ + "3.19.0" + ], + "huis clos /": [ + "3.19.0" + ], + "human": [ + "3.7.8", + "3.13.1", + "3.22.7", + "3.22.11" + ], + "human action": [ + "3.4.1" + ], + "human brain": [ + "3.5.2" + ], + "human factors": [ + "3.13.1" + ], + "human faculties": [ + "3.7.0" + ], + "human habits": [ + "3.2.0" + ], + "human hierarchie": [ + "3.7.12" + ], + "human humanities": [ + "3.22.15" + ], + "human misery sweeps": [ + "3.2.0" + ], + "human networks": [ + "3.7.8" + ], + "human operator": [ + "3.13.1" + ], + "human scale": [ + "3.22.7", + "3.22.11" + ], + "human sciences": [ + "3.2.0" + ], + "human=machine rethoric": [ + "3.22.7" + ], + "humanities": [ + "3.22.15" + ], + "humanities and complex": [ + "3.14.0" + ], + "humanities style": [ + "3.22.15" + ], + "humanities style work": [ + "3.22.15" + ], + "humans": [ + "3.13.1" + ], + "hunch": [ + "3.16.1" + ], + "hungarian telecomunication company": [ + "3.17.0-p.180" + ], + "hupa wrote": [ + "3.7.0" + ], + "hybrid post modern": [ + "3.24.8" + ], + "hyper light": [ + "3.22.23" + ], + "hyper light communication": [ + "3.22.23", + "3.22.23" + ], + "hyperindividualizing electronic networks": [ + "3.7.6" + ], + "hypertext": [ + "3.24.2" + ], + "hypertext fiction": [ + "3.24.2" + ], + "hypertext format": [ + "3.5.1" + ], + "hypertext markup language": [ + "3.8.0" + ], + "hypertext transfer protocol": [ + "3.8.0" + ], + "hypertext transportation protocol": [ + "3.5.1" + ], + "iab reviews iesg": [ + "3.8.0" + ], + "ict": [ + "3.25.3" + ], + "ict theory": [ + "3.25.3" + ], + "icts": [ + "3.25.3" + ], + "icts are enabling": [ + "3.7.3" + ], + "idea": [ + "3.5.4", + "3.7.2", + "3.7.5", + "3.17.0", + "3.18.0-p.180", + "3.24.3" + ], + "idea of internal": [ + "3.24.3" + ], + "idea that networks": [ + "3.7.2" + ], + "ideals": [ + "3.21.1" + ], + "ideals die": [ + "3.21.1" + ], + "ideas": [ + "3.1.0", + "3.19.1-p.182" + ], + "identity": [ + "3.3.0", + "3.22.2", + "3.22.6" + ], + "identity prop": [ + "3.22.1", + "3.22.2" + ], + "identity theft": [ + "3.22.2" + ], + "ieee": [ + "3.8.0" + ], + "ieee definition eschews": [ + "3.8.0" + ], + "ieee history center": [ + "3.8.0" + ], + "ieft creates standards": [ + "3.8.0" + ], + "ieft takes pride": [ + "3.8.0" + ], + "ietf": [ + "3.8.0" + ], + "ietf protocols": [ + "3.8.0" + ], + "ietf route didn": [ + "3.8.0" + ], + "ietf standards process": [ + "3.8.0", + "3.8.0" + ], + "ignore": [ + "3.19.5" + ], + "ignore my curiosity.": [ + "3.19.5" + ], + "illuminating": [ + "3.19.2" + ], + "illuminating review": [ + "3.19.2" + ], + "ilze black": [ + "3.22.25" + ], + "imaginable network language": [ + "3.5.1", + "3.5.1" + ], + "imaginary": [ + "3.7.7" + ], + "imaginary institution": [ + "3.7.7" + ], + "imaginary structures": [ + "3.7.7" + ], + "imaginary underground network": [ + "3.22.32" + ], + "imbue informational relations": [ + "3.2.0" + ], + "immaculate conception": [ + "3.22.4" + ], + "immanence": [ + "3.3.0" + ], + "immediate results": [ + "3.6.3" + ], + "immediated": [ + "3.24.0" + ], + "immediately": [ + "3.22.22" + ], + "immediately established manufacturing": [ + "3.8.0" + ], + "immersive": [ + "3.22.0" + ], + "immersive predators": [ + "3.22.0" + ], + "immersive species": [ + "3.22.0", + "3.22.0" + ], + "immersive species themselves": [ + "3.22.0" + ], + "implicit word": [ + "3.12.4" + ], + "implies practical consequences": [ + "3.25.0" + ], + "imply": [ + "3.22.8" + ], + "imply hierarchy": [ + "3.22.8" + ], + "important": [ + "3.7.12", + "3.13.2", + "3.22.8" + ], + "important and critical": [ + "3.13.2" + ], + "important theorics": [ + "3.7.12" + ], + "impossibility": [ + "3.19.7" + ], + "impossible decision": [ + "3.22.5" + ], + "improve": [ + "3.18.1-p.181" + ], + "improve life": [ + "3.25.0" + ], + "improve living conditions": [ + "3.25.0" + ], + "inanimate matter": [ + "3.6.1" + ], + "incandescent energy illumining": [ + "3.22.32" + ], + "included aggressive licensing": [ + "3.8.0" + ], + "included thomas edison": [ + "3.8.0" + ], + "included vinton cerf": [ + "3.8.0" + ], + "including audiocassette editions": [ + "3.19.6" + ], + "including council health": [ + "3.18.1" + ], + "including elizabeth warren": [ + "3.22.2", + "3.22.2" + ], + "including generational effects": [ + "3.22.1" + ], + "including in relations": [ + "3.25.3" + ], + "including marc garrett": [ + "3.17.0" + ], + "including network technologists": [ + "3.21.1" + ], + "including voice telephony": [ + "3.8.0" + ], + "incoming postings": [ + "3.22.27" + ], + "incommensurate political situations": [ + "3.2.0" + ], + "incomplete": [ + "3.18.3" + ], + "incomplete knowledge": [ + "3.18.3", + "3.18.3" + ], + "incongruous network phenomena": [ + "3.6.0" + ], + "incorporates background noise": [ + "3.3.0" + ], + "increase": [ + "3.25.3" + ], + "increasingly": [ + "3.22.7" + ], + "increasingly busy": [ + "3.22.7" + ], + "indeed created social": [ + "3.20.0" + ], + "indeed ‘cultural studies": [ + "3.18.4" + ], + "independent art culture": [ + "3.16.3" + ], + "independent media activities": [ + "3.2.0" + ], + "indescribable tension": [ + "3.22.27" + ], + "indian caste system": [ + "3.7.9" + ], + "indian classical": [ + "3.7.8" + ], + "indian classical music": [ + "3.7.8", + "3.7.8" + ], + "indian classical tradition": [ + "3.7.8" + ], + "indiana university press": [ + "3.2.0" + ], + "indigenous australians": [ + "3.22.3" + ], + "indigenous north": [ + "3.22.1" + ], + "indigenous north american": [ + "3.22.1" + ], + "individual": [ + "3.7.8", + "3.25.1" + ], + "individual economic": [ + "3.7.0" + ], + "individual introspective genius": [ + "3.7.8" + ], + "individual who dares": [ + "3.25.1", + "3.25.2" + ], + "individually owned": [ + "3.7.8" + ], + "individuals": [ + "3.7.0" + ], + "induce self-maximalizing": [ + "3.7.6" + ], + "induce self-maximalizing strategies": [ + "3.7.6" + ], + "industrial society created": [ + "3.7.0" + ], + "industry": [ + "3.22.29" + ], + "industry analysts credited": [ + "3.8.0" + ], + "infinite monkey protocol": [ + "3.8.0" + ], + "information": [ + "3.2.0", + "3.7.1", + "3.15.1", + "3.18.3", + "3.25.0", + "3.25.1", + "3.25.2" + ], + "information economy—economies based": [ + "3.19.6" + ], + "information efficiently": [ + "3.7.3" + ], + "information etc etc": [ + "3.5.4" + ], + "information or act": [ + "3.15.1" + ], + "information society": [ + "3.25.0" + ], + "information society implies": [ + "3.25.0" + ], + "information technology called": [ + "3.8.0" + ], + "information-sharing membranes": [ + "3.22.26" + ], + "information-sharing membranes mycorrhyizal": [ + "3.22.26" + ], + "informational patterns": [ + "3.22.31" + ], + "informationalised institutional": [ + "3.2.0" + ], + "informed autonomist perspective": [ + "3.25.0" + ], + "infos": [ + "3.24.7" + ], + "infosphere": [ + "3.3.0" + ], + "infowar list": [ + "3.17.0-p.180" + ], + "infrastructures": [ + "3.22.7" + ], + "infuse habitats": [ + "3.22.26" + ], + "ing": [ + "3.22.10" + ], + "ingo günther": [ + "3.16.0" + ], + "inhabit": [ + "3.13.2" + ], + "inhabit and spreadš": [ + "3.13.2" + ], + "inhuman": [ + "3.15.0" + ], + "inhuman media": [ + "3.15.0" + ], + "inhuman technical media": [ + "3.15.0", + "3.15.0" + ], + "initially painted": [ + "3.12.0" + ], + "initiative dna": [ + "3.22.3" + ], + "initiative dna quest": [ + "3.22.3" + ], + "innovative standards situated": [ + "3.6.0" + ], + "innumerable forums devoted": [ + "3.7.0" + ], + "inother intimate constellations": [ + "3.4.3" + ], + "inside the usa": [ + "3.10.1" + ], + "insidious political myths": [ + "3.6.0", + "3.6.2" + ], + "inspirazione": [ + "3.22.0" + ], + "inspired artist collectives": [ + "3.18.0" + ], + "inspired by ant": [ + "3.22.31" + ], + "inspiring": [ + "3.22.7" + ], + "inspiring discussion": [ + "3.22.7" + ], + "institute": [ + "3.17.0" + ], + "institute of permanent": [ + "3.17.0" + ], + "institutional": [ + "3.2.0", + "3.7.0" + ], + "institutional actor": [ + "3.2.0" + ], + "institutional artworld conceives": [ + "3.19.1" + ], + "institutional complexity": [ + "3.7.0" + ], + "institutional entities": [ + "3.2.0" + ], + "institutional evolutionary time": [ + "3.24.8", + "3.24.8" + ], + "institutional form emerging": [ + "3.2.0" + ], + "institutional formations": [ + "3.2.0" + ], + "institutional forms": [ + "3.2.0", + "3.2.0" + ], + "institutional frameworks mentioned": [ + "3.8.0" + ], + "institutional means": [ + "3.2.0" + ], + "institutional rituals": [ + "3.2.0" + ], + "institutional status": [ + "3.2.0" + ], + "institutionalised power structures": [ + "3.17.3" + ], + "institutions": [ + "3.2.0", + "3.3.0", + "3.7.0" + ], + "institutions in power": [ + "3.24.6" + ], + "integrated media": [ + "3.17.4" + ], + "integrated media program": [ + "3.17.4" + ], + "intellectual property law": [ + "3.5.4" + ], + "intellectual theoretical": [ + "3.18.4" + ], + "intellectual theoretical work": [ + "3.18.4" + ], + "intellectual transdisciplinarity filtered": [ + "3.2.0" + ], + "intellectuals": [ + "3.7.12" + ], + "intelligence": [ + "3.22.30" + ], + "intended": [ + "3.18.1" + ], + "intentional families": [ + "3.22.19" + ], + "interact": [ + "3.6.2" + ], + "interaction": [ + "3.7.2", + "3.7.5" + ], + "interaction exists": [ + "3.7.10" + ], + "interactions": [ + "3.7.10" + ], + "interconnected": [ + "3.22.8" + ], + "interconnected mycellae": [ + "3.22.8" + ], + "intereaction were highly": [ + "3.22.21" + ], + "interest": [ + "3.4.1", + "3.7.8", + "3.19.1-p.182" + ], + "interested": [ + "3.19.0", + "3.19.3", + "3.22.13" + ], + "interesting": [ + "3.12.4", + "3.19.1-p.182", + "3.22.22", + "3.22.33", + "3.24.6", + "3.25.3" + ], + "interesting piece": [ + "3.25.3" + ], + "interesting piece geert": [ + "3.25.3" + ], + "interesting text": [ + "3.22.33" + ], + "interesting theological": [ + "3.12.4" + ], + "interesting theological intersections": [ + "3.12.4" + ], + "interesting thought-image": [ + "3.22.22" + ], + "interesting views": [ + "3.22.29" + ], + "interesting writings arrive": [ + "3.19.1-p.182" + ], + "interlacing": [ + "3.22.26" + ], + "interlacing mosaics": [ + "3.22.26" + ], + "internal": [ + "3.24.3", + "3.24.4", + "3.24.5" + ], + "internal network": [ + "3.24.3" + ], + "internal network genealogies": [ + "3.24.3" + ], + "internal vs. cool": [ + "3.24.4", + "3.24.5" + ], + "international": [ + "3.22.13", + "3.22.15", + "3.24.7" + ], + "international alternative": [ + "3.24.7" + ], + "international alternative media": [ + "3.24.7" + ], + "international arena": [ + "3.8.0" + ], + "international art movements": [ + "3.24.5" + ], + "international artists": [ + "3.24.7" + ], + "international considered": [ + "3.22.13" + ], + "international consortium iso": [ + "3.8.0" + ], + "international coordination": [ + "3.8.0" + ], + "international electrotechnical commission": [ + "3.8.0" + ], + "international net.art": [ + "3.24.7" + ], + "international relations scholars": [ + "3.2.0" + ], + "international stage": [ + "3.8.0" + ], + "international standards": [ + "3.8.0" + ], + "international telecommunication union": [ + "3.8.0" + ], + "internationalism": [ + "3.24.7" + ], + "internet activities board": [ + "3.8.0" + ], + "internet architecture": [ + "3.8.0" + ], + "internet architecture board": [ + "3.8.0", + "3.8.0" + ], + "internet art": [ + "3.20.0" + ], + "internet engineering": [ + "3.8.0" + ], + "internet engineering steering": [ + "3.8.0", + "3.8.0" + ], + "internet engineering task": [ + "3.8.0", + "3.8.0" + ], + "internet experiment notes": [ + "3.8.0" + ], + "internet governance debates": [ + "3.3.0" + ], + "internet network culture": [ + "3.20.0-p.183" + ], + "internet protocol": [ + "3.6.2" + ], + "internet protocol suite": [ + "3.8.0" + ], + "internet protocols": [ + "3.7.4", + "3.8.0" + ], + "internet protocols describe": [ + "3.8.0" + ], + "internet protocols function": [ + "3.7.4", + "3.7.4", + "3.8.0" + ], + "internet research": [ + "3.2.0", + "3.25.3" + ], + "internet society": [ + "3.8.0" + ], + "internet standards": [ + "3.8.0" + ], + "internet standards covered": [ + "3.8.0" + ], + "internet standards process": [ + "3.8.0", + "3.8.0" + ], + "internet standards writers": [ + "3.8.0" + ], + "internet using links": [ + "3.8.0" + ], + "interpret orality belonging": [ + "3.7.8" + ], + "interpretation": [ + "3.19.1-p.182" + ], + "interpreted data—": [ + "3.8.0" + ], + "intersectional practices online": [ + "3.4.0" + ], + "intersections": [ + "3.12.4" + ], + "interstate highway system": [ + "3.20.0", + "3.20.0" + ], + "interview": [ + "3.4.3" + ], + "intimate constellations taking": [ + "3.4.0", + "3.4.3" + ], + "intrigued": [ + "3.12.1" + ], + "intriguing article": [ + "3.9.0" + ], + "introduce intelligent social": [ + "3.0.0", + "3.1.0" + ], + "introduced": [ + "3.19.4" + ], + "introductions": [ + "3.25.1", + "3.25.2" + ], + "invasive networks": [ + "3.12.2" + ], + "invent global networks": [ + "3.19.6" + ], + "inventive provocations'": [ + "3.21.1" + ], + "inverse negative relationship": [ + "3.7.1" + ], + "invisible": [ + "3.22.20" + ], + "invite": [ + "3.22.0" + ], + "invited": [ + "3.19.4" + ], + "invited respondents": [ + "3.19.4" + ], + "invited respondents especially": [ + "3.19.4" + ], + "invited robert": [ + "3.18.0-p.180" + ], + "inviting": [ + "3.22.7" + ], + "involved activists": [ + "3.10.1" + ], + "involves risk taking": [ + "3.25.0" + ], + "ip datagrams": [ + "3.8.0" + ], + "ip datagrams using": [ + "3.8.0" + ], + "ip policies underpinned": [ + "3.2.0" + ], + "iso standards": [ + "3.8.0" + ], + "isof patterns": [ + "3.22.31" + ], + "israeli military theorists": [ + "3.7.0" + ], + "issue": [ + "3.4.1" + ], + "issue of networks": [ + "3.4.1" + ], + "issues": [ + "3.19.1", + "3.19.4" + ], + "issues off-list": [ + "3.19.4" + ], + "istvan": [ + "3.17.3" + ], + "italian": [ + "3.3.0" + ], + "italian baroque fountains": [ + "3.1.0" + ], + "italian effect": [ + "3.3.0" + ], + "itsarms,its petrochemical": [ + "3.22.31" + ], + "itsarms,its petrochemical arms": [ + "3.22.31" + ], + "itsautomatic arms": [ + "3.22.31" + ], + "ivan stang book": [ + "3.20.0-p.183" + ], + "i¹d move": [ + "3.24.1" + ], + "jacqueline": [ + "3.22.13" + ], + "jacqueline de jonge": [ + "3.22.13", + "3.22.13" + ], + "jamaican of african": [ + "3.22.6" + ], + "james cunningham": [ + "3.4.2" + ], + "jane prophet": [ + "3.21.0" + ], + "janet": [ + "3.17.0" + ], + "jaromil": [ + "3.22.25", + "3.22.27", + "3.22.29", + "3.22.30" + ], + "jaromil alarmed": [ + "3.22.30", + "3.22.31" + ], + "jaromil summing": [ + "3.22.29" + ], + "jean": [ + "3.7.12" + ], + "jean dupuy": [ + "3.19.0" + ], + "jean francois": [ + "3.7.7", + "3.7.12" + ], + "jean francois lyotard": [ + "3.7.7", + "3.7.12" + ], + "jean paul jacquet": [ + "3.15.0-p.179" + ], + "jean-jacques lebel": [ + "3.17.3" + ], + "jim": [ + "3.21.0-p.183" + ], + "joachim": [ + "3.17.1" + ], + "joachim mentioned": [ + "3.17.1" + ], + "joachim pfeufer": [ + "3.17.1" + ], + "joachim pfeuffer": [ + "3.17.3" + ], + "joanne richardson suggests": [ + "3.2.0" + ], + "jodi": [ + "3.24.1" + ], + "johannes": [ + "3.13.1", + "3.13.2", + "3.19.1", + "3.19.3", + "3.19.4", + "3.20.0" + ], + "johannes birringer": [ + "3.13.1" + ], + "johannes birringer /": [ + "3.22.12" + ], + "organise social relations": [ + "3.2.0", + "3.3.0" + ], + "organised": [ + "3.2.0", + "3.3.0" + ], + "organised network": [ + "3.3.0" + ], + "organised network coincide": [ + "3.2.0" + ], + "organised networks": [ + "3.2.0" + ], + "organised networks actually": [ + "3.2.0" + ], + "organised networks institutionalise": [ + "3.2.0", + "3.2.0" + ], + "organised networks provides": [ + "3.2.0" + ], + "organism": [ + "3.6.1" + ], + "organization": [ + "3.5.0" + ], + "organizations": [ + "3.7.1", + "3.7.4" + ], + "organized human activity": [ + "3.7.0", + "3.7.1", + "3.7.8" + ], + "orient towards": [ + "3.7.8" + ], + "orientation": [ + "3.7.9" + ], + "origin": [ + "3.10.1" + ], + "original protocol pioneers": [ + "3.8.0" + ], + "originally": [ + "3.4.1" + ], + "originally posted": [ + "3.5.0" + ], + "originally publuc": [ + "3.4.1" + ], + "orleans god": [ + "3.7.12" + ], + "orleans god scourges": [ + "3.7.12" + ], + "osi reference model": [ + "3.8.0" + ], + "oss": [ + "3.17.4" + ], + "otherwise hierarchal systems": [ + "3.7.4" + ], + "otherwise independent agents": [ + "3.7.1" + ], + "otherwise lead lives": [ + "3.7.8" + ], + "otherwise networks sink": [ + "3.7.11", + "3.7.12" + ], + "otherwise proprietary technologies": [ + "3.8.0" + ], + "other¹s": [ + "3.24.1" + ], + "outer universe hitting": [ + "3.22.27", + "3.22.32" + ], + "outs seldom pay": [ + "3.0.0", + "3.1.0" + ], + "overcome": [ + "3.0.0" + ], + "overcome the malaise": [ + "3.0.0" + ], + "own distinct universes": [ + "3.3.0" + ], + "own fantastical projections": [ + "3.22.4" + ], + "own geography": [ + "3.7.1", + "3.7.3" + ], + "own historical evolution": [ + "3.12.2" + ], + "own mental processes": [ + "3.12.3" + ], + "own physical environment": [ + "3.7.1", + "3.7.3" + ], + "own text demonstrates": [ + "3.7.2", + "3.7.5" + ], + "own time scale": [ + "3.7.1" + ], + "own university system": [ + "3.22.1" + ], + "oxford university press": [ + "3.2.0" + ], + "o’neill": [ + "3.19.1" + ], + "painfully": [ + "3.22.1" + ], + "painfully unaware": [ + "3.22.1" + ], + "panel discussion recently": [ + "3.22.15" + ], + "paolo virno calls": [ + "3.3.0" + ], + "paper": [ + "3.16.3" + ], + "paper make world": [ + "3.25.0" + ], + "paragraph you contradict": [ + "3.7.2" + ], + "paraguay and venezuela": [ + "3.7.7" + ], + "parallel": [ + "3.4.1" + ], + "parallel with political": [ + "3.12.4" + ], + "pardon": [ + "3.7.12" + ], + "pardon blessed": [ + "3.7.12" + ], + "pardon blessed human": [ + "3.7.12" + ], + "pardon oneself": [ + "3.7.12" + ], + "parent star": [ + "3.22.23" + ], + "parodies": [ + "3.22.1" + ], + "parody": [ + "3.22.2" + ], + "part": [ + "3.1.0", + "3.9.1", + "3.12.2" + ], + "part works": [ + "3.22.22" + ], + "partially based": [ + "3.7.0" + ], + "partially chaotic force": [ + "3.7.0" + ], + "partially reactionary": [ + "3.8.0" + ], + "participate": [ + "3.7.2", + "3.7.5" + ], + "participate via email": [ + "3.8.0" + ], + "particularised loneliness": [ + "3.7.8" + ], + "particularly european perspective": [ + "3.12.5" + ], + "particularly social media": [ + "3.19.7" + ], + "partie d'un": [ + "3.17.0-p.180" + ], + "partie d'un réseau": [ + "3.17.0-p.180" + ], + "parties": [ + "3.7.4" + ], + "party": [ + "3.19.0" + ], + "pass": [ + "3.21.0-p.183" + ], + "pass' the sporadically": [ + "3.22.27" + ], + "past": [ + "3.22.29" + ], + "past centuries": [ + "3.14.0" + ], + "past decade collective": [ + "3.25.0" + ], + "patchwork": [ + "3.22.24" + ], + "patchwork + weavinggg": [ + "3.22.28", + "3.22.32" + ], + "patience": [ + "3.19.4" + ], + "patrick": [ + "3.22.22" + ], + "patterns": [ + "3.22.30", + "3.22.31" + ], + "patterns hold": [ + "3.7.9" + ], + "patterns of mycelia": [ + "3.22.29" + ], + "patterns of mycelia.": [ + "3.22.30" + ], + "paul": [ + "3.22.23", + "3.24.2-p.199" + ], + "paul baran": [ + "3.8.0" + ], + "paul baran observed": [ + "3.8.0" + ], + "paul hoffman": [ + "3.8.0" + ], + "paul stamets": [ + "3.22.23" + ], + "paul vanouse": [ + "3.22.11" + ], + "pedagogical space": [ + "3.17.3" + ], + "pedagogy": [ + "3.17.2", + "3.17.4" + ], + "pedagogy in relation": [ + "3.17.2" + ], + "peedagogy and spatial": [ + "3.17.0" + ], + "peer based relations": [ + "3.19.0" + ], + "pehr": [ + "3.22.13" + ], + "pehr englen": [ + "3.22.13" + ], + "penetration theory": [ + "3.13.0" + ], + "people": [ + "3.1.0", + "3.7.4", + "3.13.1", + "3.15.0-p.179", + "3.17.1", + "3.18.1-p.181", + "3.18.2-p.181", + "3.18.3-p.181", + "3.19.1-p.182", + "3.19.6", + "3.20.0-p.183", + "3.22.1", + "3.22.15", + "3.25.1" + ], + "people actually meet": [ + "3.19.6" + ], + "people and organizations": [ + "3.7.3" + ], + "people responded": [ + "3.20.0-p.183" + ], + "people swarming": [ + "3.18.2" + ], + "people using": [ + "3.5.0" + ], + "peoples own lives": [ + "3.1.0" + ], + "peraica": [ + "3.18.0-p.180" + ], + "peraica a friend": [ + "3.15.0-p.179" + ], + "perception": [ + "3.24.2-p.199" + ], + "performance": [ + "3.4.2" + ], + "performance space": [ + "3.4.2" + ], + "performances": [ + "3.19.0" + ], + "performatively create": [ + "3.21.1" + ], + "performing a mycelic": [ + "3.22.29" + ], + "perfroming arts'": [ + "3.17.2" + ], + "period": [ + "3.24.0" + ], + "peripheral": [ + "3.7.11" + ], + "peripheral nodes": [ + "3.7.11" + ], + "periphery model": [ + "3.8.0" + ], + "permanent": [ + "3.17.0", + "3.17.4" + ], + "permanent creation": [ + "3.17.0", + "3.17.1", + "3.17.4", + "3.17.4", + "3.18.1" + ], + "permanent creation connects": [ + "3.18.1", + "3.18.1" + ], + "permanent digital revolution": [ + "3.0.0", + "3.1.0" + ], + "permanent knowledge base": [ + "3.17.4" + ], + "permanent record": [ + "3.17.4", + "3.17.4" + ], + "permanente": [ + "3.16.0-p.179" + ], + "permanent’": [ + "3.19.7" + ], + "persist": [ + "3.7.2" + ], + "person": [ + "3.15.1" + ], + "person fails": [ + "3.15.1" + ], + "person responsibility": [ + "3.15.1" + ], + "personal": [ + "3.4.1", + "3.17.4" + ], + "personal activities": [ + "3.13.1" + ], + "personal history": [ + "3.2.0" + ], + "personal interest": [ + "3.4.1" + ], + "personal lives": [ + "3.1.0" + ], + "personal notebooks": [ + "3.17.4" + ], + "personal snail mail": [ + "3.20.0-p.183" + ], + "personal time perceiving": [ + "3.19.0-p.182" + ], + "perspective": [ + "3.22.10" + ], + "perspective comes": [ + "3.25.0" + ], + "perspective in general": [ + "3.22.10" + ], + "perth": [ + "3.22.17" + ], + "pervasiveness of web": [ + "3.19.7" + ], + "perverse": [ + "3.22.1" + ], + "pessimism": [ + "3.12.2", + "3.12.3" + ], + "petrochemical arms": [ + "3.22.31" + ], + "pfeuffer in swansea": [ + "3.17.3" + ], + "phaedrus asked socrates": [ + "3.22.9" + ], + "phase": [ + "3.25.1", + "3.25.2" + ], + "phase of introductions": [ + "3.25.1", + "3.25.2" + ], + "phd at birkbeck": [ + "3.16.3" + ], + "phenomena": [ + "3.6.0", + "3.6.1" + ], + "phenomena of self-organized": [ + "3.6.1" + ], + "philosophy": [ + "3.18.1" + ], + "phone being monitored": [ + "3.13.0" + ], + "photostatic": [ + "3.20.0-p.183" + ], + "physical": [ + "3.6.2", + "3.7.3", + "3.12.5" + ], + "physical environment": [ + "3.7.3" + ], + "physicists accumulate data": [ + "3.14.0" + ], + "picasso¹s confluence": [ + "3.24.1" + ], + "pick": [ + "3.17.1" + ], + "picture": [ + "3.22.9" + ], + "picture of reality": [ + "3.22.9" + ], + "piece": [ + "3.25.3" + ], + "piece geert": [ + "3.25.3" + ], + "pierre tilman": [ + "3.19.0" + ], + "pigalle eating handful": [ + "3.7.12" + ], + "pink": [ + "3.14.1" + ], + "pink floyd": [ + "3.14.1" + ], + "pirate movement argue": [ + "3.21.1" + ], + "pirated microsoft bullshit": [ + "3.7.6" + ], + "pit schultz": [ + "3.7.10" + ], + "pivotal": [ + "3.7.12" + ], + "place": [ + "3.22.6" + ], + "place of observation": [ + "3.18.0" + ], + "places": [ + "3.7.9", + "3.22.24" + ], + "plagues with katrina": [ + "3.7.12" + ], + "plan to return": [ + "3.16.1" + ], + "plane of immanence": [ + "3.3.0" + ], + "plant": [ + "3.22.28", + "3.22.32" + ], + "platform": [ + "3.4.2" + ], + "platform artwork comprising": [ + "3.22.19" + ], + "platform lives": [ + "3.22.19" + ], + "playing": [ + "3.12.4", + "3.22.15" + ], + "pleasure to announce": [ + "3.16.0" + ], + "plot part": [ + "3.9.1" + ], + "plug": [ + "3.4.0", + "3.6.1" + ], + "plugging": [ + "3.4.0" + ], + "plugging the announcement": [ + "3.4.0" + ], + "plunderphonics collective": [ + "3.20.0-p.183" + ], + "plunderphonics collective tape-beatles": [ + "3.20.0-p.183" + ], + "pluto press": [ + "3.2.0", + "3.16.3" + ], + "poem goes ding": [ + "3.6.3" + ], + "poetical": [ + "3.16.0-p.179" + ], + "poetical economy": [ + "3.16.0-p.179" + ], + "poetics": [ + "3.24.0" + ], + "poetics of reality": [ + "3.24.0" + ], + "point": [ + "3.0.0", + "3.5.0", + "3.5.4", + "3.6.3", + "3.15.0", + "3.15.1", + "3.19.1-p.182" + ], + "points": [ + "3.6.1", + "3.19.5" + ], + "poipoidrome": [ + "3.17.1", + "3.17.3" + ], + "poipoidrome embodies": [ + "3.17.1" + ], + "poipoidrome stood": [ + "3.17.1" + ], + "poipoidrome stood precisely": [ + "3.17.1" + ], + "polanyi": [ + "3.7.9" + ], + "polanyi goes": [ + "3.7.8" + ], + "political": [ + "3.2.0", + "3.5.0", + "3.6.0", + "3.7.4", + "3.12.0", + "3.12.4", + "3.15.1", + "3.18.4" + ], + "political affects": [ + "3.21.1" + ], + "political and personal": [ + "3.13.1" + ], + "political animal": [ + "3.6.0" + ], + "political animals aristotle": [ + "3.6.0" + ], + "political change": [ + "3.5.0" + ], + "political context": [ + "3.24.1" + ], + "political dimension": [ + "3.15.1" + ], + "political discourse": [ + "3.5.0" + ], + "political economy": [ + "3.1.0" + ], + "political fabric": [ + "3.12.0" + ], + "political formation": [ + "3.5.0" + ], + "political formation de": [ + "3.3.0" + ], + "political left tend": [ + "3.21.1" + ], + "political organization": [ + "3.5.0" + ], + "political parties": [ + "3.7.4" + ], + "political progressives exploited": [ + "3.9.1" + ], + "political sphere using": [ + "3.5.0" + ], + "political struggle": [ + "3.5.0" + ], + "political struggles": [ + "3.5.0" + ], + "political theory": [ + "3.12.4" + ], + "politically correct ghetto": [ + "3.2.0" + ], + "politically motivated activities": [ + "3.2.0" + ], + "politically progressive": [ + "3.8.0" + ], + "politically reactionary tactic": [ + "3.8.0" + ], + "politics": [ + "3.6.0", + "3.18.4" + ], + "pollies": [ + "3.22.11" + ], + "poor post-planet": [ + "3.19.2" + ], + "poorer suburbs shamed": [ + "3.22.3", + "3.22.3" + ], + "pop": [ + "3.14.1" + ], + "pop song": [ + "3.14.1" + ], + "popes": [ + "3.18.2-p.181" + ], + "popes of rome": [ + "3.18.2-p.181" + ], + "popular conspiracy theories": [ + "3.25.0" + ], + "popular online tools": [ + "3.4.2" + ], + "popularity always looked": [ + "3.18.0" + ], + "position": [ + "3.12.2" + ], + "positive feedback loop": [ + "3.8.0" + ], + "positive law": [ + "3.5.4" + ], + "positive law treats": [ + "3.5.4" + ], + "positive legal system": [ + "3.5.4" + ], + "possibility of snowden": [ + "3.12.0" + ], + "possibly": [ + "3.4.2" + ], + "possibly new contexts": [ + "3.4.2" + ], + "post": [ + "3.4.3", + "3.12.4", + "3.18.1", + "3.22.10" + ], + "post digital": [ + "3.19.2" + ], + "post digital publishing": [ + "3.19.2" + ], + "post intellectuality": [ + "3.2.0" + ], + "post leads": [ + "3.22.10" + ], + "post made": [ + "3.24.7" + ], + "postal networks": [ + "3.19.6" + ], + "postal networks gave": [ + "3.19.6" + ], + "postcybernetic": [ + "3.22.21" + ], + "posted": [ + "3.19.3" + ], + "posted some commentary": [ + "3.19.3" + ], + "posted to nettime-l": [ + "3.5.0" + ], + "posting": [ + "3.12.4", + "3.20.0-p.183", + "3.22.12" + ], + "posting the interesting": [ + "3.12.4" + ], + "postings randomly": [ + "3.22.14" + ], + "postinternet": [ + "3.22.21" + ], + "postinternet discourse": [ + "3.22.21" + ], + "postman": [ + "3.19.0-p.182" + ], + "postmodernism fractured": [ + "3.22.21" + ], + "posts": [ + "3.12.1", + "3.17.4" + ], + "posts by alex": [ + "3.12.1" + ], + "potential": [ + "3.3.0" + ], + "potential benefits": [ + "3.7.6" + ], + "potential internal": [ + "3.24.3" + ], + "potential internal network": [ + "3.24.3" + ], + "potentially": [ + "3.24.3" + ], + "potentially becoming victims": [ + "3.0.0", + "3.1.0" + ], + "potentially fragile concept": [ + "3.25.0" + ], + "power": [ + "3.5.0", + "3.5.4", + "3.6.3", + "3.7.6", + "3.7.7", + "3.7.12", + "3.13.2", + "3.25.0" + ], + "power and powerstructures": [ + "3.7.7" + ], + "power and trust": [ + "3.13.2" + ], + "power foucault": [ + "3.7.6" + ], + "power foucault conceived": [ + "3.7.6" + ], + "power laws": [ + "3.7.8" + ], + "power networking": [ + "3.25.0" + ], + "power networking environments": [ + "3.25.0" + ], + "power of life": [ + "3.5.4" + ], + "power operates": [ + "3.7.12" + ], + "power takes life": [ + "3.5.4" + ], + "power … takes life": [ + "3.5.4" + ], + "powerful poetic gestures": [ + "3.22.19" + ], + "powerstructures": [ + "3.7.7" + ], + "powwow": [ + "3.22.17" + ], + "practice": [ + "3.5.2", + "3.7.8", + "3.18.3", + "3.21.0", + "3.24.1", + "3.24.8" + ], + "practice of emasculation": [ + "3.22.28" + ], + "practices": [ + "3.4.0", + "3.5.0", + "3.21.0", + "3.24.1" + ], + "practices online": [ + "3.4.3" + ], + "practitioners": [ + "3.24.6" + ], + "pre-internet network culture": [ + "3.20.0-p.183" + ], + "precocious meme savant": [ + "3.22.19" + ], + "predictable and modulable": [ + "3.7.6" + ], + "predictable mixed": [ + "3.13.0" + ], + "prefer": [ + "3.22.10" + ], + "prefer full-employment": [ + "3.13.2" + ], + "prefer not coming": [ + "3.22.10" + ], + "prem chandavarkar": [ + "3.7.9" + ], + "prem chandavarkar wrote": [ + "3.7.9", + "3.7.9" + ], + "preoccupation": [ + "3.24.0" + ], + "present": [ + "3.1.0" + ], + "preserve net": [ + "3.22.7" + ], + "preserve net art": [ + "3.22.7" + ], + "presley or walter": [ + "3.19.6" + ], + "press": [ + "3.2.0" + ], + "prevail": [ + "3.21.0-p.183" + ], + "prevailing hierarchies": [ + "3.7.2" + ], + "prevailing ideological governance": [ + "3.16.3" + ], + "prevailing media forms": [ + "3.2.0" + ], + "previously stated ones": [ + "3.7.9" + ], + "price signals": [ + "3.7.0" + ], + "price signals serve": [ + "3.7.0" + ], + "priest": [ + "3.22.5" + ], + "primary source materials": [ + "3.8.0" + ], + "primitive religion related": [ + "3.15.0-p.179" + ], + "prince": [ + "3.21.1" + ], + "prince of networks": [ + "3.21.1" + ], + "print film": [ + "3.22.25" + ], + "print film series": [ + "3.22.25" + ], + "private": [ + "3.4.1" + ], + "private media oligopolies": [ + "3.2.0" + ], + "private opinion": [ + "3.1.0" + ], + "private property": [ + "3.4.1" + ], + "private sector counterpart": [ + "3.8.0" + ], + "prnet notes": [ + "3.8.0" + ], + "probably benefits filliou": [ + "3.19.7" + ], + "probing lights mounted": [ + "3.19.6" + ], + "problem": [ + "3.16.1" + ], + "process": [ + "3.6.3" + ], + "process running wild": [ + "3.6.3" + ], + "processes": [ + "3.6.3", + "3.12.3" + ], + "processual": [ + "3.3.0" + ], + "processual democracies": [ + "3.3.0", + "3.3.0" + ], + "processual democracy": [ + "3.3.0" + ], + "processual democracy institutes": [ + "3.3.0", + "3.3.0" + ], + "processual media theory": [ + "3.2.0", + "3.2.0" + ], + "processual model": [ + "3.2.0" + ], + "produce": [ + "3.22.10" + ], + "produce the fetishization": [ + "3.22.10" + ], + "producing minor artworks": [ + "3.17.1" + ], + "production": [ + "3.7.1", + "3.16.2", + "3.19.1" + ], + "productive patterns": [ + "3.22.31" + ], + "produktion": [ + "3.16.2" + ], + "professional bodies": [ + "3.8.0" + ], + "professional membership society": [ + "3.8.0" + ], + "professional societies": [ + "3.8.0" + ], + "professional society": [ + "3.8.0" + ], + "professional “art”": [ + "3.24.0" + ], + "profitable patterns": [ + "3.22.31" + ], + "program network": [ + "3.15.0-p.179" + ], + "programmer online performance": [ + "3.4.2" + ], + "programming": [ + "3.6.3" + ], + "progress towards individuation": [ + "3.7.8" + ], + "project": [ + "3.7.0", + "3.15.1", + "3.16.0-p.179", + "3.17.4", + "3.18.0", + "3.18.1", + "3.19.0" + ], + "project organizing": [ + "3.18.0" + ], + "projects": [ + "3.7.1", + "3.7.3", + "3.15.1", + "3.19.0", + "3.19.4", + "3.20.0" + ], + "projects to build": [ + "3.19.4" + ], + "promise": [ + "3.22.9" + ], + "promised": [ + "3.22.12" + ], + "promising interference patterns": [ + "3.21.0" + ], + "promoting fluid networks": [ + "3.2.0" + ], + "proof network design": [ + "3.5.1" + ], + "properties of html": [ + "3.24.0" + ], + "property": [ + "3.4.1", + "3.5.4", + "3.21.1" + ], + "propos de eind": [ + "3.18.0-p.180" + ], + "proposition": [ + "3.16.1" + ], + "proprietary genome databases": [ + "3.5.0" + ], + "propriety market forces": [ + "3.8.0" + ], + "prosaic": [ + "3.22.15" + ], + "prosaic set": [ + "3.22.15" + ], + "prose": [ + "3.22.13" + ], + "protection and finds": [ + "3.22.28" + ], + "protest movements": [ + "3.2.0" + ], + "protocol": [ + "3.5.0", + "3.5.1", + "3.5.2", + "3.5.3", + "3.6.2", + "3.7.1", + "3.7.5", + "3.8.0" + ], + "protocol abounds": [ + "3.5.1" + ], + "protocol creates": [ + "3.7.1" + ], + "protocol rfcs passed": [ + "3.8.0" + ], + "protocols enable": [ + "3.7.2", + "3.7.5" + ], + "protocols.": [ + "3.7.2" + ], + "proven success": [ + "3.8.0" + ], + "proven track record": [ + "3.8.0" + ], + "proverbial pie chart": [ + "3.22.4" + ], + "psychological levels": [ + "3.7.6" + ], + "public": [ + "3.7.4", + "3.13.0", + "3.18.2-p.181" + ], + "public forums": [ + "3.25.0" + ], + "public response": [ + "3.10.1", + "3.13.0" + ], + "public sectors": [ + "3.13.0" + ], + "publication hype_text ed": [ + "3.15.0-p.179" + ], + "published": [ + "3.16.0-p.179" + ], + "published my dissertation": [ + "3.16.2" + ], + "publishes international standards": [ + "3.8.0" + ], + "publishing workshop": [ + "3.19.2" + ], + "publuc": [ + "3.4.1" + ], + "purchase throughout": [ + "3.2.0" + ], + "purpose": [ + "3.15.0" + ], + "purpose driven software": [ + "3.22.12" + ], + "push": [ + "3.5.2", + "3.5.4" + ], + "put": [ + "3.22.24", + "3.25.1", + "3.25.2" + ], + "put patchwork": [ + "3.22.24" + ], + "putin": [ + "3.9.1" + ], + "putin comment": [ + "3.9.1" + ], + "putin recently": [ + "3.9.1" + ], + "putin recently stated": [ + "3.9.1" + ], + "putin was correct": [ + "3.9.1" + ], + "quality": [ + "3.5.4" + ], + "quality management systems": [ + "3.8.0" + ], + "quasi immediate annihilation": [ + "3.6.3" + ], + "quentin meillassoux": [ + "3.11.0" + ], + "query": [ + "3.19.3" + ], + "question": [ + "3.5.0", + "3.13.2" + ], + "questions": [ + "3.19.1", + "3.22.10" + ], + "qui": [ + "3.16.0-p.179" + ], + "qui sourit": [ + "3.16.0-p.179" + ], + "quick": [ + "3.22.8" + ], + "quick comment": [ + "3.22.8" + ], + "quickly": [ + "3.11.0", + "3.18.3" + ], + "quickly searching": [ + "3.18.3" + ], + "quit": [ + "3.7.11" + ], + "quoted": [ + "3.22.26" + ], + "quotes filliou": [ + "3.18.0" + ], + "quoting alex": [ + "3.5.1" + ], + "quoting alex galloway": [ + "3.5.1", + "3.5.1" + ], + "raaga": [ + "3.7.8" + ], + "rabbit hole": [ + "3.22.29" + ], + "race": [ + "3.22.6" + ], + "race is utterly": [ + "3.22.2" + ], + "rachel": [ + "3.4.0", + "3.22.14" + ], + "rachel baker": [ + "3.22.14" + ], + "racial and cultural": [ + "3.22.4" + ], + "racist beliefs": [ + "3.22.1" + ], + "radical": [ + "3.3.0", + "3.22.9", + "3.25.0" + ], + "radical community centers": [ + "3.7.1" + ], + "radical critique": [ + "3.25.0" + ], + "radical media cultures": [ + "3.2.0" + ], + "radical mycology": [ + "3.22.9" + ], + "radical mycology link": [ + "3.22.11" + ], + "radical mycology web": [ + "3.22.9" + ], + "radical thought": [ + "3.3.0" + ], + "radio mycelium": [ + "3.22.25", + "3.22.32" + ], + "rahmani": [ + "3.22.8" + ], + "railroad networks prior": [ + "3.20.0" + ], + "railways moved people": [ + "3.2.0" + ], + "ran": [ + "3.9.0" + ], + "ran across geert": [ + "3.9.0" + ], + "rancière useful": [ + "3.19.7" + ], + "randall": [ + "3.17.1", + "3.17.2" + ], + "randall mentioned": [ + "3.17.1" + ], + "randall post": [ + "3.17.1" + ], + "random": [ + "3.7.11" + ], + "random interaction": [ + "3.7.8" + ], + "rapeseed oil vw": [ + "3.7.12" + ], + "ray johnson": [ + "3.21.0-p.183" + ], + "ray sent unconcluded": [ + "3.21.0-p.183" + ], + "rdndered": [ + "3.4.1" + ], + "rdndered as private": [ + "3.4.1" + ], + "re imagining relationships": [ + "3.5.4" + ], + "re-constructed": [ + "3.22.30" + ], + "reach": [ + "3.0.0" + ], + "reaches": [ + "3.5.3" + ], + "reaches far back": [ + "3.5.3" + ], + "read": [ + "3.9.1", + "3.18.0-p.180", + "3.22.0", + "3.22.5" + ], + "read tatiana bazzichelli": [ + "3.19.7", + "3.19.7" + ], + "read this stimulating": [ + "3.6.3" + ], + "read this text": [ + "3.22.5" + ], + "reading": [ + "3.21.0", + "3.22.22" + ], + "reading bruce stirling": [ + "3.22.19", + "3.22.19" + ], + "reading but nick": [ + "3.22.22" + ], + "reading immediately": [ + "3.22.22" + ], + "reading practices": [ + "3.21.0", + "3.21.0" + ], + "readings oriented towards": [ + "3.7.8" + ], + "ready": [ + "3.12.1" + ], + "ready-made": [ + "3.19.7" + ], + "real": [ + "3.0.0", + "3.1.0" + ], + "real information society": [ + "3.25.0" + ], + "real issue": [ + "3.4.1" + ], + "real time accessing": [ + "3.22.14" + ], + "real world": [ + "3.8.0" + ], + "real world applications": [ + "3.8.0" + ], + "real ‘web": [ + "3.22.9" + ], + "realised relatively recently": [ + "3.17.1" + ], + "realistic conceptualization": [ + "3.22.8" + ], + "reality": [ + "3.7.9", + "3.22.9", + "3.24.0" + ], + "realize utopian thinking": [ + "3.12.2" + ], + "realm": [ + "3.7.9" + ], + "reanimated": [ + "3.22.16" + ], + "received": [ + "3.18.2-p.181" + ], + "recent": [ + "3.12.1" + ], + "recent article http": [ + "3.5.4" + ], + "recent essay": [ + "3.12.1" + ], + "recent lecture": [ + "3.12.1" + ], + "recent open": [ + "3.17.2" + ], + "recent open source": [ + "3.17.2" + ], + "recent paper called": [ + "3.16.3" + ], + "recent wsis debates": [ + "3.3.0" + ], + "recently": [ + "3.9.0", + "3.16.2" + ], + "recently while surfing": [ + "3.9.0" + ], + "reception": [ + "3.19.1" + ], + "recognisable formula /": [ + "3.12.3" + ], + "recognize individual merit": [ + "3.8.0" + ], + "reconfigured themselves": [ + "3.7.6" + ], + "recurring": [ + "3.4.0" + ], + "recurring common": [ + "3.4.0" + ], + "recurring common concern": [ + "3.4.0", + "3.4.0" + ], + "recursive history": [ + "3.24.6" + ], + "reel audio recordings": [ + "3.19.6" + ], + "reference": [ + "3.24.6" + ], + "reference model": [ + "3.8.0" + ], + "reference to postcybernetic": [ + "3.22.21" + ], + "reference to robert": [ + "3.17.0" + ], + "references filliou": [ + "3.16.1" + ], + "reflect ultraviolet light": [ + "3.22.32" + ], + "reflections": [ + "3.24.4" + ], + "reflexive": [ + "3.7.8" + ], + "reflexive networks": [ + "3.7.8", + "3.7.9" + ], + "regard": [ + "3.7.10" + ], + "regard to protocols": [ + "3.7.10" + ], + "regular social": [ + "3.20.0" + ], + "regulatory environment": [ + "3.7.3" + ], + "related": [ + "3.7.6", + "3.7.11" + ], + "related concept": [ + "3.7.11" + ], + "relation": [ + "3.17.2", + "3.18.4" + ], + "relation to geert": [ + "3.12.1" + ], + "relations": [ + "3.2.0", + "3.3.0", + "3.7.9" + ], + "relations of production": [ + "3.25.3" + ], + "relations to dutch": [ + "3.24.5" + ], + "relationship": [ + "3.6.2" + ], + "relationships": [ + "3.4.1", + "3.5.0", + "3.7.4", + "3.13.2", + "3.22.8", + "3.22.9" + ], + "relationships to robotsš": [ + "3.13.2" + ], + "relative to taking": [ + "3.22.4" + ], + "relatively geographically distinctively": [ + "3.9.0" + ], + "relevance": [ + "3.24.8" + ], + "relevance to net": [ + "3.24.8" + ], + "relevant": [ + "3.19.4" + ], + "relevant projects": [ + "3.19.4" + ], + "religious beliefs": [ + "3.7.0" + ], + "religious horizon": [ + "3.7.0" + ], + "remain": [ + "3.25.1", + "3.25.2" + ], + "remain stable": [ + "3.25.1", + "3.25.2" + ], + "remained confirmed-demoted": [ + "3.19.2" + ], + "remember": [ + "3.14.1", + "3.18.1-p.181" + ], + "remember filliou": [ + "3.18.1" + ], + "remember reading recently": [ + "3.19.1" + ], + "remote communication": [ + "3.19.0" + ], + "remote site collaboration": [ + "3.19.2" + ], + "renate": [ + "3.9.1", + "3.12.1", + "3.12.4", + "3.13.0" + ], + "renate ferro": [ + "3.12.1" + ], + "renewed medial push": [ + "3.24.5" + ], + "renowned integrated media": [ + "3.17.4" + ], + "repeatedly": [ + "3.19.5" + ], + "repetition": [ + "3.5.4" + ], + "replay historical": [ + "3.24.1" + ], + "reply": [ + "3.19.1-p.182", + "3.25.1", + "3.25.2" + ], + "represent living communities": [ + "3.4.2" + ], + "represented by david": [ + "3.19.2" + ], + "represents east asia": [ + "3.7.0" + ], + "repressed hierarchical demons": [ + "3.7.9" + ], + "repressive idea": [ + "3.7.9" + ], + "reproduce": [ + "3.22.32" + ], + "reproduce themselves partially": [ + "3.7.6" + ], + "reproduced": [ + "3.7.7" + ], + "requires public awareness": [ + "3.25.0" + ], + "research": [ + "3.2.0", + "3.18.0", + "3.18.3", + "3.19.7", + "3.25.3" + ], + "research centres": [ + "3.2.0" + ], + "research consists": [ + "3.2.0" + ], + "research funders": [ + "3.18.0" + ], + "research funding": [ + "3.2.0" + ], + "research practice": [ + "3.2.0" + ], + "research press": [ + "3.19.1" + ], + "research ventures": [ + "3.2.0" + ], + "researcher": [ + "3.16.0" + ], + "researcher exploring ideas": [ + "3.16.0" + ], + "resistance": [ + "3.5.0", + "3.5.4", + "3.12.4" + ], + "resistance to power": [ + "3.5.4" + ], + "resource": [ + "3.19.4" + ], + "resource list": [ + "3.19.4" + ], + "resource list welcome": [ + "3.19.4" + ], + "resources enabling entities": [ + "3.7.1" + ], + "respect": [ + "3.18.1-p.181" + ], + "respected oral tradition": [ + "3.22.2" + ], + "respond": [ + "3.22.7" + ], + "respond.": [ + "3.22.3" + ], + "responded": [ + "3.20.0-p.183" + ], + "respondents": [ + "3.19.4" + ], + "response": [ + "3.10.1", + "3.18.1" + ], + "response in germany": [ + "3.13.0" + ], + "response ken": [ + "3.10.1" + ], + "response ken wark": [ + "3.10.1" + ], + "responsibility": [ + "3.15.1" + ], + "results": [ + "3.6.3" + ], + "rethink curatorial strategies": [ + "3.16.0" + ], + "rethinking": [ + "3.19.1" + ], + "rethinking curating": [ + "3.19.1" + ], + "rethinking curatorial activity": [ + "3.19.1" + ], + "rethinking media": [ + "3.2.0" + ], + "rethinking relationships": [ + "3.19.1" + ], + "reticular": [ + "3.12.2", + "3.12.3" + ], + "reticular pessimism": [ + "3.12.2", + "3.12.2", + "3.12.3" + ], + "reticular pessimism claims": [ + "3.12.2" + ], + "retrieve the postings": [ + "3.22.14" + ], + "retrofuturism": [ + "3.20.0-p.183" + ], + "retrofuturism and member": [ + "3.20.0-p.183" + ], + "return": [ + "3.24.8" + ], + "revelations": [ + "3.12.0" + ], + "reverse culture covers": [ + "3.19.0-p.182" + ], + "review": [ + "3.19.2" + ], + "rfc": [ + "3.8.0" + ], + "rfc editor": [ + "3.8.0" + ], + "rfc editor jon": [ + "3.8.0", + "3.8.0" + ], + "rfcs": [ + "3.8.0" + ], + "rhetoric": [ + "3.6.0", + "3.6.3" + ], + "rhetoric of freedom": [ + "3.6.3" + ], + "rhizomatic underground": [ + "3.22.6" + ], + "rhizomatic underground network": [ + "3.22.6", + "3.22.6" + ], + "rhizome and nettime": [ + "3.11.0" + ], + "rhizome model fits": [ + "3.22.6", + "3.22.11", + "3.22.11" + ], + "rhyme and hide": [ + "3.22.29" + ], + "rhythmically recurring memories": [ + "3.7.0" + ], + "rich": [ + "3.22.6", + "3.22.24", + "3.24.3" + ], + "rich materialist": [ + "3.22.6" + ], + "rich materialist models": [ + "3.22.6", + "3.22.6" + ], + "rich modeling": [ + "3.22.6", + "3.22.6" + ], + "rich shift": [ + "3.24.3" + ], + "rich theoretical": [ + "3.22.24" + ], + "rich theoretical writing": [ + "3.22.24", + "3.22.24" + ], + "richard nixon": [ + "3.9.1" + ], + "rigid control implicit": [ + "3.5.0" + ], + "rigidly defined hierarchies": [ + "3.8.0" + ], + "ripe for parody": [ + "3.22.2" + ], + "rise to delueze": [ + "3.22.6" + ], + "risk": [ + "3.22.10" + ], + "ritual": [ + "3.22.29" + ], + "road": [ + "3.5.2" + ], + "roberston": [ + "3.18.4" + ], + "roberston comments": [ + "3.18.4" + ], + "robert": [ + "3.16.0", + "3.16.0-p.179", + "3.16.1", + "3.17.0", + "3.17.1", + "3.18.0-p.180", + "3.19.6" + ], + "robert braden": [ + "3.8.0" + ], + "robert coe": [ + "3.22.2" + ], + "robert filliou": [ + "3.16.0", + "3.16.0-p.179", + "3.16.1", + "3.17.0", + "3.17.3", + "3.18.0-p.180", + "3.18.0-p.180", + "3.19.6", + "3.20.0-p.183" + ], + "robert filliou co": [ + "3.16.0" + ], + "robert filliou co-created": [ + "3.16.0" + ], + "robert filliou coinage": [ + "3.20.0-p.183" + ], + "robert filliou notion": [ + "3.17.0" + ], + "robert filliou published": [ + "3.16.0-p.179", + "3.16.0-p.179" + ], + "robert fillou speech": [ + "3.15.0-p.179" + ], + "robert ultimately withdrew": [ + "3.16.1", + "3.16.1" + ], + "roberts": [ + "3.18.0-p.180" + ], + "roberts idea": [ + "3.18.0-p.180" + ], + "robertson": [ + "3.16.1" + ], + "robots": [ + "3.13.2" + ], + "robotsš": [ + "3.13.2" + ], + "roddy": [ + "3.16.3", + "3.17.0", + "3.17.4", + "3.19.4", + "3.21.0" + ], + "roddy citation": [ + "3.17.4" + ], + "roddy for inviting": [ + "3.16.3" + ], + "roddy quotes filliou": [ + "3.18.0" + ], + "roddy reference": [ + "3.17.0" + ], + "rodger aka santa": [ + "3.22.5" + ], + "roger malina": [ + "3.14.0" + ], + "roman": [ + "3.22.5" + ], + "roman catholic": [ + "3.22.5" + ], + "roman catholic priest": [ + "3.22.5", + "3.22.5" + ], + "rome": [ + "3.18.2-p.181" + ], + "rome at luther": [ + "3.18.2-p.181" + ], + "ronald reagan": [ + "3.9.1" + ], + "rooted": [ + "3.22.30" + ], + "rooted her fingers": [ + "3.22.30" + ], + "rosalind": [ + "3.24.6" + ], + "rosalind krauss": [ + "3.24.6" + ], + "rosler": [ + "3.7.12" + ], + "rossiter": [ + "3.7.5" + ], + "rossiter wrote": [ + "3.7.5" + ], + "rosy mission statement": [ + "3.8.0" + ], + "rot wood": [ + "3.22.9" + ], + "routes": [ + "3.7.11" + ], + "routing": [ + "3.7.10", + "3.12.5" + ], + "routing algorithms": [ + "3.22.31" + ], + "roy ascott reference": [ + "3.17.0" + ], + "rules": [ + "3.5.4", + "3.7.5", + "3.19.1-p.182" + ], + "rumsfeld": [ + "3.12.2" + ], + "run": [ + "3.12.2" + ], + "run centres spring": [ + "3.19.6" + ], + "run systems": [ + "3.6.3" + ], + "running": [ + "3.4.0", + "3.22.23" + ], + "running discussions": [ + "3.4.0" + ], + "runs ones results": [ + "3.22.3" + ], + "russia-ukraine crisis": [ + "3.13.0" + ], + "ruth": [ + "3.17.2", + "3.17.4" + ], + "ruth at furtherfield": [ + "3.17.2" + ], + "sack": [ + "3.22.15" + ], + "sadie": [ + "3.22.32" + ], + "sadie plant tells": [ + "3.22.28" + ], + "safe spaces": [ + "3.4.3" + ], + "safe spaces andintersectional": [ + "3.4.3" + ], + "safe walking streets": [ + "3.4.2" + ], + "san francisco bridge": [ + "3.1.0" + ], + "santa": [ + "3.12.1" + ], + "santa barbara killer": [ + "3.22.5" + ], + "santa cruz": [ + "3.12.1" + ], + "sarbanes": [ + "3.17.0" + ], + "sarbanes describes calarts": [ + "3.17.0" + ], + "sat round campfires": [ + "3.7.8" + ], + "satellite system notes": [ + "3.8.0" + ], + "satisfying protest mode": [ + "3.2.0" + ], + "save": [ + "3.22.23" + ], + "save the world": [ + "3.22.23" + ], + "saša spačal": [ + "3.22.25", + "3.22.25" + ], + "scale": [ + "3.7.1", + "3.7.3" + ], + "scale networks": [ + "3.7.1" + ], + "scale projects carried": [ + "3.7.1" + ], + "scant traces left": [ + "3.17.4" + ], + "scapegoating elizabeth warren": [ + "3.22.2", + "3.22.2" + ], + "scenes": [ + "3.24.3" + ], + "scenting patterns": [ + "3.22.30", + "3.22.31" + ], + "schime of buffalo": [ + "3.22.25" + ], + "schneider": [ + "3.5.0", + "3.25.0" + ], + "schneider february": [ + "3.25.0" + ], + "schneider posit power": [ + "3.5.0" + ], + "school in holland": [ + "3.19.0" + ], + "schultz once wrote": [ + "3.7.10" + ], + "science": [ + "3.5.3", + "3.6.0" + ], + "science computer": [ + "3.5.3" + ], + "science computer science": [ + "3.5.3" + ], + "science fiction": [ + "3.6.0" + ], + "science reaches": [ + "3.5.3" + ], + "sciences promise": [ + "3.22.9" + ], + "scramble the words": [ + "3.22.14" + ], + "sea abyss": [ + "3.22.32" + ], + "searching": [ + "3.18.3" + ], + "security": [ + "3.15.0" + ], + "security state": [ + "3.15.0" + ], + "seek alternate models": [ + "3.24.1" + ], + "seemingly anarchical internet": [ + "3.8.0" + ], + "seemingly incongruous network": [ + "3.6.0" + ], + "sein oder nichtsein": [ + "3.7.12" + ], + "self-maximalizing strategies": [ + "3.7.6" + ], + "self-organized animation": [ + "3.6.1" + ], + "self-organized human activity": [ + "3.7.8" + ], + "semantic web": [ + "3.8.0" + ], + "semiocapitalist patterns": [ + "3.22.31" + ], + "senator elizabeth warren": [ + "3.22.1" + ], + "sending": [ + "3.18.1-p.181" + ], + "sending spam": [ + "3.18.1-p.181" + ], + "sending spam bibliography": [ + "3.18.1-p.181" + ], + "sense": [ + "3.7.8", + "3.19.2", + "3.19.7", + "3.24.1" + ], + "sensory-motor and psychological": [ + "3.7.6" + ], + "sentences are mixed": [ + "3.18.3-p.181" + ], + "sentient": [ + "3.22.9" + ], + "sentient and meaningful": [ + "3.22.9" + ], + "sentinel": [ + "3.22.8" + ], + "sentinel tree": [ + "3.22.8" + ], + "servers": [ + "3.22.20" + ], + "serves": [ + "3.22.12" + ], + "set": [ + "3.25.1" + ], + "set of tools": [ + "3.22.15" + ], + "set technical standards": [ + "3.8.0" + ], + "seven abstract layers": [ + "3.8.0" + ], + "seven stories press": [ + "3.16.0" + ], + "severe infrastructure attrition": [ + "3.9.1" + ], + "sewer networks": [ + "3.15.0-p.179" + ], + "shamelessly": [ + "3.4.0" + ], + "shamelessly plugging": [ + "3.4.0" + ], + "shape": [ + "3.6.3" + ], + "share ideas": [ + "3.16.3" + ], + "shared": [ + "3.7.0", + "3.7.1" + ], + "shared ethical horizon": [ + "3.7.0" + ], + "shared horizon": [ + "3.7.0", + "3.7.0", + "3.7.1" + ], + "shared horizon makes": [ + "3.7.0" + ], + "shared knowledge": [ + "3.8.0" + ], + "sharing": [ + "3.5.2" + ], + "sharp": [ + "3.19.2" + ], + "sharp observations": [ + "3.19.2" + ], + "shift": [ + "3.24.3" + ], + "shift art education": [ + "3.17.0", + "3.17.0" + ], + "shifted": [ + "3.24.3", + "3.24.4" + ], + "shifts": [ + "3.15.1" + ], + "shifts ahead": [ + "3.0.0" + ], + "shimmering shifting patch": [ + "3.22.32" + ], + "shock": [ + "3.12.5" + ], + "sholette": [ + "3.16.3" + ], + "short": [ + "3.9.1" + ], + "short buddhist": [ + "3.18.1-p.181" + ], + "short buddhist outlook": [ + "3.18.1-p.181" + ], + "short films working": [ + "3.19.2" + ], + "short observation": [ + "3.9.1" + ], + "short periods supported": [ + "3.20.0" + ], + "show": [ + "3.7.4", + "3.16.2" + ], + "shrinkment pill aginst": [ + "3.7.12", + "3.7.12" + ], + "shu": [ + "3.22.0", + "3.22.7", + "3.22.13", + "3.22.15", + "3.22.22", + "3.22.26", + "3.22.29" + ], + "shu lea": [ + "3.22.0", + "3.22.7", + "3.22.7", + "3.22.13", + "3.22.15", + "3.22.19", + "3.22.20", + "3.22.21", + "3.22.22", + "3.22.26", + "3.22.29", + "3.22.31", + "3.22.32" + ], + "shu lea cheang": [ + "3.22.26", + "3.22.29", + "3.22.31", + "3.22.32", + "3.22.32" + ], + "shu lea introduction": [ + "3.22.22" + ], + "shu lea notion": [ + "3.22.7" + ], + "shu lea suggested": [ + "3.22.20" + ], + "shu lea work": [ + "3.22.21" + ], + "shuglin": [ + "3.24.0" + ], + "shulgin": [ + "3.19.7", + "3.24.1" + ], + "shulgin¹s": [ + "3.24.1" + ], + "shulgin¹s playful refigurings": [ + "3.24.1" + ], + "sicilian dna": [ + "3.22.5" + ], + "side": [ + "3.5.4" + ], + "siege machines": [ + "3.22.9" + ], + "significant": [ + "3.16.3" + ], + "silence": [ + "3.22.30" + ], + "similar networks": [ + "3.22.15" + ], + "simon": [ + "3.10.1", + "3.11.0", + "3.14.1", + "3.22.27", + "3.24.2" + ], + "simon biggs university": [ + "3.16.3" + ], + "simon meticulously": [ + "3.22.27" + ], + "simon meticulously argued": [ + "3.22.27" + ], + "simon post": [ + "3.11.0" + ], + "simple": [ + "3.15.1" + ], + "simply": [ + "3.15.0" + ], + "simply subjective descriptions": [ + "3.8.0" + ], + "single": [ + "3.19.1-p.182" + ], + "single cause constituencies": [ + "3.7.8" + ], + "single e-mail": [ + "3.19.1-p.182" + ], + "single hub connected": [ + "3.7.11", + "3.7.11" + ], + "single unitised descriptions": [ + "3.7.8" + ], + "singular contextual identity": [ + "3.24.8" + ], + "site": [ + "3.9.0", + "3.24.2-p.199" + ], + "site specific projects": [ + "3.2.0" + ], + "situate network theory": [ + "3.7.8", + "3.7.8" + ], + "situation and encouraging": [ + "3.18.2" + ], + "situationist": [ + "3.22.13" + ], + "situationist international considered": [ + "3.22.13", + "3.22.13" + ], + "situationist times": [ + "3.22.13", + "3.22.13" + ], + "situationists": [ + "3.22.14" + ], + "situations": [ + "3.19.3" + ], + "skills strikes": [ + "3.2.0" + ], + "skor": [ + "3.22.14" + ], + "slime": [ + "3.22.32" + ], + "slime cave": [ + "3.22.32" + ], + "slime cave membership": [ + "3.22.32" + ], + "slime girl": [ + "3.22.32" + ], + "slime molds": [ + "3.22.32", + "3.22.32" + ], + "slime molds proving": [ + "3.22.32" + ], + "slime pig": [ + "3.22.32" + ], + "slime pigs": [ + "3.22.32" + ], + "slimegirl": [ + "3.22.32" + ], + "sloppy engineering terminology": [ + "3.5.1" + ], + "slovenia": [ + "3.24.7" + ], + "slovenia with teo": [ + "3.24.7" + ], + "slovenian technology": [ + "3.24.7" + ], + "slovenian technology fair": [ + "3.24.7", + "3.24.7" + ], + "slowly gained importance": [ + "3.0.0", + "3.1.0" + ], + "slowly invaded alternative": [ + "3.12.0" + ], + "small or niche": [ + "3.24.5" + ], + "smaller networked": [ + "3.4.3" + ], + "smaller networked forms": [ + "3.4.3" + ], + "smaller networks": [ + "3.4.3" + ], + "smaller networks represent": [ + "3.4.3" + ], + "smeared authorship anyway": [ + "3.15.0" + ], + "smiled": [ + "3.18.2-p.181" + ], + "smuggler trade routes": [ + "3.7.11" + ], + "snail": [ + "3.16.0-p.179" + ], + "snail mail": [ + "3.16.0-p.179" + ], + "snowden activities": [ + "3.12.0" + ], + "snowden changes": [ + "3.15.0" + ], + "snowden escapades": [ + "3.12.0" + ], + "snowden heroism": [ + "3.12.0" + ], + "snowden leakage": [ + "3.12.0" + ], + "snowden moment": [ + "3.15.0" + ], + "snowden moment happened": [ + "3.15.0" + ], + "snowden revelations": [ + "3.12.0" + ], + "snowden ’s exposures": [ + "3.9.0" + ], + "snowdon": [ + "3.10.1" + ], + "snowdon affair": [ + "3.10.1" + ], + "so-called closed logics": [ + "3.6.2" + ], + "so-called open logics": [ + "3.6.2" + ], + "social": [ + "3.2.0", + "3.4.1", + "3.6.0", + "3.6.2", + "3.7.0", + "3.7.1", + "3.7.2", + "3.7.5", + "3.7.9", + "3.13.1", + "3.15.0", + "3.25.3" + ], + "social aspects": [ + "3.2.0" + ], + "social bots": [ + "3.13.1" + ], + "social capital": [ + "3.2.0" + ], + "social communication creates": [ + "3.7.1", + "3.7.1" + ], + "social communication media": [ + "3.24.8", + "3.24.8" + ], + "social control": [ + "3.6.2" + ], + "social democracy": [ + "3.18.2" + ], + "social democracy klein": [ + "3.18.2" + ], + "social experimentation": [ + "3.22.27" + ], + "social forums": [ + "3.7.0" + ], + "social institutional complexity": [ + "3.7.0", + "3.7.0" + ], + "social justice": [ + "3.7.0" + ], + "social layers": [ + "3.25.0" + ], + "social matrix": [ + "3.7.7" + ], + "social media": [ + "3.4.1" + ], + "social media networks": [ + "3.19.2" + ], + "social media tactics": [ + "3.22.5" + ], + "social network": [ + "3.4.0", + "3.4.3", + "3.4.3", + "3.18.2", + "3.22.22" + ], + "social networking habits": [ + "3.22.19" + ], + "social networks": [ + "3.4.2" + ], + "social protocols": [ + "3.7.1", + "3.7.5" + ], + "social relations": [ + "3.3.0", + "3.7.9" + ], + "social relationship": [ + "3.6.2" + ], + "social relationships": [ + "3.4.1" + ], + "social science": [ + "3.7.0" + ], + "social skills": [ + "3.2.0" + ], + "social solvents": [ + "3.25.3" + ], + "social territories": [ + "3.7.0" + ], + "social valuethey spin": [ + "3.20.0" + ], + "socialisme": [ + "3.7.12" + ], + "socialisme et barbarie": [ + "3.7.7", + "3.7.7", + "3.7.12", + "3.7.12" + ], + "socialisme ou barbarie": [ + "3.7.12" + ], + "socially operational effects": [ + "3.18.0" + ], + "society": [ + "3.1.0", + "3.7.7", + "3.7.8", + "3.7.9", + "3.18.1", + "3.25.0" + ], + "society based": [ + "3.7.7" + ], + "society radio": [ + "3.22.25" + ], + "society radio mycelium": [ + "3.22.25" + ], + "socio-cultural dispensation": [ + "3.12.3" + ], + "socio-cultural dispensation mirror-struck": [ + "3.12.3" + ], + "sociological history examining": [ + "3.24.2" + ], + "socrates": [ + "3.22.9" + ], + "software": [ + "3.6.3" + ], + "software development": [ + "3.6.3" + ], + "software freedom": [ + "3.22.12" + ], + "software security updates": [ + "3.7.11" + ], + "solar network": [ + "3.15.0-p.179" + ], + "sold neither": [ + "3.21.0-p.183" + ], + "solidaridae con brian": [ + "3.15.0-p.179", + "3.18.3-p.181", + "3.18.3-p.181" + ], + "solidaridae coooon briaaaaaaaan": [ + "3.15.0-p.179" + ], + "sometimes universal": [ + "3.8.0" + ], + "somewhat erroneous term": [ + "3.19.1" + ], + "somewhat pessimistic statement": [ + "3.20.0" + ], + "somezing dried": [ + "3.7.12" + ], + "somezing dried bar": [ + "3.7.12", + "3.7.12" + ], + "sondheim work deals": [ + "3.6.3" + ], + "song": [ + "3.14.1" + ], + "sophomoric and misleading": [ + "3.22.2" + ], + "soraya": [ + "3.12.2" + ], + "soul": [ + "3.6.1" + ], + "sound bite forms": [ + "3.16.3" + ], + "sounds—whereby universal techniques": [ + "3.8.0" + ], + "source": [ + "3.6.0", + "3.17.0", + "3.17.2", + "3.17.4", + "3.18.2-p.181", + "3.18.3-p.181" + ], + "source approach": [ + "3.17.0" + ], + "source code—written": [ + "3.8.0" + ], + "source software": [ + "3.7.0" + ], + "source software movements": [ + "3.7.0" + ], + "source studio": [ + "3.17.0", + "3.17.2", + "3.17.4", + "3.17.4" + ], + "source studio global": [ + "3.17.2" + ], + "source studio model": [ + "3.17.2", + "3.17.2" + ], + "source studio website": [ + "3.17.4", + "3.17.4" + ], + "sourit": [ + "3.16.0-p.179" + ], + "south africa": [ + "3.1.0" + ], + "sovereign power": [ + "3.7.6" + ], + "space": [ + "3.7.1", + "3.15.0", + "3.17.3", + "3.22.8" + ], + "space does n’t": [ + "3.22.8" + ], + "space interesting": [ + "3.22.22" + ], + "space similar": [ + "3.17.3" + ], + "spaces": [ + "3.4.1" + ], + "spaces andintersectional": [ + "3.4.3" + ], + "spaces andintersectional practices": [ + "3.4.3" + ], + "spaces for intereaction": [ + "3.22.21" + ], + "spam": [ + "3.18.1-p.181", + "3.18.3-p.181" + ], + "spam bibliography": [ + "3.18.1-p.181" + ], + "spamming": [ + "3.15.0-p.179" + ], + "spamming networks": [ + "3.15.0-p.179" + ], + "spams": [ + "3.18.3-p.181" + ], + "spams archive": [ + "3.18.3-p.181" + ], + "sparse": [ + "3.12.5" + ], + "spatial": [ + "3.22.8" + ], + "spatial layer": [ + "3.22.8" + ], + "spatial relationships": [ + "3.22.8" + ], + "special issues involved": [ + "3.7.8" + ], + "species": [ + "3.22.0" + ], + "specific expression centralized": [ + "3.21.0-p.183" + ], + "specific legal realities": [ + "3.6.0", + "3.6.2" + ], + "specific locations": [ + "3.7.1" + ], + "specific protocols defining": [ + "3.7.1" + ], + "specific situation": [ + "3.2.0" + ], + "speculative turn": [ + "3.22.21" + ], + "spent hours": [ + "3.19.0-p.182" + ], + "spent hours enjoying": [ + "3.19.0-p.182" + ], + "spider ’s spinnerets": [ + "3.22.28" + ], + "spiller": [ + "3.24.7" + ], + "spirit": [ + "3.19.6" + ], + "spirit of simon": [ + "3.11.0" + ], + "spirits": [ + "3.19.6" + ], + "spoons": [ + "3.22.17" + ], + "spoons lists": [ + "3.22.17" + ], + "sporadically incoming": [ + "3.22.27" + ], + "sporadically incoming postings": [ + "3.22.27" + ], + "spore print": [ + "3.22.25" + ], + "spore print film": [ + "3.22.25" + ], + "spource and finding": [ + "3.18.2-p.181" + ], + "spreadš": [ + "3.13.2" + ], + "sprouts to grow.": [ + "3.22.14" + ], + "src=hash&lang=en": [ + "3.22.32" + ], + "staatsgalerie stuttgart": [ + "3.16.2" + ], + "stabilized monetary bloc": [ + "3.7.0" + ], + "stable": [ + "3.25.1", + "3.25.2" + ], + "stage real fights": [ + "3.0.0" + ], + "staging common events": [ + "3.0.0", + "3.1.0" + ], + "stalder": [ + "3.7.3" + ], + "stalinist": [ + "3.3.0" + ], + "stallabrass": [ + "3.24.5" + ], + "stallabrass included": [ + "3.24.5" + ], + "stamets": [ + "3.22.23" + ], + "standard": [ + "3.8.0" + ], + "standards": [ + "3.5.1", + "3.5.2", + "3.8.0" + ], + "standards bodies": [ + "3.8.0" + ], + "standards creation process": [ + "3.8.0" + ], + "standards process": [ + "3.8.0" + ], + "standards track": [ + "3.8.0", + "3.8.0" + ], + "standards track allows": [ + "3.8.0" + ], + "standard—robust specifications": [ + "3.8.0" + ], + "stanford university teamed": [ + "3.8.0" + ], + "star can wipe": [ + "3.22.23" + ], + "star network": [ + "3.7.10" + ], + "start": [ + "3.9.1", + "3.22.14", + "3.22.16" + ], + "start composting": [ + "3.22.14" + ], + "start composting process": [ + "3.22.14" + ], + "start listing": [ + "3.22.14" + ], + "start thinking": [ + "3.22.13" + ], + "start tracing": [ + "3.18.2-p.181" + ], + "started": [ + "3.22.22" + ], + "started mycelium network": [ + "3.22.25" + ], + "started reading": [ + "3.22.22", + "3.22.22" + ], + "state": [ + "3.0.0", + "3.5.0", + "3.5.4", + "3.6.2", + "3.7.4", + "3.7.7", + "3.15.0", + "3.25.0" + ], + "state of networking": [ + "3.25.0" + ], + "state power": [ + "3.5.0" + ], + "states": [ + "3.7.3", + "3.7.4", + "3.12.0" + ], + "statistical mechanics": [ + "3.14.0" + ], + "status hierarchies": [ + "3.7.0" + ], + "std series maintained": [ + "3.8.0" + ], + "steadfastly tracking online": [ + "3.22.4" + ], + "stem the shadow": [ + "3.22.19" + ], + "stephen voyce": [ + "3.18.3" + ], + "stereotyping": [ + "3.22.2" + ], + "steven harris": [ + "3.18.3" + ], + "stimulating text": [ + "3.6.3" + ], + "stirling dead media": [ + "3.22.19" + ], + "stock markets fall": [ + "3.0.0", + "3.1.0" + ], + "stop": [ + "3.19.5" + ], + "stopped": [ + "3.19.3", + "3.22.22" + ], + "stopped on february": [ + "3.19.3" + ], + "stopped reading": [ + "3.22.22" + ], + "stopped reading immediately": [ + "3.22.22", + "3.22.22" + ], + "stops.": [ + "3.19.3" + ], + "story": [ + "3.12.5" + ], + "story roger malina": [ + "3.14.0" + ], + "story teller": [ + "3.12.5" + ], + "strangely": [ + "3.19.3" + ], + "strangely conservative attack": [ + "3.24.6", + "3.24.6" + ], + "strategic withdrawal": [ + "3.12.1" + ], + "strategically deploy concealment": [ + "3.22.28" + ], + "strategies": [ + "3.0.0", + "3.1.0" + ], + "strategy": [ + "3.12.1" + ], + "street art": [ + "3.16.3" + ], + "street networks": [ + "3.15.0-p.179" + ], + "stress": [ + "3.22.20" + ], + "stress how extensive": [ + "3.22.20" + ], + "stressing": [ + "3.24.7" + ], + "stressing the internationalism": [ + "3.24.7" + ], + "strict standardizing mechanism": [ + "3.8.0" + ], + "strict universal standards": [ + "3.6.0" + ], + "striked": [ + "3.18.3-p.181" + ], + "strong": [ + "3.12.5", + "3.22.1", + "3.22.8" + ], + "strong claims": [ + "3.22.1" + ], + "strong conditioning force": [ + "3.2.0" + ], + "strong impression": [ + "3.2.0" + ], + "strong lights": [ + "3.12.5" + ], + "strong lights strong": [ + "3.12.5" + ], + "strong man": [ + "3.22.8" + ], + "strong movement": [ + "3.4.3" + ], + "strong potential": [ + "3.12.5" + ], + "strong premodern": [ + "3.22.1" + ], + "strong premodern beliefs": [ + "3.22.1", + "3.22.1" + ], + "structure": [ + "3.5.0", + "3.7.4" + ], + "structured": [ + "3.7.3" + ], + "structured and organised": [ + "3.14.0" + ], + "structured in order": [ + "3.7.3" + ], + "structures": [ + "3.7.4", + "3.7.7", + "3.15.1" + ], + "structuring collective behaviour": [ + "3.7.3" + ], + "stuart": [ + "3.13.1", + "3.18.4" + ], + "stuart geiger": [ + "3.13.1" + ], + "stuart hall": [ + "3.18.0", + "3.18.4", + "3.21.1" + ], + "stuart hall elsewhere": [ + "3.19.7" + ], + "students on duchamp": [ + "3.18.3" + ], + "studies": [ + "3.18.0", + "3.18.4" + ], + "studies now’": [ + "3.18.4" + ], + "studies now’ conference": [ + "3.18.4" + ], + "studio": [ + "3.17.2", + "3.17.4" + ], + "studio global": [ + "3.17.2" + ], + "studio global concept": [ + "3.17.2" + ], + "studio model": [ + "3.17.2" + ], + "studio website": [ + "3.17.4" + ], + "stuff": [ + "3.22.17" + ], + "style cultural studies": [ + "3.2.0" + ], + "subjective bergsonian time": [ + "3.24.8" + ], + "subjective experiences": [ + "3.22.9" + ], + "submission": [ + "3.7.2", + "3.7.5" + ], + "subsequently accepted": [ + "3.8.0" + ], + "subversion": [ + "3.3.0" + ], + "successful cultural virus": [ + "3.2.0" + ], + "successful network effects": [ + "3.20.0" + ], + "successive swarm attacks": [ + "3.7.0" + ], + "sudden toxification": [ + "3.22.23" + ], + "suddenly": [ + "3.19.3" + ], + "suddenly stops.": [ + "3.19.3" + ], + "sufficiently developed imho": [ + "3.7.6" + ], + "suggest": [ + "3.6.0", + "3.6.2", + "3.19.5" + ], + "suited": [ + "3.16.1" + ], + "sullivan or elvis": [ + "3.19.6" + ], + "sumerian civilization": [ + "3.20.0" + ], + "sumerian road system": [ + "3.20.0", + "3.20.0" + ], + "summer body": [ + "3.22.19" + ], + "summer holidays": [ + "3.15.0-p.179" + ], + "summer shoes cleaned": [ + "3.15.0-p.179" + ], + "summing": [ + "3.22.29" + ], + "summing of past": [ + "3.22.29" + ], + "sunk into oblivion": [ + "3.22.14" + ], + "supposed lack thereof": [ + "3.6.0" + ], + "supposedly egalitarian systems": [ + "3.7.9" + ], + "supposedly occupied": [ + "3.7.9" + ], + "suprematist shulgin parodied": [ + "3.24.1" + ], + "surely": [ + "3.15.0" + ], + "surfing": [ + "3.9.0" + ], + "surplus": [ + "3.3.0" + ], + "surprised": [ + "3.7.2", + "3.7.5" + ], + "surprised you persist": [ + "3.7.2" + ], + "surrender monkey position": [ + "3.12.2" + ], + "survivors fled south": [ + "3.22.2" + ], + "suspects": [ + "3.22.17" + ], + "sustaining media": [ + "3.2.0" + ], + "suzanne fuks": [ + "3.4.2" + ], + "swansea": [ + "3.17.3" + ], + "swansea teaching": [ + "3.17.3" + ], + "swansea to discuss": [ + "3.17.1" + ], + "swarm": [ + "3.7.0" + ], + "swarming": [ + "3.7.0" + ], + "swinging": [ + "3.19.1" + ], + "swiping left": [ + "3.22.19" + ], + "sylv=e8re lotringer": [ + "3.3.0" + ], + "synchronous optical network": [ + "3.8.0" + ], + "synchrony neighbour interaction": [ + "3.7.8" + ], + "syndicate": [ + "3.15.0-p.179", + "3.19.1-p.182" + ], + "system": [ + "3.1.0", + "3.2.0", + "3.7.4", + "3.7.9", + "3.7.11", + "3.20.0" + ], + "system he built": [ + "3.22.28" + ], + "system of blackboard": [ + "3.17.4" + ], + "systems": [ + "3.5.1", + "3.6.0", + "3.6.3", + "3.7.4", + "3.20.0" + ], + "systems of control": [ + "3.5.2" + ], + "systems theory": [ + "3.14.0" + ], + "systems theory correspond": [ + "3.2.0" + ], + "séance filliou": [ + "3.17.3", + "3.17.3" + ], + "tacit": [ + "3.7.8", + "3.7.9" + ], + "tacit knowledge": [ + "3.7.8", + "3.7.9" + ], + "tacit knowledge encourages": [ + "3.7.8" + ], + "tactical": [ + "3.2.0" + ], + "tactical magick faerie": [ + "3.22.19" + ], + "tactical media": [ + "3.2.0", + "3.2.0", + "3.4.2", + "3.4.2", + "3.13.1" + ], + "tactical media activism": [ + "3.2.0" + ], + "tactical media campaigns": [ + "3.2.0" + ], + "tactical media concerns": [ + "3.2.0" + ], + "tactical media departs": [ + "3.2.0" + ], + "tactical media emerge": [ + "3.2.0" + ], + "tactical media note": [ + "3.2.0", + "3.2.0" + ], + "tactical media play": [ + "3.2.0" + ], + "tactical media run": [ + "3.2.0" + ], + "tactical reality dictionary": [ + "3.2.0" + ], + "tactics": [ + "3.15.0" + ], + "tail": [ + "3.22.12" + ], + "tail end": [ + "3.22.12" + ], + "takes art institutions": [ + "3.24.8" + ], + "taking": [ + "3.22.4" + ], + "taking racial": [ + "3.22.4" + ], + "taking subjective tolls": [ + "3.0.0", + "3.1.0" + ], + "talk": [ + "3.22.3", + "3.22.30" + ], + "talk compels": [ + "3.22.3" + ], + "talking": [ + "3.12.4" + ], + "talking a bit": [ + "3.12.4" + ], + "talks": [ + "3.4.3" + ], + "talks about making": [ + "3.4.3" + ], + "tape": [ + "3.10.0" + ], + "tape or blu-tack": [ + "3.10.0" + ], + "tape-beatles": [ + "3.20.0-p.183" + ], + "tapes tended": [ + "3.8.0" + ], + "tapespondence’ networks": [ + "3.19.6" + ], + "taro myco-logick": [ + "3.22.25" + ], + "tate": [ + "3.16.3" + ], + "tate gallery": [ + "3.16.3" + ], + "tate site informed": [ + "3.24.2" + ], + "tatiana bazzichelli": [ + "3.19.7" + ], + "tcp/ip networking suite": [ + "3.8.0" + ], + "teaching and learning": [ + "3.17.2" + ], + "teaching open": [ + "3.17.0" + ], + "teaching open source": [ + "3.17.0" + ], + "teaching to give": [ + "3.18.2-p.181" + ], + "tech": [ + "3.15.0" + ], + "technical": [ + "3.7.2" + ], + "technical activities": [ + "3.8.0" + ], + "technical protocols": [ + "3.7.2" + ], + "technical standards": [ + "3.8.0" + ], + "techniques employees neither": [ + "3.21.0-p.183" + ], + "technocratic elite toils": [ + "3.8.0" + ], + "technocratic ruling class": [ + "3.8.0" + ], + "technological advanced equipment": [ + "3.19.0" + ], + "technological innovation based": [ + "3.8.0" + ], + "technological sphere": [ + "3.5.0" + ], + "technological standards": [ + "3.8.0" + ], + "technologies including magnetics": [ + "3.8.0" + ], + "technologies rarely seen": [ + "3.5.0" + ], + "technologies ³cultural": [ + "3.24.1" + ], + "technology": [ + "3.5.4", + "3.22.28", + "3.24.6" + ], + "technology art": [ + "3.24.6" + ], + "technology art ghetto": [ + "3.24.6", + "3.24.6" + ], + "technopoetic arms": [ + "3.22.31" + ], + "telecommunications operate": [ + "3.6.0" + ], + "telegraphy transmitted code": [ + "3.2.0" + ], + "telepathic music": [ + "3.17.3" + ], + "telephone network": [ + "3.20.0" + ], + "television networks": [ + "3.19.6" + ], + "teller": [ + "3.12.5" + ], + "telling to revisit": [ + "3.12.5" + ], + "temporarily assist users": [ + "3.25.0" + ], + "temporarily suspended": [ + "3.25.0" + ], + "temporary autonomous zone": [ + "3.2.0" + ], + "temporary autonomous zones": [ + "3.2.0" + ], + "tempted": [ + "3.15.1", + "3.18.3" + ], + "tend": [ + "3.7.8" + ], + "tended": [ + "3.7.3" + ], + "tentative notes": [ + "3.21.0" + ], + "teo": [ + "3.24.7" + ], + "teo spiller": [ + "3.24.7" + ], + "terence": [ + "3.22.23" + ], + "terence mckenna": [ + "3.22.23" + ], + "term excommunication": [ + "3.11.0" + ], + "term social capital": [ + "3.2.0" + ], + "term “artist curator”": [ + "3.19.1" + ], + "terminology in english": [ + "3.22.5" + ], + "terms": [ + "3.7.10", + "3.12.2", + "3.18.1" + ], + "terms lebel": [ + "3.17.3" + ], + "terms of vertical": [ + "3.7.10" + ], + "territory": [ + "3.22.10" + ], + "test": [ + "3.25.1", + "3.25.2" + ], + "testing": [ + "3.22.3" + ], + "testing kerri anne": [ + "3.22.3" + ], + "text": [ + "3.16.0-p.179", + "3.17.0-p.180", + "3.18.0-p.180", + "3.18.2-p.181", + "3.19.0-p.182", + "3.22.5", + "3.22.33" + ], + "text based": [ + "3.22.27" + ], + "text based forever": [ + "3.22.27", + "3.22.27" + ], + "text by galloway": [ + "3.6.3" + ], + "texts": [ + "3.9.1" + ], + "texts mentioned": [ + "3.9.1" + ], + "thacker": [ + "3.5.1", + "3.6.2", + "3.6.3", + "3.9.0" + ], + "thacker on rhizome": [ + "3.6.3" + ], + "thacker wrote": [ + "3.6.2" + ], + "thanks shu lea": [ + "3.22.7", + "3.22.13" + ], + "thankyou": [ + "3.21.0" + ], + "thankyou roddy": [ + "3.21.0" + ], + "theatre": [ + "3.22.26" + ], + "theatre work": [ + "3.22.26" + ], + "theft": [ + "3.5.4" + ], + "theme": [ + "3.16.0" + ], + "themes shu lea": [ + "3.22.20" + ], + "themselves jam packed": [ + "3.19.6" + ], + "theological": [ + "3.11.0", + "3.12.4" + ], + "theological intersections": [ + "3.12.4" + ], + "theologically implicit word": [ + "3.12.4" + ], + "theoretical": [ + "3.12.2", + "3.12.3", + "3.18.4", + "3.22.24" + ], + "theoretical cul": [ + "3.12.3" + ], + "theoretical dissipation": [ + "3.12.3" + ], + "theoretical legacies'": [ + "3.18.4" + ], + "theoretical legacies' essay": [ + "3.18.4" + ], + "theoretical products reaching": [ + "3.12.3" + ], + "theoretical work": [ + "3.18.4" + ], + "theoretical writing": [ + "3.22.24" + ], + "theoreticians": [ + "3.5.2" + ], + "theorics": [ + "3.7.12" + ], + "theorist": [ + "3.12.5" + ], + "theory after snowden": [ + "3.9.0" + ], + "theory in listening": [ + "3.12.4" + ], + "theory paper make": [ + "3.25.0" + ], + "thesis": [ + "3.22.13" + ], + "thesis defense": [ + "3.22.13" + ], + "thin these days": [ + "3.22.20" + ], + "thing": [ + "3.1.0", + "3.6.1", + "3.15.0", + "3.16.1", + "3.22.13", + "3.22.20" + ], + "things": [ + "3.15.0", + "3.17.1", + "3.19.3" + ], + "things hacked": [ + "3.15.0" + ], + "things intentionally": [ + "3.15.0" + ], + "things intentionally created": [ + "3.15.0" + ], + "things just happen": [ + "3.18.2" + ], + "things randall": [ + "3.17.1" + ], + "things randall mentioned": [ + "3.17.1" + ], + "thinking": [ + "3.12.2", + "3.22.13" + ], + "thinking about jacqueline": [ + "3.22.13" + ], + "thomas bergin": [ + "3.8.0" + ], + "thought": [ + "3.3.0", + "3.18.1-p.181", + "3.22.6" + ], + "thoughts": [ + "3.12.4", + "3.24.6" + ], + "thoughts rhyme": [ + "3.22.29" + ], + "thoughts were running": [ + "3.12.4" + ], + "thousand lonely hearts": [ + "3.0.0", + "3.1.0" + ], + "thousand plateaus": [ + "3.7.11" + ], + "thousands": [ + "3.22.17" + ], + "thousands of email": [ + "3.22.17" + ], + "thread": [ + "3.22.4", + "3.22.6" + ], + "thread is taking": [ + "3.22.4" + ], + "threadlike underground": [ + "3.22.6" + ], + "threadlike underground mycelium": [ + "3.22.6", + "3.22.6" + ], + "threads": [ + "3.22.13", + "3.22.14", + "3.22.27" + ], + "threads entangled": [ + "3.22.27" + ], + "threads entangled deeper": [ + "3.22.27", + "3.22.27" + ], + "throughout history function": [ + "3.2.0" + ], + "throws": [ + "3.22.24" + ], + "thu": [ + "3.22.29" + ], + "ties": [ + "3.7.4" + ], + "time": [ + "3.0.0", + "3.1.0", + "3.7.0", + "3.7.1", + "3.7.8", + "3.15.0", + "3.15.0-p.179", + "3.16.3", + "3.18.1", + "3.18.1-p.181", + "3.18.3-p.181", + "3.19.1-p.182", + "3.19.6", + "3.22.23", + "3.22.27", + "3.22.32", + "3.24.1", + "3.24.8" + ], + "time accessing listserve": [ + "3.22.14" + ], + "time ago": [ + "3.18.3-p.181" + ], + "time and place": [ + "3.18.0" + ], + "time artists": [ + "3.24.1" + ], + "time artists working": [ + "3.24.1" + ], + "time detection systems": [ + "3.5.0" + ], + "time of cosic": [ + "3.19.7" + ], + "times": [ + "3.1.0", + "3.22.13" + ], + "times published": [ + "3.16.0-p.179", + "3.16.0-p.179" + ], + "tiny": [ + "3.7.12" + ], + "tiny bit mexican": [ + "3.22.0" + ], + "tiny brass key": [ + "3.22.32" + ], + "tiny correction": [ + "3.7.12" + ], + "tip my hat": [ + "3.16.1" + ], + "title=gamer_theory&action=edit&redlink=1>/": [ + "3.22.12" + ], + "titled": [ + "3.20.0" + ], + "today": [ + "3.4.2", + "3.12.2" + ], + "today networked": [ + "3.24.0" + ], + "today networked culture": [ + "3.24.0" + ], + "todays event": [ + "3.18.2" + ], + "toilet": [ + "3.15.0-p.179" + ], + "toilet bowls": [ + "3.15.0-p.179" + ], + "toilet network": [ + "3.15.0-p.179" + ], + "told": [ + "3.22.4" + ], + "tom leeser": [ + "3.17.4" + ], + "tools": [ + "3.4.2", + "3.22.15", + "3.25.1", + "3.25.3" + ], + "tools developed": [ + "3.22.15" + ], + "topics": [ + "3.4.0" + ], + "topics of networks": [ + "3.4.0" + ], + "topics.": [ + "3.22.3" + ], + "topological tools": [ + "3.14.0" + ], + "topology point": [ + "3.14.0" + ], + "tor": [ + "3.22.15" + ], + "tor the link": [ + "3.22.15" + ], + "toronto": [ + "3.19.6" + ], + "total": [ + "3.13.0" + ], + "total penetration": [ + "3.13.0" + ], + "total penetration theory": [ + "3.13.0", + "3.13.0" + ], + "totality": [ + "3.15.0" + ], + "totalizing control": [ + "3.5.1" + ], + "totalizing control apparatus": [ + "3.5.1", + "3.5.1" + ], + "totalizing control system": [ + "3.5.1", + "3.5.1" + ], + "totally displaced geographically": [ + "3.22.4" + ], + "towards culture": [ + "3.25.0" + ], + "toxins buried deep": [ + "3.12.5" + ], + "tracing the spource": [ + "3.18.2-p.181" + ], + "track exposes": [ + "3.8.0" + ], + "tracks mexico": [ + "3.22.25" + ], + "tracks mexico drug": [ + "3.22.25" + ], + "traditional education sector": [ + "3.2.0" + ], + "traditional institutional structures": [ + "3.2.0" + ], + "traditional organisations allow": [ + "3.7.3" + ], + "trans disciplinary tools": [ + "3.14.0" + ], + "transcendent": [ + "3.7.9" + ], + "transcendent levels": [ + "3.7.9" + ], + "transcendent power": [ + "3.7.6" + ], + "transdisciplinarity": [ + "3.24.4", + "3.24.5" + ], + "transdisciplinarity are reflections": [ + "3.24.4", + "3.24.5" + ], + "transductive forces subsist": [ + "3.2.0" + ], + "transfer protocol": [ + "3.8.0" + ], + "transform": [ + "3.22.13", + "3.25.1", + "3.25.2" + ], + "transformation including": [ + "3.25.3" + ], + "transition": [ + "3.24.4" + ], + "transition to network": [ + "3.24.4", + "3.24.5" + ], + "transmediale festival": [ + "3.4.0" + ], + "transportation systems": [ + "3.7.4" + ], + "transversing discipline": [ + "3.14.0" + ], + "travel the art": [ + "3.21.0-p.183" + ], + "travelling": [ + "3.18.2" + ], + "travelling back": [ + "3.18.2" + ], + "travelling back form": [ + "3.18.2" + ], + "tree": [ + "3.22.8", + "3.22.11" + ], + "trees": [ + "3.22.9", + "3.22.11", + "3.25.3" + ], + "trees and hierarchies": [ + "3.22.8" + ], + "trees grounding": [ + "3.22.11" + ], + "tres grand projects": [ + "3.0.0", + "3.1.0" + ], + "tribal": [ + "3.22.2" + ], + "tribal investments": [ + "3.22.2" + ], + "tribal politics due": [ + "3.22.2" + ], + "trust": [ + "3.13.2" + ], + "turism art": [ + "3.21.0-p.183" + ], + "turner prize": [ + "3.24.2" + ], + "turner prize winner": [ + "3.24.1" + ], + "turns": [ + "3.15.1" + ], + "turns projects": [ + "3.15.1" + ], + "twentieth century": [ + "3.7.9" + ], + "twentieth century fascists": [ + "3.7.9" + ], + "twist": [ + "3.22.4" + ], + "twitter": [ + "3.24.3" + ], + "txt from c-front": [ + "3.15.0-p.179" + ], + "types": [ + "3.7.4" + ], + "ubu chez matrix": [ + "3.7.12" + ], + "ubu classics url": [ + "3.16.1", + "3.16.1" + ], + "uc santa cruz": [ + "3.12.1" + ], + "uk/emergence%20by%20paul%20o": [ + "3.19.1" + ], + "ultimate controlling mechanism": [ + "3.6.2" + ], + "umi research": [ + "3.19.1" + ], + "umi research press": [ + "3.19.1", + "3.19.1" + ], + "un réseau": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "unavoidable mediation": [ + "3.0.0" + ], + "unaware": [ + "3.22.1" + ], + "unaware self parodies": [ + "3.22.1" + ], + "uncool": [ + "3.24.4", + "3.24.5" + ], + "underground": [ + "3.22.4", + "3.22.6", + "3.22.30" + ], + "underground mycelium": [ + "3.22.6" + ], + "underground network": [ + "3.22.6" + ], + "underground networks": [ + "3.22.8" + ], + "underground railroad": [ + "3.22.4" + ], + "underground theatre": [ + "3.22.26" + ], + "underground theatre work": [ + "3.22.26" + ], + "understand": [ + "3.13.2", + "3.19.0", + "3.22.0" + ], + "understand communication using": [ + "3.19.0" + ], + "understand robots": [ + "3.13.2" + ], + "understand the non-human": [ + "3.13.1" + ], + "understandable": [ + "3.22.24" + ], + "understandable ken": [ + "3.22.24" + ], + "understanding media theory": [ + "3.12.0", + "3.12.0" + ], + "understands": [ + "3.22.28" + ], + "une chose en": [ + "3.18.0-p.180" + ], + "unexpected": [ + "3.22.6" + ], + "unexpected direction": [ + "3.22.6", + "3.22.6" + ], + "unexpected direction shouldn": [ + "3.22.6" + ], + "unexpected twist": [ + "3.22.4" + ], + "unique human": [ + "3.21.1" + ], + "unique human subject": [ + "3.21.1" + ], + "universal consistencies": [ + "3.8.0" + ], + "universal law": [ + "3.7.9" + ], + "universal resource identifier": [ + "3.8.0" + ], + "universal resource identifiers": [ + "3.8.0" + ], + "universal space": [ + "3.4.3" + ], + "universe": [ + "3.22.9" + ], + "university": [ + "3.2.0", + "3.16.0", + "3.16.3" + ], + "university distinguished professor": [ + "3.16.0", + "3.16.0" + ], + "university hong": [ + "3.21.0" + ], + "university hong kong": [ + "3.21.0" + ], + "university of east": [ + "3.18.4" + ], + "university press": [ + "3.2.0" + ], + "unix operating system": [ + "3.8.0" + ], + "unknown": [ + "3.22.5" + ], + "unmarried working class": [ + "3.22.3" + ], + "unplug": [ + "3.6.1" + ], + "unpopular culture gained": [ + "3.19.6" + ], + "unstructured and spontaneous": [ + "3.22.6" + ], + "unsubscribe": [ + "3.19.1-p.182" + ], + "unsubscribe-text": [ + "3.18.0-p.180" + ], + "unusual pattern": [ + "3.13.0" + ], + "upper austria": [ + "3.22.5" + ], + "urbanistic ones et": [ + "3.19.1-p.182" + ], + "urgent and fascinating": [ + "3.22.7" + ], + "urinal": [ + "3.5.2" + ], + "url": [ + "3.25.0" + ], + "usa": [ + "3.22.2", + "3.22.5" + ], + "usa key military": [ + "3.9.1" + ], + "usage": [ + "3.12.4" + ], + "useful nevertheless": [ + "3.8.0" + ], + "useful operating system": [ + "3.8.0" + ], + "usenet": [ + "3.22.21" + ], + "using various protocols": [ + "3.5.0" + ], + "usual": [ + "3.22.17" + ], + "usual suspects": [ + "3.22.17" + ], + "utilize varied": [ + "3.4.2" + ], + "utilize varied tools": [ + "3.4.2", + "3.4.2" + ], + "utopian": [ + "3.12.2" + ], + "utopian system": [ + "3.9.1" + ], + "utopian thinking": [ + "3.12.2", + "3.12.2" + ], + "utterly sophomoric": [ + "3.22.2" + ], + "vald": [ + "3.7.12" + ], + "vald=e9s wrote": [ + "3.7.12" + ], + "vampire spam artists": [ + "3.15.0-p.179" + ], + "vancouver": [ + "3.19.6" + ], + "vancouver or toronto": [ + "3.19.6" + ], + "variables": [ + "3.7.10" + ], + "varied tools": [ + "3.4.2" + ], + "various centres": [ + "3.2.0" + ], + "various empyre threads": [ + "3.15.0" + ], + "various research centres": [ + "3.2.0" + ], + "various standards bodies": [ + "3.8.0" + ], + "varnelis": [ + "3.24.1" + ], + "varnelis¹s essay": [ + "3.24.1" + ], + "varnelis¹s piece attempts": [ + "3.24.1" + ], + "vast dark expanse": [ + "3.22.32" + ], + "vast genetic network": [ + "3.22.0", + "3.22.0", + "3.22.19" + ], + "vautier": [ + "3.19.0-p.182" + ], + "vautier work": [ + "3.19.0-p.182" + ], + "vautier work called": [ + "3.19.0-p.182" + ], + "vectoralist class": [ + "3.22.22" + ], + "venetian blind": [ + "3.22.19" + ], + "verifiable data analysis": [ + "3.22.2" + ], + "veritable aesthetic battle": [ + "3.7.0" + ], + "verso": [ + "3.22.12" + ], + "vertical": [ + "3.7.10", + "3.22.8" + ], + "vertical space": [ + "3.22.8" + ], + "vertical space doesn": [ + "3.22.8" + ], + "vertically integrated american": [ + "3.7.6" + ], + "vertically integrated hierarchies": [ + "3.7.1" + ], + "vhs tape allowed": [ + "3.8.0" + ], + "vhs tape manufacturing": [ + "3.8.0" + ], + "via gilbert simondon": [ + "3.2.0" + ], + "via negativa": [ + "3.15.0" + ], + "via political appointments": [ + "3.7.4" + ], + "via robert filliou": [ + "3.20.0-p.183" + ], + "video arts": [ + "3.24.1" + ], + "viennese mattress leaning": [ + "3.22.32" + ], + "view": [ + "3.10.1" + ], + "views were shared": [ + "3.22.29" + ], + "vigorous reaction": [ + "3.13.0" + ], + "vint cerf observes": [ + "3.8.0" + ], + "vinton cerf": [ + "3.8.0" + ], + "virginia": [ + "3.22.25" + ], + "virginia barratt": [ + "3.22.12" + ], + "virginia garden": [ + "3.22.25" + ], + "virginia garden tips.": [ + "3.22.25" + ], + "virno": [ + "3.3.0" + ], + "virno non-representational democracy": [ + "3.3.0" + ], + "virtual": [ + "3.0.0", + "3.22.10" + ], + "virtual community": [ + "3.0.0" + ], + "virtual networks": [ + "3.22.10" + ], + "virtual space": [ + "3.17.3" + ], + "virtual space similar": [ + "3.17.3" + ], + "virtues include robustness": [ + "3.5.0" + ], + "visible social movements": [ + "3.2.0" + ], + "visited the dogon": [ + "3.17.1" + ], + "visiting researcher": [ + "3.16.0" + ], + "vital importance": [ + "3.1.0" + ], + "vital protocol": [ + "3.5.2" + ], + "vladimir putin": [ + "3.9.1" + ], + "vladimir putin recently": [ + "3.9.1" + ], + "vns matrix": [ + "3.22.12" + ], + "vocally poetic": [ + "3.22.31" + ], + "wage labour insofar": [ + "3.3.0" + ], + "waiting for clive": [ + "3.21.1" + ], + "wales": [ + "3.17.1" + ], + "walkers": [ + "3.22.17" + ], + "walkers in darkness": [ + "3.22.17" + ], + "wallaby track lies": [ + "3.22.32" + ], + "walter cronkite": [ + "3.19.6" + ], + "walter ong": [ + "3.7.8" + ], + "wanted": [ + "3.11.0", + "3.19.2" + ], + "wanted to make": [ + "3.24.2" + ], + "war": [ + "3.9.1" + ], + "war border cities": [ + "3.24.1" + ], + "war machines approaching": [ + "3.22.9" + ], + "wark": [ + "3.9.0" + ], + "wark wrote": [ + "3.10.1" + ], + "warkk": [ + "3.22.14" + ], + "warrant special attention": [ + "3.8.0" + ], + "warren": [ + "3.22.15" + ], + "warren of massachusetts": [ + "3.22.1" + ], + "warren sack": [ + "3.22.15" + ], + "watching dogs speaking": [ + "3.19.6" + ], + "waters": [ + "3.22.16" + ], + "watershed moments": [ + "3.13.0" + ], + "weakened institutional environment": [ + "3.7.0" + ], + "wealth and poverty": [ + "3.20.0" + ], + "weather": [ + "3.17.1" + ], + "weather luck": [ + "3.17.1" + ], + "weaving the history": [ + "3.22.28" + ], + "web": [ + "3.4.1", + "3.6.0", + "3.8.0", + "3.22.9", + "3.24.0", + "3.24.3" + ], + "web art": [ + "3.21.0-p.183" + ], + "web work": [ + "3.22.14" + ], + "web.art in comparison": [ + "3.21.0-p.183" + ], + "website management": [ + "3.2.0" + ], + "wednesday": [ + "3.7.5" + ], + "week": [ + "3.19.1", + "3.22.12" + ], + "weeks": [ + "3.22.14", + "3.22.29" + ], + "weight online": [ + "3.4.0" + ], + "weighted": [ + "3.7.10" + ], + "welcome contributions": [ + "3.19.4" + ], + "wesleyan university press": [ + "3.16.3" + ], + "west european": [ + "3.22.0" + ], + "western european": [ + "3.22.3" + ], + "westview press": [ + "3.2.0" + ], + "whilst putin": [ + "3.9.1" + ], + "whilst putin comment": [ + "3.9.1" + ], + "whimsical artistic fashions": [ + "3.21.0-p.183" + ], + "white": [ + "3.22.1" + ], + "white family": [ + "3.22.1", + "3.22.1" + ], + "white population": [ + "3.22.1" + ], + "white population believes": [ + "3.22.1" + ], + "whites": [ + "3.22.1" + ], + "wide web": [ + "3.22.9" + ], + "wikipedia": [ + "3.13.1" + ], + "williams": [ + "3.18.1" + ], + "winning turner prize": [ + "3.24.2" + ], + "wiping sweat": [ + "3.22.19" + ], + "wired": [ + "3.0.0" + ], + "wired gary wolf": [ + "3.0.0" + ], + "wireless telephony": [ + "3.8.0" + ], + "wisdom": [ + "3.1.0" + ], + "wish thank roddy": [ + "3.16.3" + ], + "wishes": [ + "3.19.4" + ], + "wishes roddy": [ + "3.19.4" + ], + "wishes wolf": [ + "3.18.2-p.181" + ], + "withdrawal": [ + "3.12.1", + "3.12.2" + ], + "withnodocentric visualizations": [ + "3.4.2" + ], + "witness silently": [ + "3.22.31" + ], + "witness silently mute": [ + "3.22.31" + ], + "wizout cellphone deep": [ + "3.7.12" + ], + "wolf": [ + "3.18.0-p.180", + "3.18.1-p.181", + "3.18.3-p.181" + ], + "women": [ + "3.19.0", + "3.22.28" + ], + "women ’s fingers": [ + "3.22.28" + ], + "wonderful artwork": [ + "3.18.2" + ], + "wonderful nancy mauro": [ + "3.22.19" + ], + "wondering": [ + "3.19.3", + "3.19.5" + ], + "wondering aloud": [ + "3.19.5" + ], + "wood wide web": [ + "3.22.9", + "3.22.9" + ], + "word": [ + "3.5.1", + "3.5.3", + "3.7.2", + "3.7.8", + "3.12.4", + "3.18.1", + "3.19.0" + ], + "word american recurrs": [ + "3.7.6" + ], + "word care taking": [ + "3.19.0" + ], + "word derived": [ + "3.5.3" + ], + "word excommunication": [ + "3.12.4" + ], + "wordings": [ + "3.6.3" + ], + "words": [ + "3.7.2", + "3.7.5", + "3.18.0-p.180", + "3.22.7" + ], + "words/ideas/projects via empyre": [ + "3.22.32" + ], + "work": [ + "3.6.3", + "3.7.7", + "3.18.1", + "3.18.4", + "3.19.0", + "3.19.4", + "3.20.0", + "3.21.0", + "3.22.14", + "3.22.22", + "3.22.26", + "3.24.1", + "3.24.2", + "3.24.8", + "3.25.1" + ], + "work in progress": [ + "3.22.5" + ], + "work of marc": [ + "3.17.2" + ], + "work of stuart": [ + "3.13.1" + ], + "work otherwise.": [ + "3.22.22" + ], + "working": [ + "3.6.3", + "3.7.7", + "3.22.15", + "3.24.5", + "3.24.7" + ], + "working a lot": [ + "3.7.7" + ], + "working class woman": [ + "3.22.3" + ], + "working with nettime.org": [ + "3.22.15" + ], + "works": [ + "3.18.0-p.180", + "3.20.0", + "3.22.22", + "3.24.2" + ], + "works through exclusion": [ + "3.7.12" + ], + "workshop at foam": [ + "3.22.25" + ], + "world": [ + "3.1.0", + "3.7.0", + "3.7.1", + "3.7.6", + "3.7.8", + "3.11.0", + "3.12.0", + "3.12.1", + "3.16.1", + "3.21.0-p.183", + "3.22.23", + "3.22.28", + "3.24.2", + "3.24.6" + ], + "world defined": [ + "3.7.2" + ], + "world history useful": [ + "3.20.0" + ], + "world is fairly": [ + "3.22.20" + ], + "world market": [ + "3.7.0" + ], + "world network": [ + "3.7.0" + ], + "world wide web": [ + "3.8.0", + "3.20.0", + "3.20.0" + ], + "worlds": [ + "3.7.0" + ], + "worlds opening": [ + "3.11.0" + ], + "worm in rotterdam": [ + "3.12.5" + ], + "worthy gutenberg project": [ + "3.25.0" + ], + "write": [ + "3.20.0-p.183", + "3.22.13", + "3.24.2" + ], + "write left": [ + "3.22.19" + ], + "write left alt": [ + "3.22.19" + ], + "writing": [ + "3.18.3-p.181", + "3.22.24", + "3.24.2" + ], + "writing other places": [ + "3.22.24" + ], + "wrong": [ + "3.25.3" + ], + "wrong answer": [ + "3.25.3" + ], + "wrong tools": [ + "3.25.1" + ], + "wrote": [ + "3.4.3", + "3.7.3", + "3.7.4", + "3.7.5", + "3.7.11", + "3.7.12", + "3.13.1", + "3.13.2", + "3.18.0", + "3.18.3-p.181", + "3.19.1-p.182", + "3.22.26", + "3.22.29", + "3.24.5", + "3.25.1", + "3.25.2" + ], + "wrote dalai": [ + "3.18.3-p.181" + ], + "wrote dalai lama": [ + "3.18.3-p.181", + "3.18.3-p.181" + ], + "wrote in relationships": [ + "3.13.2" + ], + "wwii mainframe computing": [ + "3.5.0", + "3.5.1" + ], + "year long workshop": [ + "3.7.7" + ], + "years": [ + "3.0.0", + "3.1.0", + "3.14.1" + ], + "years back": [ + "3.14.1" + ], + "yesterday": [ + "3.22.13" + ], + "york city": [ + "3.22.12" + ], + "york correspondence school": [ + "3.17.0-p.180", + "3.17.0-p.180", + "3.19.0-p.182", + "3.19.0-p.182" + ], + "young artists'": [ + "3.17.3" + ], + "young artists' club": [ + "3.17.3" + ], + "young unmarried working": [ + "3.22.3" + ], + "yourself equipment creating": [ + "3.2.0" + ], + "yourself projects": [ + "3.0.0", + "3.1.0" + ], + "youtube": [ + "3.19.2" + ], + "youtube webcam videos": [ + "3.24.2" + ], + "zagreb": [ + "3.19.5" + ], + "zine photostatic": [ + "3.20.0-p.183" + ], + "zis puritan noosphee": [ + "3.7.12" + ], + "zone books": [ + "3.2.0" + ], + "zuch dried": [ + "3.7.12" + ], + "zuch dried bar": [ + "3.7.12" + ], + "zuckerberg": [ + "3.12.2" + ], + "³new media² remains": [ + "3.13.2" + ], + "—vint cerf": [ + "3.8.0" + ], + "‘cultural studies": [ + "3.18.4" + ], + "‘la fête permanent": [ + "3.19.7" + ], + "‘omaha flow systems": [ + "3.19.7" + ], + "’ve": [ + "3.22.6" + ], + "“common practice” initiated": [ + "3.21.0" + ], + "“cultural studies": [ + "3.18.0" + ], + "“ideals die” totally": [ + "3.19.7" + ], + "“networked forms”": [ + "3.4.3" + ], + "“real” profile pic": [ + "3.4.2" + ], + "“real” spaces": [ + "3.4.2" + ], + "“reticular pessimism": [ + "3.12.2" + ], + "” lovink responds": [ + "3.9.0" + ] + }, + "selected": { + "ad hoc networking": [ + "3.6.0", + "3.6.1", + "3.6.2" + ], + "afro-pessimism": [ + "3.12.2" + ], + "anarchist collective": [ + "3.7.7" + ], + "art criticism": [ + "3.24.8" + ], + "art ghetto": [ + "3.24.5", + "3.24.5", + "3.24.6", + "3.24.6" + ], + "ascii art": [ + "3.20.0-p.183" + ], + "avant-garde": [ + "3.18.3" + ], + "brecht": [ + "3.16.0-p.179" + ], + "control apparatus": [ + "3.5.1" + ], + "cornelius castoriadis": [ + "3.7.7", + "3.7.12" + ], + "creative commons license": [ + "3.2.0", + "3.21.1" + ], + "critical art ensemble": [ + "3.12.0", + "3.12.0" + ], + "cultural studies": [ + "3.2.0", + "3.18.0", + "3.18.0", + "3.18.4", + "3.18.4" + ], + "curatorial tactics": [ + "3.19.1" + ], + "dead media": [ + "3.22.19" + ], + "decentralised network": [ + "3.19.1" + ], + "deleuze and guattari": [ + "3.7.11", + "3.22.6", + "3.22.11" + ], + "dick higgins": [ + "3.16.1" + ], + "diffraction": [ + "3.21.0" + ], + "digital publishing": [ + "3.19.2" + ], + "distributed networks": [ + "3.22.13" + ], + "donna haraway": [ + "3.21.0" + ], + "duchamp": [ + "3.18.3", + "3.24.6" + ], + "dutch net culture": [ + "3.24.5", + "3.24.5" + ], + "electronic mail": [ + "3.21.0-p.183" + ], + "eternal network": [ + "3.15.0-p.179", + "3.16.0", + "3.16.0-p.179", + "3.16.1", + "3.17.0-p.180", + "3.17.0-p.180", + "3.18.0", + "3.18.0-p.180", + "3.18.1", + "3.18.3", + "3.19.0-p.182", + "3.19.0-p.182", + "3.19.6", + "3.20.0", + "3.20.0-p.183", + "3.21.1", + "3.21.1" + ], + "fluxus": [ + "3.16.2", + "3.19.0-p.182" + ], + "foucault": [ + "3.5.1", + "3.5.2", + "3.7.6" + ], + "guy debord": [ + "3.12.3" + ], + "györgy galántai": [ + "3.17.3", + "3.17.3" + ], + "hierarchies": [ + "3.7.2", + "3.7.4", + "3.7.5", + "3.7.10", + "3.22.8" + ], + "infrastructure": [ + "3.9.1" + ], + "intellectual property": [ + "3.2.0", + "3.21.1" + ], + "internet": [ + "3.0.0", + "3.2.0", + "3.5.1", + "3.6.0", + "3.6.2", + "3.7.4", + "3.7.12", + "3.8.0", + "3.9.1", + "3.10.0", + "3.19.0", + "3.25.3" + ], + "istvan kántor": [ + "3.17.3", + "3.17.3" + ], + "list cultures": [ + "3.2.0" + ], + "listserv": [ + "3.22.13" + ], + "lyotard": [ + "3.7.12" + ], + "mail art": [ + "3.17.0-p.180", + "3.17.0-p.180", + "3.19.0-p.182", + "3.20.0-p.183", + "3.21.0-p.183" + ], + "mailing list": [ + "3.2.0", + "3.15.0-p.179", + "3.22.27" + ], + "mailing lists": [ + "3.2.0", + "3.15.0-p.179", + "3.17.0-p.180", + "3.17.0-p.180", + "3.19.0-p.182", + "3.19.0-p.182" + ], + "marshall macluhan": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "media theory": [ + "3.2.0", + "3.9.0", + "3.12.0", + "3.12.1", + "3.13.1", + "3.22.12" + ], + "moderators": [ + "3.19.1-p.182" + ], + "mycelium": [ + "3.22.6", + "3.22.7", + "3.22.23", + "3.22.26", + "3.22.32" + ], + "network culture": [ + "3.20.0-p.183", + "3.24.0", + "3.24.4", + "3.24.5" + ], + "postal network": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "protocols": [ + "3.5.0", + "3.5.1", + "3.5.2", + "3.6.2", + "3.7.1", + "3.7.2", + "3.7.4", + "3.7.5", + "3.7.6", + "3.7.10", + "3.8.0" + ], + "radio art": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "raymond williams": [ + "3.18.0" + ], + "rhizome": [ + "3.6.3", + "3.22.21" + ], + "sadie plant": [ + "3.22.28", + "3.22.32" + ], + "scalable network": [ + "3.21.1" + ], + "self-organized": [ + "3.6.1" + ], + "situationist international": [ + "3.22.12", + "3.22.13", + "3.22.13", + "3.22.15" + ], + "snowden": [ + "3.9.0", + "3.11.0", + "3.12.0", + "3.15.0" + ], + "state of exception": [ + "3.5.4" + ], + "surfing the net": [ + "3.9.0" + ], + "telephone": [ + "3.20.0" + ], + "theory": [ + "3.7.8", + "3.7.9", + "3.9.0", + "3.12.1", + "3.12.2", + "3.18.1", + "3.22.12", + "3.22.22", + "3.25.3" + ], + "transmediale": [ + "3.4.0", + "3.19.2" + ], + "ubermorgen": [ + "3.22.5" + ], + "video art": [ + "3.17.0-p.180", + "3.19.0-p.182" + ], + "vint cerf": [ + "3.8.0" + ], + "viral media": [ + "3.12.0" + ], + "von neumann": [ + "3.12.2", + "3.12.3" + ], + "vuk cosic": [ + "3.24.1" + ], + "wolf kahlen": [ + "3.18.0-p.180" + ] + } +} \ No newline at end of file diff --git a/index/4.net.art-index.js b/index/4.net.art-index.js new file mode 100644 index 0000000..618b2cc --- /dev/null +++ b/index/4.net.art-index.js @@ -0,0 +1,9845 @@ +{ + "orphan": { + "+ 1 abs": [ + "4.8.22" + ], + "+ violent": [ + "4.8.22" + ], + "/~loosers ideology wasn": [ + "4.4.0-p.219" + ], + "02:15": [ + "4.11.1" + ], + "05:56": [ + "4.2.6" + ], + "10:21": [ + "4.7.3" + ], + "1993-1996": [ + "4.10.0" + ], + "1:25": [ + "4.11.0", + "4.11.3" + ], + "20th century avant": [ + "4.8.0-p.240" + ], + "20th century dictum": [ + "4.8.0-p.240" + ], + "21st century art": [ + "4.8.0-p.240" + ], + "2:56": [ + "4.2.9" + ], + "55 mailing list": [ + "4.2.9" + ], + "7-11": [ + "4.2.1" + ], + "7-11 mailing": [ + "4.2.1" + ], + "7-11 mailing list": [ + "4.2.1" + ], + "9:33": [ + "4.2.4" + ], + " defining net": [ + "4.10.3" + ], + "> >simon wrote": [ + "4.10.3" + ], + "> net art": [ + "4.8.11" + ], + "> uploaded soon": [ + "4.11.4" + ], + ">>cd rom exhibitions": [ + "4.10.0" + ], + ">earlier generation aconci": [ + "4.3.3" + ], + ">media arts section": [ + "4.6.0" + ], + ">receive poor application": [ + "4.6.0" + ], + ">throughout history": [ + "4.8.8" + ], + "_have to_ receive": [ + "4.5.3", + "4.5.5" + ], + "abromovich": [ + "4.3.3" + ], + "abromovich/uly etc": [ + "4.3.3" + ], + "absence relates purely": [ + "4.8.0" + ], + "absensence": [ + "4.2.0-p.211" + ], + "accepting no compromises": [ + "4.3.1" + ], + "accompanied debates": [ + "4.3.0" + ], + "account put": [ + "4.6.0" + ], + "aconci": [ + "4.3.3" + ], + "acoustic": [ + "4.4.10" + ], + "acoustic ecologies": [ + "4.4.10", + "4.4.10" + ], + "acoustic space": [ + "4.4.10" + ], + "acoustic space series": [ + "4.4.10", + "4.4.10" + ], + "acquisition": [ + "4.8.7" + ], + "acquisition of space": [ + "4.8.7" + ], + "act as nodes": [ + "4.8.15" + ], + "active cultural dissidents": [ + "4.0.0" + ], + "active discourse": [ + "4.8.0-p.240" + ], + "active research profiles": [ + "4.8.15" + ], + "activism": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4" + ], + "activist": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4", + "4.4.10" + ], + "activist led research": [ + "4.4.4", + "4.4.4" + ], + "activist practices": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4", + "4.4.10" + ], + "activist work": [ + "4.4.4" + ], + "activists": [ + "4.4.10" + ], + "activity": [ + "4.8.12" + ], + "activity to interviews": [ + "4.8.12" + ], + "actual": [ + "4.5.0", + "4.5.6" + ], + "actual information": [ + "4.5.0", + "4.5.2" + ], + "add": [ + "4.10.4" + ], + "addition": [ + "4.8.5" + ], + "administrators": [ + "4.11.0", + "4.11.1" + ], + "ador": [ + "4.8.12" + ], + "adrian": [ + "4.2.2", + "4.8.4" + ], + "adrian wrote": [ + "4.8.4" + ], + "adrianne wortzel": [ + "4.7.0" + ], + "aerodynamics + aesthetics": [ + "4.8.22" + ], + "afterwards artists themselves": [ + "4.2.0" + ], + "agatha": [ + "4.5.6" + ], + "agatha hopped": [ + "4.5.6" + ], + "age computer": [ + "4.10.1" + ], + "agendas": [ + "4.8.4" + ], + "ago": [ + "4.5.4", + "4.7.1" + ], + "ago i mailed": [ + "4.10.2" + ], + "ah network": [ + "4.10.5" + ], + "al media lab": [ + "4.11.1" + ], + "alexander": [ + "4.8.26" + ], + "alexander alberro": [ + "4.7.0" + ], + "alexander wrote": [ + "4.8.26" + ], + "alexei": [ + "4.3.2", + "4.3.4" + ], + "alexei shulgin": [ + "4.3.4" + ], + "alexej": [ + "4.5.7" + ], + "alexej shulgin": [ + "4.5.3", + "4.5.7" + ], + "alexey": [ + "4.3.2" + ], + "alledged political aims": [ + "4.7.0-p.228" + ], + "als gopher": [ + "4.9.0-p.243#2" + ], + "altogether true": [ + "4.3.3" + ], + "am actually posted": [ + "4.7.1" + ], + "am looking forward": [ + "4.10.5" + ], + "am woefully ignorant": [ + "4.4.12" + ], + "amaya browser": [ + "4.10.4" + ], + "amazing": [ + "4.2.2" + ], + "america online": [ + "4.10.2" + ], + "american": [ + "4.8.5" + ], + "american art discourse": [ + "4.8.0-p.240" + ], + "american artwork": [ + "4.8.5" + ], + "american cultural": [ + "4.8.0-p.240" + ], + "american economic traditions": [ + "4.8.0-p.240" + ], + "american express accounts": [ + "4.10.0" + ], + "american political": [ + "4.8.5" + ], + "american political/economic": [ + "4.8.5" + ], + "american status": [ + "4.8.5", + "4.8.5" + ], + "amerika": [ + "4.8.10", + "4.8.11" + ], + "amount": [ + "4.7.0-p.228" + ], + "amount of work": [ + "4.7.0-p.228" + ], + "amy": [ + "4.8.26" + ], + "amy alexander": [ + "4.8.26" + ], + "amy alexander wrote": [ + "4.8.26", + "4.8.26" + ], + "analyses": [ + "4.7.0-p.228" + ], + "anatol baginsky": [ + "4.10.1" + ], + "anna tsing": [ + "4.4.9" + ], + "announce death": [ + "4.8.12" + ], + "announcing": [ + "4.7.3" + ], + "announcing the theme": [ + "4.7.3" + ], + "answer": [ + "4.3.2", + "4.8.16" + ], + "antagonist": [ + "4.8.9" + ], + "anthologies": [ + "4.8.24" + ], + "anthologies about online": [ + "4.8.24" + ], + "anthology film archives": [ + "4.9.0-p.243#2" + ], + "anti": [ + "4.9.0" + ], + "anti nato": [ + "4.9.0" + ], + "anti nato protest": [ + "4.8.0-p.240", + "4.9.0", + "4.9.0" + ], + "antics and babbling": [ + "4.11.2" + ], + "antiorp": [ + "4.9.0" + ], + "apos digeridas": [ + "4.4.11" + ], + "approach": [ + "4.2.0", + "4.8.11", + "4.8.26" + ], + "approach net": [ + "4.8.11" + ], + "approach net art": [ + "4.8.11", + "4.8.11", + "4.8.17", + "4.8.17" + ], + "april": [ + "4.2.3" + ], + "ar moma intervention": [ + "4.4.2" + ], + "archeologists": [ + "4.11.4" + ], + "architectural": [ + "4.8.16" + ], + "archival": [ + "4.11.0" + ], + "archival material": [ + "4.2.4" + ], + "archive": [ + "4.2.2", + "4.2.4", + "4.11.1", + "4.11.2", + "4.11.4" + ], + "archive history": [ + "4.11.2" + ], + "archive lives": [ + "4.11.6" + ], + "archived": [ + "4.2.8", + "4.11.3" + ], + "archived a billion": [ + "4.11.2" + ], + "archives": [ + "4.2.2", + "4.2.4", + "4.2.8", + "4.11.1" + ], + "archives feel free": [ + "4.11.1", + "4.11.1" + ], + "ars electronica": [ + "4.9.0-p.243#2", + "4.9.0-p.243#2" + ], + "ars electronica mai": [ + "4.9.0-p.243#2" + ], + "ars electronica „welcome": [ + "4.9.0-p.243#2" + ], + "art": [ + "4.0.0", + "4.1.0", + "4.2.0", + "4.2.0-p.211", + "4.2.1", + "4.2.3", + "4.2.4", + "4.2.5", + "4.2.6", + "4.2.7", + "4.3.0", + "4.3.0-p.216", + "4.3.1", + "4.3.2", + "4.3.3", + "4.3.4", + "4.4.0", + "4.4.0-p.219", + "4.4.1", + "4.4.4", + "4.4.10", + "4.5.0", + "4.5.0-p.224", + "4.5.1", + "4.5.2", + "4.5.3", + "4.5.4", + "4.5.5", + "4.5.6", + "4.5.7", + "4.6.0", + "4.7.0", + "4.7.0-p.228", + "4.7.2", + "4.7.3", + "4.8.0", + "4.8.0-p.240", + "4.8.1", + "4.8.2", + "4.8.3", + "4.8.4", + "4.8.6", + "4.8.7", + "4.8.8", + "4.8.9", + "4.8.10", + "4.8.11", + "4.8.12", + "4.8.13", + "4.8.15", + "4.8.16", + "4.8.17", + "4.8.18", + "4.8.19", + "4.8.20", + "4.8.21", + "4.8.23", + "4.8.24", + "4.8.25", + "4.9.0-p.243#2", + "4.10.0", + "4.10.0-p.250", + "4.10.1", + "4.10.2", + "4.10.3", + "4.11.6" + ], + "art + communication": [ + "4.3.4" + ], + "art academy": [ + "4.4.0-p.219" + ], + "art activist": [ + "4.3.0-p.216", + "4.4.0", + "4.4.4" + ], + "art activist projects": [ + "4.4.0" + ], + "art activist work": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4" + ], + "art anymore": [ + "4.8.2" + ], + "art bbs": [ + "4.10.2" + ], + "art bbses": [ + "4.2.6" + ], + "art center": [ + "4.8.13" + ], + "art center suggesting": [ + "4.8.13" + ], + "art commitment": [ + "4.0.0" + ], + "art critics": [ + "4.8.12", + "4.8.17" + ], + "art departments": [ + "4.3.1" + ], + "art depend": [ + "4.7.0-p.228" + ], + "art discourse": [ + "4.7.0", + "4.8.0-p.240", + "4.8.0-p.240" + ], + "art discourses": [ + "4.0.0" + ], + "art discussions": [ + "4.8.20" + ], + "art education": [ + "4.8.0-p.240" + ], + "art etc": [ + "4.7.3" + ], + "art events": [ + "4.0.0" + ], + "art exists": [ + "4.8.3" + ], + "art forum": [ + "4.2.3", + "4.2.5" + ], + "art galleries": [ + "4.3.1" + ], + "art gallery": [ + "4.8.10" + ], + "art generators": [ + "4.0.0" + ], + "art historians": [ + "4.3.1", + "4.3.1" + ], + "art historical": [ + "4.2.0" + ], + "art historical analysis": [ + "4.8.0-p.240" + ], + "art historical bait": [ + "4.2.0", + "4.2.0" + ], + "art histories": [ + "4.3.1", + "4.8.18" + ], + "art history": [ + "4.0.0", + "4.1.0", + "4.2.6", + "4.2.7", + "4.3.0", + "4.8.0-p.240", + "4.8.0-p.240", + "4.8.1", + "4.8.11", + "4.8.11", + "4.10.3" + ], + "art history based": [ + "4.8.8" + ], + "art history handbooks": [ + "4.5.0-p.224" + ], + "art in media": [ + "4.8.4" + ], + "art institutional processes": [ + "4.8.0-p.240" + ], + "art institutions": [ + "4.3.1", + "4.3.3", + "4.6.0", + "4.8.10", + "4.8.13", + "4.8.13" + ], + "art institutions demands": [ + "4.3.1" + ], + "art interventions": [ + "4.3.0-p.216", + "4.4.0" + ], + "art investigating": [ + "4.5.3" + ], + "art is stuff": [ + "4.5.4" + ], + "art is transient": [ + "4.5.4" + ], + "art journal.": [ + "4.8.18" + ], + "art journalists": [ + "4.8.19", + "4.8.25" + ], + "art link collections": [ + "4.8.8" + ], + "art made": [ + "4.7.0-p.228" + ], + "art magazine art": [ + "4.3.0" + ], + "art market": [ + "4.8.0-p.240", + "4.8.2", + "4.8.20" + ], + "art medium": [ + "4.10.0" + ], + "art monthly": [ + "4.3.0" + ], + "art movement": [ + "4.8.0", + "4.8.18" + ], + "art movement included": [ + "4.8.0" + ], + "art museum": [ + "4.8.10" + ], + "art museums": [ + "4.3.3", + "4.3.3" + ], + "art needed": [ + "4.8.2" + ], + "art object": [ + "4.8.0-p.240" + ], + "art objects": [ + "4.8.18" + ], + "art performance practices": [ + "4.8.0-p.240" + ], + "art piece": [ + "4.8.2" + ], + "art pieces'": [ + "4.8.20" + ], + "art practice": [ + "4.8.0", + "4.8.0-p.240", + "4.8.0-p.240", + "4.8.1", + "4.8.4" + ], + "art practices": [ + "4.2.7", + "4.3.0-p.216", + "4.4.0", + "4.4.4" + ], + "art project": [ + "4.5.3", + "4.11.6" + ], + "art projects": [ + "4.4.12", + "4.10.2" + ], + "art projects mentioned": [ + "4.4.12", + "4.4.12" + ], + "art real contenders": [ + "4.8.19" + ], + "art realm": [ + "4.8.2" + ], + "art site": [ + "4.3.4" + ], + "art stars": [ + "4.3.1", + "4.8.25", + "4.8.25" + ], + "art started": [ + "4.7.0-p.228", + "4.7.0-p.228" + ], + "art strategy": [ + "4.8.2" + ], + "art students": [ + "4.8.13", + "4.8.16" + ], + "art system": [ + "4.0.0", + "4.8.20" + ], + "art system adequate": [ + "4.8.20" + ], + "art talk": [ + "4.8.13" + ], + "art theme": [ + "4.7.3" + ], + "art theoretical discourse": [ + "4.8.0-p.240", + "4.8.0-p.240" + ], + "art theory": [ + "4.8.0-p.240", + "4.8.11" + ], + "art thing": [ + "4.5.6" + ], + "art tradition": [ + "4.3.3" + ], + "art tradition growing": [ + "4.3.3" + ], + "art work": [ + "4.8.19", + "4.10.0", + "4.10.3" + ], + "art works": [ + "4.3.0", + "4.4.0-p.219", + "4.5.0", + "4.5.0-p.224", + "4.5.2", + "4.8.11", + "4.10.2", + "4.10.3" + ], + "art world": [ + "4.0.0", + "4.8.2", + "4.8.2", + "4.8.18", + "4.8.25" + ], + "art world created": [ + "4.8.25", + "4.8.25" + ], + "art world formed": [ + "4.8.18", + "4.8.18" + ], + "art world institution": [ + "4.8.25" + ], + "art-institutional entourage": [ + "4.8.14" + ], + "art.teleportacia": [ + "4.5.0", + "4.5.0-p.224" + ], + "art.teleportacia galleries": [ + "4.5.0", + "4.5.2" + ], + "artbase": [ + "4.11.6" + ], + "artex": [ + "4.2.2" + ], + "artforum": [ + "4.1.0" + ], + "artist": [ + "4.2.7", + "4.3.2", + "4.4.0-p.219", + "4.9.0" + ], + "artist community": [ + "4.2.7", + "4.2.7" + ], + "artist contributions": [ + "4.8.5" + ], + "artist group": [ + "4.8.6", + "4.8.8" + ], + "artist radicality": [ + "4.9.0" + ], + "artist vuk": [ + "4.1.0" + ], + "artist vuk cosic": [ + "4.1.0" + ], + "artist whos name": [ + "4.5.7" + ], + "artistic": [ + "4.0.0", + "4.8.23", + "4.9.0" + ], + "artistic intervention": [ + "4.9.0" + ], + "artistic interventions": [ + "4.4.10" + ], + "artistic practice simultaneously": [ + "4.8.0-p.240" + ], + "artistic software": [ + "4.8.22", + "4.8.23" + ], + "artistic software jury": [ + "4.8.23" + ], + "artistic software software": [ + "4.8.23" + ], + "artists": [ + "4.2.0-p.211", + "4.3.2", + "4.3.3", + "4.4.0", + "4.5.4", + "4.6.0", + "4.7.3", + "4.8.0", + "4.8.1", + "4.8.2", + "4.8.4", + "4.8.5", + "4.8.7", + "4.8.8", + "4.8.10", + "4.8.13", + "4.8.15", + "4.8.17", + "4.8.21", + "4.8.22", + "4.8.26", + "4.10.0", + "4.10.2" + ], + "artists are put": [ + "4.8.22" + ], + "artists changed": [ + "4.8.13", + "4.8.15" + ], + "artists in kazakhstan": [ + "4.4.2" + ], + "artists making": [ + "4.4.10" + ], + "artists making work": [ + "4.4.1", + "4.4.10" + ], + "artists network bbs": [ + "4.10.2" + ], + "artists working": [ + "4.8.7" + ], + "artists' kind": [ + "4.8.26" + ], + "artnetweb": [ + "4.2.3" + ], + "arts": [ + "4.0.0", + "4.7.1", + "4.8.0-p.240", + "4.8.11", + "4.9.0-p.243#2" + ], + "arts council": [ + "4.7.1", + "4.7.1" + ], + "artwork": [ + "4.4.0-p.219", + "4.8.5", + "4.11.3" + ], + "artwork as research": [ + "4.8.5" + ], + "artwork that requires": [ + "4.8.3" + ], + "artworks": [ + "4.3.0", + "4.4.0-p.219", + "4.8.6", + "4.8.8" + ], + "artworks and text": [ + "4.8.6", + "4.8.8" + ], + "ascii": [ + "4.2.3", + "4.5.7", + "4.8.12", + "4.8.19", + "4.8.21" + ], + "ascii art ensemble": [ + "4.8.0-p.240" + ], + "ascii based etc": [ + "4.6.0", + "4.7.0" + ], + "ascii dogmas": [ + "4.8.16" + ], + "ascii history": [ + "4.5.7" + ], + "ascii paparazzi": [ + "4.8.11", + "4.8.12", + "4.8.13", + "4.8.14", + "4.8.19", + "4.8.21" + ], + "ascii paparazzi kontaminazie": [ + "4.8.12" + ], + "asked": [ + "4.8.25" + ], + "assign male authorship": [ + "4.8.6", + "4.8.6", + "4.8.8" + ], + "associated documents/referential material": [ + "4.2.4" + ], + "atkis": [ + "4.8.24" + ], + "attacks intellectual art": [ + "4.8.0", + "4.8.1" + ], + "attempt": [ + "4.8.5" + ], + "audience": [ + "4.8.16" + ], + "august": [ + "4.9.0-p.243#2" + ], + "aural events connected": [ + "4.0.0" + ], + "autonomous art form": [ + "4.8.9" + ], + "available imaging systems": [ + "4.3.3" + ], + "avant-garde net.art": [ + "4.8.9" + ], + "avatars": [ + "4.2.3" + ], + "avoid": [ + "4.2.0-p.211" + ], + "award site": [ + "4.3.4" + ], + "back": [ + "4.2.3", + "4.2.5", + "4.2.9", + "4.8.17", + "4.11.1", + "4.11.4" + ], + "back to april": [ + "4.2.3" + ], + "backed-up periodically": [ + "4.11.6" + ], + "bait": [ + "4.2.0" + ], + "baking": [ + "4.2.7" + ], + "balance": [ + "4.8.10" + ], + "bank": [ + "4.8.10" + ], + "bank balance": [ + "4.8.10" + ], + "barbie liberation organisation": [ + "4.4.0-p.219" + ], + "barney": [ + "4.2.0-p.211" + ], + "based": [ + "4.4.0-p.219", + "4.7.0", + "4.8.6", + "4.8.24" + ], + "based art": [ + "4.8.20" + ], + "based media art": [ + "4.5.3" + ], + "based performances": [ + "4.8.6", + "4.8.8" + ], + "basic": [ + "4.7.0-p.228" + ], + "basic core": [ + "4.8.0-p.240" + ], + "basic driving force": [ + "4.8.0-p.240" + ], + "basic elements": [ + "4.8.0-p.240" + ], + "basic mistakes": [ + "4.7.0-p.228" + ], + "basis of berry": [ + "4.7.0-p.228" + ], + "baumgaertel": [ + "4.8.22", + "4.10.2", + "4.10.3" + ], + "baumgärtel": [ + "4.2.2" + ], + "baumgärtel first book": [ + "4.2.2" + ], + "bbs": [ + "4.2.2", + "4.10.2", + "4.10.3" + ], + "bbs times": [ + "4.2.2", + "4.2.4" + ], + "bbses": [ + "4.2.6" + ], + "becoming life critics": [ + "4.0.0" + ], + "behave online": [ + "4.8.14" + ], + "behaviour meet art": [ + "4.3.1", + "4.3.1" + ], + "behold": [ + "4.11.5" + ], + "believe net artworks": [ + "4.3.0" + ], + "ben eakins": [ + "4.8.8" + ], + "benjamin weil": [ + "4.7.0" + ], + "berry": [ + "4.7.0-p.228", + "4.8.1" + ], + "berry has put": [ + "4.7.0-p.228" + ], + "berry view": [ + "4.7.0-p.228" + ], + "berry wrote": [ + "4.8.1" + ], + "beryl nor sarah": [ + "4.7.3" + ], + "beryll": [ + "4.7.3" + ], + "beyond inventors": [ + "4.0.0" + ], + "biennale shows net": [ + "4.8.2" + ], + "big": [ + "4.5.0", + "4.5.2" + ], + "big deal": [ + "4.5.0", + "4.5.2" + ], + "big international": [ + "4.3.1" + ], + "big international net": [ + "4.3.1" + ], + "biggest problem net": [ + "4.8.21" + ], + "bill gibson +": [ + "4.10.3" + ], + "billion web": [ + "4.11.2" + ], + "billion web pages": [ + "4.11.2", + "4.11.2" + ], + "bills": [ + "4.8.24" + ], + "bin": [ + "4.8.19" + ], + "binary thinking coupled": [ + "4.4.9" + ], + "bio destitute": [ + "4.8.22" + ], + "bionic": [ + "4.2.2" + ], + "bit": [ + "4.4.1" + ], + "bit earlier history": [ + "4.4.1" + ], + "bit more detail": [ + "4.4.10" + ], + "bitnet": [ + "4.10.2" + ], + "bits": [ + "4.5.1", + "4.8.23" + ], + "bits of programming": [ + "4.8.22", + "4.8.23" + ], + "blair": [ + "4.9.0-p.243#2" + ], + "blend of heidegger": [ + "4.4.5" + ], + "blogs": [ + "4.2.6" + ], + "blogs and surf": [ + "4.2.5", + "4.2.6" + ], + "bodies": [ + "4.7.1" + ], + "boils": [ + "4.11.3" + ], + "book": [ + "4.2.4", + "4.4.9" + ], + "book out documenting": [ + "4.2.3" + ], + "bored": [ + "4.11.5" + ], + "bosma": [ + "4.2.4", + "4.8.2", + "4.8.12", + "4.8.21" + ], + "bosma wrote": [ + "4.8.21" + ], + "bottom social structures": [ + "4.0.0" + ], + "boundaries": [ + "4.8.19" + ], + "boundaries redefined": [ + "4.8.19" + ], + "brace": [ + "4.8.18" + ], + "brad brace": [ + "4.8.13", + "4.8.15", + "4.8.18" + ], + "brad brace wrote": [ + "4.8.21" + ], + "bratton": [ + "4.4.5" + ], + "brett": [ + "4.8.8" + ], + "brett stalbaum": [ + "4.4.1", + "4.8.8" + ], + "bringing": [ + "4.10.5" + ], + "bringing more minds": [ + "4.10.5" + ], + "broad cultural": [ + "4.8.0-p.240" + ], + "broader description": [ + "4.8.0", + "4.8.1" + ], + "broader field": [ + "4.8.0-p.240" + ], + "broader field outside": [ + "4.8.0-p.240" + ], + "broken links": [ + "4.5.0", + "4.5.2" + ], + "browser": [ + "4.5.3", + "4.5.4", + "4.5.7" + ], + "browser art": [ + "4.5.4", + "4.5.6" + ], + "browser based art": [ + "4.8.0-p.240" + ], + "browser-based media art": [ + "4.5.3" + ], + "brozefsky": [ + "4.5.1" + ], + "btw": [ + "4.8.12" + ], + "building communal": [ + "4.4.10" + ], + "building communal wi": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4", + "4.4.10" + ], + "building communal wi-fi": [ + "4.4.1", + "4.4.10" + ], + "bulk": [ + "4.5.5" + ], + "bulk folder": [ + "4.6.0" + ], + "bulk folder thinking": [ + "4.6.0", + "4.6.0" + ], + "bunch": [ + "4.5.5" + ], + "bunch of files": [ + "4.5.5" + ], + "bunting and brad": [ + "4.8.13", + "4.8.15" + ], + "buolamwini": [ + "4.4.12" + ], + "butler and haraway": [ + "4.4.9" + ], + "byfield": [ + "4.11.2" + ], + "cada vez": [ + "4.4.11" + ], + "cada vez mais": [ + "4.4.11" + ], + "california list probably": [ + "4.8.0-p.240" + ], + "called": [ + "4.8.9" + ], + "called art": [ + "4.8.9" + ], + "called art anymore": [ + "4.8.9" + ], + "called art world": [ + "4.8.2" + ], + "called context art": [ + "4.8.9" + ], + "called default": [ + "4.10.3" + ], + "called net": [ + "4.5.3", + "4.5.5", + "4.5.7" + ], + "called net art": [ + "4.5.3", + "4.5.3", + "4.5.5", + "4.5.5", + "4.5.7", + "4.5.7", + "4.8.0-p.240", + "4.8.0-p.240", + "4.10.3", + "4.10.3" + ], + "called netart discussions/curation/classifications": [ + "4.2.0" + ], + "cambridge university press": [ + "4.0.0" + ], + "campus etc": [ + "4.3.3" + ], + "canadian minitel standard": [ + "4.10.2" + ], + "capitalism’": [ + "4.3.0-p.216" + ], + "capitalist ruins": [ + "4.4.9" + ], + "capitalistic system comes": [ + "4.8.17" + ], + "cappellaine": [ + "4.10.0" + ], + "cappellaine gallery": [ + "4.10.0" + ], + "cappellaine responds": [ + "4.10.0" + ], + "capturados pela": [ + "4.4.11" + ], + "capturados pela ubiquidade": [ + "4.4.11" + ], + "capture": [ + "4.2.7" + ], + "care": [ + "4.4.0" + ], + "care conference": [ + "4.4.0" + ], + "carey": [ + "4.3.0" + ], + "carey young": [ + "4.3.0" + ], + "carl": [ + "4.8.15" + ], + "carl eugene loeffler": [ + "4.10.2" + ], + "carl leoffler": [ + "4.8.15" + ], + "cary": [ + "4.8.7" + ], + "cary says acquisition": [ + "4.8.7" + ], + "case": [ + "4.4.0" + ], + "catchy": [ + "4.5.4" + ], + "catchy name net": [ + "4.5.4" + ], + "catchy name net.art": [ + "4.5.4" + ], + "caused broken marriages": [ + "4.3.3" + ], + "caused mainstream media": [ + "4.8.0-p.240" + ], + "cd rom": [ + "4.10.0" + ], + "cd-rom": [ + "4.5.6" + ], + "cellular networks": [ + "4.4.1", + "4.4.10" + ], + "center": [ + "4.8.13", + "4.9.0-p.243#2" + ], + "central message": [ + "4.8.11" + ], + "central online discourse": [ + "4.8.11" + ], + "chains and matsutake": [ + "4.4.9" + ], + "chance": [ + "4.8.25" + ], + "change": [ + "4.8.20", + "4.10.5" + ], + "change and evolve": [ + "4.10.5" + ], + "changed": [ + "4.5.0-p.224", + "4.8.13", + "4.8.15" + ], + "changed every counter-question": [ + "4.5.0" + ], + "chapter": [ + "4.8.2" + ], + "characterises": [ + "4.3.0-p.216" + ], + "characterises media": [ + "4.3.0-p.216" + ], + "characterises media art": [ + "4.3.0-p.216", + "4.4.0", + "4.4.4" + ], + "charlotte": [ + "4.2.1" + ], + "charlotte frost": [ + "4.2.1" + ], + "check": [ + "4.8.10" + ], + "check my mail": [ + "4.8.10" + ], + "cheers": [ + "4.8.24" + ], + "chimera online gallery": [ + "4.9.0-p.243#2" + ], + "chorando pitombas": [ + "4.4.11" + ], + "chuck welch": [ + "4.10.2", + "4.10.2" + ], + "chuck welch net art<": [ + "4.0.0" + ], + "contemporary": [ + "4.2.0", + "4.8.13", + "4.8.15" + ], + "contemporary american artwork": [ + "4.8.5", + "4.8.5" + ], + "contemporary art": [ + "4.8.0-p.240", + "4.8.10", + "4.8.13", + "4.8.13", + "4.8.15" + ], + "contemporary art practice": [ + "4.8.0-p.240" + ], + "contemporary critical debates": [ + "4.3.0" + ], + "contemporary net": [ + "4.3.0" + ], + "contemporary net art": [ + "4.3.0", + "4.3.0" + ], + "contemporary net.art": [ + "4.8.3" + ], + "contemporary net.art viewer": [ + "4.8.3" + ], + "contemporary netart": [ + "4.2.0" + ], + "contemporary netart academic": [ + "4.2.0" + ], + "contemporary netart definitions": [ + "4.2.0", + "4.2.0" + ], + "contemporary so-called": [ + "4.2.0" + ], + "contemporary so-called netart": [ + "4.2.0" + ], + "contentbase": [ + "4.11.3" + ], + "contentbase is backed-up": [ + "4.11.6" + ], + "contested": [ + "4.2.7" + ], + "contested nature": [ + "4.2.6", + "4.2.7" + ], + "context": [ + "4.3.0-p.216", + "4.4.0", + "4.8.9" + ], + "context art": [ + "4.8.9" + ], + "context systems etc": [ + "4.9.0-p.243#2" + ], + "contextual": [ + "4.8.8" + ], + "contingent": [ + "4.2.7" + ], + "contingent and contested": [ + "4.2.6", + "4.2.7" + ], + "contingent technical setups": [ + "4.11.1" + ], + "continue this list": [ + "4.3.1" + ], + "continuous": [ + "4.11.0" + ], + "contribute": [ + "4.4.12" + ], + "contribution": [ + "4.4.4" + ], + "control": [ + "4.5.4" + ], + "convenient controlling": [ + "4.10.5" + ], + "conventional art institutions": [ + "4.3.4" + ], + "conversation": [ + "4.8.19" + ], + "cool": [ + "4.9.0" + ], + "copy": [ + "4.4.0-p.219", + "4.5.1" + ], + "copy bits": [ + "4.5.1" + ], + "copy left ideas": [ + "4.8.1" + ], + "copying": [ + "4.5.0", + "4.5.2" + ], + "copyright fee snafu": [ + "4.4.0-p.219" + ], + "copyright protects": [ + "4.4.0-p.219" + ], + "copyright subject": [ + "4.4.0-p.219" + ], + "corporate initiatives highly": [ + "4.0.0" + ], + "correct my statement": [ + "4.5.7" + ], + "correspondence art": [ + "4.10.2" + ], + "corrupt art": [ + "4.8.20" + ], + "corrupt art system": [ + "4.8.20", + "4.8.20" + ], + "cosic": [ + "4.1.0", + "4.5.7" + ], + "cosic opened": [ + "4.1.0" + ], + "council": [ + "4.7.1" + ], + "counter-question": [ + "4.5.0", + "4.5.2" + ], + "countless homepages people": [ + "4.3.4" + ], + "couple": [ + "4.8.18" + ], + "couple of thoughts": [ + "4.8.18" + ], + "couple times": [ + "4.8.18" + ], + "covering net art": [ + "4.8.1" + ], + "craig": [ + "4.5.1", + "4.5.3" + ], + "craig brozefsky": [ + "4.5.1" + ], + "cramer": [ + "4.5.0", + "4.5.2", + "4.5.3", + "4.5.7" + ], + "cramer wrote": [ + "4.5.2" + ], + "cranky server sitting": [ + "4.11.1" + ], + "crash": [ + "4.10.4" + ], + "create": [ + "4.8.20" + ], + "create a discussion": [ + "4.8.20" + ], + "created by jodi": [ + "4.5.6" + ], + "created net art": [ + "4.8.0-p.240" + ], + "creating": [ + "4.5.6" + ], + "creating actual applications": [ + "4.5.6" + ], + "creating web sites": [ + "4.5.6" + ], + "creative freedom": [ + "4.8.19" + ], + "creatives' online": [ + "4.8.14" + ], + "critical": [ + "4.4.2", + "4.4.4", + "4.7.0", + "4.8.3" + ], + "critical anthology": [ + "4.7.0" + ], + "critical attitude towards": [ + "4.8.0-p.240" + ], + "critical careerists'": [ + "4.8.14" + ], + "critical cross disciplinary": [ + "4.8.0-p.240" + ], + "critical discourse": [ + "4.4.2", + "4.8.0-p.240" + ], + "critical makers": [ + "4.4.4" + ], + "critical makers reader": [ + "4.4.4" + ], + "critical media discourse": [ + "4.8.0-p.240" + ], + "critical observer": [ + "4.8.3" + ], + "critically observes": [ + "4.8.3" + ], + "criticism": [ + "4.8.1" + ], + "critics": [ + "4.8.12", + "4.8.17", + "4.8.25", + "4.8.26" + ], + "critics called": [ + "4.3.4" + ], + "critics have reverted": [ + "4.2.0-p.211" + ], + "critics'": [ + "4.8.24" + ], + "critics' output": [ + "4.8.24" + ], + "critique": [ + "4.5.1", + "4.5.3", + "4.5.7" + ], + "critique of conceptions": [ + "4.5.1" + ], + "cross disciplinary theory": [ + "4.8.0-p.240" + ], + "crowe": [ + "4.10.0-p.250", + "4.11.0", + "4.11.3", + "4.11.4" + ], + "crowe and pat": [ + "4.10.0-p.250" + ], + "crowe wrote": [ + "4.10.0-p.250", + "4.11.0", + "4.11.3", + "4.11.4" + ], + "crucial historical precedents": [ + "4.8.0", + "4.8.0" + ], + "crumb": [ + "4.7.0", + "4.7.2" + ], + "crystal radio set": [ + "4.10.0" + ], + "cu-seeme": [ + "4.2.3" + ], + "cultural baggage tied": [ + "4.6.0" + ], + "cultural change": [ + "4.8.15" + ], + "cultural deprivation": [ + "4.8.0-p.240" + ], + "cultural phenomena": [ + "4.8.0-p.240" + ], + "cultural theory suffer": [ + "4.8.0-p.240" + ], + "culture": [ + "4.10.2" + ], + "cultures": [ + "4.4.4" + ], + "cum grano salis": [ + "4.0.0" + ], + "curation": [ + "4.2.0" + ], + "curator giving suggestions": [ + "4.6.0" + ], + "curatorial": [ + "4.7.0" + ], + "curatorial models": [ + "4.7.0" + ], + "curators": [ + "4.7.3" + ], + "current netart": [ + "4.2.0" + ], + "current netart definite": [ + "4.2.0", + "4.2.0" + ], + "current political": [ + "4.3.0-p.216", + "4.4.1", + "4.4.4" + ], + "current urgent legend": [ + "4.2.6" + ], + "current work": [ + "4.8.5" + ], + "current work deals": [ + "4.8.5" + ], + "curt": [ + "4.2.6" + ], + "cybercafe site": [ + "4.8.0-p.240" + ], + "cyberfeminist": [ + "4.8.6", + "4.8.8" + ], + "cyberfeminist artist": [ + "4.8.6", + "4.8.8" + ], + "cyberfeminist artist group": [ + "4.8.6", + "4.8.8" + ], + "cyberspace": [ + "4.8.16" + ], + "cyberspace discussion": [ + "4.8.16" + ], + "cyborg": [ + "4.8.3" + ], + "cyborg extensions": [ + "4.8.3" + ], + "călin dan": [ + "4.0.0" + ], + "damning net": [ + "4.3.0" + ], + "damning net art": [ + "4.3.0", + "4.3.0" + ], + "daniela plewe": [ + "4.10.1" + ], + "daniels": [ + "4.8.11" + ], + "daniels leans towards": [ + "4.8.11" + ], + "daniels quote": [ + "4.8.11" + ], + "das ferramentas": [ + "4.4.11" + ], + "data": [ + "4.8.20" + ], + "data migration": [ + "4.2.5" + ], + "date": [ + "4.2.1", + "4.10.0", + "4.10.3" + ], + "david": [ + "4.3.0", + "4.3.1", + "4.3.2", + "4.3.3" + ], + "david blair": [ + "4.9.0-p.243#2" + ], + "david garcia": [ + "4.3.0", + "4.3.3" + ], + "david garcia raises": [ + "4.3.0", + "4.3.0" + ], + "david garcia wrote": [ + "4.3.3", + "4.3.3", + "4.8.0-p.240" + ], + "david guillo": [ + "4.4.2" + ], + "david m. rubenstein": [ + "4.2.4" + ], + "davis'": [ + "4.8.9" + ], + "day": [ + "4.5.0" + ], + "days": [ + "4.8.6", + "4.8.8", + "4.8.12", + "4.8.13", + "4.8.15" + ], + "days have reduced": [ + "4.8.12" + ], + "dead": [ + "4.8.17", + "4.8.19", + "4.8.21" + ], + "dead servers tell": [ + "4.4.0-p.219" + ], + "deal": [ + "4.4.0-p.219", + "4.5.0", + "4.5.2" + ], + "dear": [ + "4.5.3", + "4.7.1", + "4.8.0", + "4.11.4" + ], + "dear archeologists": [ + "4.11.4" + ], + "dear craig": [ + "4.5.3" + ], + "dear josephine": [ + "4.8.0", + "4.8.2" + ], + "dear olia": [ + "4.8.12" + ], + "death": [ + "4.8.13", + "4.8.15" + ], + "death and failure": [ + "4.8.12" + ], + "dec": [ + "4.10.3" + ], + "december": [ + "4.1.0" + ], + "definable boundaries increases": [ + "4.8.19" + ], + "defined": [ + "4.8.3" + ], + "defined otherwise": [ + "4.0.0" + ], + "defined radio communities": [ + "4.3.0-p.216", + "4.4.1", + "4.4.4", + "4.4.10" + ], + "defining characteristics": [ + "4.10.3" + ], + "demand": [ + "4.8.22" + ], + "denying their low": [ + "4.3.1" + ], + "departments at universities": [ + "4.3.1" + ], + "dependent": [ + "4.10.0-p.250", + "4.11.3", + "4.11.4" + ], + "dependent on hardware": [ + "4.10.0-p.250", + "4.11.3", + "4.11.4" + ], + "describe net": [ + "4.3.0" + ], + "describe net art": [ + "4.3.0", + "4.3.0", + "4.3.0-p.216" + ], + "description": [ + "4.8.16" + ], + "desk.nl": [ + "4.5.0-p.224" + ], + "desk.nl rebuilds": [ + "4.5.0-p.224" + ], + "destructive program inbuilt": [ + "4.8.9" + ], + "deutschland und österreich": [ + "4.9.0-p.243#2" + ], + "development": [ + "4.8.0-p.240" + ], + "dezember": [ + "4.9.0-p.243#2" + ], + "dia center": [ + "4.9.0-p.243#2" + ], + "dictionary": [ + "4.3.2" + ], + "didnt": [ + "4.3.2" + ], + "die imaginäre bibliothek": [ + "4.9.0-p.243#2" + ], + "dieter daniels": [ + "4.8.11", + "4.8.11" + ], + "dietz": [ + "4.8.11" + ], + "dietz has approached": [ + "4.8.11" + ], + "difference": [ + "4.8.16" + ], + "difficult media political": [ + "4.8.1" + ], + "digeridas": [ + "4.4.11" + ], + "digest": [ + "4.2.5", + "4.2.8", + "4.2.9", + "4.11.3", + "4.11.4", + "4.11.6" + ], + "digest format": [ + "4.2.5", + "4.2.9" + ], + "digest is archived": [ + "4.2.8" + ], + "digidance": [ + "4.2.3" + ], + "digital": [ + "4.8.7", + "4.8.24" + ], + "digital art": [ + "4.2.0", + "4.8.10", + "4.8.11", + "4.8.13", + "4.8.23", + "4.8.24" + ], + "digital arts": [ + "4.8.11" + ], + "digital communications environment": [ + "4.3.3" + ], + "digital folk art": [ + "4.8.8" + ], + "digital media": [ + "4.8.7" + ], + "digital priests": [ + "4.0.0" + ], + "digital sfx": [ + "4.8.16" + ], + "digital sfx sequences": [ + "4.8.16" + ], + "digitofagico": [ + "4.4.11" + ], + "dimensional chaotic view": [ + "4.3.4" + ], + "diminished visual emphasize": [ + "4.0.0" + ], + "direct experience": [ + "4.6.0" + ], + "disagree with curt": [ + "4.2.6" + ], + "disciplinary analysis": [ + "4.8.0-p.240" + ], + "disciplinary discourse": [ + "4.8.0-p.240" + ], + "disciplinary discourse platforms": [ + "4.8.0-p.240" + ], + "disciplinary tendencies": [ + "4.8.0-p.240" + ], + "disclaimer": [ + "4.8.5" + ], + "disconcerting": [ + "4.10.5" + ], + "discourse": [ + "4.4.2", + "4.4.5", + "4.8.0-p.240" + ], + "discourses appear": [ + "4.8.0-p.240" + ], + "discoursive field towards": [ + "4.4.10" + ], + "discursive field": [ + "4.4.10" + ], + "discuss": [ + "4.2.5", + "4.2.9" + ], + "discussion": [ + "4.2.7", + "4.6.0", + "4.7.2", + "4.7.3", + "4.8.16", + "4.8.17", + "4.8.20", + "4.10.0-p.250" + ], + "discussion a couple": [ + "4.5.6" + ], + "discussion between jennifer": [ + "4.10.0-p.250" + ], + "discussion mainly refers": [ + "4.8.20" + ], + "discussion of net-time": [ + "4.4.9" + ], + "discussions": [ + "4.2.0", + "4.2.8" + ], + "disorder": [ + "4.8.26" + ], + "display": [ + "4.5.3", + "4.5.5", + "4.5.7" + ], + "display in lynx": [ + "4.5.7" + ], + "disrupt binary thinking": [ + "4.4.9" + ], + "distribution": [ + "4.5.5" + ], + "ditched": [ + "4.3.1", + "4.3.2" + ], + "dk wrote": [ + "4.8.21" + ], + "documenting that discussion": [ + "4.2.3" + ], + "domain": [ + "4.5.0-p.224", + "4.5.5" + ], + "domain name": [ + "4.5.7" + ], + "domain name registrated": [ + "4.5.0-p.224" + ], + "domain name sais": [ + "4.5.0-p.224" + ], + "domestic decorum abolished": [ + "4.0.0" + ], + "dominant activity": [ + "4.8.0-p.240" + ], + "dominant art object": [ + "4.8.0-p.240" + ], + "dominant moderator": [ + "4.8.0-p.240" + ], + "dominate": [ + "4.8.24" + ], + "dominate critics'": [ + "4.8.24" + ], + "dominate critics' output": [ + "4.8.24" + ], + "dont": [ + "4.3.2", + "4.4.0-p.219", + "4.8.17" + ], + "dooley": [ + "4.10.0" + ], + "dooley le cappellaine": [ + "4.10.0", + "4.10.0" + ], + "dot": [ + "4.5.4" + ], + "dow chemical parody": [ + "4.7.0" + ], + "download": [ + "4.10.4" + ], + "dozen mail artists": [ + "4.10.2" + ], + "dreams": [ + "4.11.2" + ], + "dry conception": [ + "4.3.4" + ], + "due": [ + "4.7.2" + ], + "dwyer wrote": [ + "4.4.0" + ], + "dxr": [ + "4.2.3" + ], + "earlier generation": [ + "4.3.3" + ], + "earlier generation aconci": [ + "4.2.0-p.211", + "4.2.0-p.211", + "4.3.3" + ], + "early": [ + "4.2.2", + "4.2.4", + "4.10.0" + ], + "early media art": [ + "4.4.4" + ], + "early net": [ + "4.2.4", + "4.10.2" + ], + "early net art": [ + "4.2.4", + "4.10.2", + "4.10.3" + ], + "early network artists": [ + "4.8.0" + ], + "earshot": [ + "4.8.22" + ], + "easier": [ + "4.8.26" + ], + "eastern hemisphere": [ + "4.4.2" + ], + "easy": [ + "4.5.0" + ], + "eat your heart": [ + "4.11.6" + ], + "eccentric": [ + "4.11.0" + ], + "ecologies and acoustic": [ + "4.4.10" + ], + "economy": [ + "4.3.0-p.216" + ], + "editor walter gropius": [ + "4.0.0" + ], + "effect boxes etc": [ + "4.5.6" + ], + "efforts": [ + "4.11.1" + ], + "eighties": [ + "4.2.0-p.211" + ], + "elaborate": [ + "4.5.1" + ], + "electronic": [ + "4.3.0", + "4.10.1" + ], + "electronic art festival": [ + "4.8.0-p.240" + ], + "electronic gallery": [ + "4.10.1" + ], + "electronic machine": [ + "4.8.3" + ], + "electronic machine technology": [ + "4.8.3", + "4.8.3" + ], + "electronic media": [ + "4.11.1" + ], + "electronica": [ + "4.9.0-p.243#2" + ], + "element": [ + "4.8.4" + ], + "elisa rose": [ + "4.8.18" + ], + "email": [ + "4.7.1" + ], + "emailing people instead": [ + "4.4.9" + ], + "emails": [ + "4.11.3" + ], + "embedded": [ + "4.4.5" + ], + "emphasize art practice": [ + "4.8.0-p.240" + ], + "empire": [ + "4.8.2" + ], + "empowering art practice": [ + "4.8.0-p.240" + ], + "end": [ + "4.7.3", + "4.8.1" + ], + "end defines": [ + "4.7.3" + ], + "endless": [ + "4.8.16" + ], + "endlessly deferred": [ + "4.8.1" + ], + "engage technology": [ + "4.4.5" + ], + "engineer existing systems": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4", + "4.4.10" + ], + "england": [ + "4.7.1" + ], + "english": [ + "4.2.2", + "4.2.4", + "4.3.2" + ], + "english words": [ + "4.3.2" + ], + "english-russian": [ + "4.3.2" + ], + "english-russian dictionary": [ + "4.3.2" + ], + "entourage was quick": [ + "4.8.14" + ], + "environment": [ + "4.8.20" + ], + "equally impossible": [ + "4.8.0" + ], + "erik": [ + "4.8.9" + ], + "erik davis'": [ + "4.8.9" + ], + "err": [ + "4.8.21" + ], + "error prone aspect": [ + "4.4.4" + ], + "especially art history": [ + "4.7.0" + ], + "essential": [ + "4.2.1", + "4.2.8" + ], + "essential experiments": [ + "4.2.8" + ], + "establish": [ + "4.4.0-p.219" + ], + "estao": [ + "4.4.11" + ], + "estao cada": [ + "4.4.11" + ], + "estao cada vez": [ + "4.4.11" + ], + "estao capturados": [ + "4.4.11" + ], + "estao capturados pela": [ + "4.4.11" + ], + "estao de maos": [ + "4.4.11" + ], + "estao germinando": [ + "4.4.11" + ], + "estao germinando apos": [ + "4.4.11" + ], + "etc.": [ + "4.4.12" + ], + "ethnic": [ + "4.9.0" + ], + "ethnic cleansing": [ + "4.9.0" + ], + "etoy created": [ + "4.4.0-p.219" + ], + "etoys vs etoy": [ + "4.4.0-p.219" + ], + "europe that true": [ + "4.8.15" + ], + "european net.art": [ + "4.8.18" + ], + "european net.art folks": [ + "4.8.18" + ], + "event": [ + "4.8.8" + ], + "events that occur": [ + "4.8.3" + ], + "everyone,i": [ + "4.4.9" + ], + "evolve": [ + "4.10.5" + ], + "evolve remains": [ + "4.10.5" + ], + "exchanges relating": [ + "4.2.9" + ], + "excitement slowly": [ + "4.8.0-p.240" + ], + "exciting": [ + "4.2.0-p.211" + ], + "exciting artists": [ + "4.2.0-p.211" + ], + "exhibiting art photography": [ + "4.3.4" + ], + "exhibition": [ + "4.10.0", + "4.10.1" + ], + "exhibition and conference": [ + "4.10.1" + ], + "exhibition somewhat cowardly": [ + "4.8.0-p.240" + ], + "exist": [ + "4.4.12" + ], + "existed": [ + "4.5.4" + ], + "existing artworld structures": [ + "4.8.0-p.240" + ], + "existing net": [ + "4.3.2" + ], + "existing net artists": [ + "4.3.2", + "4.3.2" + ], + "exists": [ + "4.8.3" + ], + "experience": [ + "4.2.0-p.211" + ], + "experienced": [ + "4.5.3" + ], + "experiments": [ + "4.2.8", + "4.5.6" + ], + "experiments and discussions": [ + "4.2.8" + ], + "explain": [ + "4.3.2", + "4.8.0" + ], + "explanation": [ + "4.11.2" + ], + "exploit’": [ + "4.3.0-p.216", + "4.4.0" + ], + "exploring the persistence": [ + "4.4.9" + ], + "expression": [ + "4.3.4" + ], + "extent": [ + "4.8.0" + ], + "extent navigate": [ + "4.10.4" + ], + "extinct mail clients": [ + "4.2.3", + "4.2.3", + "4.2.5" + ], + "ezth zurich": [ + "4.10.1" + ], + "fa optimistic reading": [ + "4.8.0" + ], + "face": [ + "4.3.0-p.216", + "4.4.0" + ], + "fact": [ + "4.8.20" + ], + "fact revisiting": [ + "4.3.3" + ], + "fail": [ + "4.5.1" + ], + "failure": [ + "4.8.0", + "4.8.1", + "4.8.12" + ], + "familiar": [ + "4.5.0", + "4.5.2" + ], + "famous net": [ + "4.3.2", + "4.8.10" + ], + "famous net artists": [ + "4.3.2", + "4.3.2", + "4.8.10", + "4.8.10" + ], + "fascinating kitsch defined": [ + "4.0.0" + ], + "faster": [ + "4.4.0-p.219" + ], + "father of web.art": [ + "4.8.8" + ], + "feb": [ + "4.8.13", + "4.8.14", + "4.8.15" + ], + "februar": [ + "4.9.0-p.243#2" + ], + "feel": [ + "4.2.0", + "4.4.5", + "4.6.0", + "4.7.0-p.228", + "4.7.2", + "4.8.19" + ], + "feel rhizome": [ + "4.6.0" + ], + "feels slightly scary": [ + "4.4.4" + ], + "feigl": [ + "4.10.1", + "4.10.3" + ], + "ferramentas": [ + "4.4.11" + ], + "festival": [ + "4.6.0" + ], + "festival n5m2": [ + "4.8.0-p.240" + ], + "fetched the contents": [ + "4.5.5" + ], + "field": [ + "4.8.12" + ], + "files": [ + "4.5.3", + "4.11.1", + "4.11.3" + ], + "files on servers": [ + "4.5.1" + ], + "finally": [ + "4.8.25" + ], + "finally obtained laws": [ + "4.4.0-p.219" + ], + "financially": [ + "4.8.22" + ], + "financially +": [ + "4.8.22" + ], + "financially nor intellectually": [ + "4.8.22" + ], + "find": [ + "4.2.0-p.211", + "4.8.17" + ], + "find works": [ + "4.2.0-p.211" + ], + "fine": [ + "4.2.3" + ], + "fine art": [ + "4.2.3", + "4.2.5" + ], + "fine art forum": [ + "4.2.3", + "4.2.3", + "4.2.5", + "4.2.5" + ], + "fine arts": [ + "4.8.10", + "4.8.11" + ], + "fine arts faculty": [ + "4.8.10", + "4.8.11" + ], + "fisher and rebecca": [ + "4.4.9" + ], + "fixedly labeled net": [ + "4.8.8" + ], + "flat": [ + "4.0.0" + ], + "flat decorum propelled": [ + "4.0.0" + ], + "flatness": [ + "4.0.0" + ], + "floating gallery": [ + "4.9.0-p.243#2" + ], + "floppies": [ + "4.10.0-p.250", + "4.11.3", + "4.11.4" + ], + "florian": [ + "4.5.0", + "4.5.1", + "4.5.2", + "4.5.3", + "4.5.4", + "4.5.5" + ], + "florian cramer": [ + "4.5.0", + "4.5.2", + "4.5.3" + ], + "florian cramer wrote": [ + "4.5.2", + "4.5.2", + "4.10.3" + ], + "florian wenz": [ + "4.10.1" + ], + "florian wenz additionally": [ + "4.10.1" + ], + "florian would prefer": [ + "4.5.4" + ], + "florian wrote": [ + "4.5.5" + ], + "florian wüst": [ + "4.9.0-p.243#2" + ], + "flourishing art practice": [ + "4.8.0-p.240" + ], + "folder thinking": [ + "4.6.0" + ], + "form": [ + "4.2.1", + "4.3.4", + "4.7.0", + "4.7.2", + "4.7.3", + "4.8.19", + "4.10.5", + "4.11.6" + ], + "form art": [ + "4.5.3", + "4.5.3", + "4.5.7", + "4.5.7", + "4.8.9" + ], + "format": [ + "4.2.5", + "4.2.9", + "4.5.6" + ], + "format bei pseudo": [ + "4.9.0-p.243#2" + ], + "former eastern block": [ + "4.8.0-p.240" + ], + "former social spaces": [ + "4.8.0-p.240" + ], + "forms'": [ + "4.7.2" + ], + "forthcoming artbase relaunch": [ + "4.2.5" + ], + "forum": [ + "4.2.3" + ], + "found art": [ + "4.3.4" + ], + "found art site": [ + "4.3.4", + "4.3.4" + ], + "found art sites": [ + "4.3.4" + ], + "found criticism": [ + "4.3.4" + ], + "found ourselves dealing": [ + "4.8.18" + ], + "found problematic": [ + "4.8.1" + ], + "found several translations": [ + "4.3.2" + ], + "found web pages": [ + "4.3.4" + ], + "frame media art": [ + "4.3.0-p.216", + "4.4.0", + "4.4.4" + ], + "france preseren": [ + "4.2.1" + ], + "francisco": [ + "4.11.2" + ], + "frankfurt": [ + "4.8.17" + ], + "franz": [ + "4.10.3" + ], + "franz f. feigl": [ + "4.10.3" + ], + "free": [ + "4.11.1" + ], + "free software": [ + "4.5.2" + ], + "freeze": [ + "4.10.4" + ], + "french": [ + "4.9.0" + ], + "fri": [ + "4.2.4", + "4.5.0-p.224" + ], + "front": [ + "4.9.0" + ], + "frost": [ + "4.2.1" + ], + "frustration building": [ + "4.7.1" + ], + "fullfilled by jodi": [ + "4.5.6" + ], + "fun": [ + "4.8.10" + ], + "funding": [ + "4.6.0", + "4.7.1" + ], + "funding application": [ + "4.7.1" + ], + "funding bodies": [ + "4.7.1" + ], + "funding body": [ + "4.6.0", + "4.7.1" + ], + "funding officers": [ + "4.7.1" + ], + "funding support": [ + "4.7.1" + ], + "funny process": [ + "4.8.10" + ], + "funny web pages": [ + "4.8.10" + ], + "furtiliser": [ + "4.8.26" + ], + "futile": [ + "4.8.22" + ], + "future": [ + "4.8.5" + ], + "future monetary": [ + "4.8.5" + ], + "future monetary capital": [ + "4.8.5", + "4.8.5" + ], + "future monthly theme": [ + "4.7.0", + "4.7.0", + "4.7.2" + ], + "future profitability": [ + "4.8.5", + "4.8.5" + ], + "galleries": [ + "4.2.0-p.211", + "4.4.0-p.219", + "4.5.0" + ], + "galleries and museums": [ + "4.2.0-p.211" + ], + "gallery": [ + "4.5.0-p.224", + "4.5.2", + "4.6.0", + "4.8.10", + "4.8.18", + "4.9.0-p.243#2", + "4.10.0", + "4.10.1" + ], + "gallery acknowledges": [ + "4.8.18" + ], + "gallery making mirrors": [ + "4.5.2" + ], + "gallery net": [ + "4.8.18" + ], + "gallery net art": [ + "4.8.18" + ], + "gallery section": [ + "4.8.18" + ], + "gallery sites": [ + "4.10.0" + ], + "garcia": [ + "4.3.0", + "4.3.3" + ], + "garcia raises": [ + "4.3.0" + ], + "garcia wrote": [ + "4.3.3" + ], + "gema": [ + "4.8.17" + ], + "gender": [ + "4.4.12" + ], + "gender shades": [ + "4.4.12" + ], + "general": [ + "4.5.0", + "4.5.2", + "4.8.16" + ], + "generally a frustration": [ + "4.7.1" + ], + "generally make net.art": [ + "4.6.0" + ], + "generated concrete poetry": [ + "4.8.23" + ], + "generation": [ + "4.2.0-p.211" + ], + "generation aconci": [ + "4.2.0-p.211", + "4.3.3" + ], + "genre": [ + "4.8.21", + "4.8.23" + ], + "genuine interactivity": [ + "4.10.4" + ], + "georgina": [ + "4.2.0-p.211" + ], + "georgina starr": [ + "4.2.0-p.211" + ], + "gerfried": [ + "4.9.0-p.243#2" + ], + "german": [ + "4.9.0" + ], + "german neo-nazis": [ + "4.9.0" + ], + "german word": [ + "4.8.16" + ], + "germany": [ + "4.8.2" + ], + "germinando apos": [ + "4.4.11" + ], + "germinando apos digeridas": [ + "4.4.11" + ], + "gesture": [ + "4.2.0", + "4.8.5", + "4.8.7" + ], + "gig": [ + "4.3.0-p.216" + ], + "gig economy": [ + "4.3.0-p.216" + ], + "give": [ + "4.7.0" + ], + "giving": [ + "4.10.4" + ], + "giving the lie": [ + "4.10.4" + ], + "gleefully side-stepping": [ + "4.8.14" + ], + "global": [ + "4.8.13", + "4.8.15" + ], + "global clock project": [ + "4.9.0-p.243#2" + ], + "global computer networks": [ + "4.10.2" + ], + "global mail": [ + "4.10.2" + ], + "global platforms": [ + "4.3.0-p.216" + ], + "gmx.net": [ + "4.5.3" + ], + "gnu general": [ + "4.5.2" + ], + "goals": [ + "4.4.5" + ], + "god": [ + "4.8.9" + ], + "god of communication": [ + "4.8.9" + ], + "god of net.art": [ + "4.8.9" + ], + "god of trade": [ + "4.8.9" + ], + "gold": [ + "4.3.4" + ], + "gold medal award": [ + "4.3.4" + ], + "gold medal": [ + "4.3.4", + "4.3.4" + ], + "gold medal award": [ + "4.3.4" + ], + "gold medal site": [ + "4.3.4", + "4.3.4" + ], + "golden age": [ + "4.8.19" + ], + "good": [ + "4.3.2", + "4.6.0", + "4.8.19" + ], + "good net": [ + "4.3.2" + ], + "good net artist": [ + "4.3.2" + ], + "gotten erroneously dated": [ + "4.2.9" + ], + "grad school": [ + "4.6.0" + ], + "graham harwood et": [ + "4.10.2" + ], + "grand linear sweep": [ + "4.3.0" + ], + "grander scale": [ + "4.11.2" + ], + "grandmaster shulgin": [ + "4.3.4" + ], + "grandmasters cosic": [ + "4.3.4" + ], + "grant rhizome": [ + "4.11.6" + ], + "graphic-capable browsers": [ + "4.5.4" + ], + "graphical bbs based": [ + "4.10.2" + ], + "grateful": [ + "4.9.0" + ], + "great": [ + "4.2.2", + "4.2.4", + "4.5.6", + "4.6.0", + "4.8.9", + "4.8.11", + "4.8.17" + ], + "great antagonist": [ + "4.8.9" + ], + "great net": [ + "4.8.17" + ], + "great net artists": [ + "4.8.17" + ], + "greene": [ + "4.1.0" + ], + "greene believed": [ + "4.1.0" + ], + "group": [ + "4.7.0-p.228", + "4.8.0", + "4.8.1", + "4.8.6", + "4.8.8", + "4.8.26" + ], + "group in holland": [ + "4.8.26" + ], + "groups like jodi": [ + "4.8.23" + ], + "guess": [ + "4.7.2" + ], + "guy formally called": [ + "4.8.9" + ], + "hans": [ + "4.11.2" + ], + "hans moravec": [ + "4.11.2" + ], + "hans moravec dreams": [ + "4.11.2" + ], + "haraway": [ + "4.4.5" + ], + "haraway and barad": [ + "4.4.9" + ], + "hard time downloading": [ + "4.5.6" + ], + "hard time finding": [ + "4.8.2" + ], + "harddrive": [ + "4.5.5" + ], + "hardware": [ + "4.11.3", + "4.11.4" + ], + "hasty in damning": [ + "4.3.0" + ], + "hci": [ + "4.4.12" + ], + "hci researchers": [ + "4.4.12" + ], + "hear that transmediale": [ + "4.4.9" + ], + "heath bunting": [ + "4.8.13", + "4.8.15" + ], + "heaven": [ + "4.8.22" + ], + "heidegger": [ + "4.4.5" + ], + "helmut weber": [ + "4.10.1" + ], + "hermes": [ + "4.8.9" + ], + "heroic": [ + "4.8.12" + ], + "heroic days": [ + "4.8.12" + ], + "heroic period": [ + "4.5.0-p.224" + ], + "highly dominant": [ + "4.8.0-p.240" + ], + "highly problematic": [ + "4.8.1" + ], + "hijack": [ + "4.7.0", + "4.7.2" + ], + "hijack crumb": [ + "4.7.0", + "4.7.2" + ], + "historical bait": [ + "4.2.0" + ], + "historical vacuum": [ + "4.8.0", + "4.8.0" + ], + "histories": [ + "4.8.18" + ], + "history": [ + "4.0.0", + "4.1.0", + "4.2.6", + "4.2.7", + "4.8.1", + "4.8.9", + "4.8.14", + "4.8.18", + "4.8.19", + "4.8.21", + "4.8.25", + "4.10.0-p.250", + "4.10.3", + "4.11.2" + ], + "history awaits": [ + "4.8.25" + ], + "history net.art": [ + "4.8.9", + "4.8.14" + ], + "history net.art provided": [ + "4.8.9", + "4.8.14" + ], + "history never fixed": [ + "4.10.5" + ], + "history of internet": [ + "4.1.0" + ], + "history of moving": [ + "4.5.7" + ], + "history of net": [ + "4.10.0-p.250" + ], + "history of nettime": [ + "4.11.2" + ], + "hiya": [ + "4.9.0" + ], + "hmkv dortmund": [ + "4.4.10" + ], + "holland": [ + "4.8.26" + ], + "hollywood audience": [ + "4.8.16" + ], + "home computer": [ + "4.11.6" + ], + "hope": [ + "4.2.4", + "4.8.17" + ], + "hope my english": [ + "4.2.2", + "4.2.4" + ], + "hopeful instance": [ + "4.8.0" + ], + "hopefully generate lots": [ + "4.8.25" + ], + "horrible on-line gallery": [ + "4.10.0" + ], + "horst hörtner": [ + "4.9.0-p.243#2" + ], + "hotbot": [ + "4.11.5" + ], + "hotbot search": [ + "4.11.5" + ], + "html": [ + "4.5.6" + ], + "huge": [ + "4.8.24" + ], + "huge pile": [ + "4.8.24" + ], + "huge single images": [ + "4.10.3" + ], + "hugh topic": [ + "4.7.2" + ], + "hundreds": [ + "4.5.0", + "4.5.0-p.224", + "4.5.2" + ], + "huntington beach museum": [ + "4.9.0-p.243#2" + ], + "hurrying": [ + "4.8.12" + ], + "hurrying and competing": [ + "4.8.12" + ], + "hybrids": [ + "4.5.0-p.224" + ], + "hyper controlled environments": [ + "4.0.0" + ], + "hypermodern": [ + "4.11.0" + ], + "hypertext description": [ + "4.8.16" + ], + "i'ld": [ + "4.8.26" + ], + "iconic": [ + "4.1.0" + ], + "iconic pieces": [ + "4.1.0", + "4.2.1" + ], + "idea": [ + "4.3.4", + "4.7.0", + "4.7.2" + ], + "ideas": [ + "4.8.21" + ], + "ideological pressure": [ + "4.8.1" + ], + "ideologies themselves": [ + "4.0.0" + ], + "iii": [ + "4.3.2" + ], + "illegal warehouse space": [ + "4.8.5", + "4.8.5" + ], + "illustration": [ + "4.2.7" + ], + "image": [ + "4.0.0", + "4.8.16" + ], + "image crossing": [ + "4.10.1" + ], + "imagery": [ + "4.11.0" + ], + "imbeciles": [ + "4.8.22" + ], + "imho": [ + "4.8.17" + ], + "impetus": [ + "4.5.1" + ], + "imply": [ + "4.8.18" + ], + "important": [ + "4.8.4" + ], + "important political": [ + "4.8.4" + ], + "important political element": [ + "4.8.4" + ], + "impossible": [ + "4.8.0" + ], + "impossible to discuss": [ + "4.8.0" + ], + "impossible to include": [ + "4.8.0" + ], + "improved a bit": [ + "4.2.2" + ], + "include a-life": [ + "4.2.3" + ], + "include earlier art": [ + "4.2.2", + "4.2.4" + ], + "include works": [ + "4.4.5" + ], + "included floppy versions": [ + "4.11.1" + ], + "includes global economic": [ + "4.8.0-p.240" + ], + "includes live performance": [ + "4.8.0-p.240" + ], + "including all perl": [ + "4.5.2" + ], + "including artistic": [ + "4.4.10" + ], + "including artistic interventions": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.1", + "4.4.4", + "4.4.10" + ], + "including bits": [ + "4.8.22", + "4.8.23" + ], + "including wolfgang staehle": [ + "4.7.0" + ], + "inclusion": [ + "4.2.7" + ], + "increasingly middle-class": [ + "4.8.3" + ], + "increasingly middle-class technologies": [ + "4.8.3" + ], + "increasingly technical people": [ + "4.7.2", + "4.7.3" + ], + "independent": [ + "4.5.1" + ], + "industry": [ + "4.8.11" + ], + "information": [ + "4.0.0" + ], + "information and broken": [ + "4.5.0", + "4.5.2" + ], + "information mapping": [ + "4.8.8" + ], + "information regarding art": [ + "4.10.0" + ], + "infowar": [ + "4.2.3" + ], + "inherent": [ + "4.4.12" + ], + "inherent critiques": [ + "4.4.12" + ], + "initially found problematic": [ + "4.8.1" + ], + "inkompetent": [ + "4.8.22" + ], + "inner circle": [ + "4.2.1" + ], + "inquisition": [ + "4.8.17" + ], + "insidious art-institutional": [ + "4.8.14" + ], + "insidious art-institutional entourage": [ + "4.8.14" + ], + "inspiring books": [ + "4.4.9" + ], + "instantaneous transmission": [ + "4.10.4" + ], + "institute": [ + "4.4.4" + ], + "institute of network": [ + "4.4.4" + ], + "institutional": [ + "4.2.7" + ], + "institutional art discourses": [ + "4.8.0-p.240" + ], + "institutional art system": [ + "4.8.21" + ], + "institutional capture": [ + "4.2.6", + "4.2.7" + ], + "institutional entourage": [ + "4.8.21" + ], + "institutional institutions begin": [ + "4.8.18" + ], + "institutional net art": [ + "4.8.0-p.240", + "4.8.0-p.240" + ], + "institutional practices": [ + "4.8.0-p.240" + ], + "institutional processes": [ + "4.8.0-p.240" + ], + "institutional reception": [ + "4.8.0-p.240" + ], + "institutions": [ + "4.6.0", + "4.8.10", + "4.8.15", + "4.8.19" + ], + "institutions demands": [ + "4.3.1" + ], + "institutions receive funding": [ + "4.6.0", + "4.6.0" + ], + "intellectual": [ + "4.5.1" + ], + "intellectual property": [ + "4.5.1" + ], + "intensive project": [ + "4.9.0-p.243#2" + ], + "intentional": [ + "4.8.0", + "4.8.1" + ], + "interactive": [ + "4.5.6", + "4.8.6", + "4.8.8", + "4.10.1" + ], + "interactive and networked": [ + "4.10.1" + ], + "interactive art": [ + "4.5.6" + ], + "interactive artworks": [ + "4.8.6" + ], + "interactivity": [ + "4.10.4" + ], + "interest": [ + "4.4.4" + ], + "interested to hear": [ + "4.4.9" + ], + "interesting": [ + "4.2.7", + "4.3.0", + "4.4.2", + "4.8.17", + "4.8.20", + "4.8.21" + ], + "international funding": [ + "4.11.0" + ], + "international im www": [ + "4.9.0-p.243#2" + ], + "international net": [ + "4.3.1" + ], + "international net art": [ + "4.3.1" + ], + "internationale stadt": [ + "4.10.1" + ], + "internet": [ + "4.1.0", + "4.2.7", + "4.3.4", + "4.5.0-p.224", + "4.5.1", + "4.5.3", + "4.5.4", + "4.5.5", + "4.5.7", + "4.8.4", + "4.8.6", + "4.8.8", + "4.10.2", + "4.11.2" + ], + "internet art": [ + "4.1.0", + "4.2.7", + "4.10.2" + ], + "internet art activities": [ + "4.10.2" + ], + "internet art forms": [ + "4.1.0", + "4.1.0" + ], + "internet art¹": [ + "4.1.0" + ], + "internet as public": [ + "4.8.4" + ], + "internet connection": [ + "4.5.7" + ], + "internet pre": [ + "4.8.6", + "4.8.8" + ], + "internet pre web": [ + "4.8.6", + "4.8.8" + ], + "interpretation": [ + "4.8.14" + ], + "intervention": [ + "4.4.2", + "4.9.0" + ], + "interventions": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1" + ], + "interview": [ + "4.8.21", + "4.8.25", + "4.8.26" + ], + "interview conducted": [ + "4.3.4" + ], + "interview process": [ + "4.8.25" + ], + "interview with rena": [ + "4.2.2" + ], + "interview yourself project": [ + "4.8.25", + "4.8.26", + "4.8.26" + ], + "interviews": [ + "4.8.11", + "4.8.12", + "4.8.21", + "4.8.24", + "4.8.25" + ], + "interviews dominate": [ + "4.8.24" + ], + "interviews dominate critics": [ + "4.8.24" + ], + "interviews dominate critics'": [ + "4.8.24" + ], + "intriguing": [ + "4.10.5" + ], + "intriguing to compare": [ + "4.10.5" + ], + "intrinsic forms": [ + "4.8.19" + ], + "introduction": [ + "4.8.10" + ], + "introduction i check": [ + "4.8.10" + ], + "inventing": [ + "4.8.23" + ], + "involved": [ + "4.7.0", + "4.10.5" + ], + "iod": [ + "4.8.22", + "4.8.23" + ], + "irational gallery ltd": [ + "4.9.0-p.243#2" + ], + "ironic gestures aside": [ + "4.8.0-p.240" + ], + "isea-forum": [ + "4.2.3" + ], + "issues trigger": [ + "4.8.20" + ], + "issues trigger response": [ + "4.8.20", + "4.8.20" + ], + "ivan redi wrote": [ + "4.8.21", + "4.8.21" + ], + "james johnson sweeny": [ + "4.3.4" + ], + "jamming signals": [ + "4.4.10" + ], + "jan": [ + "4.2.8" + ], + "jan ekenberg": [ + "4.8.8" + ], + "jan robert": [ + "4.2.8" + ], + "januar": [ + "4.9.0-p.243#2" + ], + "jennifer": [ + "4.10.0-p.250", + "4.11.0", + "4.11.3", + "4.11.4" + ], + "jennifer crowe": [ + "4.10.0-p.250", + "4.10.0-p.250", + "4.11.0", + "4.11.3", + "4.11.4" + ], + "jennifer crowe wrote": [ + "4.10.0-p.250", + "4.10.0-p.250", + "4.11.0", + "4.11.0", + "4.11.3", + "4.11.3", + "4.11.4", + "4.11.4" + ], + "job": [ + "4.8.26" + ], + "jodi": [ + "4.5.6", + "4.8.22" + ], + "jodi or iod": [ + "4.8.23" + ], + "jodis": [ + "4.5.6" + ], + "john hopkins": [ + "4.8.13", + "4.8.15" + ], + "john hopkins teaches": [ + "4.8.13", + "4.8.15" + ], + "johnson": [ + "4.10.4" + ], + "join": [ + "4.7.1" + ], + "join the south": [ + "4.7.1" + ], + "joke": [ + "4.2.0" + ], + "jon ippolito proposes": [ + "4.8.0-p.240" + ], + "josephine": [ + "4.2.4", + "4.7.0-p.228", + "4.8.0", + "4.8.2", + "4.8.6", + "4.8.12", + "4.8.21", + "4.8.25" + ], + "josephine berry": [ + "4.7.0-p.228", + "4.7.0-p.228", + "4.8.1", + "4.8.4" + ], + "josephine berry view": [ + "4.7.0-p.228", + "4.7.0-p.228" + ], + "josephine berry wrote": [ + "4.8.1", + "4.8.1" + ], + "josephine bosma": [ + "4.1.0", + "4.2.4", + "4.8.2", + "4.8.12", + "4.8.21", + "4.8.25" + ], + "josephine bosma wrote": [ + "4.8.21", + "4.8.21", + "4.8.25", + "4.8.25" + ], + "josephine intention": [ + "4.8.18" + ], + "jospehine bosma": [ + "4.8.2" + ], + "journalists": [ + "4.8.19" + ], + "joy": [ + "4.4.12" + ], + "joy buolamwini": [ + "4.4.12" + ], + "jpeg project": [ + "4.9.0-p.243#2" + ], + "judge art": [ + "4.8.11" + ], + "jul": [ + "4.5.0-p.224" + ], + "juni": [ + "4.9.0-p.243#2" + ], + "jurrasic park": [ + "4.8.13", + "4.8.15" + ], + "justify evey boring": [ + "4.5.6" + ], + "keigo yamamoto": [ + "4.10.1" + ], + "keith sonnier etc": [ + "4.3.3" + ], + "ken feingold": [ + "4.8.18" + ], + "keyes": [ + "4.4.12" + ], + "kind": [ + "4.4.0-p.219", + "4.4.9", + "4.8.9", + "4.8.26", + "4.10.3" + ], + "kind of furtiliser": [ + "4.8.26" + ], + "kind of half-god": [ + "4.8.9" + ], + "kind of product": [ + "4.5.0" + ], + "kind of project": [ + "4.8.26" + ], + "knowbotics research": [ + "4.4.1" + ], + "komar und melamid": [ + "4.9.0-p.243#2" + ], + "kommentari": [ + "4.8.12" + ], + "kontextsysteme": [ + "4.9.0-p.243#2" + ], + "kontextsysteme und": [ + "4.9.0-p.243#2" + ], + "kontextsysteme und andere": [ + "4.9.0-p.243#2", + "4.9.0-p.243#2" + ], + "kontrolliertes gestalten": [ + "4.8.16" + ], + "kosovars": [ + "4.9.0" + ], + "kosovo": [ + "4.9.0" + ], + "kosovo war": [ + "4.9.0" + ], + "kud france": [ + "4.2.1" + ], + "kud france preseren": [ + "4.2.1", + "4.2.1" + ], + "kunst im netz": [ + "4.9.0-p.243#2" + ], + "kunstlabor": [ + "4.10.1" + ], + "kurzweil": [ + "4.11.2" + ], + "lab munich": [ + "4.10.1" + ], + "label": [ + "4.2.0" + ], + "labeling of net.art": [ + "4.2.0" + ], + "labor-intensive": [ + "4.8.24" + ], + "labour time": [ + "4.10.4" + ], + "lack": [ + "4.8.0" + ], + "laclau": [ + "4.2.1" + ], + "landscape": [ + "4.4.5", + "4.8.13", + "4.8.15" + ], + "landscape of contemporary": [ + "4.8.13", + "4.8.15" + ], + "language": [ + "4.8.23" + ], + "large extent": [ + "4.8.0", + "4.8.1" + ], + "larger cultural change": [ + "4.7.0-p.228" + ], + "larger dreams": [ + "4.8.0-p.240" + ], + "larger electronic culture": [ + "4.8.0-p.240" + ], + "late": [ + "4.2.0-p.211" + ], + "late eighties": [ + "4.2.0-p.211" + ], + "late mark fisher": [ + "4.4.9", + "4.4.9" + ], + "laterally engage networks": [ + "4.4.2" + ], + "latour": [ + "4.4.5" + ], + "le musée standard": [ + "4.10.2" + ], + "le systčme": [ + "4.10.2" + ], + "lea chang": [ + "4.8.18" + ], + "leaning towards beauty": [ + "4.8.11" + ], + "learn": [ + "4.2.0-p.211" + ], + "learn to act": [ + "4.8.13", + "4.8.15" + ], + "legend about swingers'": [ + "4.2.6" + ], + "legible term": [ + "4.1.0" + ], + "level": [ + "4.4.0-p.219" + ], + "lialiana": [ + "4.8.24" + ], + "lialiana comments": [ + "4.8.24" + ], + "lialina": [ + "4.5.0-p.224", + "4.8.12", + "4.8.13", + "4.8.15", + "4.8.21", + "4.8.22" + ], + "lialina kommentari": [ + "4.8.12" + ], + "lialina wrote": [ + "4.8.13", + "4.8.15" + ], + "liberal arts": [ + "4.0.0" + ], + "license": [ + "4.5.2" + ], + "lichty": [ + "4.10.0-p.250" + ], + "light": [ + "4.0.0" + ], + "light cube": [ + "4.0.0" + ], + "light grey box": [ + "4.4.4" + ], + "light of fakeness": [ + "4.4.2" + ], + "limit": [ + "4.2.1" + ], + "limits": [ + "4.2.1" + ], + "line": [ + "4.5.0" + ], + "line gallery sites": [ + "4.10.0" + ], + "link": [ + "4.2.7", + "4.8.10" + ], + "links": [ + "4.5.0" + ], + "links that collapse": [ + "4.10.5" + ], + "lisa jevbratt": [ + "4.8.8" + ], + "list": [ + "4.2.1", + "4.2.2", + "4.2.4", + "4.2.5", + "4.2.7", + "4.2.8", + "4.2.9", + "4.4.9", + "4.6.0", + "4.7.0", + "4.7.2", + "4.7.3", + "4.8.0-p.240", + "4.8.20", + "4.10.3", + "4.11.1" + ], + "list archives": [ + "4.2.2", + "4.2.4", + "4.2.8" + ], + "list contains essential": [ + "4.2.8" + ], + "list initially": [ + "4.7.2", + "4.7.3" + ], + "list posts": [ + "4.2.9" + ], + "list posts back": [ + "4.2.5", + "4.2.9" + ], + "list protocol": [ + "4.10.0-p.250" + ], + "list protocol prone": [ + "4.10.0-p.250" + ], + "list realize": [ + "4.8.5" + ], + "list runner": [ + "4.2.9" + ], + "list slowly changed": [ + "4.8.0-p.240" + ], + "list-serving machine": [ + "4.5.0-p.224" + ], + "lists": [ + "4.11.0", + "4.11.1", + "4.11.4" + ], + "lists post": [ + "4.11.0", + "4.11.1" + ], + "listserv": [ + "4.11.0" + ], + "little absurd sentence": [ + "4.0.0" + ], + "living legends": [ + "4.3.1" + ], + "livre chorando": [ + "4.4.11" + ], + "livre chorando pitombas": [ + "4.4.11" + ], + "lobby for international": [ + "4.11.0" + ], + "local": [ + "4.4.2" + ], + "local authority databases": [ + "4.4.4", + "4.4.4" + ], + "local paper press": [ + "4.8.11" + ], + "location": [ + "4.3.0", + "4.6.0" + ], + "location based experience": [ + "4.6.0" + ], + "locative media": [ + "4.4.1" + ], + "log": [ + "4.2.1", + "4.2.4", + "4.2.9", + "4.7.3" + ], + "london atthe institute": [ + "4.3.4" + ], + "london<+>isle": [ + "4.3.4" + ], + "long": [ + "4.2.0-p.211", + "4.8.17" + ], + "long absensence": [ + "4.2.0-p.211" + ], + "long-term": [ + "4.11.0", + "4.11.1" + ], + "long-term plans": [ + "4.11.0", + "4.11.1" + ], + "longer": [ + "4.3.0-p.216", + "4.4.0" + ], + "looking fwd +": [ + "4.2.0" + ], + "loosely defined": [ + "4.8.0", + "4.8.1" + ], + "loosers ideology": [ + "4.4.0-p.219" + ], + "loosing": [ + "4.5.5" + ], + "los angeles": [ + "4.9.0-p.243#2" + ], + "los angeles september": [ + "4.9.0-p.243#2" + ], + "lost political significance": [ + "4.3.0-p.216", + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4" + ], + "lot": [ + "4.5.7", + "4.6.0", + "4.8.1", + "4.8.11", + "4.10.3" + ], + "love": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4", + "4.4.5", + "4.6.0", + "4.8.21", + "4.8.25" + ], + "love art": [ + "4.2.0-p.211" + ], + "love the construct": [ + "4.4.5" + ], + "love your questions": [ + "4.4.5" + ], + "lumičre brothers": [ + "4.0.0" + ], + "lynx": [ + "4.5.7" + ], + "m9nd aktivity resembles": [ + "4.8.22" + ], + "machine": [ + "4.10.0-p.250", + "4.11.3", + "4.11.4" + ], + "machine technology": [ + "4.8.3" + ], + "machinic art": [ + "4.3.4" + ], + "machinic art forms": [ + "4.3.4" + ], + "made": [ + "4.8.8" + ], + "made a connection": [ + "4.4.9" + ], + "made net.art": [ + "4.8.9" + ], + "magdalenian hunters scribbling": [ + "4.0.0" + ], + "mai": [ + "4.9.0-p.243#2" + ], + "mail": [ + "4.8.0", + "4.8.10", + "4.10.2" + ], + "mail archives": [ + "4.2.2" + ], + "mail art": [ + "4.8.0", + "4.8.11", + "4.8.18", + "4.10.2", + "4.10.3" + ], + "mail art archive": [ + "4.10.2", + "4.10.2" + ], + "mail art bbs": [ + "4.10.2", + "4.10.2" + ], + "mail art mothers": [ + "4.8.18" + ], + "mail art movement": [ + "4.8.0" + ], + "mail artists": [ + "4.8.0" + ], + "mail poem": [ + "4.10.2" + ], + "mailing": [ + "4.2.1", + "4.2.2", + "4.2.5", + "4.2.9", + "4.8.20" + ], + "mailing list": [ + "4.2.1", + "4.2.2", + "4.2.5", + "4.2.9", + "4.6.0", + "4.8.0-p.240", + "4.8.20" + ], + "mailing list archives": [ + "4.2.2", + "4.2.2" + ], + "mailing list nettime": [ + "4.8.0-p.240" + ], + "mailing list posts": [ + "4.2.5", + "4.2.9" + ], + "mailing list runner": [ + "4.2.9", + "4.2.9" + ], + "main forces": [ + "4.8.0-p.240" + ], + "main genealogical thread": [ + "4.8.0" + ], + "mainly diy sport": [ + "4.11.4" + ], + "mainstream media": [ + "4.0.0", + "4.8.0-p.240" + ], + "mainstream media shouldn": [ + "4.0.0" + ], + "maintained active": [ + "4.0.0" + ], + "mais": [ + "4.4.11" + ], + "mais nas": [ + "4.4.11" + ], + "mais nas ruas": [ + "4.4.11" + ], + "make": [ + "4.4.0", + "4.4.0-p.219", + "4.5.0-p.224", + "4.5.6", + "4.7.0-p.228", + "4.7.1", + "4.8.13", + "4.8.19", + "4.10.5", + "4.11.1", + "4.11.6" + ], + "make a comment": [ + "4.7.0-p.228" + ], + "make art": [ + "4.4.0-p.219" + ], + "make hundreds": [ + "4.5.0", + "4.5.2" + ], + "make it clear": [ + "4.7.1" + ], + "make jurrasic park": [ + "4.8.13" + ], + "make net.art": [ + "4.6.0" + ], + "make video": [ + "4.3.3" + ], + "make video artists": [ + "4.3.3" + ], + "make work": [ + "4.8.7" + ], + "makers": [ + "4.4.4" + ], + "makers reader": [ + "4.4.4" + ], + "makes": [ + "4.8.25" + ], + "makes net.art": [ + "4.8.9" + ], + "making": [ + "4.5.2", + "4.8.6", + "4.8.8", + "4.10.4" + ], + "making interactive": [ + "4.8.6", + "4.8.8" + ], + "making interactive artworks": [ + "4.8.6" + ], + "making mirrors": [ + "4.5.2" + ], + "making net art": [ + "4.8.0-p.240" + ], + "making them wait": [ + "4.10.4" + ], + "making work": [ + "4.4.1", + "4.4.5", + "4.4.10" + ], + "mammy": [ + "4.3.2" + ], + "manuscript library": [ + "4.2.4" + ], + "maos dadas": [ + "4.4.11" + ], + "march": [ + "4.11.2" + ], + "mark": [ + "4.8.10", + "4.8.11", + "4.8.24" + ], + "mark america": [ + "4.8.17" + ], + "mark amerika": [ + "4.8.11" + ], + "mark fisher": [ + "4.4.9" + ], + "market": [ + "4.8.2" + ], + "mass media": [ + "4.8.0-p.240" + ], + "mass media hyper": [ + "4.8.0-p.240" + ], + "material": [ + "4.2.0", + "4.11.6" + ], + "mathilde mupe": [ + "4.10.1" + ], + "matrix": [ + "4.8.6", + "4.8.8" + ], + "matrix artists network": [ + "4.10.2" + ], + "matsutake mushrooms": [ + "4.4.9" + ], + "matsutake mushrooms changed": [ + "4.4.9", + "4.4.9" + ], + "matter": [ + "4.8.4" + ], + "matthew": [ + "4.2.0-p.211" + ], + "matthew barney": [ + "4.2.0-p.211" + ], + "max": [ + "4.2.9" + ], + "meaning": [ + "4.2.1" + ], + "meaning incomplete knowledge": [ + "4.3.4" + ], + "meaningful": [ + "4.8.5" + ], + "meant": [ + "4.5.4" + ], + "mechanic arts": [ + "4.0.0" + ], + "medal": [ + "4.3.4" + ], + "medal award": [ + "4.3.4" + ], + "medal award site": [ + "4.3.4" + ], + "media": [ + "4.0.0", + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.2", + "4.4.4", + "4.4.5", + "4.6.0", + "4.8.0-p.240", + "4.8.4", + "4.8.7", + "4.8.11", + "4.8.16", + "4.10.0", + "4.11.1" + ], + "media art": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4", + "4.4.4", + "4.5.3", + "4.8.11", + "4.8.11" + ], + "media art activist": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4" + ], + "media art interventions": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4" + ], + "media art theory": [ + "4.8.11", + "4.8.11" + ], + "media arts": [ + "4.0.0" + ], + "media community based": [ + "4.6.0" + ], + "media critical anymore": [ + "4.8.11" + ], + "media industry": [ + "4.8.11" + ], + "media is harder": [ + "4.4.2" + ], + "media lab": [ + "4.10.1", + "4.11.1" + ], + "media lab munich": [ + "4.10.1", + "4.10.1" + ], + "media themselves": [ + "4.0.0" + ], + "media themselves deal": [ + "4.0.0" + ], + "media work": [ + "4.6.0" + ], + "media’": [ + "4.3.0-p.216", + "4.4.0" + ], + "medium": [ + "4.2.0-p.211", + "4.3.3", + "4.8.19", + "4.10.0" + ], + "mediums rarely approach": [ + "4.2.0" + ], + "meet art": [ + "4.3.1" + ], + "meet art institutions": [ + "4.3.1" + ], + "melinda": [ + "4.10.4" + ], + "melinda rackham": [ + "4.10.4" + ], + "melinda rackham quote": [ + "4.10.4" + ], + "melinda rackham wrote": [ + "4.10.3" + ], + "mention": [ + "4.7.1", + "4.8.4" + ], + "mention about funding": [ + "4.7.1" + ], + "mention treat": [ + "4.8.4" + ], + "mentioned": [ + "4.4.12" + ], + "mentioned a couple": [ + "4.8.18" + ], + "mercantile solutions aren": [ + "4.6.0" + ], + "mercury project": [ + "4.9.0-p.243#2" + ], + "messages": [ + "4.4.2", + "4.7.3" + ], + "messages from beryll": [ + "4.7.2", + "4.7.3" + ], + "met wolfgang staehle": [ + "4.10.0", + "4.10.0" + ], + "methology obviously leaves": [ + "4.9.0-p.243#2" + ], + "micha cardenas": [ + "4.4.1" + ], + "michael": [ + "4.2.6", + "4.2.8", + "4.2.9", + "4.3.2" + ], + "michael connor": [ + "4.2.6", + "4.2.9" + ], + "michael connor wrote": [ + "4.2.6", + "4.2.6" + ], + "microsoft word": [ + "4.8.16" + ], + "middle-class technologies": [ + "4.8.3" + ], + "migration a number": [ + "4.2.5" + ], + "millenium": [ + "4.8.26" + ], + "millenium disorder": [ + "4.8.25" + ], + "mind": [ + "4.8.24" + ], + "minded attitude towards": [ + "4.8.0-p.240" + ], + "minds": [ + "4.10.5" + ], + "mira": [ + "4.9.0" + ], + "mirror": [ + "4.8.10" + ], + "mirrors": [ + "4.5.2" + ], + "miss": [ + "4.2.8" + ], + "mission to preserve": [ + "4.11.0", + "4.11.1" + ], + "mistakes": [ + "4.7.0-p.228" + ], + "mit press": [ + "4.7.0", + "4.8.13" + ], + "mixing media criticism": [ + "4.0.0" + ], + "moderated art": [ + "4.0.0" + ], + "moderated art commitment": [ + "4.0.0" + ], + "moderation": [ + "4.7.0", + "4.7.2" + ], + "modern": [ + "4.8.1" + ], + "modern art": [ + "4.8.1" + ], + "modernist grandmasters conflate": [ + "4.3.4" + ], + "modernization": [ + "4.4.2" + ], + "modernization of consciousness": [ + "4.4.2" + ], + "modify": [ + "4.11.6" + ], + "moma intervention": [ + "4.4.2" + ], + "moment": [ + "4.6.0" + ], + "mon": [ + "4.5.1", + "4.8.13", + "4.8.14", + "4.8.15" + ], + "money": [ + "4.8.17" + ], + "monitor resolution etc": [ + "4.5.4" + ], + "month": [ + "4.7.2", + "4.7.3" + ], + "month ago": [ + "4.10.2" + ], + "month announcing": [ + "4.7.2", + "4.7.3" + ], + "monthly theme": [ + "4.7.2" + ], + "months": [ + "4.7.1" + ], + "months ago": [ + "4.7.1" + ], + "moravec": [ + "4.11.2" + ], + "moravec dreams": [ + "4.11.2" + ], + "moscow": [ + "4.3.4" + ], + "moscow wwwart centre": [ + "4.3.4", + "4.9.0-p.243#2" + ], + "moscow wwwart site": [ + "4.3.4", + "4.3.4" + ], + "moscow wwwarts": [ + "4.3.4", + "4.3.4" + ], + "moscow wwwarts centre": [ + "4.3.4", + "4.3.4" + ], + "moscow wwwarts collection": [ + "4.3.4" + ], + "moscow wwwarts gold": [ + "4.3.4" + ], + "moscow wwwarts page": [ + "4.3.4" + ], + "mothers": [ + "4.8.26" + ], + "mothers for mothers'": [ + "4.8.26" + ], + "move beyond": [ + "4.8.0-p.240" + ], + "movement": [ + "4.0.0", + "4.8.0", + "4.8.18" + ], + "moving images": [ + "4.5.7" + ], + "mrs.": [ + "4.8.21" + ], + "mrs. lialina": [ + "4.8.21" + ], + "msp": [ + "4.2.9" + ], + "mueum": [ + "4.4.2" + ], + "mulching": [ + "4.4.12" + ], + "mulching proposal": [ + "4.4.12" + ], + "murph wrote": [ + "4.8.15", + "4.8.15" + ], + "museum called cern": [ + "4.3.4" + ], + "museums": [ + "4.2.0-p.211", + "4.8.10", + "4.8.17" + ], + "museums and find": [ + "4.2.0-p.211" + ], + "mushrooms changed": [ + "4.4.9" + ], + "mythology of instantaneous": [ + "4.10.4" + ], + "myths makes net.art": [ + "4.8.9" + ], + "märz": [ + "4.9.0-p.243#2" + ], + "name doesn": [ + "4.5.7" + ], + "nas ruas": [ + "4.4.11" + ], + "natalie": [ + "4.2.1" + ], + "national": [ + "4.9.0" + ], + "national front": [ + "4.9.0" + ], + "national mueum": [ + "4.4.2" + ], + "nato": [ + "4.9.0" + ], + "nato protest": [ + "4.9.0" + ], + "nature": [ + "4.2.7" + ], + "ne + ne": [ + "4.8.22" + ], + "near total internalization": [ + "4.8.0-p.240" + ], + "neglect that groups": [ + "4.8.22", + "4.8.23" + ], + "neo-nazis": [ + "4.9.0" + ], + "net": [ + "4.0.0", + "4.1.0", + "4.2.0-p.211", + "4.2.1", + "4.2.4", + "4.3.0", + "4.3.1", + "4.3.2", + "4.4.0-p.219", + "4.5.0", + "4.5.0-p.224", + "4.5.1", + "4.5.2", + "4.5.3", + "4.5.4", + "4.5.5", + "4.5.6", + "4.5.7", + "4.6.0", + "4.7.0", + "4.7.0-p.228", + "4.7.2", + "4.7.3", + "4.8.0-p.240", + "4.8.1", + "4.8.2", + "4.8.7", + "4.8.10", + "4.8.11", + "4.8.12", + "4.8.13", + "4.8.15", + "4.8.16", + "4.8.17", + "4.8.18", + "4.8.19", + "4.8.20", + "4.8.21", + "4.8.25", + "4.9.0-p.243#2", + "4.10.0-p.250", + "4.10.2", + "4.10.3", + "4.11.1" + ], + "net artists/ artists": [ + "4.8.7" + ], + "net art": [ + "4.0.0", + "4.1.0", + "4.2.4", + "4.3.0", + "4.3.1", + "4.3.1", + "4.3.2", + "4.3.2", + "4.4.0-p.219", + "4.5.0", + "4.5.0-p.224", + "4.5.1", + "4.5.2", + "4.5.3", + "4.5.4", + "4.5.5", + "4.5.6", + "4.5.7", + "4.6.0", + "4.7.0", + "4.7.0-p.228", + "4.7.2", + "4.7.3", + "4.8.0-p.240", + "4.8.0-p.240", + "4.8.1", + "4.8.2", + "4.8.4", + "4.8.10", + "4.8.10", + "4.8.11", + "4.8.11", + "4.8.12", + "4.8.12", + "4.8.13", + "4.8.13", + "4.8.15", + "4.8.16", + "4.8.17", + "4.8.18", + "4.8.19", + "4.8.20", + "4.8.21", + "4.8.23", + "4.8.25", + "4.9.0-p.243#2", + "4.10.0-p.250", + "4.10.2", + "4.10.3" + ], + "net art anymore": [ + "4.8.2", + "4.8.2" + ], + "net art beyond": [ + "4.8.0-p.240" + ], + "net art comes": [ + "4.0.0" + ], + "net art criticism": [ + "4.8.0-p.240" + ], + "net art critics": [ + "4.8.10", + "4.8.10", + "4.8.11", + "4.8.11", + "4.8.12", + "4.8.12", + "4.8.13", + "4.8.13" + ], + "net art departments": [ + "4.3.1", + "4.3.1" + ], + "net art depend": [ + "4.7.0-p.228", + "4.7.0-p.228" + ], + "net art discourse": [ + "4.6.0", + "4.7.0", + "4.7.0", + "4.8.0-p.240", + "4.8.0-p.240" + ], + "net art exhibitions": [ + "4.8.11", + "4.8.11" + ], + "net art failed": [ + "4.8.10", + "4.8.10" + ], + "net art field": [ + "4.8.0-p.240", + "4.8.0-p.240" + ], + "net art galleries": [ + "4.3.1", + "4.3.1" + ], + "net art gallery": [ + "4.8.10" + ], + "net art historians": [ + "4.3.1" + ], + "net art histories": [ + "4.3.1", + "4.3.1", + "4.8.18", + "4.8.18" + ], + "net art history": [ + "4.1.0", + "4.1.0", + "4.2.1", + "4.2.4", + "4.8.0-p.240", + "4.8.0-p.240", + "4.8.1", + "4.9.0-p.243#2", + "4.10.3" + ], + "net art homework": [ + "4.2.1" + ], + "net art included": [ + "4.0.0" + ], + "net art institutions": [ + "4.6.0" + ], + "net art investigating": [ + "4.5.3", + "4.5.3" + ], + "net art journalists": [ + "4.8.11", + "4.8.11", + "4.8.12", + "4.8.19", + "4.8.19", + "4.8.21", + "4.8.21", + "4.8.25", + "4.8.25" + ], + "net art made": [ + "4.7.0-p.228" + ], + "net art masterpieces": [ + "4.3.2" + ], + "net art monuments": [ + "4.8.0-p.240", + "4.8.0-p.240" + ], + "net art movement": [ + "4.8.18", + "4.8.18" + ], + "net art museum": [ + "4.8.10" + ], + "net art needed": [ + "4.8.2" + ], + "net art objects": [ + "4.8.18" + ], + "net art obviously": [ + "4.8.4" + ], + "net art piece": [ + "4.3.0", + "4.8.2", + "4.8.2" + ], + "net art pieces": [ + "4.8.20" + ], + "net art pieces'": [ + "4.8.20" + ], + "net art practice": [ + "4.8.0-p.240", + "4.8.0-p.240", + "4.8.1" + ], + "net art project": [ + "4.5.3", + "4.11.4" + ], + "net art projects": [ + "4.8.0-p.240", + "4.8.0-p.240" + ], + "net art remains": [ + "4.8.0-p.240" + ], + "net art stars": [ + "4.3.1" + ], + "net art started": [ + "4.7.0-p.228", + "4.7.0-p.228" + ], + "net art theme": [ + "4.7.3", + "4.7.3" + ], + "net art themselves": [ + "4.8.11" + ], + "net art theory": [ + "4.8.0-p.240", + "4.8.0-p.240", + "4.8.11", + "4.8.11" + ], + "net art thing": [ + "4.5.6" + ], + "net art today": [ + "4.8.0-p.240" + ], + "net art works": [ + "4.8.0-p.240", + "4.8.11" + ], + "net art world": [ + "4.8.25" + ], + "net artist": [ + "4.3.2", + "4.8.20" + ], + "net artist cary": [ + "4.8.0-p.240" + ], + "net artists": [ + "4.3.1", + "4.3.1", + "4.3.2", + "4.3.2", + "4.8.2", + "4.8.7", + "4.8.10", + "4.8.10", + "4.8.11", + "4.8.13", + "4.8.15", + "4.8.17", + "4.8.21" + ], + "net artists changed": [ + "4.8.10", + "4.8.10", + "4.8.13", + "4.8.13", + "4.8.15", + "4.8.15", + "4.8.21", + "4.8.21" + ], + "net arts": [ + "4.8.0-p.240" + ], + "net artwork": [ + "4.4.0-p.219" + ], + "net artworks": [ + "4.3.0", + "4.3.0" + ], + "net based": [ + "4.8.20" + ], + "net based art": [ + "4.8.20", + "4.8.20" + ], + "net based works": [ + "4.8.20" + ], + "net capacity": [ + "4.5.5" + ], + "net fabric": [ + "4.3.0" + ], + "net galleries": [ + "4.4.0-p.219" + ], + "net in general": [ + "4.5.0", + "4.5.2" + ], + "net is art": [ + "4.0.0" + ], + "net location": [ + "4.3.0" + ], + "net offers": [ + "4.3.0" + ], + "net pieces": [ + "4.8.2" + ], + "net possibilities": [ + "4.3.0" + ], + "net projects": [ + "4.5.7", + "4.8.17" + ], + "net servers": [ + "4.5.0" + ], + "net stuff": [ + "4.8.2" + ], + "net work": [ + "4.10.3" + ], + "net work art": [ + "4.10.3" + ], + "net wrote": [ + "4.8.21" + ], + "net-art": [ + "4.2.0-p.211", + "4.3.1" + ], + "net.art": [ + "4.2.0", + "4.5.0-p.224", + "4.5.1", + "4.5.4", + "4.6.0", + "4.7.0-p.228", + "4.7.2", + "4.7.3", + "4.8.0", + "4.8.3", + "4.8.8", + "4.8.9", + "4.8.14", + "4.8.18", + "4.8.19", + "4.10.3" + ], + "net.art form": [ + "4.7.2" + ], + "net.art gallery": [ + "4.5.0-p.224" + ], + "net.art is independent": [ + "4.5.1" + ], + "net.art provided": [ + "4.8.14" + ], + "net.art real": [ + "4.8.19" + ], + "net.art real contenders": [ + "4.8.19" + ], + "net.art viewer": [ + "4.8.3" + ], + "net.art work": [ + "4.5.0-p.224" + ], + "net.artists": [ + "4.5.0-p.224", + "4.8.1" + ], + "net.condition": [ + "4.5.5" + ], + "net.condition web": [ + "4.5.5" + ], + "net.condition web site": [ + "4.5.5" + ], + "net.separation in russia": [ + "4.4.2" + ], + "netart": [ + "4.2.0", + "4.8.17" + ], + "netart academic": [ + "4.2.0" + ], + "netart academic/maker": [ + "4.2.0" + ], + "netart definite": [ + "4.2.0" + ], + "netart definitions": [ + "4.2.0" + ], + "netart discussions": [ + "4.2.0" + ], + "netarttrade": [ + "4.2.3" + ], + "netcom.com": [ + "4.11.0" + ], + "netscape": [ + "4.5.1", + "4.5.3", + "4.5.7" + ], + "netscape art": [ + "4.5.1", + "4.5.3" + ], + "nettime": [ + "4.2.3", + "4.3.2", + "4.5.1", + "4.8.0-p.240", + "4.8.20", + "4.10.0-p.250", + "4.10.3", + "4.11.1", + "4.11.2" + ], + "nettime could create": [ + "4.11.0" + ], + "nettime functions": [ + "4.11.1" + ], + "nettime subscribers": [ + "4.3.2" + ], + "nettime-l": [ + "4.5.0-p.224" + ], + "nettime-l list": [ + "4.5.0-p.224" + ], + "nettime.org archive": [ + "4.11.1" + ], + "nettime.org archive includes": [ + "4.11.1" + ], + "network": [ + "4.4.5", + "4.4.9", + "4.5.4", + "4.8.0", + "4.10.5" + ], + "network activist": [ + "4.4.9" + ], + "network activist projects": [ + "4.4.9" + ], + "network art": [ + "4.5.4", + "4.7.0-p.228", + "4.8.0-p.240" + ], + "network art environments": [ + "4.8.0-p.240" + ], + "network artists": [ + "4.8.0" + ], + "network bliss": [ + "4.10.5" + ], + "network cultures": [ + "4.4.4" + ], + "network politics": [ + "4.4.9" + ], + "network time": [ + "4.10.5" + ], + "network-independent art": [ + "4.5.3" + ], + "networked": [ + "4.10.1" + ], + "networked art pieces": [ + "4.8.0-p.240" + ], + "networked city": [ + "4.10.1" + ], + "networked communications infrastructure": [ + "4.4.9" + ], + "networked cultural field": [ + "4.8.0-p.240" + ], + "networked field": [ + "4.8.0-p.240" + ], + "networks": [ + "4.4.9", + "4.10.2" + ], + "netzkunst-institutionen januar": [ + "4.9.0-p.243#2" + ], + "net“ verliehen wird": [ + "4.9.0-p.243#2" + ], + "neverteless": [ + "4.8.22" + ], + "neverteless futile": [ + "4.8.22" + ], + "newmedia": [ + "4.8.19" + ], + "nicolas anatol": [ + "4.10.1" + ], + "nicolas anatol baginsky": [ + "4.10.1", + "4.10.1" + ], + "nine squares/neoism online": [ + "4.10.2" + ], + "non-exclusive": [ + "4.11.6" + ], + "normal": [ + "4.2.0-p.211" + ], + "normal experience": [ + "4.2.0-p.211" + ], + "normal protocols": [ + "4.11.6" + ], + "notable": [ + "4.2.6" + ], + "notable art": [ + "4.2.6" + ], + "notable art bbses": [ + "4.2.5", + "4.2.6" + ], + "notre médium": [ + "4.10.2" + ], + "nov": [ + "4.2.1" + ], + "november": [ + "4.9.0-p.243#2" + ], + "number of years": [ + "4.2.5" + ], + "ny post ones": [ + "4.4.2" + ], + "nyc": [ + "4.7.0", + "4.8.13", + "4.8.15", + "4.8.21" + ], + "object": [ + "4.3.3" + ], + "observation": [ + "4.5.1" + ], + "observes and participate": [ + "4.8.3" + ], + "occurred in december": [ + "4.1.0" + ], + "oct": [ + "4.2.1", + "4.2.4", + "4.2.9" + ], + "october": [ + "4.2.3" + ], + "offended": [ + "4.6.0" + ], + "office": [ + "4.7.1", + "4.8.24" + ], + "office of arts": [ + "4.7.1" + ], + "offline": [ + "4.5.5" + ], + "offline art": [ + "4.2.7" + ], + "offline art practices": [ + "4.2.7" + ], + "offline without loosing": [ + "4.5.5" + ], + "oktober": [ + "4.9.0-p.243#2" + ], + "oldartworld incestuous": [ + "4.8.14" + ], + "olia": [ + "4.5.3", + "4.5.6", + "4.5.7", + "4.8.12", + "4.8.13", + "4.8.15", + "4.8.21", + "4.8.22", + "4.8.24", + "4.8.25" + ], + "olia lialiana": [ + "4.8.24" + ], + "olia lialiana comments": [ + "4.8.24" + ], + "olia lialina": [ + "4.5.0-p.224", + "4.8.12", + "4.8.13", + "4.8.15", + "4.8.22", + "4.10.3" + ], + "olia lialina kommentari": [ + "4.8.12", + "4.8.12" + ], + "olia lialina wrote": [ + "4.8.11", + "4.8.13", + "4.8.13", + "4.8.15", + "4.8.15", + "4.8.25" + ], + "olia own works": [ + "4.5.7" + ], + "olialia": [ + "4.8.22" + ], + "olias": [ + "4.5.6" + ], + "on-line gallery sites": [ + "4.10.0" + ], + "ones own experiences": [ + "4.8.11" + ], + "ongoing": [ + "4.10.0-p.250" + ], + "ongoing discussion": [ + "4.10.0-p.250" + ], + "online": [ + "4.2.7", + "4.8.14", + "4.8.17", + "4.8.24" + ], + "online and digital": [ + "4.8.24" + ], + "online archive": [ + "4.2.4" + ], + "online art": [ + "4.2.6", + "4.2.7" + ], + "online art history": [ + "4.2.6", + "4.2.6", + "4.2.7", + "4.2.7" + ], + "online artist": [ + "4.2.7" + ], + "online artist community": [ + "4.2.7", + "4.2.7" + ], + "online artist networks": [ + "4.2.7", + "4.2.7" + ], + "online arts projects": [ + "4.8.19" + ], + "online net art": [ + "4.6.0" + ], + "online projects": [ + "4.8.17" + ], + "onsnipgreat": [ + "4.4.1" + ], + "open": [ + "4.8.25" + ], + "opinion obviously differs": [ + "4.10.2", + "4.10.3" + ], + "opposed": [ + "4.3.1" + ], + "opposed to art": [ + "4.3.1" + ], + "oppressive institutions": [ + "4.8.14" + ], + "org archive includes": [ + "4.11.1" + ], + "org repeating sites": [ + "4.5.0-p.224" + ], + "org web site": [ + "4.11.6" + ], + "original": [ + "4.4.0-p.219", + "4.5.0-p.224" + ], + "original artworks": [ + "4.4.0-p.219" + ], + "original net": [ + "4.4.0-p.219" + ], + "original net artwork": [ + "4.4.0-p.219", + "4.4.0-p.219" + ], + "original server": [ + "4.4.0-p.219" + ], + "originality": [ + "4.4.0-p.219" + ], + "originals": [ + "4.5.0-p.224" + ], + "os keyes et": [ + "4.4.12" + ], + "otherwise excellent book": [ + "4.0.0" + ], + "outdated": [ + "4.5.0" + ], + "outdated pages": [ + "4.5.0", + "4.5.2" + ], + "outer institutional forces": [ + "4.8.0-p.240" + ], + "output": [ + "4.8.24" + ], + "over.": [ + "4.8.19" + ], + "overexposure": [ + "4.8.7" + ], + "overexposure writes": [ + "4.8.7" + ], + "overlaying messages": [ + "4.4.2" + ], + "overwrite history": [ + "4.8.22" + ], + "own archive": [ + "4.2.4" + ], + "own artistic meanings": [ + "4.3.0" + ], + "own boundaries redefined": [ + "4.8.19" + ], + "own domain": [ + "4.5.0-p.224" + ], + "own electronic identity": [ + "4.3.0" + ], + "own electronic variety": [ + "4.3.0" + ], + "own endlessly deferred": [ + "4.8.0", + "4.8.1" + ], + "own fabric": [ + "4.3.0" + ], + "own intrinsic forms": [ + "4.8.19" + ], + "own potential quirks": [ + "4.5.3" + ], + "own powerful voice": [ + "4.3.0" + ], + "pacific rim cooking": [ + "4.2.1" + ], + "package creativity": [ + "4.8.7" + ], + "padeluun": [ + "4.2.2" + ], + "page": [ + "4.2.5", + "4.2.9" + ], + "page of threads": [ + "4.2.5", + "4.2.9" + ], + "pages": [ + "4.5.0", + "4.5.0-p.224", + "4.8.16" + ], + "painting": [ + "4.2.0" + ], + "pampas grass": [ + "4.2.6" + ], + "paparazzi": [ + "4.8.12", + "4.8.19", + "4.8.21" + ], + "paparazzi kontaminazie": [ + "4.8.12" + ], + "paper": [ + "4.11.4" + ], + "paper publications": [ + "4.11.1" + ], + "paragram": [ + "4.5.3" + ], + "part": [ + "4.2.5", + "4.2.6", + "4.7.0-p.228", + "4.8.3", + "4.8.4", + "4.8.10", + "4.8.26", + "4.11.1" + ], + "part iii": [ + "4.8.10" + ], + "participate swithin": [ + "4.8.3" + ], + "particular analyses concerns": [ + "4.7.0-p.228" + ], + "particularly significant anyway": [ + "4.8.15" + ], + "party": [ + "4.8.19" + ], + "party nearly over.": [ + "4.8.19" + ], + "past": [ + "4.4.9" + ], + "past few weeks": [ + "4.4.9" + ], + "past few years": [ + "4.4.9" + ], + "past offline art": [ + "4.8.8" + ], + "past.": [ + "4.8.23" + ], + "pat": [ + "4.10.0-p.250" + ], + "pat lichty": [ + "4.10.0-p.250" + ], + "pat lichty re": [ + "4.10.0-p.250" + ], + "pela ubiquidade": [ + "4.4.11" + ], + "pela ubiquidade das": [ + "4.4.11" + ], + "people": [ + "4.2.2", + "4.2.4", + "4.4.9", + "4.5.6", + "4.7.3", + "4.8.18", + "4.8.25", + "4.10.5" + ], + "people are involved": [ + "4.10.5" + ], + "people doing art": [ + "4.8.9" + ], + "people feel shut": [ + "4.8.11" + ], + "people forgot": [ + "4.8.11" + ], + "people using": [ + "4.8.9" + ], + "perception and semantics": [ + "4.8.19" + ], + "performance mit cusee": [ + "4.9.0-p.243#2" + ], + "performances": [ + "4.8.6", + "4.8.8" + ], + "periodically using normal": [ + "4.11.6" + ], + "perl": [ + "4.5.2" + ], + "perl cgis": [ + "4.5.2" + ], + "perl change everytime": [ + "4.5.6" + ], + "permutationen": [ + "4.5.0" + ], + "personal computer": [ + "4.8.0-p.240" + ], + "personally": [ + "4.4.5", + "4.8.24" + ], + "personally dont defend": [ + "4.4.0-p.219" + ], + "pgp": [ + "4.5.0" + ], + "pgp public": [ + "4.5.0" + ], + "phd thesis": [ + "4.4.5" + ], + "physical": [ + "4.6.0" + ], + "picked": [ + "4.7.3" + ], + "piece": [ + "4.5.6", + "4.8.2" + ], + "pieces": [ + "4.1.0" + ], + "pieces of net": [ + "4.1.0" + ], + "pile": [ + "4.8.24" + ], + "pile of anthologies": [ + "4.8.24" + ], + "piled": [ + "4.8.24" + ], + "pirate": [ + "4.4.0" + ], + "pirate care": [ + "4.4.0" + ], + "pirate care conference": [ + "4.4.0" + ], + "pit": [ + "4.8.14", + "4.8.22", + "4.8.23" + ], + "pit schultz": [ + "4.8.14", + "4.8.21", + "4.8.22", + "4.8.23" + ], + "pit schultz wrote": [ + "4.8.14", + "4.8.14" + ], + "pitombas": [ + "4.4.11" + ], + "pity": [ + "4.8.12" + ], + "pity that net": [ + "4.8.12" + ], + "place": [ + "4.5.1", + "4.8.4", + "4.8.24" + ], + "place for art": [ + "4.8.4" + ], + "plagiarist": [ + "4.8.26" + ], + "plain": [ + "4.10.0-p.250", + "4.11.4" + ], + "plain text": [ + "4.10.0-p.250", + "4.11.3", + "4.11.4" + ], + "plans": [ + "4.11.0", + "4.11.1" + ], + "plans for archival": [ + "4.11.0", + "4.11.1" + ], + "platform politics": [ + "4.4.5" + ], + "platforms": [ + "4.3.0-p.216", + "4.4.0" + ], + "please change belief": [ + "4.9.0-p.243#2" + ], + "please feel free": [ + "4.8.18" + ], + "please interview yourself": [ + "4.8.25" + ], + "pleasing/colorful data projections": [ + "4.8.20" + ], + "point": [ + "4.5.3", + "4.5.7", + "4.7.2", + "4.8.7", + "4.8.17" + ], + "point in time": [ + "4.8.7" + ], + "point on nettime": [ + "4.5.1" + ], + "point to add": [ + "4.10.4" + ], + "police forcing people": [ + "4.8.18" + ], + "political": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4", + "4.7.0-p.228", + "4.8.1", + "4.8.4", + "4.8.5", + "4.8.7" + ], + "political aspect": [ + "4.8.1" + ], + "political dissidence": [ + "4.0.0" + ], + "political element": [ + "4.8.4" + ], + "political gesture": [ + "4.8.5", + "4.8.7" + ], + "political impact": [ + "4.3.0-p.216", + "4.4.1", + "4.4.4" + ], + "political implications": [ + "4.0.0" + ], + "political power": [ + "4.8.4" + ], + "political power struggles": [ + "4.8.4" + ], + "political sense": [ + "4.8.1" + ], + "politics": [ + "4.4.9", + "4.8.4" + ], + "politics of networks": [ + "4.4.9" + ], + "poor": [ + "4.7.1" + ], + "poor grad student": [ + "4.6.0" + ], + "poorly thought-out data": [ + "4.2.5" + ], + "popular art": [ + "4.8.0-p.240" + ], + "popular art discourse": [ + "4.8.0-p.240", + "4.8.0-p.240" + ], + "popular art history": [ + "4.8.0-p.240" + ], + "popular conception": [ + "4.8.0-p.240" + ], + "popular discussion": [ + "4.4.9" + ], + "port": [ + "4.11.3" + ], + "possibilities": [ + "4.3.0" + ], + "post": [ + "4.1.0", + "4.4.2", + "4.11.1" + ], + "post some comments": [ + "4.11.0", + "4.11.1" + ], + "post-internet art": [ + "4.2.7" + ], + "post-network art": [ + "4.8.0-p.240" + ], + "posting": [ + "4.11.6" + ], + "postmodern culture": [ + "4.10.2" + ], + "posts": [ + "4.2.3", + "4.2.5", + "4.2.9" + ], + "posts back": [ + "4.2.9" + ], + "potential": [ + "4.8.4", + "4.8.20" + ], + "pov": [ + "4.7.0" + ], + "practical field": [ + "4.8.0-p.240" + ], + "practice": [ + "4.8.0", + "4.8.1" + ], + "practices": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4" + ], + "pranked inner circle": [ + "4.2.1" + ], + "pre": [ + "4.8.6", + "4.8.8" + ], + "pre web": [ + "4.8.6", + "4.8.8" + ], + "pre web days": [ + "4.8.6", + "4.8.8" + ], + "precious little art": [ + "4.3.0" + ], + "precisely": [ + "4.0.0" + ], + "precisely tried": [ + "4.8.0" + ], + "prefer to rename": [ + "4.5.4" + ], + "pregnant": [ + "4.8.26" + ], + "pregnant easier": [ + "4.8.26" + ], + "pregnant women": [ + "4.8.26" + ], + "pregnant women donate": [ + "4.8.26" + ], + "present": [ + "4.7.2" + ], + "presentation": [ + "4.4.12" + ], + "presenting net art": [ + "4.5.7" + ], + "presently powerful position": [ + "4.8.0-p.240" + ], + "preserve": [ + "4.11.0" + ], + "preserved": [ + "4.2.6" + ], + "press attention": [ + "4.4.12" + ], + "priced editing equipment": [ + "4.3.3" + ], + "primary media platform": [ + "4.5.5" + ], + "private email exchange": [ + "4.8.0-p.240" + ], + "prix ars electronica": [ + "4.9.0-p.243#2" + ], + "prizes knowledge sharing": [ + "4.4.12", + "4.4.12" + ], + "problem": [ + "4.8.11", + "4.8.17" + ], + "problem net": [ + "4.8.21" + ], + "problem net art": [ + "4.8.11", + "4.8.19", + "4.8.21", + "4.8.25" + ], + "problematic": [ + "4.8.1" + ], + "problems": [ + "4.3.3" + ], + "process": [ + "4.2.4", + "4.8.25" + ], + "process begun roughly": [ + "4.0.0" + ], + "proclaim net art": [ + "4.8.1" + ], + "produce": [ + "4.4.0-p.219" + ], + "produce print publications": [ + "4.11.1" + ], + "produce relevant artistic": [ + "4.8.16" + ], + "product": [ + "4.2.7" + ], + "product of rhizome": [ + "4.2.6", + "4.2.7" + ], + "profile architectural offices": [ + "4.8.16" + ], + "profitably singular tag": [ + "4.8.5" + ], + "program": [ + "4.2.6" + ], + "programming language": [ + "4.8.22", + "4.8.23" + ], + "project": [ + "4.8.25", + "4.8.26", + "4.9.0-p.243#2", + "4.11.0", + "4.11.6" + ], + "projects": [ + "4.4.12", + "4.5.6", + "4.5.7", + "4.8.17", + "4.10.2" + ], + "projects between 1993-1996": [ + "4.10.0" + ], + "projects mentioned": [ + "4.4.12" + ], + "properly named": [ + "4.5.1" + ], + "property": [ + "4.5.1" + ], + "proposal": [ + "4.4.12" + ], + "proposal to inform": [ + "4.10.2" + ], + "propose": [ + "4.8.26" + ], + "prospective": [ + "4.0.0" + ], + "prosperous present": [ + "4.3.1" + ], + "protect original artworks": [ + "4.4.0-p.219" + ], + "protest": [ + "4.9.0" + ], + "protocol prone": [ + "4.10.0-p.250" + ], + "provided": [ + "4.8.14" + ], + "provocation to response": [ + "4.4.2" + ], + "public": [ + "4.3.4", + "4.8.4", + "4.8.16", + "4.11.1" + ], + "public archives": [ + "4.11.1", + "4.11.1" + ], + "public beyond consumerism": [ + "4.0.0" + ], + "public image": [ + "4.8.16" + ], + "public license": [ + "4.5.2" + ], + "public netbase t0": [ + "4.9.0-p.243#2" + ], + "public space": [ + "4.8.4" + ], + "publishing medium": [ + "4.10.4" + ], + "pulled": [ + "4.2.8" + ], + "purely ideological approach": [ + "4.8.1" + ], + "purpose": [ + "4.8.7" + ], + "purpose of art": [ + "4.8.7" + ], + "purposes": [ + "4.8.5", + "4.8.7" + ], + "push to institutionalize": [ + "4.8.7" + ], + "pushed towards": [ + "4.8.0-p.240" + ], + "put": [ + "4.5.6", + "4.7.0-p.228", + "4.8.22", + "4.10.3" + ], + "put forward": [ + "4.5.6" + ], + "question": [ + "4.7.1" + ], + "question of perception": [ + "4.8.19" + ], + "question recognizes": [ + "4.4.5" + ], + "questions": [ + "4.7.2", + "4.8.25", + "4.11.1" + ], + "quick and dirty": [ + "4.3.3" + ], + "quick to swallow": [ + "4.8.14" + ], + "quietly": [ + "4.3.1" + ], + "quietly ditched": [ + "4.3.1" + ], + "quirk": [ + "4.7.3" + ], + "quote": [ + "4.10.4" + ], + "quote from tiia": [ + "4.10.4" + ], + "rachel": [ + "4.1.0", + "4.4.0", + "4.4.1", + "4.4.4", + "4.4.5", + "4.4.10" + ], + "rachel greene": [ + "4.1.0" + ], + "rachel greene believed": [ + "4.1.0", + "4.1.0" + ], + "rachel greene didn": [ + "4.1.0" + ], + "rackham": [ + "4.10.4" + ], + "rackham quote": [ + "4.10.4" + ], + "radical": [ + "4.8.7", + "4.9.0" + ], + "radical counter force": [ + "4.8.0-p.240" + ], + "radical political": [ + "4.8.7" + ], + "radical political gesture": [ + "4.8.5", + "4.8.5", + "4.8.7", + "4.8.7" + ], + "radicality": [ + "4.9.0" + ], + "radio communities": [ + "4.4.1", + "4.4.10" + ], + "ran the internet": [ + "4.11.2" + ], + "randolph street gallery": [ + "4.9.0-p.243#2" + ], + "rare book": [ + "4.2.4" + ], + "rasa and raitis": [ + "4.4.10" + ], + "raw": [ + "4.2.3", + "4.2.8", + "4.11.3" + ], + "raw ascii bits": [ + "4.11.4" + ], + "raw list": [ + "4.2.8" + ], + "raw to october": [ + "4.2.3", + "4.2.5" + ], + "ray kurzweil": [ + "4.11.2" + ], + "reached via": [ + "4.0.0" + ], + "read": [ + "4.8.9" + ], + "read erik": [ + "4.8.9" + ], + "read erik davis": [ + "4.8.9" + ], + "read erik davis'": [ + "4.8.9" + ], + "reader": [ + "4.4.4" + ], + "reading": [ + "4.2.4", + "4.8.1" + ], + "ready to answer": [ + "4.3.2" + ], + "real": [ + "4.4.0-p.219", + "4.5.0-p.224", + "4.8.10", + "4.8.19" + ], + "real art": [ + "4.3.3", + "4.4.0-p.219" + ], + "real dissection": [ + "4.8.19" + ], + "real exhibitions": [ + "4.10.0" + ], + "real look unreal": [ + "4.0.0" + ], + "real net": [ + "4.8.10" + ], + "real net art": [ + "4.8.10" + ], + "real power": [ + "4.5.0-p.224" + ], + "real sort online": [ + "4.10.4" + ], + "real time": [ + "4.4.0-p.219" + ], + "real time interaction": [ + "4.4.0-p.219", + "4.4.0-p.219" + ], + "real world": [ + "4.5.0-p.224" + ], + "real-time video software": [ + "4.2.9" + ], + "realize this approach": [ + "4.8.5" + ], + "realtime environment called": [ + "4.8.17" + ], + "reason": [ + "4.8.20" + ], + "rebuilds its list-serving": [ + "4.5.0-p.224" + ], + "received": [ + "4.11.5" + ], + "recent netart": [ + "4.2.0", + "4.2.0" + ], + "recent scholarly": [ + "4.4.12" + ], + "recent scholarly work": [ + "4.4.12" + ], + "recently the thing": [ + "4.7.0" + ], + "record": [ + "4.11.5" + ], + "recorded antics": [ + "4.11.2" + ], + "recycler": [ + "4.8.18" + ], + "recycler gallery images": [ + "4.8.18" + ], + "redi wrote": [ + "4.8.21" + ], + "reduced": [ + "4.8.12" + ], + "reedited version": [ + "4.10.4" + ], + "reference": [ + "4.8.5" + ], + "reference my work": [ + "4.8.5" + ], + "reframed": [ + "4.2.3" + ], + "refresh": [ + "4.3.4" + ], + "regional": [ + "4.7.1" + ], + "regional office": [ + "4.7.1" + ], + "regular": [ + "4.8.21" + ], + "relevant": [ + "4.8.16" + ], + "relevant to contemporary": [ + "4.2.0" + ], + "reliable graphic-capable browsers": [ + "4.5.4" + ], + "rely": [ + "4.5.5" + ], + "remains": [ + "4.10.5" + ], + "remember": [ + "4.5.4" + ], + "remo campopiano": [ + "4.7.0" + ], + "rena": [ + "4.2.2" + ], + "rena tangens": [ + "4.2.2", + "4.2.4" + ], + "renaissance optical cube": [ + "4.0.0" + ], + "replace net art": [ + "4.8.0-p.240" + ], + "replace personal experience": [ + "4.8.22" + ], + "replies": [ + "4.4.9" + ], + "reply": [ + "4.7.3" + ], + "reply-to": [ + "4.2.1" + ], + "reproduce": [ + "4.11.6" + ], + "republishing the reedited": [ + "4.10.4" + ], + "repurposed january": [ + "4.2.9" + ], + "request": [ + "4.10.0" + ], + "requires both technological": [ + "4.8.3" + ], + "research": [ + "4.4.5", + "4.4.12", + "4.8.5" + ], + "research and savvy": [ + "4.4.12" + ], + "research goals": [ + "4.4.5" + ], + "research question": [ + "4.4.5" + ], + "research question recognizes": [ + "4.4.5", + "4.4.5" + ], + "researcher joy": [ + "4.4.12" + ], + "researcher joy buolamwini": [ + "4.4.12" + ], + "researchers": [ + "4.4.12" + ], + "residual folk memory": [ + "4.2.0-p.211" + ], + "resisting the push": [ + "4.8.7" + ], + "resonant net artworks": [ + "4.3.0" + ], + "resonant net": [ + "4.3.0" + ], + "resonant net artworks": [ + "4.3.0", + "4.3.0" + ], + "respect": [ + "4.7.0-p.228" + ], + "responded": [ + "4.10.0" + ], + "responded to tilman": [ + "4.10.0" + ], + "responding": [ + "4.7.3" + ], + "response": [ + "4.7.1", + "4.8.5", + "4.8.20", + "4.10.0" + ], + "response and create": [ + "4.8.20" + ], + "responses": [ + "4.8.24" + ], + "responsibility": [ + "4.10.4" + ], + "restless simplistic reversal": [ + "4.8.5" + ], + "reverse solidus": [ + "4.11.0" + ], + "revision in today": [ + "4.4.5" + ], + "rewired": [ + "4.11.5" + ], + "rhizome": [ + "4.1.0", + "4.2.2", + "4.2.3", + "4.2.4", + "4.2.5", + "4.2.6", + "4.2.7", + "4.2.9", + "4.6.0", + "4.10.0-p.250", + "4.11.3", + "4.11.4", + "4.11.6" + ], + "rhizome archive": [ + "4.10.0-p.250", + "4.11.4" + ], + "rhizome archives": [ + "4.2.2", + "4.2.2" + ], + "rhizome communications": [ + "4.11.6", + "4.11.6" + ], + "rhizome communications reserves": [ + "4.11.6", + "4.11.6" + ], + "rhizome contentbase": [ + "4.11.6" + ], + "rhizome digest": [ + "4.11.3", + "4.11.4", + "4.11.6" + ], + "rhizome element": [ + "4.6.0" + ], + "rhizome mailing": [ + "4.2.2", + "4.2.5", + "4.2.9" + ], + "rhizome mailing list": [ + "4.2.2", + "4.2.4", + "4.2.5", + "4.2.9" + ], + "rhizome posts": [ + "4.2.3", + "4.2.5" + ], + "rhizome rachel": [ + "4.1.0" + ], + "rhizome rachel greene": [ + "4.1.0" + ], + "rhizome raw": [ + "4.11.3", + "4.11.4", + "4.11.6" + ], + "rhizome web": [ + "4.11.6" + ], + "rhizome web site": [ + "4.11.6", + "4.11.6" + ], + "rhizome website": [ + "4.2.5", + "4.2.9" + ], + "rhizome website currently": [ + "4.2.5", + "4.2.9" + ], + "rhizome.org": [ + "4.11.3", + "4.11.6" + ], + "rhizome.org web": [ + "4.11.6" + ], + "rhizome.org web site": [ + "4.11.6" + ], + "richard": [ + "4.9.0" + ], + "rixc.org and rasa": [ + "4.4.10" + ], + "rob": [ + "4.7.0", + "4.11.5" + ], + "robbin murphy writes": [ + "4.8.16" + ], + "robert": [ + "4.2.2", + "4.2.8", + "4.8.4" + ], + "robert adrian": [ + "4.2.2", + "4.2.4", + "4.8.4" + ], + "robert adrian wrote": [ + "4.8.4", + "4.8.4" + ], + "robert atkis": [ + "4.8.24" + ], + "robots": [ + "4.11.2" + ], + "robots of hans": [ + "4.11.2" + ], + "rom": [ + "4.10.0" + ], + "rom exhibitions": [ + "4.10.0" + ], + "royalty-free": [ + "4.11.6" + ], + "ruas": [ + "4.4.11" + ], + "rubenstein rare": [ + "4.2.4" + ], + "rubenstein rare book": [ + "4.2.4" + ], + "ruhani": [ + "4.4.2" + ], + "ruhani zhangru": [ + "4.4.2" + ], + "run by robert": [ + "4.2.2" + ], + "runs entirely inside": [ + "4.5.0" + ], + "russia and iran": [ + "4.4.2" + ], + "sabine bitter": [ + "4.10.1" + ], + "san": [ + "4.11.2" + ], + "san francisco": [ + "4.11.2" + ], + "sandra geringer gallery": [ + "4.9.0-p.243#2" + ], + "sao paolo biennal": [ + "4.10.2" + ], + "sat": [ + "4.10.2" + ], + "satellite photography technologies": [ + "4.0.0" + ], + "satisfaction": [ + "4.2.1" + ], + "satisfaction survey": [ + "4.2.1" + ], + "savvy": [ + "4.4.12" + ], + "savvy presentation": [ + "4.4.12" + ], + "scale": [ + "4.11.2" + ], + "scholarly work": [ + "4.4.12" + ], + "school": [ + "4.8.23" + ], + "schrieb": [ + "4.5.1" + ], + "schrieb craig": [ + "4.5.1" + ], + "schrieb craig brozefsky": [ + "4.5.1" + ], + "schrieb tilman": [ + "4.10.2" + ], + "schrieb tilman baumgaertel": [ + "4.10.2", + "4.10.3" + ], + "schultz": [ + "4.8.14", + "4.8.22", + "4.8.23" + ], + "schultz wrote": [ + "4.8.14" + ], + "screen": [ + "4.3.3" + ], + "sculpture": [ + "4.3.0" + ], + "search": [ + "4.11.5" + ], + "search engine digital artisans<": [ + "4.0.0" + ], + "time net.art": [ + "4.7.0-p.228" + ], + "time net.art started": [ + "4.7.0-p.228" + ], + "timeless": [ + "4.10.5" + ], + "timeless in form": [ + "4.10.5" + ], + "times": [ + "4.0.0", + "4.2.2", + "4.4.2" + ], + "tired insidious": [ + "4.8.14" + ], + "tired insidious art-institutional": [ + "4.8.14" + ], + "today": [ + "4.2.1" + ], + "today landscape": [ + "4.4.5" + ], + "tom on thu": [ + "4.4.4" + ], + "tool": [ + "4.7.2" + ], + "topic": [ + "4.7.0", + "4.7.2", + "4.7.3" + ], + "trade": [ + "4.8.9" + ], + "trade and thiefs": [ + "4.8.9" + ], + "traditional art": [ + "4.3.3", + "4.5.0-p.224" + ], + "traditional art institutions": [ + "4.3.3", + "4.3.3" + ], + "traditional art practitioners": [ + "4.8.0-p.240" + ], + "traditional art professionals": [ + "4.8.11" + ], + "traditional marketing strategies": [ + "4.5.4" + ], + "traditional sense": [ + "4.3.3", + "4.8.11" + ], + "trail sites": [ + "4.10.0" + ], + "transborder tool": [ + "4.4.1" + ], + "transform": [ + "4.8.15" + ], + "translations": [ + "4.3.2" + ], + "translations in english-russian": [ + "4.3.2" + ], + "transmediale": [ + "4.4.9", + "4.8.17" + ], + "transmediale is exploring": [ + "4.4.9" + ], + "transmission": [ + "4.10.4" + ], + "trash": [ + "4.4.0-p.219" + ], + "treat": [ + "4.8.4" + ], + "treat the internet": [ + "4.8.4" + ], + "treat video": [ + "4.3.3" + ], + "tredi": [ + "4.4.11" + ], + "tredi digitofagico": [ + "4.4.11" + ], + "trendy": [ + "4.9.0" + ], + "trendy website": [ + "4.9.0" + ], + "trickster": [ + "4.8.9" + ], + "trigger": [ + "4.8.20" + ], + "trigger response": [ + "4.8.20" + ], + "true": [ + "4.10.0-p.250", + "4.11.3", + "4.11.4" + ], + "true art apparently": [ + "4.8.0-p.240" + ], + "true virtual reality": [ + "4.0.0" + ], + "tsing a mushroom": [ + "4.4.9" + ], + "tue": [ + "4.2.1", + "4.10.3", + "4.11.6" + ], + "twentieth century": [ + "4.8.0-p.240" + ], + "twhid": [ + "4.11.1" + ], + "txt": [ + "4.10.0-p.250", + "4.11.3", + "4.11.4" + ], + "txt files": [ + "4.10.0-p.250", + "4.11.3", + "4.11.4" + ], + "type of machine": [ + "4.10.0-p.250", + "4.11.4" + ], + "typical user": [ + "4.8.3" + ], + "uae": [ + "4.4.2" + ], + "ubiquidade das": [ + "4.4.11" + ], + "ubiquidade das ferramentas": [ + "4.4.11" + ], + "ulrike gabriel": [ + "4.10.1" + ], + "ultimate lazy act": [ + "4.8.0-p.240" + ], + "uly": [ + "4.3.3" + ], + "unbeatable archival technique": [ + "4.11.1" + ], + "unbreakable modernist habit": [ + "4.8.18", + "4.8.18" + ], + "und": [ + "4.9.0-p.243#2" + ], + "understand": [ + "4.2.7", + "4.7.2" + ], + "understand themselves precisely": [ + "4.8.0" + ], + "understandable": [ + "4.8.22" + ], + "understandable but neverteless": [ + "4.8.22" + ], + "understanding": [ + "4.8.16", + "4.8.23" + ], + "undisputed field": [ + "4.4.10" + ], + "undisturbed life consumers": [ + "4.0.0" + ], + "unfolding art project": [ + "4.8.0-p.240" + ], + "unfortunate development caused": [ + "4.8.0-p.240" + ], + "unfurl": [ + "4.2.4" + ], + "unhappy net artists": [ + "4.8.25", + "4.8.25" + ], + "universities": [ + "4.8.15" + ], + "university": [ + "4.9.0-p.243#2" + ], + "unix-like": [ + "4.5.0", + "4.5.2" + ], + "unix-like server": [ + "4.5.0", + "4.5.2" + ], + "unmask": [ + "4.2.1", + "4.2.4", + "4.2.9", + "4.7.3" + ], + "unstable media v2": [ + "4.8.0-p.240" + ], + "unstable monuments": [ + "4.8.0-p.240" + ], + "upcoming": [ + "4.4.4" + ], + "upcoming critical": [ + "4.4.4" + ], + "upcoming critical makers": [ + "4.4.4" + ], + "upload": [ + "4.10.4" + ], + "upload and boot": [ + "4.10.4" + ], + "urban exercises": [ + "4.10.1" + ], + "urban exile galerie": [ + "4.9.0-p.243#2" + ], + "urgent legend": [ + "4.2.6" + ], + "urine": [ + "4.8.26" + ], + "url": [ + "4.5.5" + ], + "url display": [ + "4.5.5", + "4.5.7" + ], + "usa": [ + "4.8.7", + "4.9.0-p.243#2" + ], + "user": [ + "4.8.3" + ], + "user interactivity": [ + "4.8.3" + ], + "user interface paradigms": [ + "4.5.3" + ], + "user takes responsibility": [ + "4.10.4" + ], + "user-viewer": [ + "4.8.3" + ], + "user-viewer is simply": [ + "4.8.3" + ], + "using computer networks": [ + "4.10.2" + ], + "using net": [ + "4.3.2" + ], + "usual mailing lists": [ + "4.8.25" + ], + "utilizing mobile tools": [ + "4.4.1" + ], + "various lists": [ + "4.11.1" + ], + "various online curatorial": [ + "4.7.0" + ], + "various partial archives": [ + "4.11.1" + ], + "various tactical": [ + "4.4.4" + ], + "vast majority": [ + "4.8.14" + ], + "venice bienale etc": [ + "4.7.3" + ], + "version": [ + "4.5.4" + ], + "version bei": [ + "4.9.0-p.243#2" + ], + "vestige of labour": [ + "4.10.4" + ], + "vez mais": [ + "4.4.11" + ], + "vez mais nas": [ + "4.4.11" + ], + "via negative": [ + "4.0.0" + ], + "via net art": [ + "4.0.0" + ], + "video": [ + "4.0.0", + "4.2.0-p.211", + "4.3.3", + "4.7.2" + ], + "video art": [ + "4.0.0", + "4.2.0-p.211", + "4.3.0", + "4.3.3", + "4.5.6", + "4.7.2" + ], + "video art aimed": [ + "4.0.0", + "4.0.0" + ], + "video art launched": [ + "4.0.0", + "4.0.0" + ], + "video artists": [ + "4.3.3" + ], + "video medium": [ + "4.3.3" + ], + "video medium altogether": [ + "4.3.3", + "4.3.3" + ], + "video performance": [ + "4.3.3" + ], + "video software": [ + "4.2.9" + ], + "video tape": [ + "4.3.3" + ], + "video tape coincided": [ + "4.3.3" + ], + "video/audio networked performance": [ + "4.8.18" + ], + "vienna": [ + "4.10.1" + ], + "viennese performance": [ + "4.8.0-p.240" + ], + "viennese shopping audience": [ + "4.8.0-p.240" + ], + "view": [ + "4.2.3", + "4.7.2" + ], + "view net art": [ + "4.7.0", + "4.7.2", + "4.7.2" + ], + "viewable via ultra": [ + "4.5.5" + ], + "viewed offline": [ + "4.5.5" + ], + "viewer": [ + "4.8.3" + ], + "viewer interpretation": [ + "4.8.3" + ], + "viewing": [ + "4.5.4" + ], + "virtual art museums": [ + "4.3.3", + "4.3.3" + ], + "visual": [ + "4.0.0", + "4.8.23" + ], + "visual arts": [ + "4.0.0" + ], + "visual description": [ + "4.8.16" + ], + "visual environments beyond": [ + "4.0.0" + ], + "visual layers": [ + "4.8.22", + "4.8.23" + ], + "visual layers plus": [ + "4.8.9", + "4.8.21", + "4.8.22", + "4.8.23" + ], + "vital": [ + "4.10.5" + ], + "vital by bringing": [ + "4.10.5" + ], + "vns": [ + "4.8.6", + "4.8.8" + ], + "vns matrix": [ + "4.8.6", + "4.8.8" + ], + "vote": [ + "4.11.5" + ], + "voti": [ + "4.2.3" + ], + "vuk": [ + "4.1.0", + "4.5.7" + ], + "vuk cosic": [ + "4.1.0", + "4.2.1", + "4.3.4" + ], + "vuk cosic interview": [ + "4.2.4" + ], + "vuk cosic opened": [ + "4.1.0" + ], + "wait": [ + "4.10.4" + ], + "wanted": [ + "4.4.12" + ], + "wanted to contribute": [ + "4.4.12" + ], + "wanted to suggest": [ + "4.5.1", + "4.5.3" + ], + "war": [ + "4.9.0" + ], + "washington": [ + "4.4.2" + ], + "washington post": [ + "4.4.2", + "4.4.2" + ], + "waxweb als": [ + "4.9.0-p.243#2" + ], + "waxweb als hypertext": [ + "4.9.0-p.243#2" + ], + "waxweb mit web": [ + "4.9.0-p.243#2" + ], + "web": [ + "4.4.5", + "4.5.0-p.224", + "4.5.3", + "4.5.4", + "4.5.5", + "4.5.6", + "4.8.6", + "4.8.8", + "4.8.16", + "4.10.3", + "4.10.4", + "4.11.6" + ], + "web art": [ + "4.5.4", + "4.8.0-p.240", + "4.8.0-p.240", + "4.10.3" + ], + "web days": [ + "4.8.6", + "4.8.8" + ], + "web design": [ + "4.8.0-p.240" + ], + "web design slowly": [ + "4.8.0-p.240" + ], + "web designers": [ + "4.8.0-p.240" + ], + "web event": [ + "4.8.8" + ], + "web pages": [ + "4.11.2" + ], + "web pieces don": [ + "4.5.6" + ], + "web site": [ + "4.5.5", + "4.10.2", + "4.11.6" + ], + "web stalker": [ + "4.8.23" + ], + "web tv award": [ + "4.8.0-p.240" + ], + "web-based art": [ + "4.5.6" + ], + "website": [ + "4.2.5", + "4.2.9", + "4.5.2", + "4.9.0", + "4.10.0" + ], + "website ¿florian cramer": [ + "4.5.2" + ], + "week": [ + "4.7.3" + ], + "well-established art": [ + "4.8.2" + ], + "wenz additionally": [ + "4.10.1" + ], + "west": [ + "4.7.1" + ], + "west arts": [ + "4.7.1" + ], + "whid wrote": [ + "4.11.0" + ], + "white": [ + "4.8.20" + ], + "whitney biennale": [ + "4.8.2" + ], + "whitney biennale shows": [ + "4.8.2" + ], + "wi-fi and cellular": [ + "4.4.10" + ], + "wide web": [ + "4.8.6", + "4.10.2" + ], + "wide web art": [ + "4.10.2", + "4.10.3" + ], + "wider": [ + "4.8.0", + "4.8.1" + ], + "wider movement": [ + "4.8.0" + ], + "wider network": [ + "4.8.0" + ], + "wireless": [ + "4.4.1", + "4.4.10" + ], + "wireless festival": [ + "4.4.1" + ], + "wireless networks": [ + "4.4.9" + ], + "wireless space": [ + "4.4.1", + "4.4.10", + "4.4.10" + ], + "wireless spectrum": [ + "4.4.1", + "4.4.10" + ], + "wolfgang": [ + "4.7.0", + "4.10.0" + ], + "wolfgang staehle": [ + "4.7.0", + "4.10.0" + ], + "women": [ + "4.8.26" + ], + "women donate": [ + "4.8.26" + ], + "wondering": [ + "4.2.8" + ], + "word": [ + "4.8.16" + ], + "word net art": [ + "4.8.0-p.240", + "4.8.0-p.240" + ], + "words": [ + "4.3.2", + "4.8.17" + ], + "words avoiding dealing": [ + "4.8.0-p.240" + ], + "work": [ + "4.1.0", + "4.2.0", + "4.2.0-p.211", + "4.2.1", + "4.3.0", + "4.3.0-p.216", + "4.3.3", + "4.4.0", + "4.4.1", + "4.4.4", + "4.4.5", + "4.4.10", + "4.5.0-p.224", + "4.5.4", + "4.5.5", + "4.5.6", + "4.5.7", + "4.6.0", + "4.8.1", + "4.8.4", + "4.8.5", + "4.8.9", + "4.8.11", + "4.8.19", + "4.8.20", + "4.8.21", + "4.8.25", + "4.10.0", + "4.10.3", + "4.10.4" + ], + "work art": [ + "4.10.3" + ], + "work david": [ + "4.3.3" + ], + "work deals": [ + "4.8.5" + ], + "work deals directly": [ + "4.8.5" + ], + "work have improved": [ + "4.2.2" + ], + "work josephine": [ + "4.7.0-p.228" + ], + "work josephine berry": [ + "4.7.0-p.228" + ], + "work of hci": [ + "4.4.12" + ], + "work sean": [ + "4.10.4" + ], + "working": [ + "4.4.2", + "4.8.7", + "4.8.12" + ], + "working in digital": [ + "4.8.7" + ], + "working with artists": [ + "4.4.2" + ], + "working with david": [ + "4.4.2" + ], + "works": [ + "4.3.2", + "4.4.0-p.219", + "4.4.5", + "4.4.10", + "4.5.0", + "4.5.0-p.224", + "4.5.3", + "4.5.5", + "4.5.7", + "4.8.9", + "4.8.11", + "4.8.20", + "4.10.3" + ], + "works are beeing": [ + "4.8.14" + ], + "works moves": [ + "4.10.4" + ], + "works of net.art": [ + "4.5.1" + ], + "worksop at bek": [ + "4.2.9" + ], + "world": [ + "4.5.0-p.224", + "4.8.2", + "4.8.15", + "4.8.18", + "4.8.25" + ], + "world created": [ + "4.8.25" + ], + "world institution": [ + "4.8.25" + ], + "world wide": [ + "4.8.6", + "4.10.2" + ], + "world wide web": [ + "4.3.4", + "4.5.3", + "4.5.3", + "4.8.6", + "4.8.6", + "4.10.2", + "4.10.2", + "4.10.3" + ], + "worldwide": [ + "4.11.6" + ], + "wow": [ + "4.2.2", + "4.2.4" + ], + "writes": [ + "4.5.3", + "4.8.7", + "4.10.5" + ], + "writing": [ + "4.3.0-p.216", + "4.4.0", + "4.4.1", + "4.4.4" + ], + "wrote": [ + "4.2.4", + "4.2.6", + "4.2.9", + "4.5.2", + "4.5.3", + "4.5.5", + "4.7.3", + "4.8.4", + "4.8.13", + "4.8.14", + "4.8.15", + "4.8.21", + "4.8.25", + "4.8.26", + "4.11.0", + "4.11.3", + "4.11.4" + ], + "www": [ + "4.5.4" + ], + "wwwart site": [ + "4.3.4", + "4.3.4" + ], + "wwwarts": [ + "4.3.4" + ], + "wwwarts gold": [ + "4.3.4" + ], + "wwwarts gold medal": [ + "4.3.4" + ], + "years": [ + "4.5.4", + "4.11.4" + ], + "years ago": [ + "4.2.5", + "4.5.4" + ], + "years was anna": [ + "4.4.9" + ], + "yesmen back": [ + "4.4.2" + ], + "york": [ + "4.9.0-p.243#2", + "4.10.0" + ], + "york lehman college": [ + "4.9.0-p.243#2" + ], + "york november": [ + "4.9.0-p.243#2" + ], + "york oktober": [ + "4.9.0-p.243#2" + ], + "york university dezember": [ + "4.9.0-p.243#2" + ], + "young": [ + "4.3.0" + ], + "zhangru": [ + "4.4.2" + ], + "zkm": [ + "4.5.7" + ], + "zkm in karlsruhe": [ + "4.9.0-p.243#2" + ], + "zkm intended": [ + "4.5.7" + ], + "zkm mashines": [ + "4.5.7" + ], + "zkm net": [ + "4.8.13" + ], + "zvp +": [ + "4.8.22" + ], + "österreich": [ + "4.9.0-p.243#2" + ], + "‘tactical media": [ + "4.4.4" + ] + }, + "selected": {} +} diff --git a/index/5.Netzkritik-index.js b/index/5.Netzkritik-index.js new file mode 100644 index 0000000..9fd6108 --- /dev/null +++ b/index/5.Netzkritik-index.js @@ -0,0 +1,4579 @@ +{ + "orphan": { + "11:57": [ + "5.3.0" + ], + "5:01": [ + "5.0.1" + ], + " geert lovink": [ + "5.5.0" + ], + ">hello john perry": [ + "5.3.0" + ], + "aber": [ + "5.2.0" + ], + "aber trotzdem das": [ + "5.2.0" + ], + "academic community": [ + "5.12.0" + ], + "academic discipline": [ + "5.12.0" + ], + "academic endeavour": [ + "5.12.0" + ], + "academics eagerly imitate": [ + "5.1.0" + ], + "accepted art forms": [ + "5.4.0" + ], + "accuracy": [ + "5.11.1" + ], + "accurate demographic information": [ + "5.0.0" + ], + "acknowledges": [ + "5.13.1" + ], + "action": [ + "5.13.1" + ], + "address to interface": [ + "5.0.0" + ], + "adilkno media archive": [ + "5.4.0" + ], + "adrienne von heteren": [ + "5.1.1", + "5.1.1" + ], + "advancing software design": [ + "5.1.0" + ], + "advent of push": [ + "5.9.1" + ], + "aesthetic": [ + "5.14.0" + ], + "aesthetic forms": [ + "5.14.0" + ], + "aesthetical model generated": [ + "5.1.2" + ], + "afford except capital": [ + "5.0.0" + ], + "again.": [ + "5.3.1" + ], + "age underground style": [ + "5.10.1" + ], + "aged english professor": [ + "5.1.0" + ], + "agenda": [ + "5.10.1" + ], + "agree": [ + "5.10.0" + ], + "agree with foucault": [ + "5.10.0" + ], + "aktuelles projekt access": [ + "5.2.0" + ], + "allowing surviving authorities": [ + "5.0.0" + ], + "american": [ + "5.3.1", + "5.11.2" + ], + "american concept": [ + "5.12.0" + ], + "american defence budget": [ + "5.1.0" + ], + "american federal government": [ + "5.1.0" + ], + "american future": [ + "5.12.0" + ], + "american idea": [ + "5.1.0" + ], + "american magazine": [ + "5.11.2" + ], + "american myths": [ + "5.3.1" + ], + "american society": [ + "5.1.0" + ], + "american studies": [ + "5.11.1" + ], + "american studies program": [ + "5.11.1", + "5.11.1" + ], + "american wired": [ + "5.3.0", + "5.3.1" + ], + "american wired culture": [ + "5.3.0", + "5.3.1" + ], + "amsterdam": [ + "5.1.1" + ], + "amusement anyway": [ + "5.11.0" + ], + "analyses": [ + "5.10.0" + ], + "analyze": [ + "5.10.1" + ], + "andy cameron": [ + "5.1.0" + ], + "angewiesen sind": [ + "5.2.0" + ], + "anlaesslich des budapester": [ + "5.2.0" + ], + "announced": [ + "5.10.1" + ], + "announced information society": [ + "5.12.0", + "5.12.0" + ], + "announced this latest": [ + "5.10.1" + ], + "anonymous mailer": [ + "5.11.3" + ], + "answers to igor": [ + "5.8.0" + ], + "antagonism towards": [ + "5.4.0" + ], + "anti mac": [ + "5.13.0" + ], + "apparatus": [ + "5.0.0" + ], + "appeared": [ + "5.11.3" + ], + "apple mac interface": [ + "5.13.0" + ], + "archaic net": [ + "5.6.0" + ], + "archaic net god": [ + "5.6.0", + "5.6.0" + ], + "aristotelian": [ + "5.1.2" + ], + "aristotelian principle": [ + "5.1.2" + ], + "arrogant dictates contacted": [ + "5.11.0" + ], + "art": [ + "5.1.2", + "5.4.0", + "5.11.3" + ], + "art ensemble": [ + "5.0.0" + ], + "arthur kroker": [ + "5.5.0", + "5.12.0" + ], + "artifical life": [ + "5.6.0" + ], + "artificially create desires": [ + "5.0.0" + ], + "artist": [ + "5.1.2" + ], + "artistic": [ + "5.1.2" + ], + "arts": [ + "5.1.2" + ], + "arts festival": [ + "5.13.0" + ], + "ascii abracadabra": [ + "5.11.3" + ], + "atlantic towards europe": [ + "5.12.0" + ], + "atrophying of usenet": [ + "5.9.1" + ], + "attractive role models": [ + "5.4.0" + ], + "auch": [ + "5.2.0" + ], + "auch die website": [ + "5.2.0" + ], + "auf": [ + "5.2.0" + ], + "authentic cultural critic": [ + "5.11.0" + ], + "author blamed traditional": [ + "5.11.3" + ], + "authoritarian characteristics": [ + "5.0.0" + ], + "authoritarian ideology": [ + "5.0.0" + ], + "authoritarian power": [ + "5.0.0" + ], + "automatischen demokratisierung fuehren": [ + "5.2.0" + ], + "back": [ + "5.11.0" + ], + "bad": [ + "5.7.0" + ], + "bad love affair": [ + "5.6.0" + ], + "bad writer merely": [ + "5.11.0" + ], + "barbrook and andy": [ + "5.1.0" + ], + "barely understood code": [ + "5.13.0" + ], + "barlow": [ + "5.0.1", + "5.3.0" + ], + "barter economy": [ + "5.11.1" + ], + "based": [ + "5.3.1" + ], + "based push media": [ + "5.9.2" + ], + "bastard": [ + "5.8.0" + ], + "bastard answers": [ + "5.8.0" + ], + "becoming completely obscure": [ + "5.13.0" + ], + "begin": [ + "5.13.1" + ], + "belgrade": [ + "5.1.1" + ], + "belgrade fully": [ + "5.1.1" + ], + "belgrade independent": [ + "5.1.1" + ], + "belgrade independent radio": [ + "5.1.1" + ], + "belgrade university": [ + "5.1.1" + ], + "benign collective consciousness": [ + "5.0.0" + ], + "besides demographic factors": [ + "5.12.0" + ], + "beyond actual sign": [ + "5.12.0" + ], + "beyond measure": [ + "5.12.0" + ], + "beyond normalized activity": [ + "5.0.0" + ], + "big": [ + "5.9.0", + "5.11.2" + ], + "big picture": [ + "5.11.2" + ], + "billion barely": [ + "5.0.0" + ], + "biological science": [ + "5.11.0" + ], + "biotechnolgical power": [ + "5.3.1" + ], + "birth certificate goes": [ + "5.0.0" + ], + "bit": [ + "5.3.0" + ], + "bit pissed": [ + "5.3.0" + ], + "blanket mental prohibition": [ + "5.11.0" + ], + "body": [ + "5.0.0" + ], + "boredom": [ + "5.6.0" + ], + "bourgeois filter": [ + "5.12.0" + ], + "brew computer clubs": [ + "5.1.0" + ], + "brief euphoric moment": [ + "5.0.0" + ], + "bringing virtual freedom": [ + "5.6.0" + ], + "british government grant": [ + "5.1.0" + ], + "broadband ict infrastructure": [ + "5.12.0" + ], + "broadband media applications": [ + "5.12.0" + ], + "broadcasting media": [ + "5.9.0" + ], + "bruce": [ + "5.11.0", + "5.11.1", + "5.11.2" + ], + "bruce sterling": [ + "5.11.0", + "5.11.2" + ], + "bruce sterling bruces": [ + "5.11.0" + ], + "bruce sterling writes": [ + "5.11.2", + "5.11.2" + ], + "bruces": [ + "5.11.0" + ], + "bruno latour": [ + "5.12.0" + ], + "buden": [ + "5.8.0" + ], + "bulletin board systems": [ + "5.1.0" + ], + "burnt norton": [ + "5.0.1" + ], + "business of internet-based": [ + "5.9.2" + ], + "byfield": [ + "5.13.0" + ], + "byfield and geert": [ + "5.13.0" + ], + "cabal": [ + "5.11.2" + ], + "cabal of cyber-illuminati": [ + "5.11.2" + ], + "cable channels remained": [ + "5.0.0" + ], + "cable set": [ + "5.0.0" + ], + "cae": [ + "5.0.0" + ], + "californian": [ + "5.1.0", + "5.7.0" + ], + "californian ideology": [ + "5.1.0", + "5.1.0" + ], + "californian ideology appears": [ + "5.1.0" + ], + "californian ideology derives": [ + "5.1.0", + "5.1.0" + ], + "californian ideology happily": [ + "5.1.0" + ], + "californian ideology offers": [ + "5.1.0", + "5.1.0" + ], + "californian ideology promiscuously": [ + "5.1.0", + "5.1.0" + ], + "californian ideology richard": [ + "5.1.0" + ], + "called humanities tend": [ + "5.12.0" + ], + "called public domain": [ + "5.4.0" + ], + "castanet": [ + "5.9.2" + ], + "celebrities rendered": [ + "5.11.0" + ], + "century policy makers": [ + "5.0.0" + ], + "chance to enter": [ + "5.3.1" + ], + "changed the situation": [ + "5.6.0" + ], + "changing conditions created": [ + "5.13.1" + ], + "channel": [ + "5.9.2" + ], + "channels": [ + "5.9.2" + ], + "channels people": [ + "5.0.0" + ], + "chat facilities rely": [ + "5.1.0" + ], + "chats": [ + "5.9.2" + ], + "christianity rarely fail": [ + "5.11.0" + ], + "cisler": [ + "5.11.1" + ], + "civil disobedience": [ + "5.4.0" + ], + "class formations": [ + "5.4.0" + ], + "classic": [ + "5.5.0" + ], + "classic intellectual": [ + "5.5.0" + ], + "clean": [ + "5.7.0", + "5.8.0" + ], + "cleanliness thoroughly contradicts": [ + "5.8.0" + ], + "closed system": [ + "5.0.0" + ], + "clueless publisher": [ + "5.5.0" + ], + "coast": [ + "5.1.0" + ], + "coffee table edition": [ + "5.13.0" + ], + "cognitive dissident": [ + "5.0.1", + "5.3.0" + ], + "cold war": [ + "5.8.0" + ], + "cold war myths": [ + "5.8.0", + "5.8.0" + ], + "collective": [ + "5.14.0" + ], + "collective freedom sought": [ + "5.1.0" + ], + "collective net": [ + "5.13.0" + ], + "common": [ + "5.7.0" + ], + "common geographic territory": [ + "5.0.0" + ], + "common history": [ + "5.0.0" + ], + "common people": [ + "5.7.0" + ], + "common religion": [ + "5.0.0" + ], + "communist manifesto": [ + "5.13.0" + ], + "community": [ + "5.0.0" + ], + "community activists": [ + "5.1.0" + ], + "community media activists": [ + "5.1.0", + "5.1.0" + ], + "community radio stations": [ + "5.1.0" + ], + "comparing bureaucratic practice": [ + "5.0.0" + ], + "complete intellectual history": [ + "5.11.2" + ], + "completely": [ + "5.9.1" + ], + "completely contradicted": [ + "5.9.1" + ], + "completely read-only": [ + "5.9.1" + ], + "completely replacing humans": [ + "5.0.0" + ], + "completely ridiculous story": [ + "5.9.0" + ], + "complex distributed system": [ + "5.11.0" + ], + "computer": [ + "5.0.0", + "5.1.0", + "5.11.2" + ], + "computer culture": [ + "5.11.2" + ], + "computer revolution": [ + "5.0.0" + ], + "computerized communications": [ + "5.0.0" + ], + "computerized communications offer": [ + "5.0.0" + ], + "concerned themselves": [ + "5.0.0" + ], + "conf": [ + "5.3.0" + ], + "conf.": [ + "5.3.0" + ], + "conflict": [ + "5.3.1" + ], + "conflict zones": [ + "5.3.1" + ], + "conflicts": [ + "5.3.1" + ], + "confusion": [ + "5.13.1" + ], + "congress": [ + "5.7.0" + ], + "congress discussion": [ + "5.7.0" + ], + "connected": [ + "5.1.1" + ], + "connected started": [ + "5.1.1" + ], + "connected via interfaces": [ + "5.1.2" + ], + "connection impressively revealed": [ + "5.8.0" + ], + "conservative agenda influenced": [ + "5.10.1" + ], + "conspiracy": [ + "5.13.0" + ], + "constitutes real power": [ + "5.6.0" + ], + "contemporary": [ + "5.11.2" + ], + "contemporary computer": [ + "5.11.2" + ], + "contemporary computer culture": [ + "5.11.2" + ], + "contemporary subjectivity": [ + "5.14.0" + ], + "contemporary subjectivity defined": [ + "5.14.0", + "5.14.0" + ], + "content": [ + "5.12.0" + ], + "control": [ + "5.3.1" + ], + "conversation": [ + "5.13.0" + ], + "cook": [ + "5.11.2" + ], + "coordinate themselves globally": [ + "5.13.1" + ], + "copious remarks": [ + "5.11.0" + ], + "copyright": [ + "5.3.1" + ], + "corporate": [ + "5.0.0", + "5.14.0" + ], + "corporate aesthetic": [ + "5.14.0" + ], + "corporate business model": [ + "5.14.0" + ], + "corporate media": [ + "5.0.0" + ], + "cosic": [ + "5.11.3" + ], + "couch potatoes rise": [ + "5.9.0" + ], + "couch potatoes sitting": [ + "5.4.0" + ], + "cover": [ + "5.9.2" + ], + "cover story": [ + "5.9.2" + ], + "create confusion": [ + "5.13.1" + ], + "create original products": [ + "5.1.0" + ], + "create target populations": [ + "5.0.0" + ], + "created inet": [ + "5.1.1" + ], + "created inet cite": [ + "5.1.1" + ], + "critical art": [ + "5.0.0" + ], + "critical art ensemble": [ + "5.0.0", + "5.0.0", + "5.4.0" + ], + "critical collaborations": [ + "5.0.0" + ], + "critical position regarding": [ + "5.1.2" + ], + "critical praxis nowadays": [ + "5.4.0" + ], + "critical voice": [ + "5.5.0" + ], + "criticism": [ + "5.3.1", + "5.13.0", + "5.13.1", + "5.14.0" + ], + "criticism finally arrived": [ + "5.5.0" + ], + "criticism needs clarity": [ + "5.13.1" + ], + "critik der urtheilskraft": [ + "5.12.0" + ], + "critique": [ + "5.5.0", + "5.6.0", + "5.9.0", + "5.10.0", + "5.10.1", + "5.12.0", + "5.13.0", + "5.13.1" + ], + "critique frank": [ + "5.12.0" + ], + "critique frank hartmann": [ + "5.12.0" + ], + "critique mirrored": [ + "5.10.1" + ], + "cross cultural artistic": [ + "5.0.0" + ], + "cultural": [ + "5.12.0" + ], + "cultural identities": [ + "5.0.0" + ], + "cultural purposes": [ + "5.0.0" + ], + "culture": [ + "5.3.1", + "5.4.0", + "5.13.1" + ], + "culture apply themselves": [ + "5.4.0" + ], + "culture moves towards": [ + "5.12.0" + ], + "current": [ + "5.4.0" + ], + "current catastrophe": [ + "5.4.0" + ], + "current crisis": [ + "5.4.0" + ], + "current free": [ + "5.4.0" + ], + "current net": [ + "5.13.0" + ], + "current situation": [ + "5.4.0" + ], + "current world system": [ + "5.4.0" + ], + "cyber-illuminati": [ + "5.11.2" + ], + "cyber-illuminati inspired": [ + "5.11.2" + ], + "cyberculture situation": [ + "5.11.0" + ], + "cybernetic waste land": [ + "5.4.0" + ], + "cyberspace": [ + "5.3.1", + "5.7.0", + "5.8.0" + ], + "cyberspace american style": [ + "5.12.0" + ], + "cyberspace clean": [ + "5.7.0", + "5.8.0" + ], + "cybersphere by geert": [ + "5.4.0" + ], + "cynical and evil": [ + "5.9.1" + ], + "cynical ideology production": [ + "5.3.1", + "5.3.1" + ], + "da ist": [ + "5.2.0" + ], + "daily analyses": [ + "5.10.0" + ], + "dam bursts": [ + "5.1.0" + ], + "dann freie programme": [ + "5.2.0" + ], + "das": [ + "5.2.0" + ], + "das eigentlich": [ + "5.2.0" + ], + "das schlagwort": [ + "5.2.0" + ], + "das zamir": [ + "5.2.0" + ], + "dass": [ + "5.2.0" + ], + "dass die expo": [ + "5.2.0" + ], + "dasz die neuen": [ + "5.2.0" + ], + "data": [ + "5.0.0", + "5.4.0", + "5.12.0" + ], + "data body": [ + "5.0.0" + ], + "data body gives": [ + "5.0.0" + ], + "data body information": [ + "5.0.0" + ], + "data critique": [ + "5.12.0" + ], + "data critique follows": [ + "5.12.0" + ], + "data critique frank": [ + "5.12.0" + ], + "data dandyism": [ + "5.5.0" + ], + "dave": [ + "5.9.1" + ], + "dave mandl": [ + "5.9.1" + ], + "dave mandl dmandl": [ + "5.9.1" + ], + "david bennahum jokes": [ + "5.13.0" + ], + "de sola pool": [ + "5.1.0" + ], + "dead ionescu wrote": [ + "5.7.0" + ], + "dead media": [ + "5.11.0" + ], + "dead media project": [ + "5.11.0" + ], + "deal": [ + "5.1.2" + ], + "dear": [ + "5.6.0", + "5.10.0", + "5.10.1" + ], + "dear geert": [ + "5.10.0" + ], + "dear mercedes": [ + "5.10.1" + ], + "dear nettimers": [ + "5.6.0", + "5.11.0" + ], + "death": [ + "5.9.1" + ], + "death certificate goes": [ + "5.0.0" + ], + "december": [ + "5.11.3" + ], + "decentralized medium offers": [ + "5.0.1" + ], + "deep hatred towards": [ + "5.4.0" + ], + "deeply nostalgic re": [ + "5.4.0" + ], + "defend": [ + "5.10.0" + ], + "define": [ + "5.1.2" + ], + "define intellectuals solely": [ + "5.4.0" + ], + "demand": [ + "5.9.2" + ], + "demanding earlier": [ + "5.11.0" + ], + "democracy": [ + "5.0.0" + ], + "democratic": [ + "5.0.0" + ], + "democratic activity": [ + "5.0.0" + ], + "democratic characteristics": [ + "5.0.0" + ], + "democratic cultural production": [ + "5.0.0" + ], + "democratic electronic medium": [ + "5.0.0" + ], + "democratic interactive medium": [ + "5.0.0" + ], + "democratic societies": [ + "5.0.0" + ], + "democratic structure": [ + "5.0.0" + ], + "den": [ + "5.2.0" + ], + "den schatten stellt": [ + "5.2.0" + ], + "department": [ + "5.1.1" + ], + "department of mathematics": [ + "5.1.1" + ], + "der": [ + "5.2.0" + ], + "der alles": [ + "5.2.0" + ], + "der rahmen ist": [ + "5.2.0" + ], + "des": [ + "5.2.0" + ], + "design": [ + "5.14.0" + ], + "design new forms": [ + "5.14.0" + ], + "desire": [ + "5.0.0" + ], + "deswegen hat sich": [ + "5.2.0" + ], + "deutschland ist": [ + "5.2.0" + ], + "devellop own strategies": [ + "5.10.0" + ], + "development": [ + "5.0.0" + ], + "dialog": [ + "5.14.0" + ], + "die": [ + "5.2.0" + ], + "die 18 ethische": [ + "5.2.0" + ], + "die bestimmte gruppen": [ + "5.2.0" + ], + "die den weiteren": [ + "5.2.0" + ], + "die expo": [ + "5.2.0", + "5.2.0" + ], + "die gemeinschaften": [ + "5.2.0" + ], + "die veranstalter": [ + "5.2.0" + ], + "die vorstellung": [ + "5.2.0" + ], + "die zeigen": [ + "5.2.0" + ], + "diese": [ + "5.2.0" + ], + "diese genauer zu": [ + "5.2.0" + ], + "diese projekte sind": [ + "5.2.0" + ], + "digital": [ + "5.6.0" + ], + "digital datasphere affects": [ + "5.12.0" + ], + "digital fellow travellers": [ + "5.9.0" + ], + "digital gold rush": [ + "5.6.0" + ], + "digital information": [ + "5.12.0", + "5.12.0" + ], + "digital revolution eats": [ + "5.6.0" + ], + "digitisation takes command": [ + "5.4.0" + ], + "digitised source material": [ + "5.4.0" + ], + "dire occupational hazard": [ + "5.11.0" + ], + "direct action": [ + "5.0.1" + ], + "directional distribution network": [ + "5.0.0" + ], + "discours preliminaire de": [ + "5.12.0" + ], + "discussion": [ + "5.7.0", + "5.8.0" + ], + "disrupted western": [ + "5.4.0" + ], + "dissident collective subjectiviy": [ + "5.3.1" + ], + "distinctive usenet community": [ + "5.12.0" + ], + "distinguish real content": [ + "5.12.0" + ], + "distributed via nettime": [ + "5.12.0" + ], + "division hard wired": [ + "5.9.0" + ], + "doctrines": [ + "5.11.2" + ], + "documenta x kassel": [ + "5.4.0" + ], + "dominant ideology": [ + "5.13.1" + ], + "dominate media philosophy": [ + "5.12.0" + ], + "drazen": [ + "5.1.1" + ], + "drazen drazen": [ + "5.1.1" + ], + "dream called web": [ + "5.9.0" + ], + "dualistic cultural critique": [ + "5.5.0" + ], + "dummy books etc": [ + "5.13.0" + ], + "durchaus auch access": [ + "5.2.0" + ], + "dying travelling salemen": [ + "5.6.0" + ], + "dynamic utopian beauty": [ + "5.0.0" + ], + "earlier cogent remarks": [ + "5.11.0" + ], + "eastern": [ + "5.8.0" + ], + "eastern europe": [ + "5.8.0" + ], + "eastern europe affect": [ + "5.8.0", + "5.8.0" + ], + "ebenso ueber software": [ + "5.2.0" + ], + "eco": [ + "5.5.0" + ], + "economy": [ + "5.11.1", + "5.13.1" + ], + "editors": [ + "5.9.0" + ], + "effects": [ + "5.1.2" + ], + "ein": [ + "5.2.0" + ], + "eine": [ + "5.2.0" + ], + "eine industrielle leistungsschau": [ + "5.2.0" + ], + "einen": [ + "5.2.0" + ], + "einen neuen": [ + "5.2.0" + ], + "electronic": [ + "5.0.0", + "5.1.0", + "5.6.0" + ], + "electronic agora": [ + "5.1.0" + ], + "electronic apparatus": [ + "5.0.0", + "5.0.0" + ], + "electronic arts festival": [ + "5.13.0", + "5.13.0" + ], + "electronic boundaries": [ + "5.12.0" + ], + "electronic civil disobedience": [ + "5.4.0" + ], + "electronic commerce": [ + "5.12.0" + ], + "electronic extensions": [ + "5.0.0" + ], + "electronic free zone": [ + "5.0.0" + ], + "electronic frontier": [ + "5.0.1" + ], + "electronic frontier actually": [ + "5.12.0" + ], + "electronic frontier foundation": [ + "5.0.1", + "5.0.1", + "5.3.0", + "5.3.0" + ], + "electronic imagination": [ + "5.6.0" + ], + "electronic pie": [ + "5.0.0" + ], + "electronic systems": [ + "5.0.0" + ], + "electronic utopia": [ + "5.0.0" + ], + "electronic utopia seemedimmanent": [ + "5.0.0" + ], + "electronic web capable": [ + "5.0.0" + ], + "electronic wish economy": [ + "5.6.0" + ], + "elite stronghold": [ + "5.0.0" + ], + "elite virtual class": [ + "5.0.0" + ], + "elitist intellectuals": [ + "5.5.0" + ], + "embracing": [ + "5.14.0" + ], + "emerging class": [ + "5.4.0" + ], + "emerging global": [ + "5.12.0" + ], + "emerging social space": [ + "5.12.0" + ], + "encyclopedie necessarily failed": [ + "5.12.0" + ], + "end": [ + "5.10.0", + "5.13.0" + ], + "engagement irrelevant overnight": [ + "5.4.0" + ], + "enhance personal freedom": [ + "5.1.0" + ], + "enhanced storage": [ + "5.0.0" + ], + "enlightenment": [ + "5.12.0" + ], + "enlightenment meant business": [ + "5.12.0" + ], + "enlighting": [ + "5.9.2" + ], + "enlighting piece": [ + "5.9.2" + ], + "enter": [ + "5.14.0" + ], + "enter this indended": [ + "5.3.1" + ], + "entwicklung von unten": [ + "5.2.0" + ], + "environment": [ + "5.1.2" + ], + "era beyond": [ + "5.12.0" + ], + "errors net": [ + "5.6.0" + ], + "erstwhile conservative enemy": [ + "5.1.0" + ], + "es geht darum": [ + "5.2.0" + ], + "es gibt": [ + "5.2.0" + ], + "es ist": [ + "5.2.0" + ], + "es wird": [ + "5.2.0" + ], + "es wird geklaert": [ + "5.2.0" + ], + "esotheric secret knowledge": [ + "5.6.0" + ], + "essays": [ + "5.2.0" + ], + "established art values": [ + "5.4.0" + ], + "europe": [ + "5.8.0", + "5.10.1", + "5.12.0" + ], + "european": [ + "5.12.0" + ], + "european commission": [ + "5.12.0" + ], + "european council": [ + "5.12.0" + ], + "european information": [ + "5.12.0" + ], + "european information technology": [ + "5.12.0" + ], + "european origins": [ + "5.12.0" + ], + "european radical press": [ + "5.11.0" + ], + "european standard code": [ + "5.12.0" + ], + "european-inspired": [ + "5.11.2" + ], + "european-inspired cabal": [ + "5.11.2" + ], + "events machen": [ + "5.2.0" + ], + "everyday life practice": [ + "5.0.0" + ], + "everyday lives": [ + "5.0.0" + ], + "everyday livesof bureaucrats": [ + "5.0.0" + ], + "excellent": [ + "5.9.1" + ], + "excellent piece": [ + "5.9.1" + ], + "exchange": [ + "5.9.1" + ], + "existing": [ + "5.9.0" + ], + "existing media": [ + "5.9.0" + ], + "existing power structures": [ + "5.3.1" + ], + "existing push media": [ + "5.10.1", + "5.10.1" + ], + "explanatory positive truth": [ + "5.13.0" + ], + "explanatory truth": [ + "5.13.0" + ], + "expo": [ + "5.2.0" + ], + "expo total": [ + "5.2.0" + ], + "express themselves freely": [ + "5.0.0" + ], + "extended towards politics": [ + "5.12.0" + ], + "extremely subjective answer": [ + "5.6.0" + ], + "face": [ + "5.1.1", + "5.9.0" + ], + "facilitate": [ + "5.14.0" + ], + "facilitate the design": [ + "5.14.0" + ], + "facilitates cultural": [ + "5.14.0" + ], + "facilitates cultural production": [ + "5.14.0", + "5.14.0" + ], + "fact foucault": [ + "5.10.0" + ], + "fading socialist dream": [ + "5.12.0" + ], + "faire ideology": [ + "5.1.0" + ], + "faits": [ + "5.13.1" + ], + "fall short": [ + "5.12.0" + ], + "famous events rendered": [ + "5.11.0" + ], + "famous haag": [ + "5.7.0" + ], + "famous haag congress": [ + "5.7.0" + ], + "fantastic fiction": [ + "5.11.0" + ], + "fashion amongst intellectuals": [ + "5.4.0" + ], + "fassen kann": [ + "5.2.0" + ], + "fast conversation": [ + "5.13.0" + ], + "fattest pork barrel": [ + "5.1.0" + ], + "favourite victim status": [ + "5.4.0" + ], + "feel": [ + "5.11.3" + ], + "feel it time": [ + "5.11.3" + ], + "feudalistic rescue zone": [ + "5.6.0" + ], + "fiction writer": [ + "5.11.0" + ], + "field": [ + "5.7.0" + ], + "fight": [ + "5.1.2", + "5.7.0" + ], + "files": [ + "5.0.0" + ], + "final death": [ + "5.9.1" + ], + "final discussion": [ + "5.7.0" + ], + "finally draw conclusions": [ + "5.10.1" + ], + "finally stop baudrillard": [ + "5.4.0" + ], + "flashy online world": [ + "5.12.0" + ], + "flowing": [ + "5.11.1" + ], + "followers advocated unfettered": [ + "5.1.0" + ], + "form": [ + "5.0.0" + ], + "forms": [ + "5.4.0", + "5.13.0", + "5.14.0" + ], + "forms of subjectivity": [ + "5.14.0" + ], + "forum ist": [ + "5.2.0" + ], + "foucault": [ + "5.10.0" + ], + "foucault stopped": [ + "5.10.0" + ], + "foundation home": [ + "5.0.1", + "5.3.0" + ], + "fragen stellen koennen": [ + "5.2.0" + ], + "fragment": [ + "5.11.3" + ], + "frank hartmann": [ + "5.5.0", + "5.12.0" + ], + "frank hartmann buden": [ + "5.8.0" + ], + "free access": [ + "5.2.0" + ], + "free market": [ + "5.1.0" + ], + "free market capitalism": [ + "5.0.0" + ], + "free money rots": [ + "5.11.0" + ], + "free space": [ + "5.14.0" + ], + "free zone": [ + "5.0.0" + ], + "free zone domains": [ + "5.0.0" + ], + "frontier foundation": [ + "5.0.1" + ], + "frontier foundation home": [ + "5.0.1", + "5.3.0" + ], + "fuer": [ + "5.2.0" + ], + "fuer den": [ + "5.2.0" + ], + "full of shit": [ + "5.9.1" + ], + "future": [ + "5.0.1", + "5.1.0", + "5.6.0" + ], + "gain hegemony outside": [ + "5.13.0" + ], + "gain market": [ + "5.9.1" + ], + "gain market share": [ + "5.9.1" + ], + "gay data nihilism": [ + "5.4.0", + "5.5.0" + ], + "geert": [ + "5.5.0", + "5.9.1", + "5.10.0", + "5.13.0" + ], + "geert lovink": [ + "5.4.0", + "5.5.0", + "5.7.0", + "5.9.0", + "5.12.0", + "5.13.0" + ], + "geert lovink lecture": [ + "5.4.0" + ], + "geert lovink portrait": [ + "5.5.0" + ], + "geert presents": [ + "5.5.0" + ], + "geert told": [ + "5.3.0" + ], + "general problem geert": [ + "5.5.0" + ], + "generation in making": [ + "5.10.0" + ], + "geographic separation": [ + "5.0.0" + ], + "geopolitical conflict lines": [ + "5.3.1" + ], + "german datendandy book": [ + "5.10.1" + ], + "ginrich and pff": [ + "5.3.1" + ], + "give": [ + "5.8.0", + "5.11.3" + ], + "give a light": [ + "5.11.3" + ], + "gleaming utopian surface": [ + "5.0.0" + ], + "global": [ + "5.4.0", + "5.12.0", + "5.13.0", + "5.13.1" + ], + "global cultures": [ + "5.12.0" + ], + "global economy": [ + "5.13.1" + ], + "global electronic datasphere": [ + "5.12.0" + ], + "global information": [ + "5.12.0" + ], + "global information economy": [ + "5.12.0", + "5.12.0" + ], + "global information society": [ + "5.12.0", + "5.12.0" + ], + "global market": [ + "5.13.0", + "5.13.0", + "5.13.1" + ], + "global marketing strategy": [ + "5.12.0" + ], + "global scale": [ + "5.1.0", + "5.13.1" + ], + "global social sphere": [ + "5.12.0" + ], + "global stage": [ + "5.13.0" + ], + "global telephone networks": [ + "5.1.0" + ], + "global trade": [ + "5.13.0" + ], + "global village forgot": [ + "5.12.0" + ], + "globalism": [ + "5.13.1" + ], + "globalism suggest": [ + "5.13.1" + ], + "globality": [ + "5.13.1" + ], + "globalization": [ + "5.13.1" + ], + "good": [ + "5.7.0" + ], + "goofy leftists": [ + "5.11.0" + ], + "goofy leftists sniping": [ + "5.11.0", + "5.11.0" + ], + "governor reagan": [ + "5.1.0" + ], + "governor ronald reagan": [ + "5.1.0" + ], + "grassmuck": [ + "5.2.0" + ], + "great": [ + "5.11.0" + ], + "group": [ + "5.10.1" + ], + "guess": [ + "5.14.0" + ], + "guy": [ + "5.11.0" + ], + "haag congress": [ + "5.7.0" + ], + "haag congress discussion": [ + "5.7.0" + ], + "half billion people": [ + "5.0.0" + ], + "hand": [ + "5.1.0" + ], + "happen": [ + "5.9.1" + ], + "happened": [ + "5.7.0" + ], + "hard wired": [ + "5.9.0" + ], + "hartmann": [ + "5.8.0" + ], + "heard": [ + "5.3.0" + ], + "hello john perry": [ + "5.3.1" + ], + "hermetic magnus opus": [ + "5.4.0" + ], + "heteren": [ + "5.1.1" + ], + "heteren from amsterdam": [ + "5.1.1" + ], + "highly developed anti": [ + "5.0.0" + ], + "highly resentful nature": [ + "5.4.0" + ], + "highway system": [ + "5.0.0" + ], + "hippies": [ + "5.1.0" + ], + "historical force": [ + "5.13.0" + ], + "historical situation": [ + "5.8.0" + ], + "historical wisdom": [ + "5.13.0" + ], + "history": [ + "5.11.0" + ], + "hold": [ + "5.10.0" + ], + "home video studio": [ + "5.0.0" + ], + "homevideo equipment led": [ + "5.0.0" + ], + "homosexual practice": [ + "5.0.0" + ], + "horrible world war": [ + "5.11.0" + ], + "human": [ + "5.11.0" + ], + "human capacity": [ + "5.0.0" + ], + "human mind loves": [ + "5.11.0" + ], + "human political reality": [ + "5.11.0" + ], + "humble opinion happens": [ + "5.7.0" + ], + "huxley": [ + "5.11.0" + ], + "hybrid data landscapes": [ + "5.4.0" + ], + "hype geben": [ + "5.2.0" + ], + "hyper-national mail bombs": [ + "5.6.0" + ], + "hypermodern communication tends": [ + "5.12.0" + ], + "ich": [ + "5.2.0" + ], + "idea": [ + "5.7.0", + "5.8.0", + "5.13.0" + ], + "ideals": [ + "5.13.0" + ], + "ideas": [ + "5.5.0" + ], + "ideological alarm systems": [ + "5.6.0" + ], + "ideological declarations": [ + "5.11.0" + ], + "ideological discussion space": [ + "5.8.0" + ], + "ideological idea par": [ + "5.8.0" + ], + "ideological society": [ + "5.8.0" + ], + "ideological structures": [ + "5.8.0" + ], + "ideologies": [ + "5.7.0", + "5.8.0" + ], + "ideology": [ + "5.1.0", + "5.7.0", + "5.8.0", + "5.13.1" + ], + "ideology of globalism": [ + "5.13.1" + ], + "ideology richard": [ + "5.1.0" + ], + "ideology richard barbrook": [ + "5.1.0" + ], + "igor": [ + "5.8.0", + "5.11.3" + ], + "igor hard": [ + "5.11.3" + ], + "igor hard disk": [ + "5.11.3" + ], + "igor markovic": [ + "5.8.0", + "5.11.3" + ], + "ihrem ort machen": [ + "5.2.0" + ], + "illegal activity": [ + "5.0.0" + ], + "illegal web servers": [ + "5.3.1" + ], + "illuminatist conspiracy theory": [ + "5.11.0" + ], + "imagined intelligent data": [ + "5.12.0" + ], + "imitating": [ + "5.1.2" + ], + "imitating nature": [ + "5.1.2" + ], + "immense storage capacity": [ + "5.0.0" + ], + "impeccably libertarian form": [ + "5.1.0" + ], + "imperial expansion abroad": [ + "5.1.0" + ], + "implicit net": [ + "5.6.0" + ], + "implicit net critique": [ + "5.6.0", + "5.6.0" + ], + "important detail": [ + "5.9.2" + ], + "increasingly frequent": [ + "5.9.1" + ], + "increasingly frequent crackdowns": [ + "5.9.1", + "5.9.1" + ], + "incredible": [ + "5.1.1" + ], + "incredible difficulties": [ + "5.1.1" + ], + "incredible supportive xs4all": [ + "5.1.1" + ], + "industrie ist insofern": [ + "5.2.0" + ], + "inert digital": [ + "5.12.0" + ], + "inet": [ + "5.1.1" + ], + "inet cite": [ + "5.1.1" + ], + "information": [ + "5.0.0", + "5.1.0", + "5.3.1", + "5.9.1", + "5.10.0", + "5.11.1", + "5.12.0" + ], + "information barter": [ + "5.11.1" + ], + "information barter economy": [ + "5.11.1" + ], + "information economy": [ + "5.11.1", + "5.12.0" + ], + "information economy beyond": [ + "5.12.0" + ], + "information exchange": [ + "5.0.0" + ], + "information property": [ + "5.3.1" + ], + "information society": [ + "5.12.0" + ], + "information society project": [ + "5.12.0", + "5.12.0" + ], + "information technologies": [ + "5.1.0" + ], + "information technology observatory": [ + "5.12.0" + ], + "initiate paul virilio": [ + "5.4.0" + ], + "inquisitorial practices": [ + "5.11.0" + ], + "inside": [ + "5.1.2" + ], + "inspired": [ + "5.11.2" + ], + "installation": [ + "5.1.2" + ], + "intelectual cooperative bastard": [ + "5.7.0" + ], + "intellectual": [ + "5.4.0", + "5.5.0" + ], + "intellectual bankruptcy": [ + "5.11.0" + ], + "intellectual capital": [ + "5.4.0" + ], + "intellectual crimes": [ + "5.11.0" + ], + "intellectual disappearing": [ + "5.4.0" + ], + "intellectual failings": [ + "5.11.0" + ], + "intellectual life reduced": [ + "5.11.0" + ], + "intellectual task": [ + "5.5.0" + ], + "intellectuals condemning": [ + "5.4.0" + ], + "intellectuals condemning themselves": [ + "5.4.0" + ], + "intellectuals feel instinctively": [ + "5.12.0" + ], + "intensify labor output": [ + "5.0.0" + ], + "interface": [ + "5.0.0" + ], + "interface culture": [ + "5.13.0" + ], + "interfiction": [ + "5.2.0" + ], + "interfiction lays attention": [ + "5.2.0" + ], + "internal discussion": [ + "5.11.0" + ], + "internal practices odd": [ + "5.11.0" + ], + "international and famous": [ + "5.7.0" + ], + "internet": [ + "5.2.0", + "5.9.2", + "5.11.3" + ], + "internet backbone structure": [ + "5.12.0" + ], + "internet-based push": [ + "5.9.2" + ], + "internet-based push media": [ + "5.9.2" + ], + "intrinsically empowering effects": [ + "5.1.0" + ], + "introduce": [ + "5.1.1" + ], + "introduce opennet.org": [ + "5.1.1" + ], + "irrigation systems": [ + "5.1.0" + ], + "ist": [ + "5.2.0" + ], + "ist carl malamud": [ + "5.2.0" + ], + "ist das": [ + "5.2.0" + ], + "ist veraltet": [ + "5.2.0" + ], + "jack": [ + "5.0.1" + ], + "jahr": [ + "5.2.0" + ], + "january": [ + "5.1.1" + ], + "january 18-21": [ + "5.1.1" + ], + "jerry garcia": [ + "5.0.1" + ], + "jeweils von 13": [ + "5.2.0" + ], + "john": [ + "5.0.1", + "5.3.0", + "5.3.1" + ], + "john perry": [ + "5.0.1", + "5.0.1", + "5.3.0", + "5.3.0", + "5.3.1" + ], + "john perry barlow": [ + "5.0.1", + "5.0.1", + "5.3.0", + "5.3.0" + ], + "kann": [ + "5.2.0" + ], + "ken wark": [ + "5.10.0" + ], + "kevin kelly speaking": [ + "5.9.0" + ], + "key net programs": [ + "5.1.0" + ], + "kind": [ + "5.11.0" + ], + "kinds": [ + "5.6.0" + ], + "knowbots": [ + "5.1.2" + ], + "lake city": [ + "5.0.1" + ], + "latest": [ + "5.10.1" + ], + "latest hype": [ + "5.10.1" + ], + "leaders": [ + "5.7.0" + ], + "leadership": [ + "5.7.0" + ], + "leaving academic boundaries": [ + "5.12.0" + ], + "left": [ + "5.7.0" + ], + "leftist atheist": [ + "5.11.0" + ], + "les faits": [ + "5.13.1" + ], + "levinas": [ + "5.11.1" + ], + "lewis": [ + "5.11.0" + ], + "liberal global": [ + "5.13.0" + ], + "liberated physical environment": [ + "5.0.0" + ], + "libertarian individualism": [ + "5.1.0" + ], + "libertarian possibilities offered": [ + "5.1.0" + ], + "libertarian principles": [ + "5.1.0" + ], + "libertarian society": [ + "5.1.0" + ], + "library": [ + "5.9.0" + ], + "life": [ + "5.7.0" + ], + "light": [ + "5.11.3" + ], + "list": [ + "5.6.0", + "5.7.0", + "5.11.2" + ], + "literally created inet": [ + "5.1.1" + ], + "little couch potatoe": [ + "5.9.0" + ], + "little text forms": [ + "5.6.0" + ], + "live quiet life": [ + "5.7.0" + ], + "lived": [ + "5.8.0" + ], + "lives": [ + "5.8.0" + ], + "lives in socialism": [ + "5.8.0" + ], + "local telephone connection": [ + "5.12.0" + ], + "lonely electronic form": [ + "5.0.0" + ], + "longer": [ + "5.4.0" + ], + "look onto ecological": [ + "5.3.1" + ], + "lot": [ + "5.7.0" + ], + "lovink": [ + "5.5.0", + "5.13.0" + ], + "lovink lecture": [ + "5.4.0" + ], + "lovink portrait": [ + "5.5.0" + ], + "machen koennen": [ + "5.2.0" + ], + "machine interface": [ + "5.13.0" + ], + "magazine": [ + "5.9.0", + "5.10.0", + "5.10.1", + "5.11.2" + ], + "magazine announced": [ + "5.10.1" + ], + "magazine on contemporary": [ + "5.11.2" + ], + "mailer": [ + "5.11.3" + ], + "major industrial": [ + "5.1.0" + ], + "make": [ + "5.1.2", + "5.9.2", + "5.11.0" + ], + "make nettimers": [ + "5.9.2" + ], + "make nettimers participate": [ + "5.9.2" + ], + "makes any critique": [ + "5.13.1" + ], + "making": [ + "5.10.0" + ], + "making free": [ + "5.14.0" + ], + "making free space": [ + "5.14.0" + ], + "making mistakes": [ + "5.10.0" + ], + "making rough": [ + "5.10.0" + ], + "making the net": [ + "5.9.1" + ], + "manifesto": [ + "5.11.3" + ], + "mark": [ + "5.11.2" + ], + "mark stahlman": [ + "5.11.0" + ], + "mark stahlman commentary": [ + "5.11.2" + ], + "mark stahlmann": [ + "5.10.0" + ], + "mark stahlmann wrote": [ + "5.10.0", + "5.10.0" + ], + "market": [ + "5.1.0", + "5.13.1", + "5.14.0" + ], + "market culture": [ + "5.14.0" + ], + "market currently ranges": [ + "5.12.0" + ], + "market ideologies": [ + "5.14.0" + ], + "market share": [ + "5.9.1" + ], + "markovic": [ + "5.8.0", + "5.11.3" + ], + "markovic frustrated": [ + "5.8.0" + ], + "markovic frustrated paranoia": [ + "5.8.0" + ], + "markovic logorrhea": [ + "5.8.0" + ], + "masses": [ + "5.13.0" + ], + "material world": [ + "5.6.0" + ], + "mathematics": [ + "5.1.1" + ], + "mathematics of belgrade": [ + "5.1.1" + ], + "matter": [ + "5.0.1" + ], + "matter of overwhelming": [ + "5.0.1" + ], + "mckenzie wark": [ + "5.11.1" + ], + "mckenzie wark http": [ + "5.11.1" + ], + "mcluhanites vigorously argue": [ + "5.1.0" + ], + "mean stop analyses": [ + "5.10.0" + ], + "means instant access": [ + "5.12.0" + ], + "meatspace today": [ + "5.3.0" + ], + "media": [ + "5.1.0", + "5.4.0", + "5.9.0", + "5.9.2", + "5.10.1", + "5.12.0", + "5.14.0" + ], + "media age": [ + "5.4.0" + ], + "media arrive automatically": [ + "5.9.0" + ], + "media arts peter": [ + "5.1.2" + ], + "media critique": [ + "5.9.0", + "5.10.1" + ], + "media critique mirrored": [ + "5.10.1" + ], + "media leads inevitably": [ + "5.2.0" + ], + "media literate otherwise": [ + "5.12.0" + ], + "media philosopher vilem": [ + "5.12.0" + ], + "media reality": [ + "5.12.0", + "5.12.0" + ], + "media reality creates": [ + "5.12.0" + ], + "media theory": [ + "5.4.0" + ], + "mediamatic": [ + "5.10.1" + ], + "mercedes": [ + "5.10.1" + ], + "message": [ + "5.11.3" + ], + "message service": [ + "5.3.0" + ], + "microsoft": [ + "5.9.1" + ], + "military": [ + "5.0.0" + ], + "mimesis": [ + "5.1.2" + ], + "mimetic": [ + "5.1.2" + ], + "mimetic potential": [ + "5.1.2" + ], + "mimetic potential means": [ + "5.1.2" + ], + "mind selfunderstaindable leadership": [ + "5.7.0" + ], + "mirrored": [ + "5.10.1" + ], + "mismatch errors net": [ + "5.6.0" + ], + "mismatch errors net=life=nature=global_brain=weltgeist=mythical_power": [ + "5.6.0" + ], + "mistakes": [ + "5.10.0" + ], + "mit anderen zu": [ + "5.2.0" + ], + "mit der bitte": [ + "5.2.0" + ], + "model": [ + "5.1.2", + "5.14.0" + ], + "moderators": [ + "5.13.0" + ], + "moderators with ted": [ + "5.13.0" + ], + "modern day cyborg": [ + "5.0.0" + ], + "modern day sense": [ + "5.0.0" + ], + "moechte diese access": [ + "5.2.0" + ], + "moscow wwwart centre": [ + "5.11.3" + ], + "mssrs": [ + "5.11.1" + ], + "mssrs sterling": [ + "5.11.1" + ], + "multiple mythical subjectivations": [ + "5.6.0" + ], + "mumia abu jamal": [ + "5.0.0" + ], + "musicmagazine called soundlab": [ + "5.10.0" + ], + "myopic class perception": [ + "5.0.0" + ], + "mysterious message": [ + "5.11.3" + ], + "mysticism": [ + "5.11.0" + ], + "mythical": [ + "5.6.0" + ], + "mythical external force": [ + "5.6.0" + ], + "nach": [ + "5.2.0" + ], + "national mail bombs": [ + "5.6.0" + ], + "nature": [ + "5.1.2", + "5.6.0" + ], + "nature concepts simultaneously": [ + "5.1.2" + ], + "naum gabo": [ + "5.1.0" + ], + "nearly universal belief": [ + "5.1.0" + ], + "necessarily invoking": [ + "5.12.0" + ], + "negating activity": [ + "5.0.0" + ], + "negative": [ + "5.10.0" + ], + "negative critique": [ + "5.10.0" + ], + "negative role models": [ + "5.13.0" + ], + "neither visible nor": [ + "5.4.0" + ], + "neo-hippie american": [ + "5.3.1" + ], + "neo-hippie american wired": [ + "5.3.0", + "5.3.1" + ], + "neo-liberal": [ + "5.13.1" + ], + "neo-liberal ideology": [ + "5.13.1" + ], + "neo-liberal model": [ + "5.13.1" + ], + "neo-liberal project": [ + "5.13.1" + ], + "net": [ + "5.0.0", + "5.0.1", + "5.1.0", + "5.1.1", + "5.3.1", + "5.6.0", + "5.7.0", + "5.9.0", + "5.9.1", + "5.11.1", + "5.11.3", + "5.13.0", + "5.13.1", + "5.14.0" + ], + "net art": [ + "5.6.0", + "5.6.0" + ], + "net authority": [ + "5.3.1" + ], + "net crit": [ + "5.14.0" + ], + "net criticism": [ + "5.0.1", + "5.7.0", + "5.13.0", + "5.13.1", + "5.14.0" + ], + "net critique": [ + "5.6.0", + "5.6.0", + "5.13.0" + ], + "net critique won": [ + "5.6.0", + "5.6.0" + ], + "net discourse": [ + "5.6.0", + "5.6.0", + "5.13.0" + ], + "net god": [ + "5.6.0" + ], + "net hypes": [ + "5.4.0" + ], + "net libertarians": [ + "5.9.1" + ], + "net oldest": [ + "5.9.1" + ], + "net oldest forum": [ + "5.9.1" + ], + "net-criticism": [ + "5.5.0" + ], + "net-criticism finally": [ + "5.5.0" + ], + "net-criticism finally arrived": [ + "5.5.0" + ], + "net.art": [ + "5.11.3" + ], + "nettime": [ + "5.5.0", + "5.6.0", + "5.7.0", + "5.8.0", + "5.11.0", + "5.11.2" + ], + "nettime and recently": [ + "5.5.0" + ], + "nettime giving birth": [ + "5.8.0" + ], + "nettime idea": [ + "5.7.0" + ], + "nettime list": [ + "5.11.2" + ], + "nettimers": [ + "5.6.0", + "5.9.2" + ], + "nettimers participate": [ + "5.9.2" + ], + "networked media": [ + "5.9.0", + "5.9.0" + ], + "networked push media": [ + "5.9.0", + "5.9.0" + ], + "networks": [ + "5.13.0" + ], + "neuen anlasz": [ + "5.2.0" + ], + "news-service that wired": [ + "5.9.2" + ], + "nicht": [ + "5.2.0" + ], + "nicht ganz richtig": [ + "5.2.0" + ], + "nicht nur": [ + "5.2.0" + ], + "nicht voellig taeusche": [ + "5.2.0" + ], + "nomadic military strategy": [ + "5.0.0" + ], + "normal": [ + "5.3.0" + ], + "normal conf": [ + "5.3.0" + ], + "nutty doomed efforts": [ + "5.11.0" + ], + "observed mark stahlman": [ + "5.11.2", + "5.11.2" + ], + "obsession": [ + "5.6.0" + ], + "offer": [ + "5.1.2" + ], + "offer net technology": [ + "5.0.0" + ], + "official": [ + "5.6.0" + ], + "official version": [ + "5.6.0" + ], + "ontogeny recaptulates phylogeny": [ + "5.9.0" + ], + "ontological reality": [ + "5.11.0" + ], + "opened text": [ + "5.11.3" + ], + "opened text appeared": [ + "5.11.3" + ], + "opennet.org": [ + "5.1.1" + ], + "opportunity": [ + "5.3.0" + ], + "order": [ + "5.10.0", + "5.10.1" + ], + "orderly broadcast system": [ + "5.0.0" + ], + "orderly homogeneous activity": [ + "5.0.0" + ], + "organic intellectual": [ + "5.4.0" + ], + "organisiert wird": [ + "5.2.0" + ], + "organize": [ + "5.13.0" + ], + "orgasmic free spirit": [ + "5.3.1" + ], + "origin": [ + "5.11.3" + ], + "overlooked on important": [ + "5.9.2" + ], + "overwhelming": [ + "5.0.1" + ], + "overwhelming encyclopedic project": [ + "5.12.0" + ], + "overwhelming urgency": [ + "5.0.1" + ], + "own cheap machines": [ + "5.1.0" + ], + "own concepts": [ + "5.10.0" + ], + "own historical lies": [ + "5.3.1" + ], + "own home pages": [ + "5.0.0" + ], + "own modell": [ + "5.10.0" + ], + "palm springs": [ + "5.3.0" + ], + "palm springs 1/24": [ + "5.3.0" + ], + "part": [ + "5.4.0", + "5.6.0", + "5.8.0" + ], + "participate in chats": [ + "5.9.2" + ], + "particular social aggregate": [ + "5.0.0" + ], + "partly agree": [ + "5.10.0" + ], + "parts": [ + "5.6.0", + "5.13.1" + ], + "passionate moral revulsion": [ + "5.11.0" + ], + "people": [ + "5.0.0", + "5.1.0", + "5.1.1", + "5.7.0", + "5.8.0", + "5.11.0", + "5.11.1", + "5.11.2", + "5.13.0" + ], + "people park": [ + "5.1.0" + ], + "people who lived": [ + "5.8.0" + ], + "permanently connected": [ + "5.1.1" + ], + "perry": [ + "5.0.1", + "5.3.0", + "5.3.1" + ], + "perry barlow": [ + "5.0.1", + "5.3.0" + ], + "personal computer": [ + "5.1.0" + ], + "personal computer revolution": [ + "5.0.0" + ], + "personal situation anyway": [ + "5.11.0" + ], + "personality cults exalted": [ + "5.11.0" + ], + "phenomena": [ + "5.9.1" + ], + "philosophical dream": [ + "5.12.0" + ], + "physical body allows": [ + "5.0.0" + ], + "physical world": [ + "5.0.0" + ], + "physical world context": [ + "5.0.0" + ], + "piece": [ + "5.9.1" + ], + "pinedale": [ + "5.3.0" + ], + "pissed": [ + "5.3.0", + "5.3.1" + ], + "pit": [ + "5.0.1", + "5.3.0", + "5.5.0" + ], + "pit schultz": [ + "5.0.1", + "5.3.0", + "5.12.0" + ], + "pit schultz wrote": [ + "5.0.1", + "5.0.1", + "5.3.0", + "5.3.0" + ], + "pit schulz established": [ + "5.12.0" + ], + "playing computer games": [ + "5.0.0" + ], + "point": [ + "5.11.1" + ], + "pointcast": [ + "5.9.2" + ], + "policy action plans": [ + "5.12.0" + ], + "political": [ + "5.4.0", + "5.13.1" + ], + "political engagement": [ + "5.4.0" + ], + "political ideology": [ + "5.13.1" + ], + "political intellectual": [ + "5.4.0" + ], + "political intellectual redundant": [ + "5.4.0", + "5.4.0" + ], + "political invention": [ + "5.13.1" + ], + "pollution": [ + "5.1.2" + ], + "poly bearded swot": [ + "5.11.0" + ], + "popular": [ + "5.11.2" + ], + "popular american": [ + "5.11.2" + ], + "popular american magazine": [ + "5.11.0", + "5.11.2", + "5.11.2" + ], + "popular buzz word": [ + "5.0.0" + ], + "populations participating": [ + "5.0.0" + ], + "portrait": [ + "5.5.0" + ], + "portrayed": [ + "5.11.1" + ], + "portrayed by mssrs": [ + "5.11.1" + ], + "post-socialist eastern europe": [ + "5.8.0" + ], + "posting nettime comments": [ + "5.11.0" + ], + "potential": [ + "5.1.2" + ], + "potential humanitarian benefits": [ + "5.0.0" + ], + "power": [ + "5.3.1", + "5.4.0", + "5.6.0" + ], + "practically unreadable": [ + "5.11.3" + ], + "practically unreadable ascii": [ + "5.11.3" + ], + "practice": [ + "5.11.0" + ], + "prepublished on nettime": [ + "5.5.0" + ], + "present": [ + "5.1.2" + ], + "preserve command structure": [ + "5.0.0" + ], + "pretty much agree": [ + "5.9.2" + ], + "previous isolated people": [ + "5.13.1" + ], + "primal bolshevik situation": [ + "5.8.0" + ], + "principle": [ + "5.1.2" + ], + "principle of mimesis": [ + "5.1.2" + ], + "privilege position wouldn": [ + "5.7.0" + ], + "probability theory": [ + "5.1.1" + ], + "problem": [ + "5.0.0", + "5.3.0", + "5.13.1" + ], + "problem geert": [ + "5.5.0" + ], + "problem geert presents": [ + "5.5.0" + ], + "proceedings": [ + "5.2.0" + ], + "process": [ + "5.1.2", + "5.13.1" + ], + "produce ten pieces": [ + "5.1.2" + ], + "production": [ + "5.3.1" + ], + "production equipment": [ + "5.0.0" + ], + "profound faith": [ + "5.1.0" + ], + "profound social change": [ + "5.1.0" + ], + "profoundly touristic discovery": [ + "5.4.0" + ], + "program of documenta": [ + "5.4.0" + ], + "project": [ + "5.13.0" + ], + "project newsletter": [ + "5.12.0" + ], + "projekte": [ + "5.2.0" + ], + "projekte beurteilen kann": [ + "5.2.0" + ], + "promise": [ + "5.0.0" + ], + "promise eternally repeated": [ + "5.0.0" + ], + "promised social changes": [ + "5.0.0" + ], + "promises": [ + "5.0.0" + ], + "proper information economy": [ + "5.12.0" + ], + "proper understanding": [ + "5.12.0" + ], + "property": [ + "5.3.1" + ], + "property model based": [ + "5.3.1", + "5.3.1" + ], + "proved nearly fatal": [ + "5.4.0" + ], + "public": [ + "5.4.0" + ], + "public research handouts": [ + "5.1.0" + ], + "public space": [ + "5.0.0" + ], + "public spaces replicated": [ + "5.0.0" + ], + "public sphere": [ + "5.4.0" + ], + "publish breathless editorials": [ + "5.9.1", + "5.9.1" + ], + "purposes inthe representative": [ + "5.0.0" + ], + "push": [ + "5.9.0", + "5.9.2", + "5.10.1" + ], + "push media": [ + "5.9.0", + "5.9.2", + "5.10.1" + ], + "push media critique": [ + "5.9.0", + "5.9.0", + "5.10.1" + ], + "push media software": [ + "5.10.1" + ], + "push technology": [ + "5.9.1" + ], + "quaint historical wrong": [ + "5.13.0" + ], + "question": [ + "5.3.1", + "5.13.0" + ], + "questions concerned": [ + "5.12.0" + ], + "rahmen": [ + "5.2.0" + ], + "random ascii fetishists": [ + "5.12.0" + ], + "rapidly becoming": [ + "5.13.0" + ], + "rational investigation": [ + "5.11.0" + ], + "rational political science": [ + "5.11.0" + ], + "rationalized social organization": [ + "5.0.0" + ], + "reaching beyond": [ + "5.12.0" + ], + "reactionary force trying": [ + "5.13.0" + ], + "reactionary mode": [ + "5.13.0" + ], + "read": [ + "5.9.0" + ], + "reads wired": [ + "5.10.1" + ], + "readymade": [ + "5.11.3" + ], + "real": [ + "5.7.0" + ], + "reason net": [ + "5.13.0" + ], + "receive unlimited amounts": [ + "5.1.0" + ], + "recent highlights": [ + "5.7.0" + ], + "recent private discussion": [ + "5.7.0" + ], + "recently got printed": [ + "5.5.0" + ], + "reduce global trade": [ + "5.13.0" + ], + "reinventing cultural context": [ + "5.12.0" + ], + "reject human contact": [ + "5.0.0" + ], + "relationships data participate": [ + "5.12.0" + ], + "relatively secure efficiency": [ + "5.0.0" + ], + "relatively short time": [ + "5.12.0" + ], + "released in november": [ + "5.13.0" + ], + "rem koolhaas": [ + "5.4.0" + ], + "renewed epistemological agnosticism": [ + "5.12.0" + ], + "rephrase john carey": [ + "5.4.0" + ], + "replace corporate capitalism": [ + "5.1.0" + ], + "repressive apparatus": [ + "5.0.0" + ], + "resist authoritarian structure": [ + "5.0.0" + ], + "resistant market": [ + "5.14.0" + ], + "resistant market ideologies": [ + "5.14.0", + "5.14.0" + ], + "respects a good": [ + "5.11.1" + ], + "responsibility of net": [ + "5.14.0" + ], + "reveals markovic": [ + "5.8.0" + ], + "revolutionary leftist atheists": [ + "5.11.0" + ], + "rich bullies standing": [ + "5.11.0" + ], + "richard barbrook": [ + "5.1.0" + ], + "richard rorty": [ + "5.5.0" + ], + "richtig verstehe": [ + "5.2.0" + ], + "role": [ + "5.4.0" + ], + "ronald reagan": [ + "5.1.0" + ], + "rules apply": [ + "5.11.1" + ], + "russell jacoby book": [ + "5.4.0" + ], + "russian culture": [ + "5.11.2" + ], + "salt lake": [ + "5.0.1" + ], + "salt lake city": [ + "5.0.1" + ], + "san franciscan": [ + "5.11.0" + ], + "san francisco": [ + "5.3.0" + ], + "san francisco 1/8": [ + "5.3.0" + ], + "sanitation eliminates cholera": [ + "5.11.0" + ], + "saturated media companies": [ + "5.0.0" + ], + "schlagworte dazu sind": [ + "5.2.0" + ], + "scholarly answer": [ + "5.8.0" + ], + "schultz": [ + "5.0.1", + "5.3.0" + ], + "schultz wrote": [ + "5.0.1", + "5.3.0" + ], + "science": [ + "5.11.0" + ], + "science fiction": [ + "5.11.0" + ], + "science fiction writer": [ + "5.11.0", + "5.11.0" + ], + "science fiction writers": [ + "5.11.0" + ], + "scientific": [ + "5.11.0" + ], + "scientists": [ + "5.1.2" + ], + "seamless media continuum": [ + "5.9.0" + ], + "search costs money": [ + "5.0.0" + ], + "secret knowledge": [ + "5.6.0", + "5.6.0" + ], + "seemingly admirable ideal": [ + "5.1.0" + ], + "senator exon": [ + "5.0.1" + ], + "sense": [ + "5.0.0" + ], + "separate themselves": [ + "5.0.0" + ], + "service": [ + "5.0.1" + ], + "service of senator": [ + "5.0.1" + ], + "severe social constraints": [ + "5.12.0" + ], + "shameless posthuman grandchildren": [ + "5.11.0" + ], + "shapes public opinion": [ + "5.4.0" + ], + "share and credibility": [ + "5.9.1" + ], + "shared value system": [ + "5.0.0" + ], + "shift": [ + "5.6.0" + ], + "sick mind fuck": [ + "5.3.1" + ], + "silly": [ + "5.9.2" + ], + "silly wired": [ + "5.9.2" + ], + "silly wired cover": [ + "5.9.2", + "5.9.2" + ], + "similar traditional encumbrance": [ + "5.12.0" + ], + "simple purification filter": [ + "5.12.0" + ], + "simply articulating fear": [ + "5.12.0" + ], + "sind": [ + "5.2.0" + ], + "sind wie wahnsinng": [ + "5.2.0" + ], + "sinister": [ + "5.11.2" + ], + "sinister doctrines": [ + "5.11.2" + ], + "situation": [ + "5.8.0" + ], + "skilled workers form": [ + "5.1.0" + ], + "slightly obnoxious attempts": [ + "5.9.2" + ], + "slip": [ + "5.11.1" + ], + "slowly losing ground": [ + "5.4.0" + ], + "small": [ + "5.10.1" + ], + "soapy sam": [ + "5.11.0" + ], + "social": [ + "5.0.0", + "5.1.0", + "5.12.0" + ], + "social activists": [ + "5.1.0" + ], + "social changes": [ + "5.0.0" + ], + "social configurations": [ + "5.13.0" + ], + "social culture": [ + "5.0.0" + ], + "social freedom": [ + "5.0.0" + ], + "social impacts": [ + "5.4.0" + ], + "social manifestation": [ + "5.0.0" + ], + "social movements": [ + "5.4.0" + ], + "social organizations": [ + "5.13.0" + ], + "social practices": [ + "5.11.0" + ], + "social science fiction": [ + "5.13.0" + ], + "social structures": [ + "5.0.0" + ], + "socialism": [ + "5.8.0" + ], + "socialist eastern europe": [ + "5.8.0" + ], + "society": [ + "5.12.0", + "5.13.0" + ], + "sociological class definitions": [ + "5.4.0" + ], + "sociological phenomena": [ + "5.4.0" + ], + "sociological questions supersede": [ + "5.12.0" + ], + "sociological sobriety": [ + "5.12.0" + ], + "software": [ + "5.9.2", + "5.11.3" + ], + "soll": [ + "5.2.0" + ], + "sollten beschrieben werden": [ + "5.2.0" + ], + "sorgen wird": [ + "5.2.0" + ], + "soviet": [ + "5.7.0" + ], + "soviet revolution": [ + "5.7.0", + "5.7.0" + ], + "soviet revolution failed": [ + "5.7.0" + ], + "space": [ + "5.1.2" + ], + "spacial revolutions forward": [ + "5.13.0" + ], + "spanish civil war": [ + "5.7.0" + ], + "speak": [ + "5.14.0" + ], + "specific public role": [ + "5.4.0" + ], + "specifically": [ + "5.14.0" + ], + "specifically european task": [ + "5.12.0" + ], + "speculative media theory": [ + "5.4.0", + "5.4.0" + ], + "sphere": [ + "5.4.0" + ], + "spies": [ + "5.6.0" + ], + "spies vs spies": [ + "5.6.0" + ], + "stahlman": [ + "5.11.0" + ], + "stalin": [ + "5.7.0" + ], + "stalking-horse": [ + "5.11.2" + ], + "stands": [ + "5.11.1" + ], + "start": [ + "5.13.1" + ], + "start innocent": [ + "5.7.0" + ], + "state": [ + "5.4.0" + ], + "statements": [ + "5.2.0" + ], + "status": [ + "5.10.0" + ], + "status of critique": [ + "5.10.0" + ], + "step towards": [ + "5.1.0" + ], + "sterling": [ + "5.11.0", + "5.11.1", + "5.11.2" + ], + "sterling bruces": [ + "5.11.0" + ], + "sterling writes": [ + "5.11.2" + ], + "stop": [ + "5.10.0" + ], + "stop analyses": [ + "5.10.0" + ], + "stop thinking": [ + "5.10.0", + "5.10.0" + ], + "story": [ + "5.9.2" + ], + "strategies": [ + "5.10.0" + ], + "strengthen economic development": [ + "5.0.0" + ], + "stressful conference tourism": [ + "5.5.0" + ], + "struktur zu aktualisieren": [ + "5.2.0" + ], + "studies program": [ + "5.11.1" + ], + "stuff": [ + "5.11.1" + ], + "subjective voice": [ + "5.6.0" + ], + "subjectivity": [ + "5.14.0" + ], + "subjectivity defined": [ + "5.14.0" + ], + "subjectivity defined today": [ + "5.14.0" + ], + "subscribe": [ + "5.9.2" + ], + "subversive environment": [ + "5.0.0" + ], + "successful repressive apparatus": [ + "5.0.0" + ], + "sudden ideological answer": [ + "5.11.0" + ], + "supporting anti-privacy legislation": [ + "5.9.1" + ], + "supposed": [ + "5.1.2" + ], + "system": [ + "5.0.0", + "5.1.2", + "5.11.0" + ], + "system developed": [ + "5.0.0" + ], + "talking": [ + "5.9.2" + ], + "talking like revolutionaries": [ + "5.9.1" + ], + "task": [ + "5.12.0" + ], + "teaching": [ + "5.1.1" + ], + "teaching probability": [ + "5.1.1" + ], + "teaching probability theory": [ + "5.1.1", + "5.1.1" + ], + "tech industrial complex": [ + "5.1.0" + ], + "technically adept populations": [ + "5.0.0" + ], + "technically enhanced individuals": [ + "5.12.0" + ], + "technological system": [ + "5.1.2" + ], + "technologically saturated societies": [ + "5.0.0" + ], + "technologies": [ + "5.1.0" + ], + "technology": [ + "5.0.0", + "5.1.2", + "5.12.0" + ], + "technology change people": [ + "5.12.0" + ], + "ted": [ + "5.13.0" + ], + "ted byfield": [ + "5.13.0" + ], + "telecoms industries experience": [ + "5.1.0" + ], + "telecoms special issue": [ + "5.12.0" + ], + "telephone costs": [ + "5.12.0" + ], + "television": [ + "5.9.0" + ], + "term": [ + "5.11.3" + ], + "terrestrial spiritual development": [ + "5.0.0" + ], + "tested simple systems": [ + "5.11.0" + ], + "text": [ + "5.11.3" + ], + "text appeared": [ + "5.11.3" + ], + "text tv": [ + "5.6.0" + ], + "texts": [ + "5.12.0" + ], + "themselves alive": [ + "5.0.0" + ], + "theoretical concepts": [ + "5.4.0" + ], + "theory": [ + "5.1.1", + "5.4.0" + ], + "theory fiction": [ + "5.4.0", + "5.5.0" + ], + "things": [ + "5.10.0", + "5.13.1" + ], + "thinking": [ + "5.3.0", + "5.10.0" + ], + "thomas henry huxley": [ + "5.11.0" + ], + "thought wired": [ + "5.10.0" + ], + "thread": [ + "5.11.1" + ], + "tide": [ + "5.11.1" + ], + "tide flowing": [ + "5.11.1" + ], + "tide pool": [ + "5.11.1" + ], + "time": [ + "5.0.0", + "5.0.1", + "5.1.2", + "5.6.0", + "5.7.0", + "5.9.0", + "5.10.1", + "5.11.3", + "5.13.0" + ], + "time future": [ + "5.0.1" + ], + "time future contained": [ + "5.0.1" + ], + "time past": [ + "5.0.1" + ], + "tiny": [ + "5.11.1" + ], + "tiny point": [ + "5.11.1" + ], + "topic wired": [ + "5.9.0" + ], + "towards net criticism": [ + "5.4.0" + ], + "trade unions": [ + "5.13.0" + ], + "traditional": [ + "5.1.2" + ], + "traditional art": [ + "5.1.2" + ], + "traditional homo academicus": [ + "5.12.0" + ], + "traditional intellectuals": [ + "5.5.0" + ], + "traditional physical model": [ + "5.1.2" + ], + "trendy academics": [ + "5.1.0" + ], + "true": [ + "5.5.0" + ], + "true home": [ + "5.0.0" + ], + "true media": [ + "5.9.0" + ], + "true media capitalism": [ + "5.9.0" + ], + "turning mail logs": [ + "5.9.1" + ], + "ueber diesen faq": [ + "5.2.0" + ], + "ulrich beck": [ + "5.13.1" + ], + "ultimate killer app": [ + "5.9.0" + ], + "ultimate power": [ + "5.7.0" + ], + "ultimate theoretical explanation": [ + "5.7.0" + ], + "umberto eco": [ + "5.5.0" + ], + "unavoidable apocalyptic turnover": [ + "5.6.0" + ], + "und": [ + "5.2.0" + ], + "und da spielt": [ + "5.2.0" + ], + "und dazu": [ + "5.2.0" + ], + "understand": [ + "5.10.0", + "5.10.1" + ], + "undisturbed beyond": [ + "5.12.0" + ], + "unfettered interactions": [ + "5.1.0" + ], + "unidentified theoretical object": [ + "5.4.0" + ], + "university": [ + "5.1.1" + ], + "unix and internet": [ + "5.3.1" + ], + "unlimited quantities": [ + "5.1.0" + ], + "unreadable ascii": [ + "5.11.3" + ], + "unreadable ascii abracadabra": [ + "5.11.3" + ], + "unregulated bohemian neighborhood": [ + "5.0.0" + ], + "unstoppable tidal wave": [ + "5.0.0" + ], + "unter dieses dach": [ + "5.2.0" + ], + "upcoming book": [ + "5.13.0" + ], + "upcoming social category": [ + "5.4.0" + ], + "ups offered possibilities": [ + "5.0.0" + ], + "urgency": [ + "5.0.1" + ], + "url": [ + "5.2.0" + ], + "usa": [ + "5.10.1" + ], + "usenet": [ + "5.9.1" + ], + "utopian dream": [ + "5.0.0" + ], + "utopian promises": [ + "5.0.0" + ], + "vaguely plausible guy": [ + "5.11.0" + ], + "vanishing gutenberg galaxy": [ + "5.4.0" + ], + "various programmatic papers": [ + "5.12.0" + ], + "verschiedenen projekten geben": [ + "5.2.0" + ], + "video equipment": [ + "5.0.0" + ], + "video revolution": [ + "5.0.0" + ], + "vilém flusser": [ + "5.5.0", + "5.5.0" + ], + "virtual": [ + "5.0.0", + "5.1.0", + "5.4.0", + "5.5.0", + "5.6.0", + "5.12.0" + ], + "virtual body": [ + "5.0.0", + "5.0.0" + ], + "virtual border": [ + "5.0.0" + ], + "virtual capitalism": [ + "5.6.0" + ], + "virtual class": [ + "5.4.0", + "5.12.0" + ], + "virtual intellectual": [ + "5.4.0", + "5.5.0", + "5.12.0" + ], + "virtual intellectual task": [ + "5.12.0" + ], + "virtual reality": [ + "5.0.0", + "5.12.0" + ], + "virtual reality improves": [ + "5.0.0" + ], + "virtual san franciscan": [ + "5.11.0", + "5.11.0" + ], + "visiting professor": [ + "5.11.1" + ], + "vital-virtual thing": [ + "5.1.1" + ], + "voice was needed": [ + "5.5.0" + ], + "volker grassmuck": [ + "5.2.0" + ], + "vom subjekt": [ + "5.5.0" + ], + "vom zweiten interfiction": [ + "5.2.0" + ], + "von": [ + "5.2.0" + ], + "von heteren": [ + "5.1.1" + ], + "von starterkits herauskommen": [ + "5.2.0" + ], + "vouch": [ + "5.11.1" + ], + "vuk": [ + "5.11.3" + ], + "vuk cosic": [ + "5.11.3" + ], + "vuk software": [ + "5.11.3" + ], + "war myths": [ + "5.8.0" + ], + "watching interactive tv": [ + "5.0.0" + ], + "wave": [ + "5.3.1" + ], + "web": [ + "5.9.0" + ], + "websites sind": [ + "5.2.0" + ], + "wellbeing": [ + "5.11.1" + ], + "wenn ich das": [ + "5.2.0" + ], + "wenn ich mich": [ + "5.2.0" + ], + "werden": [ + "5.2.0" + ], + "werden koennen": [ + "5.2.0" + ], + "west": [ + "5.1.0" + ], + "west coast": [ + "5.1.0", + "5.1.0" + ], + "west coast extropian": [ + "5.1.0" + ], + "west coast hi": [ + "5.1.0" + ], + "west coast hi-tech": [ + "5.1.0" + ], + "west coast ideologues": [ + "5.1.0", + "5.1.0" + ], + "west coast radicals": [ + "5.1.0", + "5.1.0" + ], + "western economic powers": [ + "5.4.0" + ], + "wide spread organisations": [ + "5.7.0" + ], + "wide web": [ + "5.9.0" + ], + "wider": [ + "5.11.1" + ], + "wilberforce snidely inquired": [ + "5.11.0" + ], + "wilful blindness towards": [ + "5.1.0" + ], + "wing hardcore liberals": [ + "5.3.1" + ], + "wing political parties": [ + "5.1.0" + ], + "wird": [ + "5.2.0" + ], + "wired": [ + "5.3.1", + "5.9.0", + "5.9.1", + "5.9.2", + "5.10.0", + "5.10.1", + "5.11.0" + ], + "wired bashing": [ + "5.9.0" + ], + "wired calls": [ + "5.9.0" + ], + "wired corporation": [ + "5.10.1" + ], + "wired cover": [ + "5.9.2" + ], + "wired cover story": [ + "5.9.2" + ], + "wired culture": [ + "5.3.0", + "5.3.1" + ], + "wired enterprise": [ + "5.9.0" + ], + "wired gang": [ + "5.10.1" + ], + "wired group": [ + "5.10.1" + ], + "wired group originates": [ + "5.10.1" + ], + "wired ideology": [ + "5.10.1" + ], + "wired magazin": [ + "5.9.2" + ], + "wired magazine": [ + "5.3.1", + "5.9.0", + "5.10.1" + ], + "wired magazine announced": [ + "5.10.1", + "5.10.1" + ], + "wired masthead": [ + "5.11.0" + ], + "wired news channel": [ + "5.9.2", + "5.9.2" + ], + "wired offers": [ + "5.9.2" + ], + "wired puts": [ + "5.9.0" + ], + "wired staffer": [ + "5.11.0" + ], + "wired story": [ + "5.9.0" + ], + "wired story stumbles": [ + "5.9.0", + "5.9.0" + ], + "wired struggling": [ + "5.9.0" + ], + "wired subscription lapse": [ + "5.11.2" + ], + "wired support": [ + "5.9.1" + ], + "wired visionaries": [ + "5.9.0" + ], + "wired watcher": [ + "5.9.0" + ], + "wish economy": [ + "5.6.0" + ], + "wo die nutzer": [ + "5.2.0" + ], + "wonderful pedagogical tool": [ + "5.0.0" + ], + "words": [ + "5.11.1" + ], + "work": [ + "5.1.2" + ], + "world": [ + "5.0.0", + "5.1.2", + "5.4.0", + "5.6.0", + "5.12.0" + ], + "world wide web": [ + "5.0.0", + "5.9.0", + "5.9.0" + ], + "world wide wedge": [ + "5.12.0" + ], + "world wide west": [ + "5.6.0" + ], + "worldwide net": [ + "5.3.1" + ], + "worldwide net authority": [ + "5.3.1" + ], + "writer": [ + "5.11.0" + ], + "writes": [ + "5.11.2" + ], + "wrote": [ + "5.0.1", + "5.3.0", + "5.10.0" + ], + "ww1 zealot reformers": [ + "5.11.0" + ], + "wyoming coming": [ + "5.3.0" + ], + "years": [ + "5.9.0", + "5.10.1", + "5.11.0" + ], + "yesterday when geert": [ + "5.3.0" + ], + "york times book": [ + "5.12.0" + ], + "york university": [ + "5.11.1" + ], + "zagreb start alarm": [ + "5.7.0" + ], + "zu beginn wird": [ + "5.2.0" + ], + "zum": [ + "5.2.0" + ], + "zusammenhaengen sind": [ + "5.2.0" + ], + "zwischenfragen zur expo": [ + "5.2.0" + ] + }, + "selected": {} +} diff --git a/index/6.FLOSS-index.js b/index/6.FLOSS-index.js new file mode 100644 index 0000000..c141591 --- /dev/null +++ b/index/6.FLOSS-index.js @@ -0,0 +1,5835 @@ +{ + "orphan": { + "* free cooperation": [ + "6.2.0" + ], + "* text processing": [ + "6.9.0" + ], + "/ internet gateway": [ + "6.9.2" + ], + "01:24": [ + "6.0.11", + "6.0.12" + ], + "10:15": [ + "6.0.6", + "6.0.7" + ], + "14:23": [ + "6.0.4", + "6.0.5" + ], + "15:42": [ + "6.7.6" + ], + "17:15": [ + "6.4.6" + ], + "17:15 schrieb": [ + "6.4.6" + ], + "17:15 schrieb heiko": [ + "6.4.6" + ], + "1970s capitalism promised": [ + "6.2.0" + ], + "1990s internet theories": [ + "6.10.1" + ], + "19:07": [ + "6.0.9" + ], + "20:01": [ + "6.0.7" + ], + "8th linux kongress": [ + "6.6.0" + ], + "99e annãe": [ + "6.0.0" + ], + "> reimplementing software": [ + "6.6.0" + ], + ">> development occur": [ + "6.5.0" + ], + ">free software": [ + "6.1.0", + "6.4.0" + ], + ">society beyond labor": [ + "6.1.0", + "6.4.0" + ], + "_it is_ altruism": [ + "6.5.8", + "6.5.10" + ], + "abertay": [ + "6.10.0" + ], + "abertay dundee": [ + "6.10.0" + ], + "absence": [ + "6.1.1", + "6.4.1" + ], + "absorbing": [ + "6.1.3", + "6.4.3" + ], + "academic": [ + "6.7.2", + "6.7.3" + ], + "academic computer networks": [ + "6.9.2" + ], + "academic opportunism": [ + "6.7.2" + ], + "accounts": [ + "6.7.1", + "6.7.3" + ], + "accounts of things": [ + "6.7.1", + "6.7.3" + ], + "actants occupying": [ + "6.7.7" + ], + "actants occupying fluid": [ + "6.7.7" + ], + "activist sensibility": [ + "6.7.3" + ], + "actual consent": [ + "6.0.7" + ], + "actually unix wasn": [ + "6.9.1" + ], + "advise": [ + "6.7.2" + ], + "advise crude": [ + "6.7.2" + ], + "advise film": [ + "6.7.2" + ], + "aestheticing": [ + "6.7.2" + ], + "agenda": [ + "6.7.3" + ], + "agent academic": [ + "6.7.2" + ], + "agree": [ + "6.1.0", + "6.4.0", + "6.5.7", + "6.5.8" + ], + "ai lab": [ + "6.5.8" + ], + "ai labs": [ + "6.9.1" + ], + "alan dershowitz": [ + "6.5.7" + ], + "alternative text paraphrasing": [ + "6.0.0" + ], + "altruism": [ + "6.5.2", + "6.5.5", + "6.5.7", + "6.5.8" + ], + "altruism of open": [ + "6.5.1" + ], + "altruistic": [ + "6.5.2", + "6.5.5", + "6.5.6" + ], + "amateur programmer communities": [ + "6.10.1" + ], + "amateur radio fieldday": [ + "6.7.6" + ], + "amazon-ian in intent": [ + "6.7.2" + ], + "ambiguous relationship": [ + "6.7.1" + ], + "america": [ + "6.3.0" + ], + "americans": [ + "6.3.0" + ], + "amiga or atari": [ + "6.9.2" + ], + "analogy": [ + "6.5.9" + ], + "anonymous": [ + "6.7.0" + ], + "answer andre breton": [ + "6.5.8" + ], + "apolitical technical": [ + "6.7.0" + ], + "apolitical technical people": [ + "6.7.0", + "6.7.0" + ], + "apple": [ + "6.1.3", + "6.4.3" + ], + "apple public": [ + "6.1.3", + "6.4.3" + ], + "apple public source": [ + "6.1.3", + "6.1.3", + "6.4.3", + "6.4.3" + ], + "applies to open": [ + "6.5.2" + ], + "apply your bugfixes": [ + "6.9.2" + ], + "applying open source": [ + "6.10.1" + ], + "approach": [ + "6.1.1", + "6.1.2", + "6.4.1", + "6.4.2" + ], + "architecture": [ + "6.9.1" + ], + "archive": [ + "6.5.1" + ], + "arguing": [ + "6.1.1", + "6.4.1" + ], + "argument": [ + "6.5.2" + ], + "art": [ + "6.0.0", + "6.0.1", + "6.10.1" + ], + "art failed none": [ + "6.0.0" + ], + "art license": [ + "6.0.0", + "6.0.1", + "6.0.1" + ], + "art manifesto": [ + "6.0.0" + ], + "art manifesto traits": [ + "6.0.0" + ], + "art manifestos produced": [ + "6.0.0", + "6.0.0" + ], + "art system": [ + "6.10.1" + ], + "art tends towards": [ + "6.9.0" + ], + "article": [ + "6.5.10", + "6.7.0" + ], + "articulated specifically": [ + "6.0.0" + ], + "artificial intelligence lab": [ + "6.5.8" + ], + "artist": [ + "6.0.0", + "6.0.6" + ], + "artist can stop": [ + "6.0.6" + ], + "artistic": [ + "6.0.1" + ], + "artistic computer networks": [ + "6.9.0" + ], + "artistic desire": [ + "6.0.0" + ], + "artistic freedom": [ + "6.9.0" + ], + "artistic methodology aims": [ + "6.0.0" + ], + "artistic net": [ + "6.9.0" + ], + "artistic net activity": [ + "6.9.0" + ], + "artistic net cultures": [ + "6.9.0" + ], + "artistic politics": [ + "6.0.0" + ], + "artistic statement": [ + "6.0.1" + ], + "artists": [ + "6.0.0", + "6.7.7", + "6.10.0" + ], + "asap": [ + "6.9.2" + ], + "association": [ + "6.7.0", + "6.7.1" + ], + "asymmetrical method": [ + "6.10.2" + ], + "atari shareware": [ + "6.9.2" + ], + "atari shareware/freeware binaries": [ + "6.9.2" + ], + "audience": [ + "6.10.0" + ], + "audience benefit": [ + "6.10.0" + ], + "august": [ + "6.8.0" + ], + "author": [ + "6.0.4" + ], + "author david lancashire": [ + "6.5.0" + ], + "author that matters": [ + "6.0.7" + ], + "aymeric": [ + "6.0.4", + "6.0.5" + ], + "aymeric mansoux": [ + "6.0.4", + "6.0.5" + ], + "back": [ + "6.0.4", + "6.0.5", + "6.0.9", + "6.10.2" + ], + "back point": [ + "6.0.5" + ], + "background of free": [ + "6.5.1" + ], + "based": [ + "6.7.5", + "6.7.6" + ], + "based event": [ + "6.11.0" + ], + "based on richard": [ + "6.7.5", + "6.7.6" + ], + "based writing": [ + "6.9.0" + ], + "basic graphical desktop": [ + "6.5.0" + ], + "basic user commands": [ + "6.9.0" + ], + "bazaar": [ + "6.10.0", + "6.10.1" + ], + "bbs culture": [ + "6.9.2" + ], + "bbss": [ + "6.9.2" + ], + "becoming extremely difficult": [ + "6.5.7" + ], + "beer": [ + "6.1.1", + "6.4.1" + ], + "beer distinction": [ + "6.1.1", + "6.4.1" + ], + "begin oekonux develop": [ + "6.2.0" + ], + "benefit": [ + "6.10.0" + ], + "biella": [ + "6.7.1", + "6.7.3", + "6.7.4" + ], + "biella biella": [ + "6.7.3" + ], + "biella wrote": [ + "6.7.1" + ], + "bill gates": [ + "6.10.2" + ], + "binary software": [ + "6.9.0" + ], + "bit": [ + "6.7.3" + ], + "bitnet": [ + "6.9.2" + ], + "blabla": [ + "6.1.4", + "6.4.4" + ], + "blake": [ + "6.7.7" + ], + "blurring differences": [ + "6.5.10", + "6.5.11" + ], + "book": [ + "6.1.4", + "6.4.4" + ], + "book the future": [ + "6.1.1", + "6.4.1" + ], + "books": [ + "6.5.5" + ], + "brett scott": [ + "6.7.3" + ], + "briefly": [ + "6.7.0" + ], + "bruce perens": [ + "6.1.2", + "6.4.2" + ], + "bsd licences": [ + "6.1.4", + "6.4.4", + "6.4.6" + ], + "bsd operating systems": [ + "6.5.3" + ], + "bsd project leader": [ + "6.5.0" + ], + "bugfixes asap": [ + "6.9.2" + ], + "bugs": [ + "6.10.1" + ], + "bugtracking systems": [ + "6.9.0" + ], + "building": [ + "6.0.1" + ], + "building association": [ + "6.7.0" + ], + "building codes": [ + "6.5.7" + ], + "building social relationships": [ + "6.2.0" + ], + "businesses producing commodities": [ + "6.2.0" + ], + "buzzword": [ + "6.5.10" + ], + "buzzword for free": [ + "6.5.10", + "6.5.11" + ], + "call the law": [ + "6.5.9" + ], + "called": [ + "6.4.5" + ], + "called free": [ + "6.4.2" + ], + "called free software": [ + "6.4.2", + "6.4.2" + ], + "camp": [ + "6.7.0", + "6.7.1", + "6.7.3" + ], + "camp life": [ + "6.7.3" + ], + "camp life turned": [ + "6.7.3" + ], + "campuses the open": [ + "6.10.2" + ], + "capable": [ + "6.11.0" + ], + "capitalism": [ + "6.1.0", + "6.2.0", + "6.4.0" + ], + "capitalist": [ + "6.1.2", + "6.4.2" + ], + "capitalist gold mine": [ + "6.7.0", + "6.7.0", + "6.7.1" + ], + "capitalist logic": [ + "6.1.2", + "6.4.2" + ], + "case": [ + "6.5.2", + "6.5.6" + ], + "case law": [ + "6.5.6" + ], + "casebooks": [ + "6.5.5" + ], + "casebooks are books": [ + "6.5.5" + ], + "cases": [ + "6.5.2", + "6.5.6" + ], + "cathedral": [ + "6.10.0", + "6.10.1" + ], + "cc licenses": [ + "6.0.12" + ], + "ccc camp": [ + "6.7.0", + "6.7.1", + "6.7.1" + ], + "central concept": [ + "6.1.4", + "6.4.4" + ], + "change": [ + "6.0.7", + "6.0.9", + "6.0.11", + "6.0.12" + ], + "change a license": [ + "6.0.11" + ], + "changing": [ + "6.0.6", + "6.0.7" + ], + "changing his mind": [ + "6.0.6", + "6.0.7" + ], + "chaos": [ + "6.4.6" + ], + "chaos computer": [ + "6.7.5" + ], + "charge": [ + "6.1.1", + "6.4.1" + ], + "charge access": [ + "6.0.4", + "6.0.5", + "6.0.9" + ], + "chime": [ + "6.7.0" + ], + "choice is made": [ + "6.0.4" + ], + "claim": [ + "6.5.5" + ], + "claim lawyers": [ + "6.5.5" + ], + "classifying putting": [ + "6.10.2" + ], + "closed committee style": [ + "6.10.1" + ], + "closed ones die": [ + "6.10.1" + ], + "closed processes": [ + "6.10.1" + ], + "closed source software": [ + "6.5.9" + ], + "code": [ + "6.0.9", + "6.0.11", + "6.1.1", + "6.1.2", + "6.4.1", + "6.4.2", + "6.4.5", + "6.5.9" + ], + "code that preceded": [ + "6.4.5" + ], + "codes": [ + "6.5.7" + ], + "cohorts": [ + "6.7.2" + ], + "coined": [ + "6.4.5", + "6.5.10", + "6.5.11" + ], + "coleman": [ + "6.7.0" + ], + "collaborative works": [ + "6.0.0" + ], + "collaborative writing": [ + "6.9.0" + ], + "collectively produced programs": [ + "6.7.0" + ], + "com/~craig": [ + "6.5.1" + ], + "commando line interface": [ + "6.4.6" + ], + "commercial": [ + "6.5.7" + ], + "commercial codes provide": [ + "6.5.7" + ], + "commercial entities": [ + "6.5.7" + ], + "commercial exploitation": [ + "6.5.7" + ], + "commercial publishing empires": [ + "6.5.7" + ], + "commercial software enterprise": [ + "6.5.10" + ], + "commercial unix systems": [ + "6.5.0" + ], + "common": [ + "6.5.6" + ], + "common addressing mechanism": [ + "6.9.1" + ], + "common free software": [ + "6.9.0", + "6.9.1" + ], + "common law": [ + "6.5.6" + ], + "common lisp enterprise": [ + "6.5.1" + ], + "commons licences": [ + "6.0.11" + ], + "community": [ + "6.5.9" + ], + "compatible operating system": [ + "6.5.0" + ], + "compatible systems begun": [ + "6.5.0" + ], + "compiler": [ + "6.7.5" + ], + "completely wrong approach": [ + "6.5.2", + "6.5.6" + ], + "complex free software": [ + "6.5.0", + "6.5.3" + ], + "complex software makes": [ + "6.5.3", + "6.5.3" + ], + "complex textual processing": [ + "6.9.0" + ], + "complex xml markup": [ + "6.8.0" + ], + "complicated than expected": [ + "6.7.3" + ], + "computer": [ + "6.9.1" + ], + "computer club": [ + "6.7.5" + ], + "computer history": [ + "6.9.1" + ], + "computer science departments": [ + "6.5.0" + ], + "computer science labs": [ + "6.9.0", + "6.9.1" + ], + "computer science student": [ + "6.10.1" + ], + "computer software": [ + "6.9.0" + ], + "concept": [ + "6.1.4", + "6.4.4" + ], + "concerned": [ + "6.11.0" + ], + "concerns precisely": [ + "6.7.3" + ], + "concurrent versioning system": [ + "6.9.0" + ], + "condition": [ + "6.0.1" + ], + "condition hard coded": [ + "6.0.1" + ], + "configure complex commodities": [ + "6.2.0" + ], + "conforming identities described": [ + "6.7.7" + ], + "connection": [ + "6.9.2" + ], + "connection with free": [ + "6.9.2" + ], + "conscious artistic choice": [ + "6.0.0" + ], + "consciously": [ + "6.5.10", + "6.5.11" + ], + "considerable": [ + "6.7.5", + "6.7.6" + ], + "considerable part": [ + "6.7.5" + ], + "constrained art system": [ + "6.0.0" + ], + "consult": [ + "6.1.1", + "6.4.1" + ], + "consult the gnu": [ + "6.1.1", + "6.4.1" + ], + "contained operating system": [ + "6.5.0" + ], + "contemporary geek politics": [ + "6.7.0", + "6.7.0" + ], + "contemporary politics": [ + "6.7.0" + ], + "content": [ + "6.8.0" + ], + "content licenses": [ + "6.0.1" + ], + "content management systems": [ + "6.8.0" + ], + "context": [ + "6.0.1", + "6.1.1", + "6.4.1", + "6.5.2" + ], + "contextual information surrounds": [ + "6.0.0" + ], + "contribute": [ + "6.5.2" + ], + "contribute to open": [ + "6.5.2" + ], + "copies": [ + "6.0.6", + "6.0.7" + ], + "copyright owner": [ + "6.0.11" + ], + "copyrighted": [ + "6.5.7" + ], + "copyrighted product": [ + "6.5.7" + ], + "core developers": [ + "6.5.0" + ], + "core operating": [ + "6.5.0" + ], + "core operating systems": [ + "6.5.0" + ], + "core system": [ + "6.5.0" + ], + "corporate": [ + "6.11.0" + ], + "corporate corruption": [ + "6.11.0", + "6.11.0" + ], + "corporate openwashing campaigns": [ + "6.11.0" + ], + "corporate powers": [ + "6.11.0" + ], + "cosmetics": [ + "6.4.6" + ], + "courage": [ + "6.11.0" + ], + "covert agent academic": [ + "6.7.2" + ], + "craig brozefsky": [ + "6.5.1" + ], + "craig brozefsky ": [ + "6.8.0" + ], + "documentation": [ + "6.8.0" + ], + "documentation license": [ + "6.8.0" + ], + "donna": [ + "6.10.1" + ], + "donnerstag": [ + "6.4.6" + ], + "dont like linux": [ + "6.1.4", + "6.4.4" + ], + "dos": [ + "6.9.2" + ], + "dozens": [ + "6.1.4", + "6.4.4" + ], + "dozens of software": [ + "6.1.4", + "6.4.4" + ], + "drawn increasing attention": [ + "6.9.0" + ], + "driver source code": [ + "6.0.0" + ], + "dundee": [ + "6.10.0" + ], + "duty": [ + "6.0.11" + ], + "early": [ + "6.9.1" + ], + "early unix": [ + "6.9.1" + ], + "earn": [ + "6.9.2" + ], + "ears": [ + "6.4.5" + ], + "easily rebutted objections": [ + "6.0.0" + ], + "east side": [ + "6.7.7" + ], + "east side artists": [ + "6.7.7" + ], + "eclipse project": [ + "6.5.4" + ], + "economic and cultural": [ + "6.5.1" + ], + "economic model based": [ + "6.11.0" + ], + "economic privilege managed": [ + "6.7.0" + ], + "economy marketing": [ + "6.5.10", + "6.5.11" + ], + "economy marketing buzzword": [ + "6.5.10", + "6.5.10", + "6.5.11", + "6.5.11" + ], + "edition": [ + "6.5.4" + ], + "editor bill joy": [ + "6.5.0" + ], + "effect": [ + "6.10.0" + ], + "effect of open": [ + "6.5.2" + ], + "effects proprietary software": [ + "6.0.0" + ], + "effort": [ + "6.9.2" + ], + "eggplants at red": [ + "6.5.1" + ], + "embedded controllers etc": [ + "6.5.0" + ], + "enables free art": [ + "6.0.0", + "6.0.0" + ], + "end": [ + "6.0.12" + ], + "endgame a condition": [ + "6.0.1" + ], + "engine": [ + "6.5.4" + ], + "engineering taskforce": [ + "6.9.0" + ], + "english common": [ + "6.5.6" + ], + "english common law": [ + "6.5.6", + "6.5.6" + ], + "enhancing technical support": [ + "6.7.0" + ], + "enterprise edition": [ + "6.5.4" + ], + "enterprise eggplants": [ + "6.5.1" + ], + "entirely healthy recasting": [ + "6.5.6" + ], + "entirely succeed": [ + "6.5.6" + ], + "entries from stefan": [ + "6.3.0" + ], + "eric": [ + "6.4.5", + "6.10.0" + ], + "eric s. raymond": [ + "6.1.2", + "6.4.5", + "6.10.0" + ], + "especially free software": [ + "6.2.0" + ], + "etc.": [ + "6.4.5" + ], + "ethic": [ + "6.7.5", + "6.7.6" + ], + "ethical gpl": [ + "6.0.1" + ], + "ethics": [ + "6.7.6" + ], + "ethics are derived": [ + "6.7.6" + ], + "evaluated": [ + "6.1.3", + "6.1.4", + "6.4.3", + "6.4.4", + "6.4.6" + ], + "everyday towards ensuring": [ + "6.11.0" + ], + "examining": [ + "6.1.3", + "6.1.4", + "6.4.3", + "6.4.4", + "6.4.6" + ], + "exception gpl": [ + "6.0.1" + ], + "exchange": [ + "6.1.0", + "6.4.0" + ], + "exchange involving money": [ + "6.5.6" + ], + "exchanged": [ + "6.0.4", + "6.0.5" + ], + "exciting times precisely": [ + "6.7.3" + ], + "executable binary code": [ + "6.9.0" + ], + "exhibiting": [ + "6.10.0" + ], + "exhibiting artists": [ + "6.10.0" + ], + "existing free software": [ + "6.2.0", + "6.2.0" + ], + "expensive proprietary software": [ + "6.9.0" + ], + "experimental web browser": [ + "6.9.0" + ], + "expert": [ + "6.7.1" + ], + "explain free software": [ + "6.2.0", + "6.2.0" + ], + "extremely expensive": [ + "6.5.7" + ], + "fact": [ + "6.0.4", + "6.0.5", + "6.0.9", + "6.1.3", + "6.1.4", + "6.4.3", + "6.4.4", + "6.4.6" + ], + "fact a crucial": [ + "6.0.4", + "6.0.5", + "6.0.9" + ], + "factual reality": [ + "6.7.1" + ], + "fading altruism": [ + "6.5.1" + ], + "fairly interesting": [ + "6.5.1" + ], + "faith": [ + "6.11.0" + ], + "faits": [ + "6.1.1", + "6.4.1" + ], + "fal": [ + "6.0.0" + ], + "feel like refreshing": [ + "6.7.7" + ], + "fees": [ + "6.9.2" + ], + "felix": [ + "6.1.2", + "6.4.2", + "6.5.5", + "6.5.6", + "6.5.7", + "6.5.8", + "6.8.0" + ], + "felix main": [ + "6.5.7", + "6.5.8" + ], + "felix main point": [ + "6.5.7", + "6.5.8" + ], + "felix points": [ + "6.5.7" + ], + "felix stalder": [ + "6.1.2", + "6.4.2", + "6.5.5", + "6.5.6", + "6.5.8" + ], + "felix stalder wrote": [ + "6.5.5", + "6.5.5", + "6.5.8", + "6.5.8" + ], + "felix von leitner": [ + "6.7.5" + ], + "field": [ + "6.5.4" + ], + "fight permanent harassment": [ + "6.5.3" + ], + "final image": [ + "6.0.0" + ], + "find": [ + "6.5.1" + ], + "fire codes": [ + "6.5.7" + ], + "fit the ongoing": [ + "6.7.7" + ], + "florian": [ + "6.0.9", + "6.1.0", + "6.1.3", + "6.4.0", + "6.4.3", + "6.5.3", + "6.7.6" + ], + "florian cramer": [ + "6.0.9", + "6.1.0", + "6.1.3", + "6.4.0", + "6.4.3", + "6.4.6", + "6.5.3", + "6.7.6", + "6.9.1" + ], + "florian cramer wrote": [ + "6.5.3", + "6.5.3", + "6.5.9", + "6.7.6", + "6.7.6" + ], + "floss software": [ + "6.10.1" + ], + "floss software projects": [ + "6.10.1" + ], + "fluid positions": [ + "6.7.7" + ], + "forget": [ + "6.5.5", + "6.11.0" + ], + "form": [ + "6.5.5" + ], + "form meets function": [ + "6.0.0" + ], + "former soviet bloc": [ + "6.2.0" + ], + "foundation": [ + "6.1.4", + "6.4.4", + "6.4.6" + ], + "frank xia": [ + "6.6.0" + ], + "free": [ + "6.0.0", + "6.0.1", + "6.0.4", + "6.0.5", + "6.0.9", + "6.1.0", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.4.4", + "6.4.5", + "6.4.6", + "6.5.0", + "6.5.3", + "6.5.6", + "6.5.8", + "6.5.10", + "6.5.11", + "6.6.0", + "6.8.0", + "6.9.0", + "6.9.1", + "6.9.2", + "6.10.1", + "6.11.0" + ], + "free access": [ + "6.5.6" + ], + "free alternative": [ + "6.5.0" + ], + "free art": [ + "6.0.0", + "6.0.1" + ], + "free art license": [ + "6.0.0", + "6.0.0", + "6.0.1", + "6.0.1" + ], + "free basic": [ + "6.11.0", + "6.11.0" + ], + "free beer": [ + "6.1.0", + "6.1.1", + "6.4.0", + "6.4.1", + "6.9.0" + ], + "free beer distinction": [ + "6.1.1", + "6.4.1" + ], + "free bsd": [ + "6.5.3" + ], + "free bsd operating": [ + "6.5.0", + "6.5.3" + ], + "free bsds": [ + "6.10.1" + ], + "free circulation": [ + "6.5.0" + ], + "free cultural": [ + "6.0.1", + "6.0.1" + ], + "free culture": [ + "6.0.1", + "6.0.1" + ], + "free culture licenses": [ + "6.0.12" + ], + "free developers": [ + "6.5.0" + ], + "free documentation": [ + "6.8.0" + ], + "free documentation license": [ + "6.8.0" + ], + "free graphical": [ + "6.5.0" + ], + "free knowledge base": [ + "6.5.2", + "6.5.6" + ], + "free manuals remain": [ + "6.9.0" + ], + "free minix operating": [ + "6.5.0" + ], + "free society": [ + "6.11.0" + ], + "free society conference": [ + "6.11.0", + "6.11.0" + ], + "free software /": [ + "6.1.1", + "6.4.1" + ], + "free software actually": [ + "6.6.0" + ], + "free software builds": [ + "6.9.0", + "6.9.0" + ], + "free software combines": [ + "6.2.0", + "6.2.0" + ], + "free software community": [ + "6.5.3", + "6.5.3" + ], + "free software compatible": [ + "6.1.0", + "6.1.0", + "6.2.0", + "6.2.0", + "6.4.0", + "6.4.0" + ], + "free software controversy": [ + "6.10.1", + "6.10.1" + ], + "free software copyleft": [ + "6.5.0", + "6.5.0", + "6.9.0" + ], + "free software culture": [ + "6.9.0", + "6.9.0" + ], + "free software depends": [ + "6.2.0", + "6.2.0" + ], + "free software developer": [ + "6.5.8" + ], + "free software developers": [ + "6.5.0", + "6.5.0", + "6.5.3", + "6.5.3", + "6.5.9", + "6.5.9", + "6.11.0", + "6.11.0" + ], + "free software development": [ + "6.5.0", + "6.5.0", + "6.5.3", + "6.5.3", + "6.5.10", + "6.5.10", + "6.9.0", + "6.9.0", + "6.10.0", + "6.10.0", + "6.10.1", + "6.10.1" + ], + "free software differs": [ + "6.2.0" + ], + "free software emphasizes": [ + "6.2.0" + ], + "free software engineering": [ + "6.9.0", + "6.9.0" + ], + "free software environments": [ + "6.5.0" + ], + "free software foundation": [ + "6.0.0", + "6.0.0", + "6.1.0", + "6.4.0", + "6.5.0", + "6.5.0", + "6.5.6", + "6.5.8", + "6.9.0", + "6.9.0" + ], + "free software gnu": [ + "6.0.0" + ], + "free software guidelines": [ + "6.1.2", + "6.4.2", + "6.8.0", + "6.8.0", + "6.9.0", + "6.9.0" + ], + "free software hackers": [ + "6.7.0" + ], + "free software hacking": [ + "6.5.0", + "6.5.0" + ], + "free software history": [ + "6.9.0", + "6.9.0", + "6.9.1" + ], + "free software include": [ + "6.6.0", + "6.6.0" + ], + "free software isn": [ + "6.6.0" + ], + "free software licenses": [ + "6.5.0" + ], + "free software means": [ + "6.2.0" + ], + "free software model": [ + "6.0.0" + ], + "free software movement": [ + "6.0.0", + "6.5.8", + "6.11.0", + "6.11.0" + ], + "free software operating": [ + "6.9.0", + "6.9.1" + ], + "free software philosophy": [ + "6.0.0", + "6.0.0" + ], + "free software principles": [ + "6.10.1" + ], + "free software producers": [ + "6.2.0", + "6.2.0" + ], + "free software programmers": [ + "6.5.3" + ], + "free software projects": [ + "6.5.0", + "6.5.0", + "6.5.3", + "6.6.0", + "6.6.0", + "6.9.0", + "6.9.0", + "6.11.0", + "6.11.0" + ], + "free software provides": [ + "6.5.0" + ], + "free software runs": [ + "6.9.0", + "6.9.0", + "6.9.1", + "6.9.1" + ], + "free software shows": [ + "6.2.0", + "6.9.0" + ], + "free software source": [ + "6.9.0" + ], + "free software versus": [ + "6.6.0" + ], + "free solely depends": [ + "6.9.0" + ], + "free speech": [ + "6.1.0", + "6.1.1", + "6.4.0", + "6.4.1" + ], + "free speech offers": [ + "6.1.1", + "6.4.1", + "6.4.1" + ], + "free unix": [ + "6.9.0", + "6.9.1" + ], + "free unix software": [ + "6.9.0", + "6.9.1" + ], + "free versions": [ + "6.9.0" + ], + "free work": [ + "6.0.0" + ], + "free world": [ + "6.11.0" + ], + "freebsd": [ + "6.1.4", + "6.4.4" + ], + "freebsd operating system": [ + "6.3.0" + ], + "freedom": [ + "6.0.4", + "6.0.5", + "6.0.9", + "6.1.0", + "6.1.1", + "6.4.0", + "6.4.1" + ], + "freedom free": [ + "6.1.0", + "6.4.0" + ], + "freedom free software": [ + "6.1.0", + "6.1.0", + "6.2.0", + "6.2.0", + "6.4.0", + "6.4.0" + ], + "freely": [ + "6.0.4" + ], + "freely cultivated": [ + "6.10.2" + ], + "freely cultivated goodies": [ + "6.10.2", + "6.10.2" + ], + "freeware": [ + "6.9.2" + ], + "freeware binaries": [ + "6.9.2" + ], + "freie universität berlin": [ + "6.9.0" + ], + "french copyright law": [ + "6.0.0" + ], + "frommel": [ + "6.5.1" + ], + "frommel wrote": [ + "6.5.4" + ], + "fsf accepts": [ + "6.1.3", + "6.4.3" + ], + "fsf approach": [ + "6.1.2", + "6.4.2" + ], + "fsf work": [ + "6.5.11" + ], + "fsp gpl": [ + "6.5.11", + "6.5.11" + ], + "fsp gpl code": [ + "6.5.11" + ], + "functional free equivalents": [ + "6.5.0" + ], + "functional piece": [ + "6.5.0" + ], + "funded institutional infrastructures": [ + "6.9.0" + ], + "future": [ + "6.0.6", + "6.0.7", + "6.0.9", + "6.0.11" + ], + "future of ideas": [ + "6.1.1", + "6.4.1" + ], + "gay operating systems": [ + "6.5.3" + ], + "gbit": [ + "6.7.6" + ], + "geek": [ + "6.7.1" + ], + "general": [ + "6.7.2" + ], + "gentrification": [ + "6.7.2", + "6.7.3", + "6.7.5", + "6.7.7" + ], + "gentrification cyber": [ + "6.7.2" + ], + "gentrification in general": [ + "6.7.2" + ], + "gentrification of hacking": [ + "6.7.2" + ], + "gentrifiction": [ + "6.7.6" + ], + "gentrifiers": [ + "6.7.2" + ], + "gentrifiers dare": [ + "6.7.2" + ], + "germany": [ + "6.9.2" + ], + "gift cultures described": [ + "6.5.0" + ], + "give a work": [ + "6.0.12" + ], + "giving back": [ + "6.10.2" + ], + "gnome": [ + "6.5.0" + ], + "gnome desktop": [ + "6.7.5" + ], + "gnome development": [ + "6.5.0" + ], + "gnome foundation": [ + "6.5.0" + ], + "gnome foundation include": [ + "6.5.0" + ], + "gnome project": [ + "6.5.0" + ], + "gnu art": [ + "6.0.0" + ], + "gnu art project": [ + "6.0.0", + "6.0.0" + ], + "gnu c compiler": [ + "6.7.5" + ], + "gnu c library": [ + "6.7.5" + ], + "gnu free": [ + "6.8.0" + ], + "gnu free documentation": [ + "6.8.0" + ], + "gnu gpl": [ + "6.5.8" + ], + "gnu gpl embodies": [ + "6.5.8", + "6.5.8" + ], + "gnu intentionally": [ + "6.7.5" + ], + "gnu manifesto": [ + "6.0.0" + ], + "gnu manifesto closer": [ + "6.0.0", + "6.0.0" + ], + "gnu manifesto starts": [ + "6.0.0" + ], + "gnu project": [ + "6.5.0", + "6.7.5", + "6.11.0" + ], + "gnu public license": [ + "6.0.0" + ], + "gnu software": [ + "6.5.0", + "6.9.0", + "6.10.1" + ], + "gnu software setup": [ + "6.9.0" + ], + "gnu software written": [ + "6.9.0", + "6.9.0" + ], + "gnu website": [ + "6.1.1", + "6.4.1" + ], + "gnu/linux operating system": [ + "6.9.0" + ], + "gnu/linux operating systems": [ + "6.9.0" + ], + "golden rule requires": [ + "6.5.8" + ], + "good": [ + "6.1.1", + "6.1.2", + "6.1.4", + "6.4.1", + "6.4.2", + "6.4.4", + "6.7.1", + "6.7.3", + "6.9.2", + "6.11.0" + ], + "good faith": [ + "6.11.0" + ], + "good idea": [ + "6.1.4", + "6.4.4" + ], + "goodies": [ + "6.10.2" + ], + "governance": [ + "6.4.5" + ], + "governments": [ + "6.5.7" + ], + "gpl aka": [ + "6.0.1" + ], + "gpl code": [ + "6.5.11" + ], + "gpl produces": [ + "6.0.7" + ], + "gpl society": [ + "6.2.0" + ], + "gpl society maximum": [ + "6.2.0" + ], + "graham": [ + "6.3.0" + ], + "graham seaman": [ + "6.3.0" + ], + "granted": [ + "6.0.4", + "6.0.9", + "6.0.11" + ], + "graphical display": [ + "6.5.0" + ], + "graphical display engine": [ + "6.5.0" + ], + "great": [ + "6.5.2", + "6.5.5", + "6.10.0" + ], + "great open": [ + "6.5.2", + "6.5.5", + "6.5.6", + "6.5.9" + ], + "great open source": [ + "6.5.2", + "6.5.6", + "6.5.7", + "6.5.9" + ], + "growing crowd": [ + "6.7.2" + ], + "gsm stations": [ + "6.7.6" + ], + "guattari": [ + "6.7.7" + ], + "guess john gilmore": [ + "6.5.11" + ], + "hacker community": [ + "6.7.1" + ], + "hacker cred": [ + "6.7.2" + ], + "hacker culture": [ + "6.7.5" + ], + "hacker ethic": [ + "6.7.5" + ], + "hacker ethics": [ + "6.7.6" + ], + "hacker havens": [ + "6.7.2" + ], + "hacker informer": [ + "6.7.2" + ], + "hacker politics": [ + "6.7.0" + ], + "hackers": [ + "6.7.0", + "6.7.2", + "6.7.5", + "6.7.6" + ], + "hackers building": [ + "6.7.0", + "6.7.1" + ], + "hackers building association": [ + "6.7.0", + "6.7.0", + "6.7.1", + "6.7.1" + ], + "hacking": [ + "6.7.0", + "6.7.2" + ], + "ham": [ + "6.7.6" + ], + "ham uhf": [ + "6.7.6" + ], + "ham uhf repeater": [ + "6.7.6" + ], + "hard": [ + "6.0.6" + ], + "hard core political": [ + "6.2.0" + ], + "hard time": [ + "6.0.6" + ], + "hard time suppressing": [ + "6.0.6", + "6.0.6" + ], + "hardcore-technical meeting": [ + "6.6.0" + ], + "hart": [ + "6.1.0", + "6.4.0" + ], + "hauben": [ + "6.9.2" + ], + "heart nonetheless": [ + "6.7.7" + ], + "heiko": [ + "6.0.5", + "6.0.6", + "6.0.7", + "6.0.11", + "6.0.12", + "6.4.6" + ], + "heiko recktenwald": [ + "6.0.5", + "6.0.6", + "6.0.7", + "6.0.11", + "6.0.12", + "6.4.6" + ], + "heiko recktenwald wrote": [ + "6.0.5", + "6.0.5", + "6.0.6", + "6.0.6", + "6.0.7", + "6.0.7", + "6.0.11", + "6.0.11", + "6.0.12", + "6.0.12" + ], + "high": [ + "6.7.6" + ], + "higher pecking order": [ + "6.10.2" + ], + "highly complex free": [ + "6.5.3" + ], + "highly intertextual": [ + "6.9.0" + ], + "highly ranked legal": [ + "6.5.6" + ], + "highly sophisticated system": [ + "6.9.0" + ], + "historical": [ + "6.7.0" + ], + "historicizing": [ + "6.7.2" + ], + "history": [ + "6.9.1", + "6.9.2" + ], + "history good": [ + "6.9.1" + ], + "hits in america": [ + "6.3.0" + ], + "homebrew": [ + "6.7.0" + ], + "hope": [ + "6.7.1" + ], + "hope ccc": [ + "6.7.1" + ], + "hope ccc camp": [ + "6.7.1", + "6.7.1" + ], + "hosted outstanding standards": [ + "6.11.0" + ], + "human idea": [ + "6.5.6" + ], + "human oriented goal": [ + "6.2.0" + ], + "human predicament": [ + "6.5.6" + ], + "ibm websphere": [ + "6.5.4" + ], + "idea": [ + "6.0.12", + "6.1.4", + "6.4.4", + "6.4.6" + ], + "idea like bsd": [ + "6.1.4", + "6.4.4" + ], + "ideas": [ + "6.6.0" + ], + "identical": [ + "6.5.2" + ], + "identical cases": [ + "6.5.2" + ], + "identified": [ + "6.5.7" + ], + "identified with altruism": [ + "6.5.7" + ], + "ignorant": [ + "6.5.10", + "6.5.11" + ], + "illustrated by neil": [ + "6.7.7" + ], + "image de mallarmã": [ + "6.0.0" + ], + "imho": [ + "6.0.4", + "6.0.5", + "6.0.6", + "6.0.7", + "6.0.9" + ], + "imho pure": [ + "6.0.4", + "6.0.5", + "6.0.9" + ], + "imho pure nonsense": [ + "6.0.4", + "6.0.4", + "6.0.5", + "6.0.5", + "6.0.9", + "6.0.9" + ], + "implement": [ + "6.6.0" + ], + "implementing": [ + "6.10.0" + ], + "implementing this metaphor": [ + "6.10.0" + ], + "important": [ + "6.5.9" + ], + "improve government transparency": [ + "6.7.0" + ], + "inclined towards warez": [ + "6.9.2", + "6.9.2" + ], + "including": [ + "6.4.5" + ], + "including gnu": [ + "6.4.5" + ], + "incompatible time sharing": [ + "6.9.1" + ], + "increased communication possibilities": [ + "6.2.0" + ], + "increasingly totalitarian commodification": [ + "6.5.0" + ], + "indefinite": [ + "6.0.11" + ], + "indefinite license": [ + "6.0.11" + ], + "independently invented twice": [ + "6.5.6" + ], + "individual": [ + "6.5.6" + ], + "individual citizens exercising": [ + "6.5.6" + ], + "individuals": [ + "6.5.5" + ], + "industry": [ + "6.5.4", + "6.10.2" + ], + "industry standards": [ + "6.5.4" + ], + "inexpensive servers using": [ + "6.9.0" + ], + "informal association": [ + "6.7.0" + ], + "initial step": [ + "6.0.0" + ], + "initiative": [ + "6.1.3", + "6.1.4", + "6.4.3", + "6.4.4" + ], + "initiative chose": [ + "6.2.0" + ], + "inside": [ + "6.0.4" + ], + "insights political economists": [ + "6.5.0" + ], + "instance bonnie": [ + "6.0.0" + ], + "instance caws explains": [ + "6.0.0" + ], + "instance mirko vidovic": [ + "6.0.0" + ], + "instead various kinds": [ + "6.2.0" + ], + "institutional control": [ + "6.9.0" + ], + "intellectual property rights": [ + "6.2.0" + ], + "intellectual traditions": [ + "6.2.0" + ], + "interest in eric": [ + "6.10.0" + ], + "interest in freely": [ + "6.10.2" + ], + "interesting": [ + "6.0.1" + ], + "interface": [ + "6.0.4" + ], + "internet architecture": [ + "6.9.1" + ], + "internet art": [ + "6.10.1" + ], + "internet art projects": [ + "6.10.1" + ], + "internet gateway": [ + "6.9.2" + ], + "internet volunteer": [ + "6.5.0" + ], + "interpret current capitalism": [ + "6.2.0" + ], + "interpreted": [ + "6.0.11" + ], + "inventorya basic outline": [ + "6.7.0" + ], + "isnt": [ + "6.1.4", + "6.4.4", + "6.5.5" + ], + "isnt the legal": [ + "6.5.5" + ], + "issue": [ + "6.1.0", + "6.4.0", + "6.5.6" + ], + "jakarta": [ + "6.5.4" + ], + "jakarta ant": [ + "6.5.4" + ], + "jakarta ant product": [ + "6.5.4", + "6.5.4" + ], + "jakarta project products": [ + "6.5.4", + "6.5.4" + ], + "jakarta tomcat": [ + "6.5.4" + ], + "jakarta tomcat servlet": [ + "6.5.4" + ], + "jaromil": [ + "6.1.0", + "6.3.0", + "6.4.0", + "6.5.10" + ], + "java2 enterprise edition": [ + "6.5.3", + "6.5.4" + ], + "jboss": [ + "6.5.4" + ], + "joanne richardson": [ + "6.2.0" + ], + "joey": [ + "6.6.0" + ], + "john lion": [ + "6.9.1" + ], + "jordan and taylor": [ + "6.7.0" + ], + "julian assange": [ + "6.7.0" + ], + "julian assange put": [ + "6.7.0" + ], + "juried exhibitions": [ + "6.10.1" + ], + "kde": [ + "6.5.0" + ], + "keith": [ + "6.0.1", + "6.1.0", + "6.1.3", + "6.4.0", + "6.4.3" + ], + "keith hart": [ + "6.1.0", + "6.1.3", + "6.4.0", + "6.4.3" + ], + "keith hart wrote": [ + "6.5.9" + ], + "keith sanborn": [ + "6.0.1" + ], + "kermit snelson": [ + "6.5.8", + "6.5.9" + ], + "kermit snelson notes": [ + "6.1.3", + "6.4.3" + ], + "kermit snelson wrote": [ + "6.5.8", + "6.5.8", + "6.5.9", + "6.5.9" + ], + "kernel": [ + "6.10.1" + ], + "key issue": [ + "6.7.7" + ], + "knowledge": [ + "6.5.9" + ], + "kongress": [ + "6.6.0" + ], + "krisis mailing list": [ + "6.2.0" + ], + "label": [ + "6.1.4", + "6.4.4" + ], + "lancashire": [ + "6.5.1", + "6.5.3", + "6.5.10", + "6.5.11" + ], + "lancashire article": [ + "6.5.10", + "6.5.11" + ], + "languages like perl": [ + "6.6.0" + ], + "large": [ + "6.5.7", + "6.7.3" + ], + "large numbers": [ + "6.7.3" + ], + "late": [ + "6.4.5" + ], + "latter contains annotations": [ + "6.9.0" + ], + "laughers of tarp": [ + "6.10.2" + ], + "law": [ + "6.5.2", + "6.5.5", + "6.5.6", + "6.5.7", + "6.5.9" + ], + "law analogy": [ + "6.5.9" + ], + "laws": [ + "6.5.7" + ], + "lawyers": [ + "6.5.2", + "6.5.5", + "6.5.6" + ], + "leftist leaking endeavors": [ + "6.7.0" + ], + "legal": [ + "6.0.11", + "6.5.7" + ], + "legal documents": [ + "6.9.0" + ], + "legal profession": [ + "6.5.6" + ], + "legal texts": [ + "6.9.0" + ], + "legal texts defining": [ + "6.9.0" + ], + "leitner from chaos": [ + "6.7.5" + ], + "lessig": [ + "6.1.1", + "6.4.1" + ], + "level desktop components": [ + "6.5.0" + ], + "levy": [ + "6.7.5", + "6.7.6" + ], + "levy called": [ + "6.7.5", + "6.7.5" + ], + "levy wrote": [ + "6.7.5", + "6.7.6" + ], + "libre": [ + "6.11.0" + ], + "licence": [ + "6.0.5", + "6.0.6", + "6.0.7", + "6.0.9", + "6.0.11" + ], + "licence offering": [ + "6.0.6", + "6.0.7" + ], + "licences": [ + "6.0.11", + "6.1.4", + "6.4.4" + ], + "license": [ + "6.0.0", + "6.0.1", + "6.0.4", + "6.0.9", + "6.0.11", + "6.0.12", + "6.1.3", + "6.4.3", + "6.8.0" + ], + "license agreements": [ + "6.1.3", + "6.4.3" + ], + "license creator": [ + "6.0.1", + "6.0.1" + ], + "license fee instead": [ + "6.2.0" + ], + "license fees": [ + "6.9.0" + ], + "licensed work": [ + "6.0.4", + "6.0.12" + ], + "licenses": [ + "6.0.1", + "6.0.12", + "6.1.3", + "6.1.4", + "6.4.3", + "6.4.4", + "6.4.6", + "6.8.0" + ], + "licenses evaluated": [ + "6.1.3", + "6.1.4", + "6.4.3", + "6.4.4", + "6.4.6" + ], + "life turned": [ + "6.7.3" + ], + "lines of escape": [ + "6.7.7" + ], + "linux gpl": [ + "6.5.11" + ], + "linux gpl code": [ + "6.5.11" + ], + "linux kernel": [ + "6.10.1" + ], + "linux kernel hacker": [ + "6.3.0" + ], + "linux kernel hacks": [ + "6.5.0" + ], + "linux kernel written": [ + "6.9.0" + ], + "linux kongress": [ + "6.6.0", + "6.6.0" + ], + "linux operating system": [ + "6.10.1", + "6.10.1" + ], + "linux reimplemented unix": [ + "6.10.1" + ], + "linux system": [ + "6.6.0" + ], + "linux system developers": [ + "6.6.0", + "6.6.0" + ], + "linux weekly": [ + "6.3.0" + ], + "linux weekly news": [ + "6.3.0" + ], + "lisc": [ + "6.6.0" + ], + "lisp enterprise": [ + "6.5.1" + ], + "lisp enterprise eggplants": [ + "6.5.1" + ], + "list": [ + "6.5.1" + ], + "lists": [ + "6.1.3", + "6.1.4", + "6.4.3", + "6.4.4", + "6.4.6" + ], + "living": [ + "6.3.0" + ], + "local linux user": [ + "6.5.0" + ], + "local university": [ + "6.5.0" + ], + "logic": [ + "6.1.2", + "6.4.2" + ], + "logo": [ + "6.1.4", + "6.4.4" + ], + "long": [ + "6.7.0" + ], + "long-standing leadership": [ + "6.11.0" + ], + "longer": [ + "6.1.1", + "6.4.1" + ], + "longlasting human arrangements": [ + "6.5.6" + ], + "lose free access": [ + "6.5.6" + ], + "lot": [ + "6.5.3" + ], + "lot of images": [ + "6.5.1" + ], + "lot of recent": [ + "6.5.4" + ], + "lower east": [ + "6.7.7" + ], + "lower east side": [ + "6.7.7" + ], + "machine centric war": [ + "6.7.6" + ], + "machine kernel architectures": [ + "6.10.1" + ], + "made public": [ + "6.0.4" + ], + "mail address": [ + "6.9.0" + ], + "mail art derivatives": [ + "6.0.0" + ], + "mail art publication": [ + "6.0.0" + ], + "mail message": [ + "6.9.0" + ], + "mail paradigm": [ + "6.9.0" + ], + "mail server software": [ + "6.9.0" + ], + "mailing": [ + "6.5.1" + ], + "mailing list": [ + "6.5.1" + ], + "main objective": [ + "6.7.1" + ], + "mainstream desktop computers": [ + "6.9.0" + ], + "major": [ + "6.1.0", + "6.4.0" + ], + "major difference": [ + "6.1.0", + "6.4.0" + ], + "major gnu/linux distributions": [ + "6.9.0" + ], + "major linux": [ + "6.9.0" + ], + "major tools": [ + "6.9.0" + ], + "make": [ + "6.0.12", + "6.3.0", + "6.5.2" + ], + "make a difference": [ + "6.0.12" + ], + "make a living": [ + "6.3.0" + ], + "make free": [ + "6.1.0", + "6.4.0" + ], + "make free software": [ + "6.1.0", + "6.2.0", + "6.4.0", + "6.5.0" + ], + "make money": [ + "6.5.3" + ], + "make things": [ + "6.0.12", + "6.7.1" + ], + "make things cruder": [ + "6.7.1" + ], + "makes sense": [ + "6.7.1" + ], + "making": [ + "6.1.2", + "6.4.2" + ], + "making free software": [ + "6.2.0" + ], + "making money": [ + "6.1.2", + "6.4.2" + ], + "mallarmé": [ + "6.0.1" + ], + "mallarmé and oulipo": [ + "6.0.1" + ], + "managed to cobble": [ + "6.7.3" + ], + "manifesto": [ + "6.0.0" + ], + "manifestos": [ + "6.0.0" + ], + "mansoux": [ + "6.0.4", + "6.0.5" + ], + "marketing": [ + "6.5.10" + ], + "marketing buzzword": [ + "6.5.10", + "6.5.11" + ], + "martin": [ + "6.6.0" + ], + "martin schulze": [ + "6.6.0" + ], + "martin schulze writeup": [ + "6.6.0" + ], + "mary ann caws": [ + "6.0.0" + ], + "massive publishing task": [ + "6.5.7" + ], + "massive task": [ + "6.5.7" + ], + "material fetish object": [ + "6.10.1" + ], + "material in order": [ + "6.10.2" + ], + "matt": [ + "6.3.0" + ], + "matt dillon": [ + "6.3.0" + ], + "mechanisms of control": [ + "6.7.7" + ], + "medical profession likewise": [ + "6.5.6" + ], + "medieval western arts": [ + "6.9.0" + ], + "melvin belli": [ + "6.5.7" + ], + "melvin belli shows": [ + "6.5.7", + "6.5.8" + ], + "mention stupid machines": [ + "6.2.0" + ], + "merten": [ + "6.1.0", + "6.3.0", + "6.4.0" + ], + "merten interview": [ + "6.1.0", + "6.4.0" + ], + "message": [ + "6.7.3" + ], + "metaphor": [ + "6.10.0" + ], + "metaphor work": [ + "6.10.0" + ], + "method for taking": [ + "6.10.2" + ], + "microsoft internet explorer": [ + "6.9.0" + ], + "miguel de icaza": [ + "6.5.0", + "6.5.3" + ], + "mind": [ + "6.0.6", + "6.0.7", + "6.0.9", + "6.0.11" + ], + "mirrored copyright logo": [ + "6.0.0" + ], + "mistakes": [ + "6.11.0" + ], + "misunderstood with gratis": [ + "6.0.4", + "6.0.5" + ], + "mix together descriptive": [ + "6.7.1" + ], + "model": [ + "6.10.1" + ], + "modified": [ + "6.0.4" + ], + "modified and distributed": [ + "6.0.4", + "6.0.5", + "6.0.9" + ], + "moment": [ + "6.5.5" + ], + "moment software": [ + "6.5.2", + "6.5.5", + "6.5.6" + ], + "mon": [ + "6.3.0", + "6.5.10" + ], + "monday article recognizes": [ + "6.5.0" + ], + "money": [ + "6.1.0", + "6.1.1", + "6.1.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.5.3", + "6.5.6" + ], + "monsters' operate": [ + "6.7.7" + ], + "moral": [ + "6.0.12" + ], + "moral right issues": [ + "6.0.12" + ], + "motivated by isnt": [ + "6.5.5" + ], + "motives": [ + "6.5.5" + ], + "movement": [ + "6.5.8", + "6.11.0" + ], + "mozilla": [ + "6.5.3" + ], + "multiuser unix": [ + "6.9.0", + "6.9.1" + ], + "musings": [ + "6.7.4" + ], + "mutually exclusive strategies": [ + "6.0.1", + "6.0.1" + ], + "myers": [ + "6.0.7", + "6.0.12" + ], + "mãlanie clãment": [ + "6.0.0" + ], + "national patriomny": [ + "6.10.2" + ], + "national security": [ + "6.10.2" + ], + "necessarily believing": [ + "6.7.1" + ], + "neil smith": [ + "6.7.7" + ], + "neither understand nor": [ + "6.5.6", + "6.5.9" + ], + "net": [ + "6.9.0" + ], + "net artistic camps": [ + "6.9.0" + ], + "net arts": [ + "6.9.0" + ], + "net artworks depend": [ + "6.9.0" + ], + "net culture": [ + "6.9.0" + ], + "net> wrote": [ + "6.9.1" + ], + "netherlands": [ + "6.6.0" + ], + "netizens": [ + "6.9.1" + ], + "nettime": [ + "6.5.1", + "6.8.0" + ], + "nettime mailing": [ + "6.5.1" + ], + "nettime mailing list": [ + "6.0.0", + "6.5.1", + "6.5.1" + ], + "networked art manifesto": [ + "6.0.0", + "6.0.0" + ], + "networked extension": [ + "6.9.0" + ], + "networking": [ + "6.9.1" + ], + "networks linking gentrifiers": [ + "6.7.7" + ], + "neutrally": [ + "6.1.1", + "6.4.1" + ], + "newspaper industry": [ + "6.0.0" + ], + "nice editor": [ + "6.5.0" + ], + "no-turning back point": [ + "6.0.5" + ], + "non-corporate free software": [ + "6.5.0" + ], + "nondisclosure agreement": [ + "6.5.8" + ], + "none stone drunk": [ + "6.7.6" + ], + "nonetheless": [ + "6.7.7" + ], + "nonetheless i feel": [ + "6.7.7" + ], + "normative accounts": [ + "6.7.1" + ], + "note": [ + "6.6.0", + "6.7.4" + ], + "nowadays insists": [ + "6.10.1" + ], + "nowadays rich people": [ + "6.10.1" + ], + "number": [ + "6.3.0", + "6.6.0" + ], + "number from americans": [ + "6.3.0" + ], + "numbers": [ + "6.7.3" + ], + "obnoxious hackers": [ + "6.7.2" + ], + "obnoxious hippie fundamentalistm": [ + "6.1.2", + "6.4.2" + ], + "obviously free software": [ + "6.2.0" + ], + "occupying fluid": [ + "6.7.7" + ], + "occupying fluid positions": [ + "6.7.7" + ], + "oekonux": [ + "6.2.0" + ], + "oekonux mailing list": [ + "6.2.0" + ], + "offered little hope": [ + "6.5.6" + ], + "offering": [ + "6.0.6", + "6.0.7" + ], + "offering that work": [ + "6.0.6", + "6.0.7" + ], + "offering the work": [ + "6.0.6" + ], + "offers": [ + "6.1.1", + "6.4.1" + ], + "oliver": [ + "6.5.1" + ], + "oliver frommel": [ + "6.5.1", + "6.5.4" + ], + "oliver frommel ": [ + "7.1.8" + ], + "organizational devices": [ + "7.0.0" + ], + "ottawa event": [ + "7.0.10" + ], + "outcry": [ + "7.1.1" + ], + "outlooks": [ + "7.0.6" + ], + "outlooks as part": [ + "7.0.6" + ], + "outside capital looking": [ + "7.0.5" + ], + "own debt": [ + "7.0.4" + ], + "own overflowing symbolic": [ + "7.1.17" + ], + "own trading arms": [ + "7.0.4" + ], + "pack with alternative": [ + "7.1.3" + ], + "paik": [ + "7.1.3" + ], + "paiks": [ + "7.1.3" + ], + "painting": [ + "7.1.10" + ], + "parallel thoughts": [ + "7.0.10" + ], + "parameter": [ + "7.1.15" + ], + "part": [ + "7.0.6" + ], + "particular aesthetic tradition": [ + "7.0.0" + ], + "particular art world": [ + "7.1.8", + "7.1.9" + ], + "particular material result": [ + "7.1.23" + ], + "particular people acting": [ + "7.0.6" + ], + "passion": [ + "7.1.1" + ], + "patronising art production": [ + "7.1.4" + ], + "pay": [ + "7.1.18" + ], + "payer health care": [ + "7.0.3" + ], + "peer reviewed free": [ + "7.1.4" + ], + "pension fund": [ + "7.0.4" + ], + "pentagon capitalism": [ + "7.0.3" + ], + "people": [ + "7.0.2", + "7.1.4", + "7.1.17", + "7.2.0" + ], + "people disagree": [ + "7.0.2" + ], + "perceived artistic quality": [ + "7.1.2" + ], + "performance": [ + "7.2.3" + ], + "performance practices": [ + "7.2.3", + "7.2.3" + ], + "performance practices aim": [ + "7.2.3" + ], + "performed via media": [ + "7.1.19" + ], + "perpetuate": [ + "7.0.4" + ], + "person seated view": [ + "7.0.6" + ], + "personal mtv": [ + "7.1.6" + ], + "personal political economy": [ + "7.0.4" + ], + "perspective": [ + "7.1.11", + "7.1.12", + "7.1.13" + ], + "pet shop": [ + "7.1.3" + ], + "pet shop boys": [ + "7.1.3", + "7.1.3" + ], + "pgp": [ + "7.1.4" + ], + "pgp signed": [ + "7.1.4" + ], + "pgp signed message": [ + "7.1.4" + ], + "phillips": [ + "7.0.5" + ], + "phillips asked": [ + "7.0.5" + ], + "philosophy": [ + "7.1.15" + ], + "philosophy of art": [ + "7.1.16" + ], + "photographie": [ + "7.1.23" + ], + "photographie in arles": [ + "7.1.23" + ], + "piece": [ + "7.0.1", + "7.1.19" + ], + "piece of code": [ + "7.1.19" + ], + "piece of information": [ + "7.1.19" + ], + "piece of media": [ + "7.1.19" + ], + "piece with interest": [ + "7.0.1" + ], + "play": [ + "7.1.22" + ], + "play global": [ + "7.1.22" + ], + "plays": [ + "7.0.8" + ], + "point": [ + "7.0.8", + "7.0.9", + "7.1.7" + ], + "point art": [ + "7.0.9" + ], + "point art serves": [ + "7.0.9" + ], + "policy": [ + "7.0.10" + ], + "policy approach": [ + "7.0.10" + ], + "political": [ + "7.0.6", + "7.1.0", + "7.1.10", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.20", + "7.1.21", + "7.2.0", + "7.2.1", + "7.2.2" + ], + "political and cultural": [ + "7.0.6" + ], + "political artist": [ + "7.2.0" + ], + "political artist practice": [ + "7.2.0" + ], + "political consideration": [ + "7.2.2" + ], + "political elites": [ + "7.0.2" + ], + "political nor ideological": [ + "7.1.0" + ], + "political process contained": [ + "7.2.2" + ], + "political status didn": [ + "7.1.0" + ], + "political work": [ + "7.2.0" + ], + "politically correct self": [ + "7.1.0" + ], + "politically incorrect exploiters": [ + "7.0.4" + ], + "politicized art brings": [ + "7.2.2" + ], + "politics": [ + "7.1.6", + "7.1.10", + "7.1.16", + "7.2.2" + ], + "politics simultaneously": [ + "7.2.2" + ], + "pollute fine art": [ + "7.1.8", + "7.1.8" + ], + "popular art mags": [ + "7.1.9" + ], + "popular culture etc.": [ + "7.1.7" + ], + "porn identity": [ + "7.1.20" + ], + "porta pack": [ + "7.1.3" + ], + "portfolio": [ + "7.0.4" + ], + "positive political": [ + "7.2.2" + ], + "pour": [ + "7.1.21" + ], + "power": [ + "7.0.4", + "7.0.5", + "7.0.6", + "7.1.12" + ], + "powerless to transform": [ + "7.1.13" + ], + "practical political art": [ + "7.2.2", + "7.2.2" + ], + "practice": [ + "7.2.3" + ], + "practices": [ + "7.1.8", + "7.1.9", + "7.1.14", + "7.2.3" + ], + "precise theoretical level": [ + "7.0.9" + ], + "precisely identical histories": [ + "7.1.23", + "7.1.23" + ], + "premises": [ + "7.0.1" + ], + "previous examples listed": [ + "7.1.9" + ], + "previous mentioned philosophy": [ + "7.1.21" + ], + "previously existing": [ + "7.0.0" + ], + "previously existing state": [ + "7.0.0" + ], + "price": [ + "7.0.3" + ], + "problem": [ + "7.0.9", + "7.1.10", + "7.1.15", + "7.1.18", + "7.1.20" + ], + "problem of identifying": [ + "7.1.23" + ], + "problematic attempt": [ + "7.1.19" + ], + "problems": [ + "7.1.15", + "7.1.17" + ], + "problems of society": [ + "7.1.15" + ], + "process": [ + "7.0.8", + "7.1.19" + ], + "process of negation": [ + "7.0.8" + ], + "processes mcluhan describes": [ + "7.1.19" + ], + "produce": [ + "7.1.6" + ], + "produces": [ + "7.0.6" + ], + "producing": [ + "7.1.1" + ], + "producing mirrors": [ + "7.1.1" + ], + "production of truth": [ + "7.0.4" + ], + "production quality": [ + "7.1.4" + ], + "productive": [ + "7.0.8" + ], + "products produce": [ + "7.1.6" + ], + "products produce consumption": [ + "7.1.6" + ], + "profit": [ + "7.1.6" + ], + "profound": [ + "7.0.6", + "7.0.7" + ], + "profound insecurity": [ + "7.0.6", + "7.0.7" + ], + "profound weakness": [ + "7.0.7" + ], + "progressive international": [ + "7.1.5" + ], + "prolonging cold war": [ + "7.0.2", + "7.0.2" + ], + "proper theatre": [ + "7.2.2" + ], + "protection despite themselves": [ + "7.0.1" + ], + "provide significant support": [ + "7.0.10" + ], + "providing actionable ideas": [ + "7.2.3" + ], + "public": [ + "7.0.10", + "7.1.22" + ], + "public agenda": [ + "7.0.10" + ], + "public involvement": [ + "7.0.10" + ], + "public policy approach": [ + "7.0.10" + ], + "public web pages": [ + "7.0.8", + "7.0.9" + ], + "publicly engaged": [ + "7.2.3" + ], + "publicly engaged art": [ + "7.2.3", + "7.2.3" + ], + "purely abstract universe": [ + "7.1.17" + ], + "pygmy": [ + "7.0.7" + ], + "pygmy leaders": [ + "7.0.7" + ], + "quality": [ + "7.1.21" + ], + "quality final product": [ + "7.2.2" + ], + "quaro homines": [ + "7.0.4" + ], + "question": [ + "7.0.8", + "7.0.9" + ], + "questionable contemporary art": [ + "7.1.8", + "7.1.9" + ], + "questioned": [ + "7.1.1" + ], + "questions": [ + "7.2.0" + ], + "radical": [ + "7.1.3" + ], + "radical creative experimentation": [ + "7.1.23", + "7.1.23" + ], + "radical negation ought": [ + "7.0.9" + ], + "radical video art": [ + "7.1.2", + "7.1.3", + "7.1.3" + ], + "rama": [ + "7.1.12", + "7.1.16" + ], + "rama hoetzlein": [ + "7.1.12" + ], + "rama hoetzlein wrote": [ + "7.1.12", + "7.1.12" + ], + "re talking": [ + "7.1.17" + ], + "re talking china": [ + "7.1.17" + ], + "reach everyday people": [ + "7.2.0" + ], + "read": [ + "7.0.1", + "7.0.5", + "7.1.21", + "7.2.2" + ], + "read a sentence": [ + "7.2.2" + ], + "read lev manovich": [ + "7.1.17" + ], + "reader or listener": [ + "7.1.18" + ], + "reading contemporary": [ + "7.1.7" + ], + "reading contemporary art": [ + "7.1.2" + ], + "reading istvan kertesz": [ + "7.1.18" + ], + "real": [ + "7.1.13" + ], + "real inspiration": [ + "7.1.13" + ], + "real medium": [ + "7.1.18" + ], + "real research": [ + "7.1.13" + ], + "real social": [ + "7.1.13" + ], + "real social change": [ + "7.1.13", + "7.1.13" + ], + "realism": [ + "7.0.7" + ], + "reality": [ + "7.1.22" + ], + "reality addicts": [ + "7.1.22" + ], + "reason": [ + "7.0.1" + ], + "reasons": [ + "7.0.3" + ], + "reasons entirely unconnected": [ + "7.0.3" + ], + "recent artistic practices": [ + "7.1.20" + ], + "recent educational department": [ + "7.1.9" + ], + "refers": [ + "7.1.20" + ], + "register influences interpretation": [ + "7.1.7" + ], + "reinvent": [ + "7.1.3" + ], + "reinvent yourself-discourse": [ + "7.1.3" + ], + "reinvestment": [ + "7.0.6" + ], + "relation": [ + "7.1.12" + ], + "relationship is established": [ + "7.1.16" + ], + "relatively hollow call": [ + "7.1.4" + ], + "relevance": [ + "7.1.7" + ], + "relevance of context": [ + "7.1.7" + ], + "remarkable performance": [ + "7.2.3" + ], + "renaissance art": [ + "7.1.18" + ], + "rencontres internationale": [ + "7.1.23" + ], + "renee": [ + "7.1.8" + ], + "renown contemporary arts": [ + "7.1.8" + ], + "rené coelho": [ + "7.1.5" + ], + "rené coelho continues": [ + "7.1.5" + ], + "replay your avi": [ + "7.1.19" + ], + "reply": [ + "7.1.13" + ], + "representation": [ + "7.0.7", + "7.1.19" + ], + "represents visual art": [ + "7.1.2" + ], + "required curatorial buzz": [ + "7.1.2", + "7.1.7" + ], + "research centers": [ + "7.1.23" + ], + "research lab art": [ + "7.1.2", + "7.1.2" + ], + "resistant political action": [ + "7.1.12" + ], + "respect": [ + "7.0.0" + ], + "respecting contemporary artist": [ + "7.1.7" + ], + "review from vancouver": [ + "7.2.3" + ], + "reviewed free software": [ + "7.1.4" + ], + "rose": [ + "7.1.22" + ], + "rose media art": [ + "7.1.22" + ], + "roughly": [ + "7.0.10" + ], + "régine debatty": [ + "7.1.0" + ], + "sales": [ + "7.0.5" + ], + "sales job": [ + "7.0.5" + ], + "secretly subcribed": [ + "7.1.6" + ], + "sector openly admitted": [ + "7.1.0" + ], + "security": [ + "7.0.4" + ], + "security state": [ + "7.0.4" + ], + "security state capital": [ + "7.0.4" + ], + "security state discovers": [ + "7.0.4" + ], + "segundo": [ + "7.0.7" + ], + "self-reference": [ + "7.1.21" + ], + "sensate and imaginary": [ + "7.1.19" + ], + "sense": [ + "7.0.6", + "7.1.21", + "7.2.2" + ], + "sentence": [ + "7.2.2" + ], + "seoul event": [ + "7.0.10" + ], + "separate entire societies": [ + "7.0.0", + "7.0.8" + ], + "seymour melman": [ + "7.0.3" + ], + "shop boys": [ + "7.1.3" + ], + "short": [ + "7.1.6" + ], + "shorthand": [ + "7.0.3" + ], + "show": [ + "7.0.8" + ], + "showing": [ + "7.1.19" + ], + "signed": [ + "7.1.4" + ], + "signed message": [ + "7.1.4" + ], + "similar economic job": [ + "7.0.3" + ], + "similar organisational logic": [ + "7.0.8", + "7.0.9" + ], + "simple economic justification": [ + "7.0.1" + ], + "simple formula": [ + "7.1.6" + ], + "simply": [ + "7.1.23" + ], + "simply art": [ + "7.0.1", + "7.0.2" + ], + "simply art justifies": [ + "7.0.1", + "7.0.2" + ], + "simply doesn": [ + "7.1.0" + ], + "slightly delayed": [ + "7.1.9" + ], + "slightly delayed response": [ + "7.1.9", + "7.1.9" + ], + "slogan factually reverses": [ + "7.1.4" + ], + "so-called fine": [ + "7.1.7" + ], + "so-called fine arts": [ + "7.1.2", + "7.1.7" + ], + "social": [ + "7.0.8", + "7.0.9", + "7.1.12", + "7.1.13", + "7.1.15", + "7.1.17" + ], + "social change": [ + "7.1.13", + "7.1.13", + "7.1.15", + "7.2.3" + ], + "social circuit": [ + "7.1.12" + ], + "social determinism": [ + "7.1.13" + ], + "socially relevant contexts": [ + "7.1.4" + ], + "societies": [ + "7.0.0" + ], + "society": [ + "7.0.0", + "7.0.10", + "7.1.3", + "7.1.15", + "7.1.16" + ], + "society at large": [ + "7.1.2", + "7.1.3" + ], + "society representative": [ + "7.0.10" + ], + "software": [ + "7.1.4" + ], + "solely": [ + "7.1.21" + ], + "somewhat restricted": [ + "7.1.14" + ], + "somewhat simplistic comparison": [ + "7.1.14" + ], + "somewhat teleological sense": [ + "7.1.14" + ], + "songs of ebay": [ + "7.1.3" + ], + "sophisticated weapons imaginable": [ + "7.0.5" + ], + "source": [ + "7.1.4" + ], + "source software": [ + "7.1.4" + ], + "south": [ + "7.0.0", + "7.0.1", + "7.0.2" + ], + "south korea": [ + "7.0.1", + "7.0.2", + "7.0.5" + ], + "south korean": [ + "7.0.0" + ], + "south korean city": [ + "7.0.0", + "7.0.0" + ], + "spaces": [ + "7.1.1" + ], + "specialized festivals": [ + "7.1.23" + ], + "specific": [ + "7.1.10" + ], + "specific curatorial approaches": [ + "7.1.9" + ], + "spectacular": [ + "7.0.5" + ], + "spek": [ + "7.1.1" + ], + "stable investment": [ + "7.0.4" + ], + "state": [ + "7.0.0", + "7.0.4" + ], + "state as empire": [ + "7.0.7" + ], + "state capital": [ + "7.0.4" + ], + "state department": [ + "7.0.2" + ], + "stated": [ + "7.0.1" + ], + "stated or inherent": [ + "7.0.1" + ], + "statements": [ + "7.1.18" + ], + "states": [ + "7.0.4" + ], + "station rose": [ + "7.1.22" + ], + "station rose digital_audio": [ + "7.1.22" + ], + "station rose digital": [ + "7.1.22" + ], + "station rose media": [ + "7.1.22" + ], + "stealth boat project": [ + "7.1.0" + ], + "stephen": [ + "7.2.1" + ], + "stephen duncombe": [ + "7.2.1" + ], + "steve": [ + "7.2.1" + ], + "steve lambert": [ + "7.2.1" + ], + "stichting pensioenfonds abp": [ + "7.0.4", + "7.0.4" + ], + "stimulating set": [ + "7.0.8" + ], + "structured investment vehicles": [ + "7.0.4" + ], + "studied political science": [ + "7.1.0" + ], + "studies": [ + "7.1.19" + ], + "study": [ + "7.1.11" + ], + "stutter": [ + "7.1.20" + ], + "subject": [ + "7.1.14" + ], + "subjects": [ + "7.1.21" + ], + "successful": [ + "7.0.4", + "7.0.5" + ], + "sunday": [ + "7.1.20", + "7.1.22" + ], + "surely": [ + "7.1.21" + ], + "susanne": [ + "7.1.0" + ], + "susanne jaschko": [ + "7.1.0" + ], + "susanne jaschko put": [ + "7.1.0" + ], + "sustain foreign involvements": [ + "7.0.1", + "7.0.2" + ], + "swiss finance capital": [ + "7.1.0" + ], + "swiss people": [ + "7.1.0" + ], + "symbolic structures": [ + "7.0.8" + ], + "symposium entitled positions": [ + "7.1.0", + "7.1.0" + ], + "system": [ + "7.0.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.13", + "7.1.18", + "7.1.20", + "7.1.21" + ], + "systematised production occupies": [ + "7.1.4" + ], + "tactics": [ + "7.1.1" + ], + "tate modern site": [ + "7.1.20" + ], + "technological": [ + "7.0.8" + ], + "technological domain": [ + "7.0.8" + ], + "technological power holds": [ + "7.1.12" + ], + "technology": [ + "7.1.14" + ], + "technoscientific": [ + "7.1.13" + ], + "technoscientific system": [ + "7.1.13" + ], + "temporary travel office": [ + "7.1.7", + "7.1.7" + ], + "term": [ + "7.1.19" + ], + "terminal structural crisis": [ + "7.1.8", + "7.1.9" + ], + "terms": [ + "7.1.11" + ], + "test": [ + "7.0.5" + ], + "thanks matze": [ + "7.1.4" + ], + "theater": [ + "7.2.3" + ], + "theater review": [ + "7.2.3" + ], + "theatre": [ + "7.2.2" + ], + "theatre critics": [ + "7.2.2" + ], + "theorists": [ + "7.1.13" + ], + "theory side": [ + "7.1.11" + ], + "things": [ + "7.1.10", + "7.1.17", + "7.1.21", + "7.1.23" + ], + "thought-provoking": [ + "7.1.18" + ], + "thought-provoking statements": [ + "7.1.18" + ], + "threat": [ + "7.0.3" + ], + "thursday": [ + "7.1.3" + ], + "time": [ + "7.0.8", + "7.0.10", + "7.1.5", + "7.1.9", + "7.1.12", + "7.1.13", + "7.1.21" + ], + "time production": [ + "7.1.4" + ], + "time based": [ + "7.1.5" + ], + "tissue": [ + "7.1.14" + ], + "today": [ + "7.0.3" + ], + "tolstoy": [ + "7.1.11", + "7.1.12" + ], + "tolstoy and baudrillard": [ + "7.1.12" + ], + "tolstoy new media": [ + "7.1.11" + ], + "totality": [ + "7.0.5", + "7.0.6" + ], + "tradition": [ + "7.1.17" + ], + "traditional art": [ + "7.1.2", + "7.1.8" + ], + "transform": [ + "7.1.13" + ], + "translocal distributed temporary": [ + "7.1.0" + ], + "transmediale": [ + "7.1.22" + ], + "transparency": [ + "7.1.1" + ], + "tremendous importance whenever": [ + "7.0.0" + ], + "trouble": [ + "7.1.3" + ], + "true": [ + "7.1.6", + "7.1.8", + "7.1.11" + ], + "tue": [ + "7.1.19" + ], + "turns": [ + "7.1.19" + ], + "twentieth century": [ + "7.0.0" + ], + "ubc": [ + "7.2.2" + ], + "ubc theatre": [ + "7.2.2" + ], + "uc santa cruz": [ + "7.2.3" + ], + "unconcerned": [ + "7.1.16" + ], + "unconcerned with political": [ + "7.1.16" + ], + "understand": [ + "7.1.15", + "7.2.2" + ], + "understood theory lingo": [ + "7.1.2" + ], + "unfinish": [ + "7.1.22" + ], + "unfolding dramatic events": [ + "7.2.3" + ], + "unfortunately decaying rapidly": [ + "7.1.4" + ], + "united states": [ + "7.0.2" + ], + "upgrade pakistan": [ + "7.0.5" + ], + "utopia": [ + "7.1.22" + ], + "van": [ + "7.1.1" + ], + "van der spek": [ + "7.1.1" + ], + "vancouver play": [ + "7.2.3" + ], + "vancouver play offers": [ + "7.2.3", + "7.2.3" + ], + "varying degrees": [ + "7.1.12" + ], + "velasquez": [ + "7.0.7" + ], + "velasquez portrait": [ + "7.0.7" + ], + "velazquez": [ + "7.0.7" + ], + "velazquez plays": [ + "7.0.7" + ], + "velazquez realism": [ + "7.0.7" + ], + "veteran art critic": [ + "7.2.0" + ], + "video": [ + "7.1.2", + "7.1.5" + ], + "video art heritage": [ + "7.1.0" + ], + "video art project": [ + "7.1.5" + ], + "video art roots": [ + "7.1.2", + "7.1.3" + ], + "video artists": [ + "7.1.5" + ], + "video gallery monte": [ + "7.1.5" + ], + "video installations": [ + "7.1.2" + ], + "video loops shown": [ + "7.1.2" + ], + "vietnam": [ + "7.0.1", + "7.0.2" + ], + "view": [ + "7.1.11", + "7.1.12", + "7.1.13" + ], + "viewer": [ + "7.1.16", + "7.1.18" + ], + "visiting art biennales": [ + "7.1.7" + ], + "visual": [ + "7.0.8" + ], + "visual art http": [ + "7.1.22" + ], + "visual arts": [ + "7.0.8", + "7.0.9", + "7.1.0", + "7.1.5" + ], + "wafaa bilal": [ + "7.1.0" + ], + "walls": [ + "7.1.18" + ], + "wanadoo.fr": [ + "7.1.19" + ], + "war": [ + "7.0.2", + "7.0.9" + ], + "war helps increase": [ + "7.0.3" + ], + "weakness and insecurity": [ + "7.0.7" + ], + "wearing curator saying": [ + "7.1.2", + "7.1.7" + ], + "website": [ + "7.2.2" + ], + "western": [ + "7.1.20" + ], + "western cultural import": [ + "7.1.20" + ], + "western cultures": [ + "7.1.20" + ], + "whatever tables concerning": [ + "7.0.10" + ], + "whatsoever contemporary art": [ + "7.1.2" + ], + "witte": [ + "7.1.22" + ], + "wondering": [ + "7.1.10", + "7.1.14", + "7.1.23" + ], + "word": [ + "7.1.19" + ], + "word mediated": [ + "7.1.19" + ], + "work": [ + "7.1.5", + "7.1.7", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.15", + "7.1.16", + "7.1.17", + "7.2.0", + "7.2.2" + ], + "works": [ + "7.1.7", + "7.1.13", + "7.1.15" + ], + "workshop venues": [ + "7.1.23" + ], + "world": [ + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.9", + "7.1.7", + "7.1.9", + "7.1.10", + "7.1.14", + "7.1.17", + "7.1.20", + "7.1.21", + "7.2.0", + "7.2.2" + ], + "world military": [ + "7.0.3" + ], + "world military presence": [ + "7.0.3", + "7.0.3" + ], + "world society": [ + "7.0.0" + ], + "worlds": [ + "7.1.17" + ], + "wow": [ + "7.1.15", + "7.1.16", + "7.1.17" + ], + "writing": [ + "7.2.1" + ], + "writing about political": [ + "7.2.1" + ], + "written": [ + "7.2.0" + ], + "written in response": [ + "7.2.0" + ], + "wrlds third largest": [ + "7.0.4" + ], + "wrote": [ + "7.1.3", + "7.1.12", + "7.1.19", + "7.1.23" + ], + "years": [ + "7.1.4", + "7.1.17" + ], + "york": [ + "7.1.22" + ], + "york city": [ + "7.0.0" + ], + "york times": [ + "7.0.5" + ], + "yuppie": [ + "7.1.6" + ], + "zkm": [ + "7.1.6" + ], + "zkm in germany": [ + "7.1.6" + ], + "zurich art": [ + "7.1.9" + ], + "‘virtual human shield": [ + "7.1.0" + ], + "“art meets science”": [ + "7.1.0" + ] + }, + "selected": { + "activism": [ + "7.1.1" + ], + "amsterdam": [ + "7.1.4" + ], + "art world": [ + "7.1.2", + "7.1.2", + "7.1.7", + "7.1.8", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.10", + "7.1.14", + "7.1.20", + "7.1.21", + "7.1.21", + "7.2.0", + "7.2.2" + ], + "brecht": [ + "7.2.3" + ], + "cold war": [ + "7.0.2", + "7.0.9" + ], + "contemporary art": [ + "7.1.2", + "7.1.2", + "7.1.7", + "7.1.7", + "7.1.8", + "7.1.8", + "7.1.9", + "7.1.20", + "7.1.20", + "7.1.21", + "7.1.22" + ], + "creative commons": [ + "7.1.4" + ], + "critical art ensemble": [ + "7.2.0" + ], + "debord": [ + "7.1.6" + ], + "fine art": [ + "7.1.0", + "7.1.2", + "7.1.2", + "7.1.7", + "7.1.7", + "7.1.8", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.14", + "7.1.20", + "7.1.20", + "7.1.21", + "7.2.0", + "7.2.0" + ], + "free software": [ + "7.1.4" + ], + "internet": [ + "7.0.2", + "7.0.10" + ], + "leo tolstoy": [ + "7.1.11" + ], + "lyotard": [ + "7.0.8" + ], + "mail art": [ + "7.1.8", + "7.1.9" + ], + "media art": [ + "7.1.0", + "7.1.2", + "7.1.5", + "7.1.7", + "7.1.8", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.17", + "7.1.20", + "7.1.21", + "7.1.22" + ], + "media arts": [ + "7.1.0", + "7.1.0", + "7.1.6", + "7.1.7", + "7.1.7", + "7.1.8", + "7.1.10", + "7.1.11", + "7.1.14", + "7.1.17", + "7.1.20", + "7.1.23" + ], + "military-industrial complex": [ + "7.0.3", + "7.0.4" + ], + "monte video": [ + "7.1.5", + "7.1.5" + ], + "nam june paik": [ + "7.1.2", + "7.1.2", + "7.1.5" + ], + "open source": [ + "7.1.4" + ], + "ottawa": [ + "7.0.10" + ], + "political art": [ + "7.1.10", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.2.0", + "7.2.1", + "7.2.2" + ], + "rotterdam": [ + "7.1.22" + ], + "seoul": [ + "7.0.10" + ], + "texte zur kunst": [ + "7.1.8", + "7.1.9", + "7.1.20", + "7.1.21" + ], + "theory": [ + "7.1.7", + "7.1.11", + "7.1.12" + ], + "time based arts": [ + "7.1.4", + "7.1.5", + "7.1.5" + ], + "vancouver": [ + "7.2.3" + ], + "video art": [ + "7.1.2", + "7.1.3", + "7.1.5" + ], + "vienna": [ + "7.1.22" + ] + } +} \ No newline at end of file diff --git a/index/8.TacticalMedia-index.js b/index/8.TacticalMedia-index.js new file mode 100644 index 0000000..b61ba31 --- /dev/null +++ b/index/8.TacticalMedia-index.js @@ -0,0 +1,11893 @@ +{ + "orphan": { + "*action orientated research*": [ + "8.2.0" + ], + "// test": [ + "8.12.0" + ], + "1 web page": [ + "8.4.0" + ], + "10:05": [ + "8.25.2" + ], + "10:13": [ + "8.10.7" + ], + "10:53": [ + "8.24.3" + ], + "10th aniversary meeting": [ + "8.21.0" + ], + "1990s tactical": [ + "8.15.0" + ], + "1:53": [ + "8.10.9" + ], + "2000 naomi klein": [ + "8.23.0" + ], + "3d environments": [ + "8.26.0" + ], + "5:09": [ + "8.18.9" + ], + "68 baby boomers": [ + "8.18.0" + ], + "< luther blissett": [ + "8.9.0" + ], + "": [ + "8.18.2" + ], + " config": [ + "8.4.0" + ], + "> media makers": [ + "8.20.1" + ], + ">critical spirit begins": [ + "8.18.2" + ], + ">payment system": [ + "8.13.0" + ], + ">permanent poverty": [ + "8.16.2" + ], + ">specific social structures": [ + "8.8.1" + ], + ">tactical media practices": [ + "8.13.0" + ], + "_0_ luther blissett": [ + "8.9.0" + ], + "_3_ pop interfaces": [ + "8.9.0" + ], + "aboriginal craft stands": [ + "8.16.3" + ], + "aboriginal subjectivities": [ + "8.16.3" + ], + "abortion": [ + "8.20.0" + ], + "abortion boat": [ + "8.20.0" + ], + "abortion boat women": [ + "8.20.0", + "8.20.0" + ], + "absent lifeworld preserved": [ + "8.12.0" + ], + "absented police force": [ + "8.12.0" + ], + "absolute": [ + "8.18.5" + ], + "absolutely": [ + "8.18.5" + ], + "absolutely declarative statements": [ + "8.10.6" + ], + "abstract": [ + "8.18.1" + ], + "abstract information": [ + "8.18.1" + ], + "abstract news items": [ + "8.18.0" + ], + "abstraction": [ + "8.18.1" + ], + "abundance not facilitate": [ + "8.14.0" + ], + "abya yala": [ + "8.25.3" + ], + "academic ant hill": [ + "8.16.7" + ], + "academic publishing career": [ + "8.16.7" + ], + "academic talk": [ + "8.16.3" + ], + "academically administered research": [ + "8.11.0" + ], + "access": [ + "8.22.0" + ], + "access tv": [ + "8.22.0" + ], + "accidental autonomous zones": [ + "8.5.0" + ], + "accords strategic primacy": [ + "8.3.0" + ], + "accuse": [ + "8.10.2" + ], + "achieving global redistirbutions": [ + "8.18.1" + ], + "action": [ + "8.1.0", + "8.2.0", + "8.8.1", + "8.9.0", + "8.18.2", + "8.18.9", + "8.20.1" + ], + "action focused network": [ + "8.18.2", + "8.18.2" + ], + "action network": [ + "8.18.2" + ], + "actions": [ + "8.8.0", + "8.18.2" + ], + "actions entitled": [ + "8.8.0" + ], + "active": [ + "8.23.0" + ], + "active engaged participants": [ + "8.24.5" + ], + "active software": [ + "8.23.0" + ], + "active sydney fair": [ + "8.2.0" + ], + "activism currently focuses": [ + "8.18.7" + ], + "activism goes digital": [ + "8.23.0" + ], + "activism—nicholson explains “": [ + "8.23.0" + ], + "activist brian holmes": [ + "8.20.1" + ], + "activist circles": [ + "8.20.0" + ], + "activist cooptation": [ + "8.20.1" + ], + "activist efforts": [ + "8.16.0" + ], + "activist model": [ + "8.23.0" + ], + "activist planning round": [ + "8.20.1" + ], + "activists continue": [ + "8.27.0" + ], + "activists david garcia": [ + "8.11.0" + ], + "activists to work": [ + "8.27.0" + ], + "actual dynamic engagement": [ + "8.3.0" + ], + "actual topics": [ + "8.18.7" + ], + "actually karl polanyi": [ + "8.18.8" + ], + "adam smith": [ + "8.14.0" + ], + "adbuster-style action": [ + "8.10.2" + ], + "adbusters described isis": [ + "8.24.0" + ], + "address discuss": [ + "8.20.0" + ], + "adolescent illusion": [ + "8.16.4" + ], + "adroit and effective": [ + "8.24.5" + ], + "advanced net activism": [ + "8.2.0", + "8.13.0", + "8.13.0" + ], + "adventures": [ + "8.18.4" + ], + "advocates outside history": [ + "8.3.0" + ], + "aerial cctv views": [ + "8.12.0" + ], + "aesthetic": [ + "8.0.0", + "8.16.7", + "8.17.0" + ], + "aesthetic information warfare": [ + "8.17.0", + "8.17.0" + ], + "aesthetic informational warfare": [ + "8.17.0" + ], + "aesthetic politics": [ + "8.16.7" + ], + "aesthetic terrorism continues": [ + "8.10.0" + ], + "aesthetic theory": [ + "8.17.0" + ], + "aesthetic warfare": [ + "8.17.0" + ], + "aesthetics": [ + "8.16.7", + "8.17.0" + ], + "affairs decidedly mixed": [ + "8.22.0" + ], + "afk world": [ + "8.25.5" + ], + "afonso": [ + "8.21.1" + ], + "afonso caetano": [ + "8.21.0", + "8.21.1" + ], + "afonso caetano wrote": [ + "8.21.1" + ], + "age of web": [ + "8.21.1" + ], + "ageing baby boomers": [ + "8.18.0" + ], + "agencies": [ + "8.16.1" + ], + "agency requires reparations": [ + "8.24.0" + ], + "aggressively": [ + "8.10.2", + "8.10.6", + "8.16.2" + ], + "aggressively marketed": [ + "8.16.2" + ], + "aggressively marketed fad": [ + "8.16.2" + ], + "aggressively singing": [ + "8.10.2", + "8.10.6" + ], + "ago": [ + "8.21.1" + ], + "ago sydney media": [ + "8.23.0" + ], + "aids activism": [ + "8.18.7", + "8.18.9" + ], + "aids activist": [ + "8.2.0", + "8.18.7" + ], + "aids activists": [ + "8.18.7" + ], + "aids and globalization": [ + "8.18.8" + ], + "aids crisis": [ + "8.18.7", + "8.18.7", + "8.19.0" + ], + "aids drug cocktail": [ + "8.18.7" + ], + "aids ii virus": [ + "8.19.0" + ], + "aids info disk": [ + "8.19.0" + ], + "aids information introductory": [ + "8.19.0" + ], + "aids media": [ + "8.18.7" + ], + "aids media activism": [ + "8.18.7" + ], + "aids paradigm dominated": [ + "8.19.0" + ], + "aids tactitical practitioners": [ + "8.2.0" + ], + "al capone gang": [ + "8.19.0" + ], + "alamut": [ + "8.5.0" + ], + "albert": [ + "8.10.7", + "8.10.9" + ], + "albert and hahnel": [ + "8.10.9" + ], + "alex": [ + "8.8.1" + ], + "alex conversation": [ + "8.8.1" + ], + "alex galloway": [ + "8.8.0" + ], + "alien environment": [ + "8.6.0" + ], + "aligned movement launched": [ + "8.3.0" + ], + "alive": [ + "8.25.1", + "8.25.2", + "8.25.3" + ], + "all-consuming image": [ + "8.16.5" + ], + "allowed de certeau": [ + "8.23.0" + ], + "allows smug violence": [ + "8.24.2" + ], + "alt-right": [ + "8.24.0" + ], + "alt-right enjoyment": [ + "8.24.0" + ], + "alt-right enjoyment reinforces": [ + "8.24.0" + ], + "alternative": [ + "8.10.0", + "8.10.4", + "8.10.7", + "8.10.8", + "8.13.0", + "8.18.4" + ], + "alternative culture ghettos": [ + "8.9.0" + ], + "alternative e-commerce": [ + "8.13.0" + ], + "alternative e-commerce system": [ + "8.13.0" + ], + "alternative media": [ + "8.0.0", + "8.10.0", + "8.15.0", + "8.21.0" + ], + "alternative media model": [ + "8.15.0" + ], + "alternative media network": [ + "8.22.0" + ], + "alternative media universe": [ + "8.15.0" + ], + "alternative scene": [ + "8.0.0" + ], + "alternative system": [ + "8.13.0" + ], + "alternative vs": [ + "8.9.0" + ], + "alternative vs mainstream": [ + "8.0.0" + ], + "am reading ocalan": [ + "8.25.3" + ], + "amateur vs": [ + "8.0.0" + ], + "amateur vs professional": [ + "8.2.0" + ], + "american": [ + "8.3.0" + ], + "american campaigning media": [ + "8.1.0" + ], + "american indians": [ + "8.16.3" + ], + "american media": [ + "8.3.0", + "8.3.0" + ], + "american military": [ + "8.19.0" + ], + "american military action": [ + "8.19.0" + ], + "american self": [ + "8.3.0" + ], + "american television news": [ + "8.3.0" + ], + "americanized": [ + "8.16.2" + ], + "americans consume": [ + "8.3.0" + ], + "amounts": [ + "8.16.2" + ], + "amsterdam based organisors": [ + "8.11.0" + ], + "amusing quasi poetry": [ + "8.12.0" + ], + "analysis": [ + "8.20.1" + ], + "analytic": [ + "8.18.3" + ], + "analytic specificity": [ + "8.18.3" + ], + "andreas broeckmann": [ + "8.13.0" + ], + "andrew nicholson collaborated": [ + "8.23.0" + ], + "angela nagle": [ + "8.24.0" + ], + "angry scepticism": [ + "8.1.0" + ], + "anon": [ + "8.24.4" + ], + "anonymous": [ + "8.24.0", + "8.24.5" + ], + "answer essential questions": [ + "8.8.0" + ], + "anthem": [ + "8.10.6" + ], + "anthropological place": [ + "8.11.0" + ], + "anti-globalisation": [ + "8.10.3", + "8.10.4", + "8.10.7", + "8.10.8" + ], + "anti-globalisation folks": [ + "8.10.3" + ], + "anti-globalisation freaks": [ + "8.10.3" + ], + "anticipatory shielding means": [ + "8.11.0" + ], + "antics has enabled": [ + "8.27.0" + ], + "antoine": [ + "8.10.5" + ], + "antoine de saint": [ + "8.10.5" + ], + "apolinian lightning force": [ + "8.18.11" + ], + "appalling omission rests": [ + "8.24.0" + ], + "apparent communication": [ + "8.26.0" + ], + "apparently submissive kneel": [ + "8.10.0" + ], + "appendix": [ + "8.10.9" + ], + "applaud": [ + "8.10.3" + ], + "apple ii virus": [ + "8.19.0" + ], + "applying information technology": [ + "8.6.0" + ], + "april": [ + "8.25.0" + ], + "april glaser": [ + "8.25.0" + ], + "april glaser writes": [ + "8.25.0", + "8.25.0" + ], + "archive": [ + "8.24.4" + ], + "area": [ + "8.8.1" + ], + "argentina": [ + "8.25.2" + ], + "arguably": [ + "8.18.6" + ], + "argues de certeau": [ + "8.11.0" + ], + "argument": [ + "8.16.7", + "8.18.8" + ], + "arguments": [ + "8.18.9", + "8.18.10" + ], + "arguments fall real": [ + "8.18.9" + ], + "arise": [ + "8.18.2" + ], + "army battlefield maneuvers": [ + "8.19.0" + ], + "ars electronica": [ + "8.8.0", + "8.21.0" + ], + "ars electronica centre": [ + "8.18.0" + ], + "ars electronica festival": [ + "8.8.0" + ], + "art": [ + "8.2.0", + "8.3.0", + "8.11.0", + "8.16.7", + "8.17.0", + "8.18.0", + "8.18.4", + "8.20.1", + "8.23.0", + "8.27.0" + ], + "art activism scene": [ + "8.9.0" + ], + "art meets activism": [ + "8.2.0" + ], + "art meets science": [ + "8.18.0" + ], + "art movements": [ + "8.23.0" + ], + "art project called": [ + "8.8.0" + ], + "art ultimately": [ + "8.18.4" + ], + "art ultimately implies": [ + "8.18.4" + ], + "art world": [ + "8.3.0", + "8.6.0", + "8.27.0" + ], + "article": [ + "8.18.7", + "8.25.3" + ], + "article florian": [ + "8.18.7" + ], + "article florian schneider": [ + "8.18.7", + "8.18.7" + ], + "artist": [ + "8.16.4", + "8.16.5", + "8.16.6", + "8.20.0" + ], + "artist activist": [ + "8.20.0" + ], + "artist expeditions": [ + "8.16.5" + ], + "artist iconic": [ + "8.16.6" + ], + "artist iconic status": [ + "8.16.6" + ], + "artist runs": [ + "8.16.5" + ], + "artist runs ahead": [ + "8.16.5" + ], + "artistic": [ + "8.16.7", + "8.20.1" + ], + "artistic infrastructure unavoidable": [ + "8.11.0" + ], + "artistic value": [ + "8.11.0" + ], + "artists": [ + "8.3.0", + "8.16.4", + "8.17.0", + "8.20.0", + "8.27.0" + ], + "artists and activists": [ + "8.27.0" + ], + "artists jumped eagerly": [ + "8.18.0" + ], + "artists produce": [ + "8.27.0" + ], + "artists produce unused": [ + "8.27.0" + ], + "arts": [ + "8.2.0", + "8.17.0", + "8.18.0" + ], + "arts sector": [ + "8.18.0" + ], + "ascendant online": [ + "8.24.0" + ], + "ascendant online culture": [ + "8.24.0" + ], + "asian tactical media": [ + "8.22.0" + ], + "astra taylor": [ + "8.25.5" + ], + "attachments": [ + "8.24.2" + ], + "attainable via": [ + "8.3.0" + ], + "attend protest rallies": [ + "8.18.0" + ], + "attention": [ + "8.6.0", + "8.18.10", + "8.18.11" + ], + "attention to messages": [ + "8.18.10", + "8.18.11" + ], + "attractive rhetorical act": [ + "8.18.0" + ], + "au%2fgrantsprizes%2fanz_aa>": [ + "8.23.0" + ], + "audience": [ + "8.24.5", + "8.26.0" + ], + "australian journal overland": [ + "8.24.0", + "8.24.0" + ], + "australian universities touting": [ + "8.16.3" + ], + "author": [ + "8.10.3" + ], + "author calls": [ + "8.19.0" + ], + "author ralf": [ + "8.19.0" + ], + "authoritarian language": [ + "8.5.1" + ], + "automatically draw users": [ + "8.18.0" + ], + "autonomedia": [ + "8.5.0" + ], + "autonomous media": [ + "8.22.0" + ], + "autonomous media production": [ + "8.22.0" + ], + "autonomous pop mithology": [ + "8.9.0" + ], + "autonomous zone": [ + "8.5.0" + ], + "autonomous zones": [ + "8.24.5" + ], + "available images circulating": [ + "8.0.0" + ], + "avant garde": [ + "8.16.7" + ], + "avant garde continuities": [ + "8.23.0" + ], + "average media users": [ + "8.6.0" + ], + "average web page": [ + "8.4.0" + ], + "avowed white supremacist": [ + "8.24.0" + ], + "awareness amongst activists": [ + "8.18.0" + ], + "baby burn": [ + "8.5.1" + ], + "back": [ + "8.16.4", + "8.18.6", + "8.20.1", + "8.24.5" + ], + "backwards": [ + "8.5.1" + ], + "backwards and forwards": [ + "8.5.1" + ], + "bad programming": [ + "8.19.0" + ], + "baker": [ + "8.12.0" + ], + "balanced": [ + "8.10.9" + ], + "balanced job": [ + "8.10.9" + ], + "balanced job complex": [ + "8.10.9", + "8.10.9" + ], + "balanced job complexes": [ + "8.10.9" + ], + "ball started rolling": [ + "8.2.0" + ], + "bank": [ + "8.10.8" + ], + "bannerid=117&zoneid=0&source=&dest=http%3a%2f%2fwww": [ + "8.23.0" + ], + "bannerid=144&zoneid=0&source=&dest=http%3a%2f%2fwww": [ + "8.23.0" + ], + "bannerid=145&zoneid=0&source=&dest=http%3a%2f%2fhelpmannacademy": [ + "8.23.0" + ], + "bannerid=146&zoneid=0&source=&dest=http%3a%2f%2fwww": [ + "8.23.0" + ], + "bannerid=58&zoneid=1&source=&dest=http%3a%2f%2fwww": [ + "8.23.0" + ], + "barcelona aids conference": [ + "8.18.7" + ], + "barring": [ + "8.25.1" + ], + "based": [ + "8.13.0", + "8.16.2" + ], + "based artist activist": [ + "8.20.0" + ], + "based fora": [ + "8.26.0" + ], + "based media": [ + "8.23.0" + ], + "based media activists": [ + "8.22.0" + ], + "based networking platforms": [ + "8.23.0" + ], + "based social movements": [ + "8.1.0" + ], + "basement dwelling nerds": [ + "8.24.0" + ], + "basic civil rights": [ + "8.8.0" + ], + "baudrillard quoting wilden": [ + "8.9.0" + ], + "baudrillard simulacra": [ + "8.16.5" + ], + "bazzichelli cogently argues": [ + "8.23.0" + ], + "beatles": [ + "8.4.0" + ], + "beginning in germany": [ + "8.16.4" + ], + "begins and ends": [ + "8.18.2" + ], + "belated": [ + "8.14.0" + ], + "belated comments": [ + "8.14.0" + ], + "belly for recognizing": [ + "8.18.11" + ], + "ben": [ + "8.10.7", + "8.10.9" + ], + "ben and jerry": [ + "8.16.4" + ], + "benjamin": [ + "8.16.7" + ], + "benjamin argues": [ + "8.11.0" + ], + "benjamin died fleeing": [ + "8.16.7" + ], + "benjamin splits experience": [ + "8.11.0" + ], + "benjamin terms erlebnis": [ + "8.11.0" + ], + "benjamin understands baudelaire": [ + "8.11.0" + ], + "berlin": [ + "8.25.1", + "8.25.2", + "8.25.16" + ], + "biblically inspired narratives": [ + "8.3.0" + ], + "big difference": [ + "8.24.3" + ], + "big media": [ + "8.7.0" + ], + "big media corporations": [ + "8.7.0" + ], + "bilwet media archive": [ + "8.26.0", + "8.26.0" + ], + "bin laden": [ + "8.10.1" + ], + "bit": [ + "8.16.4" + ], + "bit skeptical": [ + "8.25.3" + ], + "bit too mild": [ + "8.16.4" + ], + "black": [ + "8.3.0" + ], + "blindly type": [ + "8.16.6" + ], + "blindly type strings": [ + "8.16.6" + ], + "blissett": [ + "8.9.0" + ], + "blissett project": [ + "8.9.0" + ], + "blunt mission statement": [ + "8.11.0" + ], + "bold mailing list": [ + "8.26.0" + ], + "bolivarian tv stations": [ + "8.20.1" + ], + "bomb helped drive": [ + "8.19.0" + ], + "book": [ + "8.24.0" + ], + "borderline": [ + "8.18.5" + ], + "bordowitz": [ + "8.18.8" + ], + "bordowitz insightful": [ + "8.18.8" + ], + "bored graduate student": [ + "8.19.0" + ], + "bosma entitled": [ + "8.12.0" + ], + "bot": [ + "8.24.4" + ], + "bot tweets": [ + "8.24.4" + ], + "bot tweets mail": [ + "8.24.4" + ], + "bottom-up": [ + "8.8.1" + ], + "bourgeois urban culture": [ + "8.20.0", + "8.20.1" + ], + "boycott": [ + "8.16.0" + ], + "brazil": [ + "8.20.0", + "8.21.0", + "8.21.1" + ], + "brazil and india": [ + "8.21.1" + ], + "brazilian": [ + "8.21.0" + ], + "brazilian tactical": [ + "8.21.0" + ], + "brazilian tactical media": [ + "8.21.0" + ], + "brazilian woman relating": [ + "8.20.0" + ], + "break": [ + "8.16.6" + ], + "brian": [ + "8.18.9", + "8.18.10", + "8.18.11", + "8.24.3" + ], + "brian contributions": [ + "8.18.10" + ], + "brian holmes": [ + "8.18.9", + "8.18.10", + "8.18.11", + "8.20.1", + "8.24.3" + ], + "brian holmes wrote": [ + "8.24.3", + "8.24.3" + ], + "brian takes umbrage": [ + "8.18.10", + "8.18.11" + ], + "bribed": [ + "8.16.1" + ], + "bribed into submission": [ + "8.16.1" + ], + "bright media radiation": [ + "8.15.0" + ], + "bringing creativity": [ + "8.18.4" + ], + "brings": [ + "8.18.6" + ], + "brings us back": [ + "8.18.6" + ], + "british jounal": [ + "8.11.0" + ], + "broad social movement": [ + "8.1.0" + ], + "broad viral epidemic": [ + "8.19.0" + ], + "broadcast": [ + "8.20.1", + "8.26.0" + ], + "broadcast dichotomy": [ + "8.26.0" + ], + "broadcast media system": [ + "8.26.0" + ], + "broadcast model": [ + "8.26.0" + ], + "broadcast model based": [ + "8.26.0" + ], + "broadcast tv": [ + "8.20.1" + ], + "broadly based emancipatory": [ + "8.1.0" + ], + "broadly based social": [ + "8.1.0" + ], + "bruce sterling": [ + "8.19.0" + ], + "bruce sterling reports": [ + "8.19.0" + ], + "btropolis": [ + "8.25.0" + ], + "bu tactical media": [ + "8.0.0" + ], + "build": [ + "8.10.5" + ], + "build a ship": [ + "8.10.5" + ], + "building mailing lists": [ + "8.11.0" + ], + "bunting": [ + "8.12.0" + ], + "bunting hybridises physical": [ + "8.12.0" + ], + "burn": [ + "8.5.1" + ], + "burn baby": [ + "8.5.1" + ], + "burn baby burn": [ + "8.5.1", + "8.5.1" + ], + "business model": [ + "8.4.0" + ], + "cable tv infrastructures": [ + "8.26.0" + ], + "caetano": [ + "8.21.0", + "8.21.1" + ], + "caetano wrote": [ + "8.21.1" + ], + "california press": [ + "8.22.0" + ], + "called": [ + "8.10.7" + ], + "called platform capitalism": [ + "8.24.5", + "8.24.5" + ], + "called tactical": [ + "8.21.1" + ], + "called tactical media": [ + "8.16.4", + "8.21.1" + ], + "called theory": [ + "8.18.6" + ], + "camcorder form": [ + "8.0.0" + ], + "campaign": [ + "8.1.0" + ], + "campaigning media artists": [ + "8.1.0" + ], + "campaigns": [ + "8.1.0" + ], + "capital": [ + "8.5.0", + "8.18.9" + ], + "capitalism": [ + "8.24.5" + ], + "capitalist class proper": [ + "8.18.1" + ], + "capped": [ + "8.18.8" + ], + "cargo": [ + "8.16.3" + ], + "cargo cult": [ + "8.16.3" + ], + "carnival chickens": [ + "8.16.6" + ], + "carpenter": [ + "8.27.0" + ], + "carrico": [ + "8.14.0" + ], + "carry blunt concepts": [ + "8.15.0" + ], + "carved by persuasive": [ + "8.18.6" + ], + "casa grazie": [ + "8.20.0" + ], + "case": [ + "8.10.2" + ], + "cash flow": [ + "8.4.0" + ], + "casino capitalism": [ + "8.7.0" + ], + "castle": [ + "8.5.0" + ], + "castle typically protected": [ + "8.5.0" + ], + "castles": [ + "8.5.0" + ], + "castles tactical": [ + "8.5.0" + ], + "castles tactical media": [ + "8.5.0" + ], + "catch": [ + "8.18.6" + ], + "catch-up": [ + "8.25.5" + ], + "catia tv": [ + "8.20.1" + ], + "cavernous dome holding": [ + "8.24.0" + ], + "caxton": [ + "8.5.1" + ], + "cctv cameras etc": [ + "8.12.0" + ], + "celebrate": [ + "8.24.3" + ], + "celebrate macro views": [ + "8.3.0" + ], + "censorship": [ + "8.25.5" + ], + "central giant media": [ + "8.6.0" + ], + "centralist organization": [ + "8.10.0" + ], + "centralized eurocop database": [ + "8.18.0" + ], + "centralized statist tyrannies": [ + "8.20.0" + ], + "century art movements": [ + "8.23.0" + ], + "certeau describes tactical": [ + "8.11.0" + ], + "certeau tactics": [ + "8.10.0" + ], + "certeaus specific theater": [ + "8.17.0" + ], + "chain reaction make": [ + "8.18.9" + ], + "chalked tag catches": [ + "8.12.0" + ], + "challenging the submissive": [ + "8.18.4" + ], + "champion": [ + "8.10.4", + "8.10.5", + "8.10.7" + ], + "change": [ + "8.10.8" + ], + "changing discursive position": [ + "8.19.0" + ], + "changing technical means": [ + "8.10.1" + ], + "chaos pur sang": [ + "8.15.0", + "8.26.0" + ], + "chaotically precise systems": [ + "8.24.0" + ], + "cheers": [ + "8.25.1", + "8.25.2" + ], + "chickens": [ + "8.16.6" + ], + "child care provision": [ + "8.20.0" + ], + "choice": [ + "8.16.2" + ], + "choice based": [ + "8.16.2" + ], + "christian patriot movement": [ + "8.19.0" + ], + "circuits emanating": [ + "8.24.3" + ], + "circuits of commodification": [ + "8.18.3" + ], + "circus doubled": [ + "8.2.0" + ], + "cited morris worm": [ + "8.19.0" + ], + "city scenes simultaneously": [ + "8.12.0" + ], + "claim news value": [ + "8.16.1" + ], + "claiming": [ + "8.16.4" + ], + "class": [ + "8.18.1", + "8.18.2", + "8.18.3" + ], + "class interest": [ + "8.18.1" + ], + "class media culture": [ + "8.20.1" + ], + "class power": [ + "8.18.1", + "8.18.1", + "8.18.2" + ], + "class power asserts": [ + "8.18.1" + ], + "class power finds": [ + "8.18.1" + ], + "class power named": [ + "8.18.1", + "8.18.2", + "8.18.2" + ], + "class struggle": [ + "8.18.2", + "8.18.3" + ], + "classes express resistance": [ + "8.18.10" + ], + "classical modernism brought": [ + "8.6.0" + ], + "classical tactical media": [ + "8.20.0" + ], + "clausewitzian theory": [ + "8.19.0" + ], + "clauswitzs strategem": [ + "8.17.0" + ], + "clauswitzs tactics": [ + "8.17.0" + ], + "clauswitzs tactics enable": [ + "8.17.0", + "8.17.0" + ], + "closed circle": [ + "8.8.1" + ], + "co-optation": [ + "8.16.0" + ], + "coal mine warning": [ + "8.19.0" + ], + "coco fusco": [ + "8.3.0" + ], + "coco fusco december": [ + "8.3.0" + ], + "code": [ + "8.12.0" + ], + "code red": [ + "8.7.0" + ], + "cognitive dissonance": [ + "8.5.0" + ], + "cognitive prosthesis": [ + "8.5.0" + ], + "cohen": [ + "8.19.0" + ], + "coleman": [ + "8.24.0" + ], + "collaborative": [ + "8.24.4" + ], + "collaborative networks": [ + "8.26.0" + ], + "collaborative text": [ + "8.24.4" + ], + "collaborative text filtering": [ + "8.24.4" + ], + "collect": [ + "8.10.5" + ], + "collective": [ + "8.25.3" + ], + "collective avatars conducted": [ + "8.9.0" + ], + "collective delirium induced": [ + "8.16.4" + ], + "collective fame": [ + "8.9.0" + ], + "collective imaginery": [ + "8.9.0" + ], + "collective imaginery fed": [ + "8.9.0" + ], + "collective maintained": [ + "8.25.3" + ], + "collective maintained tools": [ + "8.25.3", + "8.25.3" + ], + "collective perspectives": [ + "8.25.3", + "8.25.3" + ], + "collective pop star": [ + "8.9.0" + ], + "colonization": [ + "8.16.5" + ], + "colonized social": [ + "8.23.0" + ], + "colonizes": [ + "8.16.5" + ], + "colonizes and commodifies": [ + "8.16.5" + ], + "colored parachutes": [ + "8.25.3" + ], + "combatted global capital": [ + "8.1.0" + ], + "combine cyber pragmatism": [ + "8.7.0" + ], + "combining cable television": [ + "8.26.0" + ], + "combining tactical media": [ + "8.10.1", + "8.10.1" + ], + "coming": [ + "8.18.11" + ], + "coming race war": [ + "8.24.0" + ], + "command interpreter": [ + "8.19.0" + ], + "comments": [ + "8.14.0" + ], + "commerce system": [ + "8.13.0" + ], + "commercial": [ + "8.24.4" + ], + "commercial enterprises move": [ + "8.6.0" + ], + "commercial hosting companies": [ + "8.22.0" + ], + "commercial ones coming": [ + "8.20.1" + ], + "commercial tv channels": [ + "8.20.1" + ], + "committed political": [ + "8.20.0" + ], + "committed political activist": [ + "8.20.0", + "8.20.0" + ], + "commodification": [ + "8.18.3" + ], + "commodification of fungible": [ + "8.18.3" + ], + "commodification of information": [ + "8.18.3" + ], + "commodified": [ + "8.16.3", + "8.16.4" + ], + "commodified dissent": [ + "8.16.3", + "8.16.4" + ], + "commodifies": [ + "8.16.5" + ], + "commodifies this delusion": [ + "8.16.5" + ], + "commodities entailed movement": [ + "8.15.0" + ], + "commodity": [ + "8.16.5", + "8.18.1" + ], + "commodity economy": [ + "8.18.1" + ], + "common": [ + "8.8.1" + ], + "common lot": [ + "8.24.3" + ], + "commonly shared feeling": [ + "8.18.0" + ], + "commons": [ + "8.24.3" + ], + "communal land": [ + "8.18.3" + ], + "communication": [ + "8.3.0", + "8.9.0", + "8.15.0", + "8.26.0" + ], + "communication guerrilla": [ + "8.9.0" + ], + "communication guerrillas": [ + "8.9.0" + ], + "communication technology": [ + "8.26.0" + ], + "communications decency act": [ + "8.11.0" + ], + "communications tool": [ + "8.11.0" + ], + "communist": [ + "8.10.4" + ], + "communities reclaiming control": [ + "8.18.2" + ], + "community": [ + "8.22.0", + "8.26.0" + ], + "community /barrio governance": [ + "8.18.2" + ], + "community media": [ + "8.22.0", + "8.26.0" + ], + "community media centered": [ + "8.22.0" + ], + "community media centers": [ + "8.23.0" + ], + "community service": [ + "8.19.0" + ], + "compared": [ + "8.10.6" + ], + "compelexity.": [ + "8.18.5" + ], + "complex": [ + "8.10.9" + ], + "complex individual history": [ + "8.24.0" + ], + "complex linguistic issues": [ + "8.11.0" + ], + "complexes": [ + "8.10.9" + ], + "computer": [ + "8.12.0", + "8.19.0" + ], + "computer fraud": [ + "8.19.0" + ], + "computer logs": [ + "8.19.0" + ], + "computer mediated communications": [ + "8.2.0" + ], + "computer protocols": [ + "8.19.0" + ], + "computer security": [ + "8.19.0" + ], + "computer security center": [ + "8.19.0" + ], + "computer systems": [ + "8.19.0", + "8.19.0" + ], + "computer virus crisis": [ + "8.19.0", + "8.19.0" + ], + "computer virus science": [ + "8.19.0", + "8.19.0" + ], + "computer viruses acquired": [ + "8.19.0", + "8.19.0" + ], + "computer viruses affecting": [ + "8.19.0" + ], + "computer viruses appeared": [ + "8.19.0", + "8.19.0" + ], + "computer viruses gain": [ + "8.19.0", + "8.19.0" + ], + "computer viruses—theory": [ + "8.19.0" + ], + "computers": [ + "8.19.0" + ], + "computers and blindly": [ + "8.16.6" + ], + "concept": [ + "8.24.3" + ], + "concepts underlying lb": [ + "8.9.0" + ], + "conceptual": [ + "8.17.0" + ], + "conceptual art pieces": [ + "8.7.0" + ], + "conceptual forefront": [ + "8.7.0" + ], + "conceptual landscape": [ + "8.17.0" + ], + "conceptualising political emancipation": [ + "8.24.0" + ], + "concerning bubble&burst": [ + "8.18.5" + ], + "concerning trade": [ + "8.18.7" + ], + "conclusions": [ + "8.10.3", + "8.10.6" + ], + "concrete event plans": [ + "8.25.2" + ], + "concrete examples": [ + "8.12.0" + ], + "concurrent defensive psychological": [ + "8.11.0" + ], + "conditioning": [ + "8.18.4" + ], + "conditioning that prevents": [ + "8.18.4" + ], + "confesses political demands": [ + "8.19.0" + ], + "conflict": [ + "8.17.0" + ], + "conflict outside de": [ + "8.17.0" + ], + "confuse bureaucratic efforts": [ + "8.3.0" + ], + "congenitally hankering geeks": [ + "8.16.1" + ], + "connects information": [ + "8.18.5" + ], + "conscious tacticians attempting": [ + "8.11.0" + ], + "consciously net artists": [ + "8.11.0" + ], + "consideration": [ + "8.10.9" + ], + "constitutes actual participation": [ + "8.24.5" + ], + "construct coherent arguments": [ + "8.18.4" + ], + "consumer": [ + "8.16.3" + ], + "consumer electronics": [ + "8.16.3", + "8.16.3" + ], + "consumer electronics goes": [ + "8.16.3" + ], + "consumer electronics revolution": [ + "8.16.3" + ], + "consumption": [ + "8.16.2" + ], + "contact": [ + "8.24.4" + ], + "contain confidential information": [ + "8.24.2" + ], + "contemporary": [ + "8.3.0" + ], + "contemporary cultural economy": [ + "8.20.1" + ], + "contemporary cultural theory": [ + "8.3.0" + ], + "contemporary icon": [ + "8.2.0" + ], + "contemporary political movements": [ + "8.22.0" + ], + "content": [ + "8.4.0", + "8.7.0" + ], + "content producers": [ + "8.6.0" + ], + "contested splitting": [ + "8.11.0" + ], + "contrast": [ + "8.10.6" + ], + "contributing": [ + "8.18.8" + ], + "contributing gregg": [ + "8.18.8" + ], + "contributing gregg bordowitz": [ + "8.18.8", + "8.18.8" + ], + "contributions": [ + "8.18.8", + "8.18.10" + ], + "conundrum": [ + "8.18.6" + ], + "conundrum is arguably": [ + "8.18.6" + ], + "conveniently pushed": [ + "8.18.6" + ], + "conversation": [ + "8.8.1" + ], + "cool johnsons": [ + "8.27.0" + ], + "corbyn": [ + "8.24.5" + ], + "core protocols": [ + "8.19.0" + ], + "corporate": [ + "8.3.0", + "8.16.0", + "8.16.3" + ], + "corporate activists": [ + "8.18.0" + ], + "corporate funding": [ + "8.16.0" + ], + "corporate globalisation appears": [ + "8.18.0" + ], + "corporate management techniques": [ + "8.19.0" + ], + "corporate media": [ + "8.16.2", + "8.16.3", + "8.18.5" + ], + "corporate software": [ + "8.7.0" + ], + "correct david history": [ + "8.16.7" + ], + "corrective feedback stimulates": [ + "8.26.0" + ], + "cost translocal communication": [ + "8.26.0" + ], + "counter information": [ + "8.9.0" + ], + "counter information campaigns": [ + "8.9.0" + ], + "counter media": [ + "8.15.0" + ], + "counter media constitute": [ + "8.15.0" + ], + "counter media seek": [ + "8.15.0" + ], + "counter-cultural": [ + "8.24.2" + ], + "countercultural ideals.’": [ + "8.24.2" + ], + "countless powerpoint presentations": [ + "8.18.0" + ], + "countless street marches": [ + "8.18.0" + ], + "crackdown + kicked": [ + "8.25.0" + ], + "create": [ + "8.25.3" + ], + "create informal networks": [ + "8.7.0" + ], + "create pop modules": [ + "8.9.0" + ], + "create vast fortunes": [ + "8.16.3", + "8.16.4" + ], + "created": [ + "8.10.5" + ], + "created linguistic partisanship": [ + "8.17.0" + ], + "created man": [ + "8.10.5" + ], + "creating": [ + "8.18.4" + ], + "creating counter discourses": [ + "8.8.0" + ], + "creating hype": [ + "8.9.0" + ], + "creating temporary hybrids": [ + "8.7.0" + ], + "creative media": [ + "8.25.3" + ], + "creative media production": [ + "8.25.3" + ], + "cricos provider": [ + "8.24.2" + ], + "cricos provider code": [ + "8.24.2" + ], + "crisis": [ + "8.7.0", + "8.13.0" + ], + "critic": [ + "8.10.3", + "8.10.5" + ], + "critical approaches": [ + "8.2.0" + ], + "critical art": [ + "8.2.0", + "8.2.0", + "8.9.0" + ], + "critical awareness": [ + "8.2.0" + ], + "critical mass": [ + "8.23.0" + ], + "critical new media": [ + "8.18.0" + ], + "critical reality checks": [ + "8.2.0", + "8.13.0" + ], + "critical spirit": [ + "8.18.2" + ], + "critical spirit begins": [ + "8.18.1", + "8.18.2" + ], + "critical thought": [ + "8.18.8" + ], + "criticism": [ + "8.24.4" + ], + "criticizism": [ + "8.10.4", + "8.10.5", + "8.10.7" + ], + "critics voicing scepticism": [ + "8.1.0" + ], + "critique": [ + "8.10.3", + "8.18.8" + ], + "critique and liberation": [ + "8.18.4" + ], + "cross physical space": [ + "8.12.0" + ], + "crucial events": [ + "8.20.1" + ], + "cubicled": [ + "8.25.2" + ], + "cultural": [ + "8.3.0", + "8.20.0", + "8.20.1", + "8.24.0", + "8.24.3", + "8.24.4" + ], + "cultural activists": [ + "8.23.0" + ], + "cultural conferences": [ + "8.3.0" + ], + "cultural gatherings": [ + "8.4.0" + ], + "cultural implications": [ + "8.23.0" + ], + "cultural issues inseparable": [ + "8.20.1" + ], + "cultural life": [ + "8.3.0" + ], + "cultural margins": [ + "8.3.0" + ], + "cultural practice": [ + "8.2.0" + ], + "cultural pranks": [ + "8.24.3" + ], + "cultural sector": [ + "8.18.0" + ], + "cultural studies": [ + "8.24.0" + ], + "cultural theorists": [ + "8.3.0" + ], + "culture": [ + "8.0.0", + "8.3.0", + "8.18.0", + "8.20.1", + "8.24.0", + "8.24.5" + ], + "culture wars": [ + "8.24.0", + "8.24.0" + ], + "cultures": [ + "8.24.5" + ], + "current": [ + "8.4.0" + ], + "current discursive position": [ + "8.19.0" + ], + "current economic system": [ + "8.13.0", + "8.13.0" + ], + "current global crisis": [ + "8.19.0" + ], + "current hosts recognized": [ + "8.4.0" + ], + "current level": [ + "8.4.0" + ], + "current media/art initiatives": [ + "8.8.0" + ], + "current methods": [ + "8.19.0" + ], + "current milieu": [ + "8.19.0" + ], + "current movements worldwide": [ + "8.18.0" + ], + "current rootserver hosts": [ + "8.4.0" + ], + "current rootservers": [ + "8.4.0", + "8.4.0" + ], + "current strategy debates": [ + "8.18.0" + ], + "current version": [ + "8.4.0" + ], + "current version rewritten": [ + "8.10.0" + ], + "current wave": [ + "8.13.0" + ], + "currently emerging forms": [ + "8.18.4" + ], + "cutting edge art": [ + "8.20.1" + ], + "cyber rhetoric deliberate": [ + "8.26.0" + ], + "cybernetic technodystopias +": [ + "8.25.0" + ], + "cyberselfish robber mentality": [ + "8.2.0", + "8.13.0" + ], + "cyberspacial social environment": [ + "8.6.0" + ], + "cynical 2cent bits": [ + "8.25.2" + ], + "czar secret": [ + "8.16.1" + ], + "czar secret police": [ + "8.16.1" + ], + "czechs themselves": [ + "8.10.0" + ], + "damaged common feelings": [ + "8.8.0" + ], + "damages file names": [ + "8.19.0" + ], + "dance": [ + "8.16.3", + "8.16.5" + ], + "dance movement": [ + "8.16.3" + ], + "dance movement inspired": [ + "8.16.3" + ], + "dark": [ + "8.18.11" + ], + "dark fiber": [ + "8.18.11" + ], + "dark fiber female": [ + "8.18.11" + ], + "dark fiber made": [ + "8.18.11" + ], + "data objects": [ + "8.12.0" + ], + "database": [ + "8.4.0" + ], + "david": [ + "8.2.0", + "8.10.8", + "8.16.6", + "8.16.7", + "8.18.8", + "8.20.1" + ], + "david appeal": [ + "8.16.7" + ], + "david garcia": [ + "8.1.0", + "8.10.0", + "8.11.0", + "8.16.6", + "8.16.7", + "8.18.8", + "8.20.1" + ], + "david garcia admits": [ + "8.10.0" + ], + "david garcia refers": [ + "8.20.1" + ], + "david garcia speak": [ + "8.10.1", + "8.10.1" + ], + "david garcia wrote": [ + "8.16.6", + "8.16.6" + ], + "david goldschmidt": [ + "8.10.8" + ], + "david half-centenial birthday": [ + "8.2.0" + ], + "david harvey": [ + "8.20.1" + ], + "david history": [ + "8.16.7" + ], + "david history lesson": [ + "8.16.7" + ], + "day": [ + "8.10.6" + ], + "day in anticipation": [ + "8.16.6" + ], + "day life": [ + "8.0.0" + ], + "days": [ + "8.6.0" + ], + "days program": [ + "8.6.0" + ], + "de certeau": [ + "8.10.0", + "8.11.0", + "8.17.0", + "8.23.0" + ], + "de certeau claims": [ + "8.11.0" + ], + "de certeau drew": [ + "8.23.0" + ], + "de certeau essentialises": [ + "8.11.0" + ], + "de certeau spectulates": [ + "8.11.0" + ], + "de certeaus politicizing": [ + "8.17.0" + ], + "deadpan tone conveys": [ + "8.12.0" + ], + "deal withbuilding simulacra": [ + "8.9.0" + ], + "dear": [ + "8.10.6", + "8.21.0" + ], + "dear michael": [ + "8.10.6" + ], + "dear nettimers": [ + "8.21.0" + ], + "debacle": [ + "8.25.5" + ], + "debacle of linksunten": [ + "8.25.5" + ], + "debate": [ + "8.10.8", + "8.18.8" + ], + "decade ago stands": [ + "8.23.0" + ], + "decade necessarily cast": [ + "8.3.0" + ], + "december gregg bordowitz": [ + "8.18.7", + "8.18.7" + ], + "december tml": [ + "8.18.7" + ], + "decent public transport": [ + "8.18.0" + ], + "decentralise information production": [ + "8.23.0" + ], + "decentralised activist network": [ + "8.23.0" + ], + "decentralised historical growth": [ + "8.11.0" + ], + "decentralized organizational structure": [ + "8.10.0" + ], + "decentralized registry model": [ + "8.4.0" + ], + "declare": [ + "8.18.5" + ], + "deep blue background": [ + "8.12.0" + ], + "deep dish tv": [ + "8.22.0" + ], + "deep dishtv": [ + "8.22.0" + ], + "deeply conflicted": [ + "8.18.6" + ], + "def": [ + "8.1.0" + ], + "def of tactical": [ + "8.1.0" + ], + "defeat": [ + "8.16.0" + ], + "defeat by corporate": [ + "8.16.0" + ], + "defend media freedom": [ + "8.7.0" + ], + "defense robert mcnamara": [ + "8.19.0" + ], + "defined tactical media": [ + "8.22.0" + ], + "degenerate art": [ + "8.16.7" + ], + "degree justifiably critiqued": [ + "8.2.0" + ], + "deleuze": [ + "8.8.0" + ], + "deleuzian method suggested": [ + "8.9.0" + ], + "deliberately": [ + "8.16.0" + ], + "deliberately targeted": [ + "8.16.0" + ], + "delusion": [ + "8.10.3", + "8.16.5" + ], + "delusion of identity": [ + "8.16.5" + ], + "demand immediate care": [ + "8.18.7" + ], + "demo design": [ + "8.18.7" + ], + "democracy": [ + "8.10.7" + ], + "democrat": [ + "8.10.4", + "8.10.7", + "8.10.8" + ], + "democratic access": [ + "8.19.0" + ], + "democratic knowledge": [ + "8.10.1" + ], + "democratic media structure": [ + "8.7.0" + ], + "democratised xerox publicity": [ + "8.6.0" + ], + "demonize subversive forces": [ + "8.9.0" + ], + "depart local geography": [ + "8.12.0" + ], + "desastrous legislations etc": [ + "8.2.0", + "8.13.0" + ], + "describe": [ + "8.24.3" + ], + "describe a lot": [ + "8.24.3" + ], + "design": [ + "8.6.0" + ], + "design systems": [ + "8.19.0" + ], + "designate preceding experiments": [ + "8.11.0" + ], + "designed to sell": [ + "8.16.2", + "8.16.3" + ], + "desire": [ + "8.12.0" + ], + "despite theoretical deliberations": [ + "8.18.0" + ], + "destroy data precisely": [ + "8.19.0" + ], + "determining future formats": [ + "8.7.0" + ], + "developed": [ + "8.16.3", + "8.16.4" + ], + "developed by karl": [ + "8.16.4" + ], + "developed world": [ + "8.16.3" + ], + "developing world": [ + "8.10.8", + "8.10.8" + ], + "developments": [ + "8.18.5" + ], + "device": [ + "8.5.1" + ], + "device or trick": [ + "8.5.1" + ], + "diagram—bilateral symmetry": [ + "8.19.0" + ], + "dialectic free zone": [ + "8.1.0" + ], + "dialectical move whereby": [ + "8.1.0" + ], + "dialogue": [ + "8.8.1" + ], + "dialogue grew": [ + "8.8.0" + ], + "dichotomy allowed": [ + "8.0.0" + ], + "dichotomy succinctly": [ + "8.20.1" + ], + "difference": [ + "8.3.0" + ], + "difference discursive diagram": [ + "8.19.0" + ], + "differences amongst ourselves": [ + "8.10.1" + ], + "differentiate themselves locally": [ + "8.23.0" + ], + "digital": [ + "8.6.0", + "8.7.0", + "8.12.0", + "8.13.0", + "8.18.0", + "8.23.0", + "8.24.5" + ], + "digital age": [ + "8.23.0" + ], + "digital art/activism stemming": [ + "8.23.0" + ], + "digital city": [ + "8.26.0" + ], + "digital city amsterdam": [ + "8.26.0" + ], + "digital cultural resistance": [ + "8.23.0" + ], + "digital cultural resistance”": [ + "8.23.0" + ], + "digital cultures": [ + "8.24.5" + ], + "digital cultures program": [ + "8.2.0" + ], + "digital entertainment network": [ + "8.26.0" + ], + "digital malleability exerted": [ + "8.12.0" + ], + "digital manifesto": [ + "8.6.0", + "8.6.0" + ], + "digital manifesto functions": [ + "8.6.0", + "8.6.0" + ], + "digital manifesto performs": [ + "8.6.0", + "8.6.0" + ], + "digital mapping systems": [ + "8.3.0" + ], + "digital material online": [ + "8.23.0" + ], + "digital media": [ + "8.2.0", + "8.6.0", + "8.23.0", + "8.26.0" + ], + "digital networks": [ + "8.26.0" + ], + "digital objects uncopyable": [ + "8.13.0" + ], + "digital public sphere": [ + "8.8.0" + ], + "digital resistance": [ + "8.23.0" + ], + "digital underground": [ + "8.23.0" + ], + "diminishing freedoms": [ + "8.20.0" + ], + "direct action": [ + "8.20.1", + "8.20.1" + ], + "direct experience": [ + "8.18.3" + ], + "direct mail lists": [ + "8.19.0" + ], + "direct personal": [ + "8.8.1" + ], + "direct response": [ + "8.19.0" + ], + "directed social": [ + "8.8.1" + ], + "directional global counterpart": [ + "8.15.0" + ], + "directly related": [ + "8.11.0" + ], + "dirty micropayment system": [ + "8.13.0" + ], + "disciplinary society": [ + "8.12.0" + ], + "discourse seen": [ + "8.3.0" + ], + "discourses": [ + "8.3.0" + ], + "discursive pairing": [ + "8.19.0" + ], + "discuss": [ + "8.25.2" + ], + "discuss the indymedia": [ + "8.25.2" + ], + "dismiss postcolonial discourse": [ + "8.3.0" + ], + "dispassionate": [ + "8.10.6" + ], + "dispassionate anthem": [ + "8.10.6" + ], + "disseminating critical information": [ + "8.10.1" + ], + "dissent": [ + "8.16.3", + "8.16.4" + ], + "dissertation": [ + "8.21.1" + ], + "dissertation about tactical": [ + "8.21.1" + ], + "dissertation miguel": [ + "8.21.1" + ], + "dissolving disciplinary boundaries": [ + "8.20.0" + ], + "distinct concept": [ + "8.22.0" + ], + "distinction": [ + "8.10.0" + ], + "distinctive aesthetic": [ + "8.1.0" + ], + "distinctive approach": [ + "8.22.0" + ], + "distinctive cultural communities": [ + "8.1.0" + ], + "distinctive tactical ethic": [ + "8.0.0" + ], + "distinctly negative characterization": [ + "8.19.0" + ], + "distinguishes intimate": [ + "8.26.0" + ], + "distribute rich media": [ + "8.22.0" + ], + "distributed": [ + "8.8.1", + "8.24.4" + ], + "distributed communications networks": [ + "8.19.0" + ], + "distributed computing system": [ + "8.19.0" + ], + "distributed inertia": [ + "8.8.1" + ], + "distribution connects directly": [ + "8.23.0" + ], + "distributive capacity tells": [ + "8.11.0" + ], + "disturbance theater": [ + "8.8.0", + "8.9.0" + ], + "diverse knitting dark": [ + "8.18.11" + ], + "diverse practices forms": [ + "8.10.0" + ], + "divided previous generations": [ + "8.20.0" + ], + "divorced radical theory": [ + "8.16.3" + ], + "diy distro merchants": [ + "8.25.5" + ], + "diy ethos": [ + "8.21.1" + ], + "diy media": [ + "8.2.0", + "8.20.0", + "8.20.0" + ], + "dns": [ + "8.4.0" + ], + "document type": [ + "8.6.0" + ], + "document type description": [ + "8.6.0" + ], + "documenta": [ + "8.6.0" + ], + "documenta halle": [ + "8.6.0" + ], + "domain": [ + "8.4.0" + ], + "domain name": [ + "8.23.0" + ], + "domain name system": [ + "8.11.0", + "8.23.0" + ], + "domain=territory=domination": [ + "8.4.0" + ], + "dominant alternative formula": [ + "8.7.0" + ], + "dominant simulacral economy": [ + "8.12.0" + ], + "dominant software": [ + "8.7.0" + ], + "doomed native": [ + "8.16.3" + ], + "doomed paiute indian": [ + "8.16.3", + "8.16.3" + ], + "dormant": [ + "8.25.3" + ], + "dot2dot baker picks": [ + "8.12.0" + ], + "downtown seattle": [ + "8.23.0" + ], + "draft chapter below": [ + "8.19.0" + ], + "drum": [ + "8.10.5" + ], + "drum up people": [ + "8.10.5" + ], + "duke university": [ + "8.16.1" + ], + "dummy trap": [ + "8.11.0" + ], + "dummy trap page": [ + "8.11.0" + ], + "dummy trap pages": [ + "8.11.0" + ], + "dutch": [ + "8.25.1", + "8.25.2" + ], + "dutch foundation initiated": [ + "8.20.0" + ], + "dutch media": [ + "8.22.0" + ], + "dutch media activists": [ + "8.22.0" + ], + "dutch media activists/theorists": [ + "8.22.0" + ], + "dutch medical practitioners": [ + "8.20.0" + ], + "dynamic dns updater": [ + "8.4.0" + ], + "dynamic ip addresses": [ + "8.4.0" + ], + "dynamic update system": [ + "8.4.0" + ], + "dynamically updated enhancement": [ + "8.4.0" + ], + "earlier art movements": [ + "8.23.0" + ], + "earlier avant": [ + "8.23.0" + ], + "earlier tactical media": [ + "8.2.0", + "8.2.0" + ], + "earlier version": [ + "8.10.0" + ], + "earthling and dealing": [ + "8.18.11" + ], + "easily circumvent central": [ + "8.6.0" + ], + "east timor crisis": [ + "8.2.0" + ], + "eastern european media": [ + "8.1.0" + ], + "easy": [ + "8.10.6" + ], + "eating ice cream": [ + "8.16.3" + ], + "economic system": [ + "8.13.0", + "8.13.0" + ], + "economics": [ + "8.10.7" + ], + "economy": [ + "8.13.0", + "8.14.0", + "8.18.1" + ], + "economy ultimately reduces": [ + "8.15.0" + ], + "edgy": [ + "8.24.2" + ], + "editor": [ + "8.10.7" + ], + "editor of znet": [ + "8.10.7" + ], + "editorial mailing list": [ + "8.10.0" + ], + "edmonton journal called": [ + "8.19.0" + ], + "edt": [ + "8.8.0", + "8.9.0" + ], + "education": [ + "8.18.4" + ], + "effective": [ + "8.24.5" + ], + "effective operation alt": [ + "8.24.5" + ], + "effective operation alt.right": [ + "8.24.5" + ], + "effective political": [ + "8.24.5", + "8.24.5" + ], + "effective political operation": [ + "8.24.5", + "8.24.5" + ], + "effective political resistance": [ + "8.16.1" + ], + "effective resistance don": [ + "8.18.8" + ], + "efficiently": [ + "8.25.2" + ], + "efficiently cubicled": [ + "8.25.2" + ], + "efforts": [ + "8.16.0" + ], + "elaborate social game": [ + "8.13.0" + ], + "elbowed political": [ + "8.16.1" + ], + "ele": [ + "8.27.0" + ], + "ele carpenter": [ + "8.27.0" + ], + "electronic": [ + "8.8.0" + ], + "electronic activism": [ + "8.8.0" + ], + "electronic civil disobedience": [ + "8.8.0" + ], + "electronic disturbance": [ + "8.9.0" + ], + "electronic disturbance theater": [ + "8.8.0", + "8.8.0", + "8.9.0", + "8.9.0", + "8.19.0" + ], + "electronic media": [ + "8.8.0" + ], + "electronics": [ + "8.16.3" + ], + "electronics manufacturers": [ + "8.16.3" + ], + "elementary psychology suggests": [ + "8.13.0" + ], + "elite vanguard art": [ + "8.20.1" + ], + "elloi": [ + "8.10.7" + ], + "elloi wrote": [ + "8.10.7" + ], + "eloquent arguement": [ + "8.10.3" + ], + "else // player": [ + "8.12.0" + ], + "email dialogue": [ + "8.8.0" + ], + "emanating": [ + "8.24.3" + ], + "embedding class opposition": [ + "8.17.0" + ], + "embryonic hacker culture": [ + "8.16.4" + ], + "emergent information": [ + "8.18.3" + ], + "emergent information environment": [ + "8.18.3", + "8.18.3" + ], + "emergent social space": [ + "8.12.0" + ], + "emerging dispute": [ + "8.20.1" + ], + "emphasize cultural": [ + "8.4.0" + ], + "emphatically global scale": [ + "8.11.0" + ], + "empire": [ + "8.18.4" + ], + "empire are passive": [ + "8.18.6" + ], + "emptiness' sovereign media": [ + "8.26.0" + ], + "enable differing experiences": [ + "8.3.0" + ], + "end": [ + "8.16.2" + ], + "endless circular procedurialism": [ + "8.24.0" + ], + "endless proff": [ + "8.10.5" + ], + "enemy": [ + "8.10.0" + ], + "energy": [ + "8.8.1" + ], + "energy sector": [ + "8.18.0" + ], + "english colonialists": [ + "8.14.0" + ], + "english version": [ + "8.21.0" + ], + "enjoyment": [ + "8.24.0" + ], + "enormous effects": [ + "8.8.1" + ], + "enter the fray": [ + "8.18.11" + ], + "entire society resists": [ + "8.11.0" + ], + "entire venture capital": [ + "8.18.0" + ], + "environment": [ + "8.26.0" + ], + "environment characterized": [ + "8.22.0" + ], + "equally": [ + "8.18.10" + ], + "equally powerful alt": [ + "8.24.5" + ], + "erkenne die lage": [ + "8.7.0", + "8.7.0" + ], + "ernie": [ + "8.16.0" + ], + "erratic british": [ + "8.11.0" + ], + "erratic british jounal": [ + "8.11.0" + ], + "especially german ones": [ + "8.16.7" + ], + "essential context": [ + "8.17.0" + ], + "established contemporary art": [ + "8.2.0" + ], + "established political formations": [ + "8.20.0" + ], + "establishing media practices": [ + "8.22.0" + ], + "establishment counter culture": [ + "8.9.0" + ], + "etc takes": [ + "8.18.2" + ], + "eternally deferred realisation": [ + "8.12.0" + ], + "ethnologist marcel mauss": [ + "8.11.0" + ], + "ethnologist mauss": [ + "8.11.0" + ], + "etoy": [ + "8.11.0" + ], + "etoy advertise themselves": [ + "8.10.0" + ], + "europe": [ + "8.1.0", + "8.3.0" + ], + "european": [ + "8.1.0" + ], + "european colleges": [ + "8.2.0" + ], + "european doctorate sited": [ + "8.2.0" + ], + "european media": [ + "8.1.0" + ], + "european media tacticians": [ + "8.1.0" + ], + "event": [ + "8.10.1", + "8.25.16" + ], + "event in houston": [ + "8.25.16" + ], + "events": [ + "8.10.1" + ], + "events ezra pound": [ + "8.18.0" + ], + "everyday": [ + "8.11.0", + "8.18.1" + ], + "everyday life": [ + "8.11.0" + ], + "everyday life accounts": [ + "8.24.5" + ], + "everyday life online": [ + "8.11.0" + ], + "everyday practice": [ + "8.11.0" + ], + "evidence": [ + "8.10.3" + ], + "evil corporate media": [ + "8.18.5" + ], + "evolving threat paradigm": [ + "8.19.0" + ], + "exactly starry eyed": [ + "8.1.0" + ], + "example computer viruses": [ + "8.19.0" + ], + "example la perruque": [ + "8.11.0" + ], + "excerpt from part": [ + "8.25.0" + ], + "exchange concepts": [ + "8.2.0" + ], + "exchange ideas": [ + "8.26.0" + ], + "excluded namely action": [ + "8.2.0" + ], + "excuse": [ + "8.13.0" + ], + "excuse my poor": [ + "8.13.0" + ], + "exemplar": [ + "8.16.6" + ], + "exemplar of freedom": [ + "8.16.6" + ], + "exhibit net art": [ + "8.18.0" + ], + "existed deep": [ + "8.22.0" + ], + "existence": [ + "8.18.5" + ], + "existing active software": [ + "8.23.0" + ], + "existing critical approaches": [ + "8.10.1" + ], + "existing laws": [ + "8.11.0" + ], + "existing media landscape": [ + "8.15.0", + "8.26.0" + ], + "existing textuals material": [ + "8.6.0" + ], + "exists outside discourse": [ + "8.11.0" + ], + "expanded forms": [ + "8.0.0" + ], + "expanded political language": [ + "8.20.0" + ], + "expanding web environment": [ + "8.23.0" + ], + "experience": [ + "8.10.1", + "8.10.2", + "8.11.0", + "8.18.3" + ], + "experience of commodification": [ + "8.18.3" + ], + "expert": [ + "8.18.4" + ], + "expressing": [ + "8.18.10" + ], + "external display": [ + "8.12.0" + ], + "extraordinary rhetorical flourish": [ + "8.24.0" + ], + "extremely complicated discussion": [ + "8.25.0" + ], + "extremely fast pace": [ + "8.22.0" + ], + "extremely online": [ + "8.24.0", + "8.24.0" + ], + "extremely online politics": [ + "8.24.0" + ], + "exupery": [ + "8.10.5" + ], + "eye": [ + "8.18.6" + ], + "eyes open": [ + "8.18.9" + ], + "facilitate networked applications": [ + "8.19.0" + ], + "fact": [ + "8.13.0" + ], + "fad": [ + "8.16.2" + ], + "fad products": [ + "8.16.2" + ], + "failed liberal mp": [ + "8.18.10" + ], + "failed soviet occupation": [ + "8.19.0" + ], + "failure": [ + "8.16.2" + ], + "fairly successful eroding": [ + "8.24.3" + ], + "fake gwbush page": [ + "8.10.0", + "8.15.0" + ], + "fall real nice": [ + "8.18.9" + ], + "false media shell": [ + "8.10.0" + ], + "false rumours inside": [ + "8.9.0" + ], + "famous radio theory": [ + "8.26.0" + ], + "fantastic programming possibilities": [ + "8.19.0" + ], + "fascist electoral reaction": [ + "8.21.1" + ], + "fascists": [ + "8.10.4", + "8.24.2" + ], + "fascists politically responsible": [ + "8.24.0" + ], + "fatal black hole": [ + "8.5.0" + ], + "fatal media trap": [ + "8.1.0" + ], + "fated passenger ship": [ + "8.19.0" + ], + "favourite topic remains": [ + "8.1.0" + ], + "fax from autonomedia": [ + "8.5.0" + ], + "fbi": [ + "8.10.4" + ], + "feel": [ + "8.20.1" + ], + "feel compelled": [ + "8.18.11" + ], + "felix stalder": [ + "8.24.5" + ], + "felix stalder wrote": [ + "8.24.5" + ], + "felix stalder wrote.": [ + "8.24.5" + ], + "festival": [ + "8.24.3" + ], + "festival circuits": [ + "8.24.3" + ], + "festival circuits emanating": [ + "8.24.3" + ], + "fiber": [ + "8.18.11" + ], + "fiber female": [ + "8.18.11" + ], + "fighting sexual liberation": [ + "8.24.0" + ], + "film": [ + "8.10.2" + ], + "filtering": [ + "8.24.4" + ], + "filtering and cultural": [ + "8.24.4" + ], + "filth": [ + "8.5.0" + ], + "final colonization": [ + "8.16.5" + ], + "final products": [ + "8.6.0" + ], + "finally culminated": [ + "8.16.7" + ], + "finally destroyed alamut": [ + "8.5.0" + ], + "finance": [ + "8.18.9" + ], + "finance capital": [ + "8.18.9" + ], + "finance media projects": [ + "8.7.0" + ], + "financially driven globalization": [ + "8.20.1" + ], + "find it hard": [ + "8.10.6" + ], + "finger": [ + "8.18.5" + ], + "finished": [ + "8.21.0", + "8.21.1" + ], + "five star survival": [ + "8.15.0" + ], + "fixed class divisions": [ + "8.14.0" + ], + "flexible media tacticians": [ + "8.0.0" + ], + "flexible response": [ + "8.0.0" + ], + "flood": [ + "8.25.2" + ], + "flood of efficiently": [ + "8.25.2" + ], + "floodnet": [ + "8.8.0" + ], + "floodnet actions": [ + "8.8.0" + ], + "florian": [ + "8.18.4" + ], + "florian argument": [ + "8.18.4" + ], + "florian argument breaks": [ + "8.18.4" + ], + "florian including": [ + "8.18.7" + ], + "florian schneider": [ + "8.13.0", + "8.18.0", + "8.18.7" + ], + "fog concealing exactly": [ + "8.10.2" + ], + "fold": [ + "8.5.1" + ], + "fold kinda": [ + "8.18.11" + ], + "fold kinda deleuzian": [ + "8.18.11" + ], + "folds": [ + "8.5.1" + ], + "folks": [ + "8.13.0", + "8.25.1", + "8.25.2" + ], + "follow": [ + "8.25.5" + ], + "follow and catch-up": [ + "8.25.5" + ], + "following dialogue grew": [ + "8.8.0" + ], + "forever": [ + "8.10.3" + ], + "forget daniel ellsberg": [ + "8.3.0" + ], + "forging social relations": [ + "8.15.0" + ], + "form": [ + "8.0.0", + "8.6.0", + "8.10.0", + "8.14.0", + "8.15.0" + ], + "form close links": [ + "8.18.9" + ], + "form in posting": [ + "8.13.0" + ], + "form of money": [ + "8.14.0" + ], + "formal party structures": [ + "8.24.5" + ], + "formed communications system": [ + "8.8.1" + ], + "former chief economist": [ + "8.10.8" + ], + "former communist countries": [ + "8.1.0" + ], + "formerly disregarded zone": [ + "8.11.0" + ], + "formidably performative display": [ + "8.12.0" + ], + "forms": [ + "8.16.3", + "8.17.0" + ], + "forwarded": [ + "8.16.0" + ], + "forwarded message": [ + "8.16.0" + ], + "forwarded message follows": [ + "8.16.0" + ], + "forwards": [ + "8.5.1" + ], + "found key questions": [ + "8.2.0" + ], + "foundation": [ + "8.4.0" + ], + "founded nettime seven": [ + "8.18.4" + ], + "fourth century bce": [ + "8.16.7" + ], + "freaks": [ + "8.10.4", + "8.10.7", + "8.10.8" + ], + "freaks to offer": [ + "8.10.4", + "8.10.7" + ], + "frederick cohen": [ + "8.19.0" + ], + "frederick cohen reports": [ + "8.19.0" + ], + "frederick cohen writes": [ + "8.19.0" + ], + "fredric jameson doesn": [ + "8.16.7" + ], + "free": [ + "8.4.0", + "8.14.0", + "8.25.3" + ], + "free art": [ + "8.4.0", + "8.4.0" + ], + "free content": [ + "8.4.0", + "8.4.0", + "8.6.0" + ], + "free content falling": [ + "8.25.5" + ], + "free media": [ + "8.4.0" + ], + "free media free": [ + "8.4.0", + "8.4.0" + ], + "free philosophy": [ + "8.25.3" + ], + "free radio movements": [ + "8.2.0" + ], + "free software movement": [ + "8.19.0" + ], + "free technologies": [ + "8.25.3" + ], + "free trade": [ + "8.22.0" + ], + "freedom": [ + "8.16.6", + "8.20.0" + ], + "freedom and imagination": [ + "8.16.6" + ], + "frequently outright hostility": [ + "8.20.0" + ], + "friction free": [ + "8.1.0" + ], + "friday": [ + "8.10.7" + ], + "friend friedrich nietzsche": [ + "8.16.7" + ], + "front nor punished": [ + "8.5.1" + ], + "frustrated libidinal circuit": [ + "8.12.0" + ], + "fucking": [ + "8.18.5" + ], + "full of multitude": [ + "8.18.11" + ], + "full of shit": [ + "8.10.3" + ], + "functioning leadership structure": [ + "8.21.1" + ], + "functioning system": [ + "8.13.0" + ], + "fundamental anthropological principle": [ + "8.26.0" + ], + "fundamental differences": [ + "8.27.0" + ], + "fundamentally problematic domain": [ + "8.10.1" + ], + "funded organizations active": [ + "8.22.0" + ], + "funding": [ + "8.16.0" + ], + "fungible productive resources": [ + "8.18.3", + "8.18.3" + ], + "fusco december": [ + "8.3.0" + ], + "future": [ + "8.4.0", + "8.18.5" + ], + "félix guattari": [ + "8.16.3" + ], + "gabriel": [ + "8.18.5" + ], + "gabriel pickard": [ + "8.18.5" + ], + "gabriella coleman": [ + "8.24.0" + ], + "gaining public opinion": [ + "8.10.0" + ], + "galactic hackers party": [ + "8.8.0" + ], + "gaps": [ + "8.5.0" + ], + "garbage system ruled": [ + "8.26.0" + ], + "garcia": [ + "8.16.6", + "8.16.7", + "8.18.8", + "8.20.1" + ], + "garcia and geert": [ + "8.1.0" + ], + "garcia refers": [ + "8.20.1" + ], + "garcia refers directly": [ + "8.20.1" + ], + "garcia wrote": [ + "8.16.6" + ], + "garde art movements": [ + "8.23.0" + ], + "garde art practices": [ + "8.23.0" + ], + "garde impulses": [ + "8.23.0" + ], + "garde or modern": [ + "8.16.7" + ], + "garishly coloured field": [ + "8.12.0" + ], + "gathered world press": [ + "8.18.0" + ], + "gathering": [ + "8.18.6" + ], + "gathering idea": [ + "8.18.6" + ], + "gay": [ + "8.18.9" + ], + "gay activism": [ + "8.18.9" + ], + "gay activism put": [ + "8.18.9" + ], + "geared towards": [ + "8.22.0" + ], + "geek ghetto": [ + "8.18.0" + ], + "geert": [ + "8.2.0", + "8.8.1", + "8.18.4" + ], + "geert and alex": [ + "8.8.1" + ], + "geert and florian": [ + "8.18.4", + "8.18.10" + ], + "geert lovink": [ + "8.1.0", + "8.7.0", + "8.8.0", + "8.15.0", + "8.18.0", + "8.18.7" + ], + "geert lovink alex": [ + "8.8.0" + ], + "geert lovink declare": [ + "8.18.7", + "8.18.7" + ], + "geert lovink identify": [ + "8.11.0" + ], + "geert lovink presentation": [ + "8.7.0" + ], + "geert lovink tactical": [ + "8.0.0" + ], + "general idea": [ + "8.18.6" + ], + "generate valuable responses": [ + "8.10.1" + ], + "genetically modified crops": [ + "8.18.2" + ], + "geographically situated community": [ + "8.26.0" + ], + "gerard de zeeuw": [ + "8.2.0" + ], + "german romantic aestheticism": [ + "8.16.7" + ], + "german student party": [ + "8.16.4" + ], + "german tactical media": [ + "8.8.0" + ], + "germany": [ + "8.16.4" + ], + "getting increasingly isolated": [ + "8.18.0" + ], + "getting stuck": [ + "8.18.0" + ], + "ghost": [ + "8.16.3" + ], + "ghost dance": [ + "8.16.3" + ], + "ghost dance movement": [ + "8.16.3" + ], + "ghost dance prophets": [ + "8.16.3" + ], + "ghost world": [ + "8.16.3" + ], + "ghost-dance": [ + "8.16.5" + ], + "ghosts": [ + "8.16.5" + ], + "gift": [ + "8.14.0" + ], + "gift economy": [ + "8.14.0" + ], + "gifts": [ + "8.14.0" + ], + "give": [ + "8.16.6" + ], + "glamorous": [ + "8.10.9" + ], + "glamour": [ + "8.10.9" + ], + "glaring white supremacy": [ + "8.24.0" + ], + "glaser": [ + "8.25.0" + ], + "glaser writes": [ + "8.25.0" + ], + "global": [ + "8.1.0", + "8.3.0", + "8.7.0", + "8.18.0", + "8.18.2", + "8.20.0" + ], + "global action": [ + "8.18.2" + ], + "global action network": [ + "8.18.2" + ], + "global aids": [ + "8.18.7", + "8.18.7" + ], + "global aids crisis": [ + "8.18.7", + "8.18.7" + ], + "global art": [ + "8.3.0" + ], + "global art exhibitions": [ + "8.3.0", + "8.3.0" + ], + "global awareness": [ + "8.18.0" + ], + "global campaign": [ + "8.20.0" + ], + "global capital": [ + "8.6.0", + "8.10.0" + ], + "global civil society": [ + "8.22.0" + ], + "global corporate capitalism": [ + "8.7.0" + ], + "global economic systems": [ + "8.3.0" + ], + "global exchange organization": [ + "8.16.3" + ], + "global indymedia network": [ + "8.10.0" + ], + "global information networks": [ + "8.6.0" + ], + "global information society": [ + "8.14.0" + ], + "global labour": [ + "8.7.0" + ], + "global mail art": [ + "8.3.0" + ], + "global market economy": [ + "8.11.0" + ], + "global media service": [ + "8.23.0" + ], + "global micro jam": [ + "8.26.0" + ], + "global network": [ + "8.23.0" + ], + "global north feel": [ + "8.3.0" + ], + "global phenomenon based": [ + "8.23.0" + ], + "global policy": [ + "8.22.0" + ], + "global proportions coupled": [ + "8.20.0" + ], + "global revolution retracts": [ + "8.11.0" + ], + "global south": [ + "8.18.2", + "8.18.2" + ], + "global strategic theater": [ + "8.17.0" + ], + "global systems": [ + "8.3.0" + ], + "globalization": [ + "8.18.8" + ], + "globalization freaks including": [ + "8.10.8" + ], + "globally inclusive worldview": [ + "8.3.0" + ], + "glorified carnival chickens": [ + "8.16.6" + ], + "glorify": [ + "8.16.2" + ], + "glorify permanent marginalization": [ + "8.16.1", + "8.16.2" + ], + "god": [ + "8.10.4" + ], + "god work": [ + "8.10.4" + ], + "godard": [ + "8.10.2", + "8.10.6" + ], + "godard film": [ + "8.10.2" + ], + "goldschmidt": [ + "8.10.8" + ], + "good": [ + "8.13.0" + ], + "good short": [ + "8.25.0" + ], + "good short history": [ + "8.25.0" + ], + "good to hear": [ + "8.25.2" + ], + "gottfried benn": [ + "8.7.0" + ], + "govern": [ + "8.10.4", + "8.10.7" + ], + "government agendas enable": [ + "8.27.0" + ], + "graduate student": [ + "8.19.0" + ], + "grandiose terms": [ + "8.18.6" + ], + "grandparents ruling class": [ + "8.18.1" + ], + "grassroots campaigns": [ + "8.22.0" + ], + "grassroots initiatives adapt": [ + "8.21.0" + ], + "grassroots political movements": [ + "8.22.0" + ], + "grazilia": [ + "8.20.0" + ], + "grazilia kunsch": [ + "8.20.0" + ], + "great": [ + "8.18.10" + ], + "great black music": [ + "8.5.1" + ], + "great for real": [ + "8.27.0" + ], + "great refusal": [ + "8.16.2" + ], + "great transformation": [ + "8.18.10" + ], + "greatest": [ + "8.10.4", + "8.10.5" + ], + "greatest champion": [ + "8.10.4", + "8.10.5", + "8.10.7", + "8.10.8" + ], + "greatist": [ + "8.10.5" + ], + "greatist critic": [ + "8.10.5" + ], + "greek": [ + "8.18.6" + ], + "greek root": [ + "8.5.1", + "8.18.6" + ], + "gregg": [ + "8.18.8" + ], + "gregg bordowitz": [ + "8.18.7", + "8.18.7", + "8.18.8" + ], + "gregg bordowitz insightful": [ + "8.18.8" + ], + "grounded in actual": [ + "8.18.7" + ], + "group": [ + "8.10.2" + ], + "group of ljubljana": [ + "8.10.2" + ], + "groups": [ + "8.1.0" + ], + "growing": [ + "8.18.5" + ], + "growing activist movements": [ + "8.18.7" + ], + "growing awareness": [ + "8.18.0" + ], + "guerilla information war": [ + "8.10.0" + ], + "guerilla marketing tool": [ + "8.19.0" + ], + "guerrilla communication": [ + "8.9.0" + ], + "guerrilla communication doesn": [ + "8.9.0" + ], + "guru jakob nielsen": [ + "8.18.0" + ], + "guy crowding": [ + "8.20.1" + ], + "guys sit": [ + "8.16.6" + ], + "hacked tv": [ + "8.26.0" + ], + "hacker": [ + "8.16.6" + ], + "hacker collective anonymous": [ + "8.24.0" + ], + "hackers": [ + "8.8.0" + ], + "hahnel": [ + "8.10.9" + ], + "hahnel replies": [ + "8.10.9" + ], + "halle in kassel": [ + "8.6.0" + ], + "hans haacke": [ + "8.11.0" + ], + "hans haacke artwork": [ + "8.11.0" + ], + "happened": [ + "8.16.0" + ], + "happening": [ + "8.25.16" + ], + "happening in berlin": [ + "8.25.16" + ], + "happy": [ + "8.25.1", + "8.25.2" + ], + "happy to hear": [ + "8.25.2" + ], + "hard fought battle": [ + "8.13.0" + ], + "hard time taking": [ + "8.26.0" + ], + "hard to reply": [ + "8.10.6" + ], + "hardt": [ + "8.18.4" + ], + "hardt and negri": [ + "8.18.4" + ], + "harrow ha1 3tp": [ + "8.14.0" + ], + "hartmut winkler attributes": [ + "8.11.0" + ], + "harvard university": [ + "8.16.1" + ], + "harvard university press": [ + "8.16.1", + "8.16.1" + ], + "harvey": [ + "8.20.1" + ], + "harvey strong analysis": [ + "8.20.1" + ], + "havent": [ + "8.25.5" + ], + "hear": [ + "8.25.2" + ], + "heavily frequented site": [ + "8.11.0" + ], + "heavy full": [ + "8.18.11" + ], + "heeled adolescent confusion": [ + "8.16.3", + "8.16.4" + ], + "help change society": [ + "8.20.1" + ], + "helped launch indymedia": [ + "8.23.0" + ], + "helsinki timo honkela": [ + "8.2.0" + ], + "herbert schiller school": [ + "8.10.1" + ], + "herndon secured low": [ + "8.23.0" + ], + "heterogenous committees gathering": [ + "8.18.0" + ], + "highly beneficial": [ + "8.26.0" + ], + "highly cultured intellectual": [ + "8.10.1" + ], + "highly efficient form": [ + "8.6.0" + ], + "highly engaged": [ + "8.24.5" + ], + "highly mediatised practice": [ + "8.1.0" + ], + "highly specific critique": [ + "8.10.8" + ], + "highly specific sub": [ + "8.26.0" + ], + "highly successful": [ + "8.26.0" + ], + "hilfe": [ + "8.25.5" + ], + "historical analytic": [ + "8.18.3" + ], + "historical analytic specificity": [ + "8.18.3" + ], + "historical bases": [ + "8.3.0" + ], + "historical development": [ + "8.3.0" + ], + "historical moment tactics": [ + "8.10.0" + ], + "history": [ + "8.3.0", + "8.10.6", + "8.16.7", + "8.25.0" + ], + "hitler": [ + "8.16.7" + ], + "hiv/aids media activism": [ + "8.18.7" + ], + "hiya": [ + "8.14.0" + ], + "hmm": [ + "8.25.2" + ], + "hold powerful positions": [ + "8.7.0" + ], + "holmes": [ + "8.18.9", + "8.18.10", + "8.18.11", + "8.20.1", + "8.24.3" + ], + "holmes wrote": [ + "8.24.3" + ], + "homo ludens": [ + "8.11.0" + ], + "homo ludens issue": [ + "8.11.0", + "8.11.0" + ], + "hoofd": [ + "8.25.2" + ], + "hope": [ + "8.10.3" + ], + "hope she ignores": [ + "8.10.3" + ], + "hostile commands via": [ + "8.1.0" + ], + "hours computer administrators": [ + "8.19.0" + ], + "house remains undimmed": [ + "8.24.5" + ], + "house wives meeting": [ + "8.26.0" + ], + "houston": [ + "8.25.16" + ], + "houston hosted": [ + "8.25.0" + ], + "huge conceptual gaps": [ + "8.5.0" + ], + "human": [ + "8.0.0" + ], + "human condition": [ + "8.24.0" + ], + "human cybernetic subject": [ + "8.16.3" + ], + "human immune system": [ + "8.19.0" + ], + "human results": [ + "8.8.1" + ], + "humanist teleology supposed": [ + "8.24.0" + ], + "humanity": [ + "8.18.10" + ], + "hundred police stations": [ + "8.21.1" + ], + "hurl verbal abuse": [ + "8.12.0" + ], + "hybrid": [ + "8.6.0" + ], + "hybrid forms": [ + "8.0.0" + ], + "hybrid forms grow": [ + "8.9.0" + ], + "hybrid media": [ + "8.0.0" + ], + "hybrid workspace": [ + "8.6.0" + ], + "hybrid workspace presentation": [ + "8.6.0", + "8.6.0" + ], + "hypermedia research centre": [ + "8.14.0" + ], + "iconic": [ + "8.16.6" + ], + "iconic status": [ + "8.16.6" + ], + "iconoclast net art": [ + "8.9.0" + ], + "id software published": [ + "8.12.0" + ], + "idea": [ + "8.10.0", + "8.10.4", + "8.10.8", + "8.10.9", + "8.18.6", + "8.24.2" + ], + "idea of tactical": [ + "8.10.0" + ], + "idealistic world models": [ + "8.6.0" + ], + "ideals.’": [ + "8.24.2" + ], + "identity": [ + "8.16.5" + ], + "identity formation": [ + "8.16.4" + ], + "identity movement": [ + "8.19.0" + ], + "identity psychology": [ + "8.16.5" + ], + "ideological foundation": [ + "8.20.0" + ], + "idoru kioko date": [ + "8.9.0" + ], + "ieee history center": [ + "8.19.0" + ], + "ignores": [ + "8.10.3" + ], + "ijnevitably inflicts damage": [ + "8.18.10" + ], + "illegitimate common ground": [ + "8.18.0" + ], + "image": [ + "8.5.0", + "8.16.5" + ], + "imagination": [ + "8.16.4", + "8.16.6" + ], + "imaginative": [ + "8.16.6" + ], + "imaginative outlaw": [ + "8.16.6" + ], + "imc": [ + "8.25.0" + ], + "imc folks": [ + "8.25.0" + ], + "imc sites": [ + "8.25.0" + ], + "imf": [ + "8.10.8" + ], + "imf damages": [ + "8.10.8" + ], + "immanent critique": [ + "8.15.0" + ], + "immaterial social anxiety": [ + "8.19.0" + ], + "immediate dialogic situations": [ + "8.8.1" + ], + "immediately apparent reason": [ + "8.5.0" + ], + "immensity": [ + "8.10.5" + ], + "immersion in tactical": [ + "8.27.0" + ], + "imo": [ + "8.10.3" + ], + "impalpable anima": [ + "8.18.11" + ], + "imploding": [ + "8.16.5" + ], + "imploding nihilistic": [ + "8.16.5" + ], + "imploding nihilistic space": [ + "8.16.5", + "8.16.5" + ], + "important": [ + "8.18.9" + ], + "important struggles": [ + "8.18.9" + ], + "important women artists": [ + "8.20.0" + ], + "impossible": [ + "8.18.5" + ], + "improve self policing": [ + "8.12.0" + ], + "impulse towards networking": [ + "8.23.0" + ], + "inclined": [ + "8.5.1" + ], + "include explicitly linking": [ + "8.2.0" + ], + "include resistive actions": [ + "8.8.0" + ], + "including": [ + "8.16.4" + ], + "including dr gomperts": [ + "8.20.0" + ], + "including internic": [ + "8.4.0" + ], + "including marx": [ + "8.16.4" + ], + "including tactical": [ + "8.20.0", + "8.20.1" + ], + "including tactical media": [ + "8.20.0" + ], + "incommensurate identity types": [ + "8.12.0" + ], + "incorporate activities elsewhere": [ + "8.8.0" + ], + "increasing police pressure": [ + "8.20.1" + ], + "increasingly common practice": [ + "8.22.0" + ], + "increasingly global": [ + "8.18.1" + ], + "incredibly effective": [ + "8.19.0" + ], + "indeed recently shown": [ + "8.16.3" + ], + "indeed virtual space": [ + "8.12.0" + ], + "independant media outlets": [ + "8.24.5" + ], + "independent": [ + "8.10.8" + ], + "independent film makers": [ + "8.22.0" + ], + "independent media": [ + "8.2.0", + "8.15.0", + "8.23.0" + ], + "independent media centres": [ + "8.18.0" + ], + "independent media infrastructure": [ + "8.2.0", + "8.7.0" + ], + "independent media network": [ + "8.23.0" + ], + "independent parallel existence": [ + "8.18.5" + ], + "india": [ + "8.21.1" + ], + "indian": [ + "8.16.3" + ], + "indian tribes": [ + "8.16.3" + ], + "indians": [ + "8.16.3" + ], + "indigenous fantasy nor": [ + "8.11.0" + ], + "individual": [ + "8.24.0" + ], + "individual basis": [ + "8.8.1" + ], + "individual elements": [ + "8.3.0" + ], + "individual emancipation": [ + "8.24.0" + ], + "individual human effects": [ + "8.8.1" + ], + "individuals": [ + "8.8.1" + ], + "individuals feel obliged": [ + "8.12.0" + ], + "indivisible movement": [ + "8.24.3", + "8.24.3" + ], + "indy": [ + "8.15.0", + "8.25.16" + ], + "indy event": [ + "8.25.16" + ], + "indy media aspire": [ + "8.15.0" + ], + "indy media critique": [ + "8.15.0", + "8.15.0" + ], + "indy media labor": [ + "8.15.0" + ], + "indy media work": [ + "8.15.0" + ], + "indy-inspired type": [ + "8.25.0" + ], + "indy-inspired type tactical": [ + "8.25.0" + ], + "indymedia flyer": [ + "8.23.0" + ], + "indymedia linksunten": [ + "8.25.5" + ], + "indymedia network": [ + "8.23.0" + ], + "indymedia platform": [ + "8.25.2" + ], + "indymedia platform topic": [ + "8.25.2" + ], + "indymedia site": [ + "8.23.0" + ], + "indymedia years": [ + "8.23.0" + ], + "indymedia years ago": [ + "8.23.0" + ], + "inevitable failure requires": [ + "8.24.0" + ], + "inevitable sectarianism": [ + "8.24.0" + ], + "infamous performance venue": [ + "8.23.0" + ], + "infect chance passersby": [ + "8.15.0" + ], + "infect proprietary systems": [ + "8.19.0" + ], + "infiltrated": [ + "8.16.1" + ], + "infiltrated by police": [ + "8.16.1" + ], + "infiltration": [ + "8.16.2" + ], + "influenced by intersectional": [ + "8.25.3" + ], + "info": [ + "8.24.4" + ], + "information": [ + "8.10.1", + "8.14.0", + "8.15.0", + "8.17.0", + "8.18.1", + "8.18.3", + "8.18.5" + ], + "information age": [ + "8.23.0" + ], + "information broadcasting nodes": [ + "8.23.0" + ], + "information environment": [ + "8.18.3" + ], + "information flows": [ + "8.23.0" + ], + "information merely circles": [ + "8.18.0", + "8.18.1" + ], + "information systems security": [ + "8.19.0" + ], + "information warfare": [ + "8.17.0" + ], + "informational": [ + "8.17.0" + ], + "informational landscapes": [ + "8.17.0" + ], + "informational value": [ + "8.17.0" + ], + "infrastructures incrementally developed": [ + "8.22.0" + ], + "ingrid": [ + "8.25.1", + "8.25.2" + ], + "inherent rationality produced": [ + "8.11.0" + ], + "inherently": [ + "8.10.3" + ], + "inherently paranoid": [ + "8.10.3" + ], + "initially taking advantage": [ + "8.21.0" + ], + "innovative net concepts": [ + "8.2.0", + "8.13.0" + ], + "insight": [ + "8.10.3" + ], + "insight to critique": [ + "8.10.3" + ], + "insightful": [ + "8.18.8" + ], + "inspired national socialist": [ + "8.24.0" + ], + "instead american invulnerability": [ + "8.19.0" + ], + "institutionalized learning": [ + "8.8.1" + ], + "integrate net artists": [ + "8.9.0" + ], + "integrated live speech": [ + "8.26.0" + ], + "integrating media production": [ + "8.22.0" + ], + "intellectual": [ + "8.10.1", + "8.18.1", + "8.18.8", + "8.18.10" + ], + "intellectual energy devoted": [ + "8.24.0" + ], + "intellectual eyes": [ + "8.18.9" + ], + "intellectual eyes open": [ + "8.18.9" + ], + "intellectual folklorik description": [ + "8.18.11", + "8.18.11" + ], + "intellectual laborers": [ + "8.18.8", + "8.18.9" + ], + "intellectual laborers definitely": [ + "8.18.8" + ], + "intellectual media": [ + "8.10.1", + "8.10.1" + ], + "intellectual media experiences": [ + "8.10.1" + ], + "intellectual property law": [ + "8.18.1", + "8.18.4" + ], + "intellectuals": [ + "8.18.9" + ], + "intelligence": [ + "8.16.1" + ], + "intelligence agencies": [ + "8.16.1" + ], + "intense struggle waging": [ + "8.19.0" + ], + "intentioned media activists": [ + "8.18.4" + ], + "interactions": [ + "8.10.3" + ], + "interactive art": [ + "8.2.0" + ], + "interactive art depend": [ + "8.2.0" + ], + "interest": [ + "8.13.0" + ], + "interested": [ + "8.21.1" + ], + "interested to read": [ + "8.21.1" + ], + "interesting area": [ + "8.8.1" + ], + "interfund": [ + "8.26.0" + ], + "interfund stimulates individuals": [ + "8.26.0" + ], + "international": [ + "8.18.2" + ], + "international actions": [ + "8.18.2" + ], + "international actions organised": [ + "8.18.2" + ], + "international aids activists": [ + "8.18.7", + "8.18.7" + ], + "international cultural exchanges": [ + "8.4.0" + ], + "international cyberspacial army": [ + "8.9.0" + ], + "international network": [ + "8.22.0" + ], + "international networking potential": [ + "8.23.0" + ], + "international policy gatherings": [ + "8.22.0" + ], + "international trade regimes": [ + "8.18.7" + ], + "internationalist aids": [ + "8.18.7" + ], + "internet and digital": [ + "8.25.0" + ], + "internet practiced subversive": [ + "8.3.0" + ], + "internet worm": [ + "8.19.0" + ], + "internet worm incident": [ + "8.19.0" + ], + "intersectional poltics": [ + "8.25.3" + ], + "interventions transformed political": [ + "8.3.0" + ], + "interview": [ + "8.10.4" + ], + "interview bunting discusses": [ + "8.12.0" + ], + "intimate": [ + "8.10.3", + "8.26.0" + ], + "intimate concerted initiatives": [ + "8.12.0" + ], + "intimate experience": [ + "8.10.1" + ], + "intimate media": [ + "8.26.0", + "8.26.0" + ], + "intimate media range": [ + "8.26.0" + ], + "intimate understanding": [ + "8.10.3" + ], + "intimidated": [ + "8.16.1" + ], + "intimidated by violence": [ + "8.16.1" + ], + "intricate social figurations": [ + "8.26.0" + ], + "introduce luther blissett": [ + "8.9.0" + ], + "invisible": [ + "8.24.5" + ], + "invoking crimes committed": [ + "8.18.0" + ], + "involved": [ + "8.25.1", + "8.25.2" + ], + "ip law": [ + "8.18.4" + ], + "iq.org": [ + "8.10.5" + ], + "irrational": [ + "8.14.0" + ], + "irving kristol book": [ + "8.20.1" + ], + "israeli disaster": [ + "8.10.6" + ], + "israeli pc virus": [ + "8.19.0" + ], + "issue": [ + "8.8.1" + ], + "issue concerns generations": [ + "8.18.0" + ], + "issues": [ + "8.18.0" + ], + "italian media": [ + "8.9.0" + ], + "jameson": [ + "8.16.7" + ], + "janitors": [ + "8.10.9" + ], + "jeremy joseph christian": [ + "8.24.0" + ], + "jett": [ + "8.10.9" + ], + "jim": [ + "8.14.0" + ], + "jim carrico": [ + "8.14.0" + ], + "joanne": [ + "8.10.2", + "8.10.3", + "8.15.0" + ], + "joanne motives": [ + "8.10.3" + ], + "joanne richardson": [ + "8.15.0" + ], + "job": [ + "8.10.9" + ], + "job complex": [ + "8.10.9" + ], + "job complexes": [ + "8.10.9" + ], + "joe camel center": [ + "8.16.1" + ], + "jogging jammed creativity": [ + "8.15.0", + "8.26.0" + ], + "john": [ + "8.19.0" + ], + "john perry barlow": [ + "8.7.0" + ], + "join counter": [ + "8.9.0" + ], + "join peace movements": [ + "8.10.4", + "8.10.4" + ], + "joke": [ + "8.10.9" + ], + "joseph": [ + "8.10.8", + "8.16.4" + ], + "joseph beuys": [ + "8.16.4" + ], + "joseph beuys founding": [ + "8.16.4" + ], + "joseph stiglitz": [ + "8.10.8" + ], + "josephine bosma": [ + "8.12.0" + ], + "josephine bosma entitled": [ + "8.12.0", + "8.12.0" + ], + "jouissance": [ + "8.24.0" + ], + "journal article reflecting": [ + "8.24.5" + ], + "julian": [ + "8.10.5" + ], + "julian assange": [ + "8.10.5" + ], + "july": [ + "8.10.7", + "8.10.9" + ], + "juridical regimes": [ + "8.18.7" + ], + "karl": [ + "8.16.4" + ], + "karl marx": [ + "8.16.3", + "8.16.4", + "8.18.10" + ], + "kassel": [ + "8.6.0" + ], + "keeping free media": [ + "8.4.0" + ], + "kein.org": [ + "8.24.4" + ], + "ken": [ + "8.18.4" + ], + "ken knabb": [ + "8.18.4" + ], + "ken knabb writes": [ + "8.18.4" + ], + "kermit": [ + "8.16.4", + "8.18.8", + "8.18.10", + "8.18.11" + ], + "kermit last post": [ + "8.18.11" + ], + "kermit messages": [ + "8.18.10" + ], + "kermit snelson": [ + "8.18.10", + "8.18.11" + ], + "key": [ + "8.18.8" + ], + "key process": [ + "8.18.8", + "8.18.8" + ], + "key process giving": [ + "8.18.8" + ], + "key question": [ + "8.18.7" + ], + "keyboards ringing forth": [ + "8.24.0" + ], + "kidding": [ + "8.16.6" + ], + "kind": [ + "8.10.2", + "8.18.8" + ], + "kluge": [ + "8.10.1" + ], + "kluge intimate experience": [ + "8.10.1" + ], + "knabb": [ + "8.18.4" + ], + "knee jerk reaction": [ + "8.2.0" + ], + "knitting dark": [ + "8.18.11" + ], + "knitting dark fiber": [ + "8.18.11" + ], + "knowledge": [ + "8.3.0", + "8.10.1" + ], + "krenak": [ + "8.25.3" + ], + "krenak an indigenous": [ + "8.25.3" + ], + "kriminalisierung": [ + "8.25.5" + ], + "kriminalisierung von": [ + "8.25.5" + ], + "kriminalisierung von indymedia": [ + "8.25.5" + ], + "ku klux klan": [ + "8.19.0" + ], + "kunsch": [ + "8.20.0" + ], + "lab artist organisation": [ + "8.26.0" + ], + "labeled anti-globalisation": [ + "8.18.7" + ], + "labor": [ + "8.18.8" + ], + "labor abstract": [ + "8.18.1" + ], + "laborers": [ + "8.18.9" + ], + "laborous": [ + "8.8.1" + ], + "laborous observations": [ + "8.8.1" + ], + "labour": [ + "8.14.0", + "8.24.5" + ], + "labour movement": [ + "8.24.5" + ], + "labour party": [ + "8.24.5", + "8.24.5" + ], + "labour party shawcross": [ + "8.24.5" + ], + "labour won power": [ + "8.24.5" + ], + "lacan calls jouissance": [ + "8.24.0" + ], + "lacan calls symbolic": [ + "8.24.0" + ], + "lacanian libidinal theories": [ + "8.24.0" + ], + "lacking global ambition": [ + "8.7.0" + ], + "lamborn wilson": [ + "8.0.0", + "8.5.0" + ], + "land": [ + "8.18.3", + "8.18.8" + ], + "landless peasants movement": [ + "8.18.2" + ], + "landlord class": [ + "8.18.1" + ], + "language": [ + "8.5.1", + "8.10.0", + "8.17.0" + ], + "larger database capacity": [ + "8.4.0" + ], + "late 1990s viruses": [ + "8.19.0" + ], + "late capitalism proper": [ + "8.11.0" + ], + "late clinton administration": [ + "8.8.0" + ], + "late monopoly capitalism": [ + "8.7.0" + ], + "latent affective human": [ + "8.24.0" + ], + "latest homo": [ + "8.11.0" + ], + "latest homo ludens": [ + "8.11.0" + ], + "latter-day ghost dance": [ + "8.16.3" + ], + "lauds mass shooters": [ + "8.24.0" + ], + "launched outside europe": [ + "8.3.0" + ], + "lawrence lessig argues": [ + "8.18.0" + ], + "lb usually don": [ + "8.9.0" + ], + "leading media": [ + "8.10.1" + ], + "learning situations involving": [ + "8.8.1" + ], + "led duke university": [ + "8.16.7" + ], + "led walter benjamin": [ + "8.16.7" + ], + "left": [ + "8.24.0", + "8.24.5" + ], + "left concern": [ + "8.20.1" + ], + "left previously dismissed": [ + "8.24.5" + ], + "leftist frameworks": [ + "8.8.0" + ], + "leftist grand vistas": [ + "8.18.0" + ], + "leftist tool": [ + "8.25.3" + ], + "lenin": [ + "8.16.1" + ], + "lester bowie called": [ + "8.5.1" + ], + "level": [ + "8.7.0", + "8.18.0" + ], + "liberal": [ + "8.10.4", + "8.10.7", + "8.10.8" + ], + "liberal democrat": [ + "8.10.4", + "8.10.7", + "8.10.8" + ], + "liberal democratic context": [ + "8.10.0" + ], + "liberal eu policies": [ + "8.18.0" + ], + "liberating techno practices": [ + "8.18.0" + ], + "libidinal": [ + "8.24.0" + ], + "libidinal frustration": [ + "8.24.0" + ], + "libidinal gratification": [ + "8.12.0" + ], + "libidinal impasse": [ + "8.24.0" + ], + "libidinal pathology": [ + "8.24.0" + ], + "life": [ + "8.10.1", + "8.10.5" + ], + "life beyond utility": [ + "8.26.0" + ], + "life greatist": [ + "8.10.5" + ], + "life greatist critic": [ + "8.10.5" + ], + "lifestyle": [ + "8.16.2" + ], + "lifestyle choice": [ + "8.16.2" + ], + "lifestyle choice based": [ + "8.16.2" + ], + "limit arts investigation": [ + "8.17.0" + ], + "limits arts ability": [ + "8.17.0" + ], + "line dividing artists": [ + "8.20.0" + ], + "lines": [ + "8.24.3" + ], + "lines telephone system": [ + "8.19.0" + ], + "link": [ + "8.25.4", + "8.25.16" + ], + "linksunten": [ + "8.25.5" + ], + "linksunten and state": [ + "8.25.5" + ], + "linksunten via rote": [ + "8.25.5" + ], + "list": [ + "8.18.10", + "8.18.11", + "8.24.4", + "8.25.16" + ], + "list archives": [ + "8.25.16" + ], + "list for net": [ + "8.24.4" + ], + "list numerous times": [ + "8.10.8" + ], + "little effect beyond": [ + "8.18.0" + ], + "little grassroots initiatives": [ + "8.15.0" + ], + "little media": [ + "8.15.0" + ], + "live signalling wires": [ + "8.24.0" + ], + "live stream originating": [ + "8.26.0" + ], + "live streams": [ + "8.26.0" + ], + "lively pirate tv": [ + "8.22.0" + ], + "lively surrounding discourse": [ + "8.8.0" + ], + "ljubljana skinheads": [ + "8.10.2" + ], + "ljubljana skinheads aggressively": [ + "8.10.2" + ], + "local": [ + "8.22.0" + ], + "local communities": [ + "8.22.0" + ], + "local media": [ + "8.22.0", + "8.22.0" + ], + "local media archeology": [ + "8.2.0" + ], + "local media projects": [ + "8.22.0" + ], + "local police": [ + "8.12.0" + ], + "local situations": [ + "8.18.7" + ], + "local struggles": [ + "8.2.0" + ], + "logic": [ + "8.25.0" + ], + "logic corresponds perfectly": [ + "8.24.0" + ], + "logic magazine": [ + "8.25.0" + ], + "logistical landscapes renders": [ + "8.17.0" + ], + "london based artist": [ + "8.20.0" + ], + "long": [ + "8.7.0", + "8.25.3" + ], + "long time": [ + "8.25.3" + ], + "long time user": [ + "8.25.3" + ], + "longer": [ + "8.10.9", + "8.18.0", + "8.18.1" + ], + "longer grounded": [ + "8.18.7" + ], + "lot": [ + "8.10.6", + "8.24.3" + ], + "lovely": [ + "8.18.5" + ], + "lovink": [ + "8.18.1" + ], + "lovink alex galloway": [ + "8.8.0" + ], + "lovink and florian": [ + "8.18.0" + ], + "lovink declare": [ + "8.18.7" + ], + "lovink presentation": [ + "8.7.0" + ], + "lovink tactical": [ + "8.0.0" + ], + "lovink tactical media": [ + "8.0.0" + ], + "lovink the ghi": [ + "8.2.0" + ], + "low income housing": [ + "8.23.0" + ], + "ludicrous": [ + "8.16.2" + ], + "ludicrous failure": [ + "8.16.2" + ], + "luter blissart project": [ + "8.23.0" + ], + "luther": [ + "8.9.0" + ], + "luther blissett": [ + "8.9.0", + "8.9.0" + ], + "luther blissett project": [ + "8.9.0" + ], + "luther blissettif edt": [ + "8.9.0" + ], + "magazine": [ + "8.25.0" + ], + "mail": [ + "8.24.4" + ], + "mail payment": [ + "8.19.0" + ], + "mailer": [ + "8.10.4" + ], + "mailing": [ + "8.24.4" + ], + "mailing list": [ + "8.10.0", + "8.24.4" + ], + "main art school": [ + "8.2.0" + ], + "main strain media": [ + "8.7.0" + ], + "mainstream": [ + "8.10.0" + ], + "mainstream economy": [ + "8.14.0" + ], + "mainstream media": [ + "8.0.0", + "8.2.0", + "8.10.0", + "8.15.0", + "8.18.0" + ], + "mainstream media organisations": [ + "8.23.0" + ], + "mainstream vs underground": [ + "8.2.0" + ], + "mainstream whilst artists": [ + "8.27.0" + ], + "maintained tools": [ + "8.25.3" + ], + "major quantum leap": [ + "8.18.0" + ], + "make": [ + "8.0.0", + "8.8.1", + "8.18.9" + ], + "make media": [ + "8.10.0" + ], + "make perfect sense": [ + "8.18.9" + ], + "makes": [ + "8.18.3" + ], + "makes the valuable": [ + "8.18.3" + ], + "making": [ + "8.10.6" + ], + "making films": [ + "8.10.6" + ], + "man": [ + "8.10.5", + "8.18.10" + ], + "manifest themselves": [ + "8.19.0" + ], + "manifest was written": [ + "8.0.0" + ], + "manifesto": [ + "8.5.0", + "8.6.0" + ], + "manual labor abstract": [ + "8.18.1" + ], + "manufacturing": [ + "8.18.1" + ], + "map": [ + "8.3.0" + ], + "map eliminates time": [ + "8.3.0" + ], + "mapping": [ + "8.3.0" + ], + "maps": [ + "8.3.0" + ], + "maps dominate representations": [ + "8.3.0" + ], + "marcuse": [ + "8.16.4" + ], + "marginal vs mainstream": [ + "8.2.0" + ], + "marketed": [ + "8.16.2" + ], + "marketed fad": [ + "8.16.2" + ], + "marketed fad products": [ + "8.16.2" + ], + "marks the spot": [ + "8.12.0" + ], + "marx and walter": [ + "8.18.10" + ], + "marx did enjoin": [ + "8.18.2" + ], + "marxist": [ + "8.16.1" + ], + "marxist studies": [ + "8.16.1" + ], + "mass": [ + "8.8.1", + "8.9.0", + "8.18.4", + "8.18.5" + ], + "mass and mob": [ + "8.18.6" + ], + "mass avatar": [ + "8.9.0" + ], + "mass communication": [ + "8.9.0" + ], + "mass issue": [ + "8.8.1" + ], + "mass media": [ + "8.9.0", + "8.9.0", + "8.15.0", + "8.15.0" + ], + "mass media criticism": [ + "8.9.0" + ], + "mass media criticism": [ + "8.9.0" + ], + "mass media game": [ + "8.9.0" + ], + "mass media stage": [ + "8.9.0", + "8.9.0" + ], + "mass media system": [ + "8.9.0" + ], + "mass media universe": [ + "8.15.0", + "8.15.0" + ], + "mass movement": [ + "8.9.0" + ], + "mass psychology": [ + "8.18.4" + ], + "massive street protests": [ + "8.2.0" + ], + "materiality": [ + "8.18.1" + ], + "materially homogeneous consistency": [ + "8.11.0" + ], + "matter cognitive dissonance": [ + "8.5.0" + ], + "matze": [ + "8.25.5" + ], + "max weber wrote": [ + "8.18.10" + ], + "mckenzie wark": [ + "8.5.1", + "8.18.2" + ], + "mckenzie wark wrote": [ + "8.18.2" + ], + "meaning": [ + "8.5.1" + ], + "media": [ + "8.0.0", + "8.1.0", + "8.2.0", + "8.3.0", + "8.4.0", + "8.5.0", + "8.5.1", + "8.6.0", + "8.7.0", + "8.8.0", + "8.9.0", + "8.10.0", + "8.10.1", + "8.11.0", + "8.13.0", + "8.15.0", + "8.17.0", + "8.18.0", + "8.18.1", + "8.18.4", + "8.18.5", + "8.18.7", + "8.19.0", + "8.20.0", + "8.20.1", + "8.21.0", + "8.21.1", + "8.22.0", + "8.23.0", + "8.24.3", + "8.24.5", + "8.25.0", + "8.26.0", + "8.27.0" + ], + "media mainstream/underground": [ + "8.9.0" + ], + "media acknowledges": [ + "8.21.0" + ], + "media activism constantly": [ + "8.7.0" + ], + "media activism nowadays": [ + "8.7.0", + "8.7.0" + ], + "media activist work": [ + "8.18.7" + ], + "media activists": [ + "8.2.0", + "8.13.0", + "8.18.7", + "8.22.0", + "8.23.0" + ], + "media activists rushed": [ + "8.23.0" + ], + "media advocates dismiss": [ + "8.3.0" + ], + "media and infiltrated": [ + "8.16.1" + ], + "media archive": [ + "8.26.0" + ], + "media art practice": [ + "8.2.0", + "8.2.0" + ], + "media art scene": [ + "8.18.4" + ], + "media artists": [ + "8.1.0", + "8.2.0" + ], + "media arts": [ + "8.2.0", + "8.18.0" + ], + "media arts institutions": [ + "8.18.0", + "8.18.0" + ], + "media arts questions": [ + "8.18.0", + "8.18.0" + ], + "media arts sector": [ + "8.18.0", + "8.18.0" + ], + "media arts system": [ + "8.18.0", + "8.18.0" + ], + "media center": [ + "8.22.0" + ], + "media channels": [ + "8.1.0" + ], + "media circus conference": [ + "8.2.0", + "8.2.0" + ], + "media cited morris": [ + "8.19.0" + ], + "media collective": [ + "8.23.0" + ], + "media coverage": [ + "8.9.0" + ], + "media critiques": [ + "8.10.1" + ], + "media culture": [ + "8.3.0", + "8.18.0" + ], + "media culture faces": [ + "8.18.0" + ], + "media design": [ + "8.6.0" + ], + "media entrepreneurs alike": [ + "8.20.0" + ], + "media environment": [ + "8.22.0", + "8.26.0" + ], + "media environment characterized": [ + "8.22.0" + ], + "media events": [ + "8.8.0" + ], + "media experiences": [ + "8.10.1" + ], + "media free": [ + "8.4.0" + ], + "media gateways": [ + "8.9.0" + ], + "media geert": [ + "8.15.0" + ], + "media geert lovink": [ + "8.15.0" + ], + "media groups": [ + "8.0.0" + ], + "media heavyweights": [ + "8.23.0" + ], + "media hype nettime": [ + "8.9.0" + ], + "media image": [ + "8.10.0" + ], + "media involves convergence": [ + "8.9.0" + ], + "media is designed": [ + "8.16.2" + ], + "media landscape": [ + "8.9.0" + ], + "media machine": [ + "8.20.1" + ], + "media makers": [ + "8.20.0" + ], + "media manifesto": [ + "8.5.0" + ], + "media manipolation": [ + "8.9.0" + ], + "media media": [ + "8.26.0" + ], + "media miguel": [ + "8.21.0" + ], + "media miguel afonso": [ + "8.21.0" + ], + "media model": [ + "8.7.0" + ], + "media model altogether": [ + "8.7.0" + ], + "media models": [ + "8.18.4" + ], + "media network": [ + "8.0.0", + "8.6.0", + "8.22.0", + "8.23.0", + "8.23.0" + ], + "media networks": [ + "8.26.0" + ], + "media operate beyond": [ + "8.26.0" + ], + "media outside": [ + "8.18.1" + ], + "media overproduction": [ + "8.15.0" + ], + "media people": [ + "8.5.1" + ], + "media politics": [ + "8.20.0" + ], + "media practice": [ + "8.27.0" + ], + "media practices": [ + "8.2.0", + "8.10.1", + "8.18.0", + "8.22.0" + ], + "media present": [ + "8.21.0" + ], + "media production": [ + "8.10.0", + "8.17.0", + "8.21.0", + "8.22.0", + "8.25.3" + ], + "media production inside": [ + "8.10.0", + "8.10.0" + ], + "media products": [ + "8.7.0" + ], + "media projects": [ + "8.7.0", + "8.7.0", + "8.22.0" + ], + "media question": [ + "8.1.0", + "8.7.0" + ], + "media question altogether": [ + "8.1.0", + "8.1.0" + ], + "media realm": [ + "8.1.0" + ], + "media reminds": [ + "8.10.2" + ], + "media revolutions": [ + "8.20.0" + ], + "media saturated world": [ + "8.10.8", + "8.10.8" + ], + "media scene": [ + "8.21.0" + ], + "media sector": [ + "8.7.0" + ], + "media signify mastery": [ + "8.15.0" + ], + "media space": [ + "8.6.0", + "8.26.0" + ], + "media spectacle": [ + "8.10.0" + ], + "media sphere": [ + "8.9.0", + "8.10.1" + ], + "media stage": [ + "8.9.0", + "8.9.0" + ], + "media strategems": [ + "8.5.1" + ], + "media structure": [ + "8.7.0" + ], + "media surface": [ + "8.26.0" + ], + "media system": [ + "8.9.0" + ], + "media system coopts": [ + "8.9.0" + ], + "media tactical": [ + "8.0.0" + ], + "media tacticians": [ + "8.1.0" + ], + "media tactics": [ + "8.17.0" + ], + "media tactitions wodiczko": [ + "8.0.0" + ], + "media technologies made": [ + "8.10.0" + ], + "media tend simultaneously": [ + "8.5.0" + ], + "media terrorism": [ + "8.10.0" + ], + "media text": [ + "8.10.1" + ], + "media theory": [ + "8.3.0", + "8.10.0", + "8.27.0" + ], + "media theory based": [ + "8.10.0" + ], + "media theory give": [ + "8.27.0" + ], + "media tools": [ + "8.27.0" + ], + "media universe": [ + "8.15.0" + ], + "media vectors": [ + "8.5.1", + "8.10.1" + ], + "media vectors connect": [ + "8.5.1" + ], + "media venues": [ + "8.8.0" + ], + "media work": [ + "8.15.0" + ], + "medium": [ + "8.5.0" + ], + "meet based": [ + "8.1.0" + ], + "meetings identify *objectives*": [ + "8.2.0" + ], + "meetings proceeding throughout": [ + "8.2.0" + ], + "melancholia": [ + "8.18.9" + ], + "melancholic impulse directed": [ + "8.18.9" + ], + "meme team": [ + "8.24.5" + ], + "mere": [ + "8.18.1" + ], + "merely tools": [ + "8.18.0" + ], + "message": [ + "8.16.0", + "8.24.2", + "8.24.5" + ], + "message goes": [ + "8.16.3" + ], + "messages": [ + "8.18.10", + "8.18.11" + ], + "messages from kermit": [ + "8.18.11" + ], + "messy organic process": [ + "8.5.0" + ], + "met pit": [ + "8.13.0" + ], + "met pit schultz": [ + "8.13.0", + "8.13.0" + ], + "metaphor carefully klein": [ + "8.23.0" + ], + "metaphorical architecture obsolete": [ + "8.6.0" + ], + "metáfora": [ + "8.21.0", + "8.21.0" + ], + "michael": [ + "8.10.3", + "8.10.6", + "8.10.7" + ], + "michael albert": [ + "8.10.7" + ], + "michael fried discusses": [ + "8.11.0" + ], + "michel de certeau": [ + "8.10.0", + "8.11.0", + "8.23.0" + ], + "micro views": [ + "8.3.0" + ], + "middle-class": [ + "8.16.2" + ], + "middle-class lifestyle": [ + "8.16.2" + ], + "middle-class lifestyle choice": [ + "8.16.2" + ], + "migrant media": [ + "8.0.0" + ], + "miguel": [ + "8.21.0", + "8.21.1" + ], + "miguel afonso": [ + "8.21.0", + "8.21.1" + ], + "miguel afonso caetano": [ + "8.21.0", + "8.21.0", + "8.21.1" + ], + "miguel caetano": [ + "8.21.0", + "8.21.0" + ], + "mild": [ + "8.16.4" + ], + "militant political position": [ + "8.9.0" + ], + "militant positions": [ + "8.9.0" + ], + "military": [ + "8.5.0", + "8.18.1" + ], + "military budget": [ + "8.8.0" + ], + "military reform": [ + "8.19.0" + ], + "military research centers": [ + "8.8.0" + ], + "military strategy": [ + "8.19.0" + ], + "military surveillance grid": [ + "8.20.1" + ], + "military weakness": [ + "8.19.0" + ], + "milo": [ + "8.24.3" + ], + "minded media developers": [ + "8.22.0" + ], + "minimum security prison—": [ + "8.19.0" + ], + "minutes": [ + "8.0.0", + "8.2.0" + ], + "misreading": [ + "8.10.9" + ], + "misreading of parecon": [ + "8.10.9" + ], + "misrepresentation of parecon": [ + "8.10.9" + ], + "mode": [ + "8.11.0", + "8.16.5" + ], + "mode of living": [ + "8.16.5" + ], + "model": [ + "8.6.0", + "8.7.0" + ], + "model of open": [ + "8.27.0" + ], + "models": [ + "8.7.0", + "8.8.0" + ], + "moderated": [ + "8.24.4" + ], + "moderated mailing": [ + "8.24.4" + ], + "moderated mailing list": [ + "8.24.4", + "8.24.4" + ], + "modern": [ + "8.16.5" + ], + "modern avant garde": [ + "8.2.0" + ], + "modern delusion": [ + "8.16.5" + ], + "modern telecommunicative technologies": [ + "8.8.1" + ], + "modern utopia": [ + "8.16.7" + ], + "modes": [ + "8.6.0", + "8.16.5" + ], + "modes of consumption": [ + "8.16.5" + ], + "moldable market segment": [ + "8.15.0" + ], + "moment": [ + "8.18.9" + ], + "moment of reward": [ + "8.16.6" + ], + "moments": [ + "8.18.3" + ], + "moments of commodification": [ + "8.18.3" + ], + "money": [ + "8.14.0" + ], + "monkeywrenching or adbuster-style": [ + "8.10.2" + ], + "monolithic control mechanism": [ + "8.19.0" + ], + "monthly review press": [ + "8.22.0" + ], + "moral": [ + "8.24.2" + ], + "moral superiority": [ + "8.24.2" + ], + "moreover criminal blame": [ + "8.19.0" + ], + "morlock": [ + "8.10.7" + ], + "morlock elloi": [ + "8.10.7" + ], + "morlock elloi wrote": [ + "8.10.7", + "8.10.7" + ], + "morris": [ + "8.19.0" + ], + "morris worm": [ + "8.19.0" + ], + "motive": [ + "8.10.3" + ], + "motives": [ + "8.10.3", + "8.10.4" + ], + "mouldable market segment": [ + "8.26.0" + ], + "move beyond electronic": [ + "8.20.0" + ], + "move past simple": [ + "8.8.0" + ], + "movement": [ + "8.1.0", + "8.8.0", + "8.8.1", + "8.16.2", + "8.16.3", + "8.18.0", + "8.18.2", + "8.18.3", + "8.20.0", + "8.24.3", + "8.24.5" + ], + "movement now amounts": [ + "8.16.2" + ], + "movements": [ + "8.1.0", + "8.8.0", + "8.18.0", + "8.18.2" + ], + "movements arise": [ + "8.18.2" + ], + "movimento sem terra": [ + "8.18.2" + ], + "multiple pop star": [ + "8.9.0" + ], + "multitude": [ + "8.18.4" + ], + "multitude beer": [ + "8.18.11" + ], + "multitude beer earthling": [ + "8.18.11", + "8.18.11" + ], + "multitudes": [ + "8.18.6", + "8.18.8" + ], + "muscular pistons fastened": [ + "8.24.0" + ], + "museum visitor makes": [ + "8.2.0" + ], + "mutual assured destruction": [ + "8.19.0" + ], + "myriad layers": [ + "8.11.0" + ], + "myriad movements compose": [ + "8.12.0" + ], + "myriad word searches": [ + "8.11.0" + ], + "mysterious structure": [ + "8.7.0" + ], + "myth": [ + "8.9.0" + ], + "n-time": [ + "8.25.0" + ], + "nagle": [ + "8.24.0", + "8.24.2" + ], + "nagle writes": [ + "8.24.0", + "8.24.2" + ], + "nam june paik": [ + "8.4.0" + ], + "name.space": [ + "8.4.0" + ], + "name.space database": [ + "8.4.0" + ], + "name.space service": [ + "8.4.0" + ], + "named peoples' global": [ + "8.18.2" + ], + "namespace": [ + "8.4.0" + ], + "national anthem": [ + "8.10.2" + ], + "national computer security": [ + "8.19.0" + ], + "national socialist germany": [ + "8.16.7" + ], + "nationalists singing": [ + "8.10.2" + ], + "nature": [ + "8.10.5", + "8.18.10" + ], + "nature is life": [ + "8.10.5" + ], + "nazi alt-right": [ + "8.24.0" + ], + "nazi meme warriors": [ + "8.24.5" + ], + "naďve questions": [ + "8.10.6" + ], + "near cyber": [ + "8.7.0" + ], + "near monopoly position": [ + "8.7.0" + ], + "necessarily adopting practices": [ + "8.11.0" + ], + "negative": [ + "8.7.0" + ], + "negative feedback": [ + "8.26.0" + ], + "negative media refuse": [ + "8.26.0" + ], + "negri": [ + "8.18.4" + ], + "negri and jameson": [ + "8.16.3", + "8.16.4" + ], + "neither critical nor": [ + "8.18.0" + ], + "neofascists": [ + "8.24.3" + ], + "nerdy subcultural": [ + "8.24.0" + ], + "nestle": [ + "8.16.0" + ], + "nestle boycott": [ + "8.16.0" + ], + "net": [ + "8.2.0", + "8.4.0", + "8.5.0", + "8.5.1", + "8.9.0", + "8.11.0", + "8.12.0", + "8.13.0", + "8.24.4" + ], + "net activism": [ + "8.2.0", + "8.9.0", + "8.13.0" + ], + "net activism debate": [ + "8.9.0" + ], + "net art": [ + "8.11.0", + "8.12.0" + ], + "net art group": [ + "8.11.0" + ], + "net artists": [ + "8.11.0" + ], + "net artists presupposes": [ + "8.11.0" + ], + "net criticism": [ + "8.24.4" + ], + "net critics argue": [ + "8.11.0" + ], + "net walter benjamin": [ + "8.11.0" + ], + "nets": [ + "8.4.0", + "8.24.4" + ], + "nettime": [ + "8.8.1", + "8.24.4", + "8.25.16" + ], + "nettime notwithstanding": [ + "8.18.4" + ], + "nettimers": [ + "8.21.0" + ], + "network": [ + "8.5.0", + "8.7.0", + "8.8.0", + "8.18.2", + "8.19.0", + "8.22.0", + "8.23.0", + "8.25.0", + "8.26.0" + ], + "network and empire": [ + "8.18.6" + ], + "network communication": [ + "8.26.0" + ], + "network design protocols": [ + "8.19.0" + ], + "network local communities": [ + "8.22.0" + ], + "network of castles": [ + "8.5.0" + ], + "networked": [ + "8.26.0" + ], + "networked communication": [ + "8.26.0", + "8.26.0" + ], + "networked communication environments": [ + "8.26.0" + ], + "networked communication spaces": [ + "8.26.0" + ], + "networked communications": [ + "8.26.0" + ], + "networked criminal organization": [ + "8.21.1" + ], + "networked cultural practices": [ + "8.23.0" + ], + "networked environment": [ + "8.26.0" + ], + "networked media": [ + "8.26.0", + "8.26.0" + ], + "networked media environment": [ + "8.26.0", + "8.26.0" + ], + "networked practices": [ + "8.23.0" + ], + "networks": [ + "8.3.0", + "8.7.0", + "8.19.0", + "8.26.0" + ], + "networks networks networks": [ + "8.9.0" + ], + "networks are alive": [ + "8.25.3" + ], + "neutral mediators": [ + "8.11.0" + ], + "newly emerging forms": [ + "8.0.0" + ], + "news media spread": [ + "8.9.0" + ], + "newsfeed": [ + "8.25.0" + ], + "nicholson": [ + "8.23.0" + ], + "nicholson explains": [ + "8.23.0" + ], + "nihilism feeds monsters": [ + "8.24.3", + "8.24.3" + ], + "nihilistic": [ + "8.16.5" + ], + "nihilistic space": [ + "8.16.5" + ], + "nizari": [ + "8.5.0" + ], + "nomadic electronic": [ + "8.9.0" + ], + "nomadic media": [ + "8.0.0" + ], + "nominally democratic country": [ + "8.10.1" + ], + "nominally left": [ + "8.24.0" + ], + "nominally left identitarianism": [ + "8.24.0" + ], + "nominally leftist academics": [ + "8.24.0" + ], + "non-colonized space": [ + "8.16.5" + ], + "non-multiple": [ + "8.18.5" + ], + "normally buried linguistic": [ + "8.12.0" + ], + "normally silent functioning": [ + "8.12.0" + ], + "norman": [ + "8.10.4" + ], + "norman mailer": [ + "8.10.4" + ], + "notable collaborative networks": [ + "8.26.0" + ], + "novel shockwave rider": [ + "8.19.0" + ], + "november": [ + "8.25.0" + ], + "november indymedia": [ + "8.25.0" + ], + "noyes data corporation": [ + "8.19.0" + ], + "nuclear threat": [ + "8.19.0" + ], + "number since world": [ + "8.10.4" + ], + "numerous": [ + "8.10.8" + ], + "numerous mundane examples": [ + "8.12.0" + ], + "object": [ + "8.12.0" + ], + "objections": [ + "8.10.9" + ], + "obscene pathological enjoyment": [ + "8.24.0" + ], + "observational techniques resulted": [ + "8.11.0" + ], + "observations": [ + "8.8.1" + ], + "observations to geert": [ + "8.8.1" + ], + "obvious": [ + "8.10.6" + ], + "ocalan": [ + "8.25.3" + ], + "occasional mouse gesture": [ + "8.24.0" + ], + "occupied spaces form": [ + "8.0.0" + ], + "offer": [ + "8.10.4", + "8.10.7" + ], + "offer an alternative": [ + "8.10.4", + "8.10.7", + "8.10.8" + ], + "offer effective mobility": [ + "8.19.0" + ], + "offer no original": [ + "8.10.6" + ], + "offered": [ + "8.10.4" + ], + "offering easy answers": [ + "8.10.6" + ], + "offering hypercritical takes": [ + "8.24.3" + ], + "offers numerous": [ + "8.10.8", + "8.10.8" + ], + "offers numerous suggestions": [ + "8.10.8" + ], + "okto tv": [ + "8.22.0" + ], + "olivier": [ + "8.24.0" + ], + "olivier jutel": [ + "8.24.0", + "8.24.0" + ], + "olivier jutel wrote": [ + "8.24.0", + "8.24.0" + ], + "ongoing human conversation": [ + "8.18.10" + ], + "ongoing technological changes": [ + "8.8.0" + ], + "online": [ + "8.21.1", + "8.24.0" + ], + "online cultural": [ + "8.24.0" + ], + "online cultural gatekeepers": [ + "8.24.0" + ], + "online cultural vanguardism": [ + "8.24.0" + ], + "online cultural victories": [ + "8.24.0" + ], + "online culture": [ + "8.24.0" + ], + "online culture wars": [ + "8.24.0", + "8.24.0" + ], + "online environment": [ + "8.11.0" + ], + "online fox": [ + "8.24.0" + ], + "online free content": [ + "8.25.5" + ], + "online left": [ + "8.24.0" + ], + "online life urgent": [ + "8.24.0" + ], + "online neuroses": [ + "8.24.0" + ], + "online politics": [ + "8.24.0" + ], + "online politics produces": [ + "8.24.0" + ], + "online protest actions": [ + "8.3.0" + ], + "online provocations": [ + "8.24.0" + ], + "online reaction": [ + "8.24.0" + ], + "online spaces": [ + "8.24.0" + ], + "ontologically impossible politics": [ + "8.24.0" + ], + "ontologically inferior status": [ + "8.16.7" + ], + "open": [ + "8.23.0" + ], + "open pop star": [ + "8.9.0" + ], + "open publishing": [ + "8.23.0" + ], + "open source movement": [ + "8.8.0", + "8.8.1" + ], + "openly copy tactics": [ + "8.24.3", + "8.24.5" + ], + "openly declare": [ + "8.24.5" + ], + "operate beyond clean": [ + "8.15.0", + "8.26.0" + ], + "operatives": [ + "8.18.6" + ], + "operatives like left": [ + "8.18.6" + ], + "opponents": [ + "8.16.1" + ], + "oppositional media practices": [ + "8.10.1" + ], + "oppressive philistinism": [ + "8.20.0" + ], + "oppressive philistinism emerging": [ + "8.20.0" + ], + "optical media": [ + "8.6.0", + "8.6.0" + ], + "optical media exchanging": [ + "8.6.0" + ], + "oral history conducted": [ + "8.19.0" + ], + "order": [ + "8.12.0" + ], + "ordinary people": [ + "8.24.2" + ], + "org/ tactical archives": [ + "8.25.3" + ], + "organic process": [ + "8.5.0" + ], + "organisation": [ + "8.7.0" + ], + "organisation media": [ + "8.7.0" + ], + "organisation media activism": [ + "8.7.0", + "8.7.0" + ], + "organisational philosophy based": [ + "8.18.2" + ], + "organisational principles": [ + "8.18.2" + ], + "organization": [ + "8.8.0", + "8.8.1" + ], + "organization dating": [ + "8.10.0" + ], + "original ideas": [ + "8.10.6" + ], + "original indymedia site": [ + "8.23.0" + ], + "originating political bias": [ + "8.17.0" + ], + "origins": [ + "8.5.1" + ], + "orthodoxy comes": [ + "8.19.0" + ], + "osama bin": [ + "8.10.1" + ], + "osama bin laden": [ + "8.10.1", + "8.10.1" + ], + "ossified leninist bullshit": [ + "8.10.0" + ], + "otherwise baffling piece": [ + "8.24.3" + ], + "outgoing media age": [ + "8.7.0" + ], + "outlaw": [ + "8.16.6" + ], + "outlaw and exemplar": [ + "8.16.6" + ], + "outworn": [ + "8.24.2" + ], + "over.": [ + "8.18.5" + ], + "overdeveloped world": [ + "8.18.1" + ], + "own casual instrumentalisation": [ + "8.12.0" + ], + "own channels": [ + "8.7.0" + ], + "own conclusions": [ + "8.7.0" + ], + "own dad labeled": [ + "8.19.0" + ], + "own exclusive locations": [ + "8.12.0" + ], + "own futile existence": [ + "8.7.0" + ], + "own greed spend": [ + "8.18.8" + ], + "own media": [ + "8.22.0" + ], + "own political struggles": [ + "8.22.0" + ], + "own technical administration": [ + "8.11.0" + ], + "paid": [ + "8.10.9" + ], + "paiute indian": [ + "8.16.3", + "8.16.3" + ], + "paiute indian tribes": [ + "8.16.3" + ], + "palestine liberation organization": [ + "8.19.0" + ], + "palestinian": [ + "8.10.2" + ], + "pamphlet": [ + "8.25.5" + ], + "parallel economy": [ + "8.14.0" + ], + "paranoid": [ + "8.10.3" + ], + "parecon": [ + "8.10.9" + ], + "part": [ + "8.20.0", + "8.25.0" + ], + "participation": [ + "8.24.5" + ], + "participatory": [ + "8.10.7" + ], + "participatory democracy": [ + "8.10.7" + ], + "participatory economics": [ + "8.10.7" + ], + "particular hot spot": [ + "8.18.7" + ], + "particular movement reached": [ + "8.18.9" + ], + "particulate colonization": [ + "8.16.5" + ], + "partnership": [ + "8.16.0" + ], + "partnership and co-optation": [ + "8.16.0" + ], + "party": [ + "8.24.5" + ], + "passes": [ + "8.5.1" + ], + "passes backwards": [ + "8.5.1" + ], + "passions lie elsewhere": [ + "8.7.0" + ], + "passive placeholders": [ + "8.18.6" + ], + "pathological libidinal frustration": [ + "8.24.0" + ], + "paulo state": [ + "8.21.1" + ], + "pay": [ + "8.18.10", + "8.18.11" + ], + "pay operating expenses": [ + "8.4.0" + ], + "pay particular attention": [ + "8.18.10", + "8.18.10", + "8.18.11", + "8.18.11" + ], + "payment system": [ + "8.13.0", + "8.13.0" + ], + "pc business world": [ + "8.19.0" + ], + "peace movements": [ + "8.10.4" + ], + "peers return verdicts": [ + "8.19.0" + ], + "people": [ + "8.2.0", + "8.5.1", + "8.10.4", + "8.10.5", + "8.14.0", + "8.16.3", + "8.16.4", + "8.18.4", + "8.18.5", + "8.18.8", + "8.18.10", + "8.23.0", + "8.24.2", + "8.24.5", + "8.25.5" + ], + "people create presences": [ + "8.26.0" + ], + "people exchange ideas": [ + "8.26.0" + ], + "people from creating": [ + "8.18.4" + ], + "people platform": [ + "8.25.5" + ], + "people simply paid": [ + "8.10.8" + ], + "people the expropriation": [ + "8.18.3" + ], + "peoples' global": [ + "8.18.2" + ], + "peoples' global action": [ + "8.18.2" + ], + "perfect cool informed": [ + "8.27.0" + ], + "perfect media fantasy": [ + "8.10.0" + ], + "perfect poisonous countersign": [ + "8.1.0" + ], + "perfect sign": [ + "8.1.0" + ], + "perfect simulacra": [ + "8.1.0" + ], + "performative utterance": [ + "8.12.0" + ], + "performative value": [ + "8.12.0" + ], + "perilously ridiculous times": [ + "8.24.0" + ], + "permanent": [ + "8.16.1", + "8.16.2" + ], + "permanent failure": [ + "8.16.1", + "8.16.2" + ], + "permanent poverty": [ + "8.16.1" + ], + "permission": [ + "8.24.4" + ], + "person": [ + "8.10.9" + ], + "personal": [ + "8.8.1" + ], + "personal commitment": [ + "8.7.0" + ], + "personal convergence": [ + "8.8.1" + ], + "personal data": [ + "8.12.0" + ], + "personal energies especially": [ + "8.8.1" + ], + "personal home pages": [ + "8.26.0" + ], + "personal pre": [ + "8.26.0" + ], + "perspective media tacticians": [ + "8.1.0" + ], + "persuasive rhetoric": [ + "8.18.6" + ], + "pervaded medieval media": [ + "8.5.0" + ], + "peter galison": [ + "8.19.0" + ], + "peter galison calls": [ + "8.19.0" + ], + "peter lamborn": [ + "8.0.0", + "8.5.0" + ], + "peter lamborn wilson": [ + "8.0.0", + "8.5.0", + "8.5.0" + ], + "pga convenors committee": [ + "8.18.2" + ], + "philosophy and ethics": [ + "8.25.3" + ], + "php%3fparent%3dnews%26key%3dnews>": [ + "8.23.0" + ], + "pickard": [ + "8.18.5" + ], + "picked": [ + "8.25.5" + ], + "picturesque poor people": [ + "8.16.3" + ], + "pie": [ + "8.1.0" + ], + "pigeonholes carved": [ + "8.18.6" + ], + "pioneering network": [ + "8.25.0" + ], + "pit innocent americans": [ + "8.3.0" + ], + "pit schultz": [ + "8.13.0" + ], + "pitched": [ + "8.24.3" + ], + "pitched at milo": [ + "8.24.3" + ], + "place": [ + "8.11.0", + "8.12.0", + "8.18.5", + "8.24.2" + ], + "place fascists": [ + "8.24.2" + ], + "placeholders for multitudes": [ + "8.18.6" + ], + "places like flickr": [ + "8.21.1" + ], + "plan regular events": [ + "8.0.0" + ], + "planned in houston": [ + "8.25.0" + ], + "platform": [ + "8.24.5", + "8.25.0", + "8.25.2" + ], + "platform capitalism": [ + "8.24.5" + ], + "platform topic": [ + "8.25.2" + ], + "plato finally": [ + "8.16.7" + ], + "plato finally pronounces": [ + "8.16.7" + ], + "plato notes": [ + "8.16.7" + ], + "plato work": [ + "8.16.7" + ], + "playful trickster": [ + "8.12.0" + ], + "playing computer games": [ + "8.12.0" + ], + "please include city": [ + "8.12.0" + ], + "pleasure": [ + "8.25.4" + ], + "pleasure to read": [ + "8.25.4" + ], + "pod": [ + "8.25.3" + ], + "podinski cheers": [ + "8.25.2" + ], + "poets": [ + "8.16.7" + ], + "point": [ + "8.18.3", + "8.20.1", + "8.24.2", + "8.24.5", + "8.25.1" + ], + "point that class": [ + "8.18.3" + ], + "poisonous countersign": [ + "8.1.0" + ], + "polanyi": [ + "8.18.10" + ], + "police": [ + "8.16.1" + ], + "police and intelligence": [ + "8.16.1" + ], + "police death": [ + "8.21.1" + ], + "police using cell": [ + "8.21.1" + ], + "political": [ + "8.3.0", + "8.7.0", + "8.8.0", + "8.9.0", + "8.16.1", + "8.17.0", + "8.18.0", + "8.18.8", + "8.18.10", + "8.20.0", + "8.24.0", + "8.24.5", + "8.27.0" + ], + "political activism": [ + "8.23.0" + ], + "political activists": [ + "8.20.0" + ], + "political address pioneered": [ + "8.20.0" + ], + "political affiliations": [ + "8.24.5" + ], + "political avatar": [ + "8.9.0" + ], + "political campaigns": [ + "8.9.0" + ], + "political change coming": [ + "8.27.0" + ], + "political climate": [ + "8.8.0" + ], + "political david appeal": [ + "8.16.7" + ], + "political deeds": [ + "8.9.0" + ], + "political demands": [ + "8.19.0" + ], + "political frameworks": [ + "8.9.0" + ], + "political idoru": [ + "8.9.0" + ], + "political idoru >": [ + "8.9.0" + ], + "political imaginary": [ + "8.27.0" + ], + "political innovation": [ + "8.22.0" + ], + "political modus operandi": [ + "8.11.0" + ], + "political net artist": [ + "8.12.0", + "8.12.0" + ], + "political organization": [ + "8.10.0" + ], + "political position outside": [ + "8.18.1" + ], + "political potential": [ + "8.24.0" + ], + "political questions": [ + "8.9.0" + ], + "political skills": [ + "8.8.0" + ], + "political struggle": [ + "8.16.1", + "8.16.1" + ], + "political struggle regardless": [ + "8.16.1" + ], + "political styles": [ + "8.8.0" + ], + "political tactics": [ + "8.16.1" + ], + "political theater": [ + "8.9.0" + ], + "political theory": [ + "8.8.0" + ], + "political weaknesses": [ + "8.16.1" + ], + "political writing": [ + "8.16.1" + ], + "politically correct ghetto": [ + "8.18.0" + ], + "politically curious": [ + "8.24.0" + ], + "politically motivated activities": [ + "8.18.0" + ], + "politically tainted due": [ + "8.19.0" + ], + "politics": [ + "8.3.0", + "8.8.0", + "8.16.7", + "8.18.10", + "8.20.0", + "8.20.1", + "8.24.0", + "8.24.4", + "8.24.5" + ], + "politics *culture* particularly": [ + "8.24.5" + ], + "politics aesthetic": [ + "8.16.7" + ], + "polynesian cargo": [ + "8.16.4" + ], + "polynesian cargo cult": [ + "8.16.3", + "8.16.4" + ], + "ponders de certeau": [ + "8.12.0" + ], + "poor form": [ + "8.13.0" + ], + "pop": [ + "8.9.0" + ], + "pop culture": [ + "8.9.0", + "8.9.0" + ], + "pop interfaces": [ + "8.9.0" + ], + "pop modules": [ + "8.9.0" + ], + "pop myth": [ + "8.9.0" + ], + "pop star": [ + "8.9.0", + "8.9.0" + ], + "pop star model": [ + "8.9.0", + "8.9.0" + ], + "pop stars": [ + "8.9.0" + ], + "pop turn": [ + "8.9.0" + ], + "popular keywords": [ + "8.11.0" + ], + "popular media doesn": [ + "8.10.1" + ], + "popular procedures": [ + "8.11.0" + ], + "popular search terms": [ + "8.11.0" + ], + "posing programming exercises": [ + "8.19.0" + ], + "position": [ + "8.24.2" + ], + "position of moral": [ + "8.24.2" + ], + "post": [ + "8.25.16" + ], + "post capitalist culture": [ + "8.24.5" + ], + "post office box": [ + "8.19.0" + ], + "post war germany": [ + "8.10.1" + ], + "postcolonial cultural endeavors": [ + "8.3.0" + ], + "postcolonial understanding": [ + "8.3.0" + ], + "poster announcing themselves": [ + "8.10.0" + ], + "posting": [ + "8.14.0", + "8.25.16" + ], + "posting before properly": [ + "8.13.0" + ], + "posting from jim": [ + "8.14.0" + ], + "posting the link": [ + "8.25.16" + ], + "postmodernism": [ + "8.16.7" + ], + "potential": [ + "8.16.7" + ], + "potential affectiveness looms": [ + "8.12.0" + ], + "potential media tactics": [ + "8.17.0" + ], + "potential tactical regions": [ + "8.5.0" + ], + "potlatch": [ + "8.13.0", + "8.14.0" + ], + "potlatch metaphor": [ + "8.14.0", + "8.14.0" + ], + "potlatch metaphor reflects": [ + "8.14.0" + ], + "power": [ + "8.0.0", + "8.1.0", + "8.3.0", + "8.6.0", + "8.10.0", + "8.10.1", + "8.11.0", + "8.12.0", + "8.18.1", + "8.18.2", + "8.19.0", + "8.24.5" + ], + "power gained ascendancy": [ + "8.11.0" + ], + "power lock tight": [ + "8.12.0" + ], + "power structures": [ + "8.3.0" + ], + "powerful global": [ + "8.20.0" + ], + "practice": [ + "8.1.0", + "8.11.0", + "8.22.0", + "8.27.0" + ], + "practice called spamdexing": [ + "8.11.0" + ], + "practices": [ + "8.10.1", + "8.11.0", + "8.20.1" + ], + "practices stretch": [ + "8.23.0" + ], + "pragmatic info politics": [ + "8.20.0" + ], + "pranks": [ + "8.24.3" + ], + "precise moment": [ + "8.24.0" + ], + "precise term": [ + "8.19.0" + ], + "precise time comes": [ + "8.19.0" + ], + "preconceived opposition forms": [ + "8.17.0" + ], + "precursive experiments": [ + "8.11.0" + ], + "predictably salacious gif": [ + "8.12.0" + ], + "predominant world": [ + "8.6.0" + ], + "preexistent power structures": [ + "8.3.0" + ], + "presence beyond utility": [ + "8.26.0" + ], + "preserve civic virtue": [ + "8.16.7" + ], + "prestigious universities": [ + "8.16.3" + ], + "pretty extreme experiments": [ + "8.5.1" + ], + "prevents": [ + "8.18.4" + ], + "prevents arts": [ + "8.17.0" + ], + "prevents people": [ + "8.18.4" + ], + "previous": [ + "8.10.3" + ], + "previous interactions": [ + "8.10.3" + ], + "price": [ + "8.14.0" + ], + "primary biological metaphor": [ + "8.19.0" + ], + "primitive polynesian": [ + "8.16.4" + ], + "primitive polynesian cargo": [ + "8.16.4" + ], + "prison question added": [ + "8.19.0" + ], + "private communications": [ + "8.11.0" + ], + "private home": [ + "8.26.0" + ], + "private individuals": [ + "8.6.0" + ], + "private media": [ + "8.26.0" + ], + "private media formations": [ + "8.26.0" + ], + "private mixes introduce": [ + "8.6.0" + ], + "private personal neurosis": [ + "8.16.1" + ], + "private vs public": [ + "8.0.0" + ], + "privately financed space": [ + "8.11.0" + ], + "privatisation": [ + "8.18.1" + ], + "privatisation of information": [ + "8.18.1" + ], + "problem": [ + "8.27.0" + ], + "process": [ + "8.5.0", + "8.18.8" + ], + "process is overlaid": [ + "8.18.3" + ], + "produce media products": [ + "8.6.0", + "8.6.0" + ], + "produce military excellence": [ + "8.19.0" + ], + "produce unused tools": [ + "8.27.0" + ], + "produce unwanted reactions": [ + "8.9.0" + ], + "produced": [ + "8.18.10" + ], + "producing public content": [ + "8.6.0" + ], + "producing rumours": [ + "8.9.0" + ], + "production": [ + "8.10.0" + ], + "production technology": [ + "8.22.0" + ], + "productive capacity": [ + "8.11.0" + ], + "productive resources": [ + "8.18.3" + ], + "products": [ + "8.16.2" + ], + "profess": [ + "8.10.3" + ], + "professional medium": [ + "8.2.0" + ], + "proff": [ + "8.10.5" + ], + "program": [ + "8.19.0" + ], + "programmers write code": [ + "8.12.0" + ], + "programming efforts": [ + "8.12.0" + ], + "programming language begin": [ + "8.12.0" + ], + "programming language constitutes": [ + "8.12.0" + ], + "programming shell interface": [ + "8.12.0" + ], + "programs": [ + "8.19.0" + ], + "progress": [ + "8.18.3" + ], + "progressive domain ceded": [ + "8.24.5" + ], + "progressive political theory": [ + "8.8.0" + ], + "project agent radio": [ + "8.26.0" + ], + "projects based": [ + "8.18.2" + ], + "projeto metáfora": [ + "8.21.0" + ], + "propaganda": [ + "8.10.0", + "8.17.0" + ], + "propaganda neither hijacks": [ + "8.17.0" + ], + "proper citations": [ + "8.10.3" + ], + "proper life form": [ + "8.19.0" + ], + "properly introducing": [ + "8.13.0" + ], + "property": [ + "8.18.1" + ], + "property law": [ + "8.18.1", + "8.18.1" + ], + "property question": [ + "8.18.1", + "8.18.2" + ], + "proposal called": [ + "8.10.7" + ], + "proprietary software": [ + "8.19.0" + ], + "protest": [ + "8.16.2" + ], + "protest mode": [ + "8.18.0" + ], + "proverbial": [ + "8.18.6" + ], + "proverbial catch": [ + "8.18.6" + ], + "provide": [ + "8.10.3" + ], + "provide ict assistance": [ + "8.10.0" + ], + "provide temporary comfort": [ + "8.18.0" + ], + "provider code": [ + "8.24.2" + ], + "pseudo activist events": [ + "8.20.1" + ], + "psychological relay": [ + "8.11.0" + ], + "public": [ + "8.4.0", + "8.7.0", + "8.8.0", + "8.10.1", + "8.22.0" + ], + "public access": [ + "8.22.0" + ], + "public access cable": [ + "8.0.0", + "8.19.0", + "8.22.0" + ], + "public access channel": [ + "8.22.0" + ], + "public access internet": [ + "8.22.0" + ], + "public access model": [ + "8.22.0" + ], + "public access television": [ + "8.22.0" + ], + "public access tv": [ + "8.22.0" + ], + "public awareness": [ + "8.19.0" + ], + "public cable": [ + "8.22.0" + ], + "public life": [ + "8.10.1" + ], + "public netbase": [ + "8.22.0", + "8.22.0" + ], + "public networks": [ + "8.10.1" + ], + "public space": [ + "8.0.0" + ], + "public spaces": [ + "8.10.0" + ], + "public sphere": [ + "8.8.0", + "8.10.1" + ], + "pull exerted": [ + "8.12.0" + ], + "punk versus techno": [ + "8.2.0" + ], + "pure disembodied zone": [ + "8.18.0" + ], + "pure fascist politics": [ + "8.24.0" + ], + "pure joy": [ + "8.6.0" + ], + "pure nihilistic potential": [ + "8.24.0" + ], + "pure social construction": [ + "8.6.0" + ], + "purely affective": [ + "8.24.0" + ], + "purely global": [ + "8.7.0" + ], + "purely technical": [ + "8.11.0" + ], + "purpose and love": [ + "8.25.3" + ], + "pursued": [ + "8.18.11" + ], + "pursued this sense": [ + "8.18.11" + ], + "push media": [ + "8.6.0" + ], + "push towards distribution": [ + "8.19.0" + ], + "qaeda documents": [ + "8.19.0" + ], + "qaeda post": [ + "8.19.0" + ], + "qaeda specifically promote": [ + "8.19.0" + ], + "qechua women completed": [ + "8.20.1" + ], + "qualified form": [ + "8.0.0" + ], + "quality": [ + "8.18.10" + ], + "quasi parallel world": [ + "8.6.0" + ], + "question": [ + "8.1.0", + "8.4.0", + "8.8.0", + "8.8.1", + "8.18.0", + "8.18.1", + "8.18.2", + "8.18.5" + ], + "question lies": [ + "8.18.7" + ], + "questioning": [ + "8.10.4" + ], + "questioning the frame": [ + "8.3.0" + ], + "questioning their motives": [ + "8.10.4" + ], + "questions": [ + "8.1.0", + "8.10.6" + ], + "questions imply analysis": [ + "8.1.0" + ], + "quickly": [ + "8.18.6" + ], + "quickly brings": [ + "8.18.6" + ], + "quickly shifting landscapes": [ + "8.17.0" + ], + "quo": [ + "8.10.4", + "8.10.7", + "8.10.8" + ], + "quote": [ + "8.18.9" + ], + "racism search engines": [ + "8.7.0" + ], + "racist nationalists": [ + "8.10.2" + ], + "racist nationalists singing": [ + "8.10.2", + "8.10.2" + ], + "racist political struggles": [ + "8.3.0" + ], + "radar diffuse experimentation": [ + "8.21.1" + ], + "radical critique": [ + "8.15.0" + ], + "radical ethical gamble": [ + "8.24.0" + ], + "radical left ethic": [ + "8.24.0" + ], + "radical left theory": [ + "8.18.0", + "8.18.4" + ], + "radical media pragmatism": [ + "8.18.4" + ], + "radical potential": [ + "8.24.0" + ], + "radical sibling offshoot": [ + "8.25.0" + ], + "radical territory": [ + "8.24.0" + ], + "radical urban social": [ + "8.24.3" + ], + "railway station concourses": [ + "8.0.0" + ], + "ralf burger": [ + "8.19.0", + "8.19.0" + ], + "ralf burger cites": [ + "8.19.0" + ], + "random words": [ + "8.16.6" + ], + "randomly selects sounds": [ + "8.26.0" + ], + "rapidly expanding": [ + "8.23.0" + ], + "rarely passive recipients": [ + "8.20.0" + ], + "rate people": [ + "8.23.0" + ], + "re doing god": [ + "8.10.4" + ], + "re-ocuppy with purpose": [ + "8.25.3" + ], + "reached": [ + "8.24.2" + ], + "reached a point": [ + "8.24.2" + ], + "reaction": [ + "8.17.0" + ], + "reaction make perfect": [ + "8.18.9" + ], + "reaction to tactical": [ + "8.17.0" + ], + "reactionary reading": [ + "8.20.1" + ], + "read": [ + "8.21.1", + "8.25.4" + ], + "read your dissertation": [ + "8.21.1" + ], + "reading": [ + "8.10.2" + ], + "reading albert": [ + "8.10.9" + ], + "reading irving kristol": [ + "8.20.1" + ], + "reading ocalan": [ + "8.25.3" + ], + "reading your text": [ + "8.10.2" + ], + "real": [ + "8.1.0", + "8.6.0", + "8.8.0", + "8.8.1", + "8.10.8", + "8.12.0", + "8.18.0" + ], + "real *material*": [ + "8.8.0" + ], + "real action": [ + "8.1.0" + ], + "real collaboration": [ + "8.27.0" + ], + "real data body": [ + "8.12.0" + ], + "real life chances": [ + "8.0.0" + ], + "real material manifestations": [ + "8.8.0" + ], + "real political": [ + "8.24.5" + ], + "real question": [ + "8.8.1" + ], + "real social transformations": [ + "8.8.1" + ], + "real space": [ + "8.12.0" + ], + "real tactical intervention": [ + "8.8.0" + ], + "realised utopia makes": [ + "8.6.0" + ], + "reality": [ + "8.18.5", + "8.18.8" + ], + "reality checks": [ + "8.2.0", + "8.13.0", + "8.13.0" + ], + "reality multiplicity": [ + "8.18.5" + ], + "reappropriation": [ + "8.21.0" + ], + "reason": [ + "8.5.0" + ], + "reason sovereign media": [ + "8.15.0" + ], + "rebecca gomperts": [ + "8.20.0" + ], + "recent": [ + "8.14.0" + ], + "recent mass protests": [ + "8.23.0" + ], + "recent posting": [ + "8.14.0" + ], + "recently": [ + "8.21.0", + "8.21.1", + "8.25.5" + ], + "recently finished": [ + "8.21.0", + "8.21.1" + ], + "recently reinvented themselves": [ + "8.19.0" + ], + "recently to follow": [ + "8.25.5" + ], + "reclaiming absolute power": [ + "8.6.0" + ], + "recognize": [ + "8.18.5" + ], + "recognize and declare": [ + "8.18.5" + ], + "recurring art question": [ + "8.18.7" + ], + "refers directly": [ + "8.20.1" + ], + "reflection": [ + "8.5.1" + ], + "reflections": [ + "8.18.8" + ], + "reflections on aids": [ + "8.18.8" + ], + "refugee detention centres": [ + "8.18.0" + ], + "regard social": [ + "8.23.0" + ], + "registries": [ + "8.4.0" + ], + "registry": [ + "8.4.0" + ], + "regressive third period": [ + "8.18.0" + ], + "regular": [ + "8.24.2" + ], + "regular people": [ + "8.24.2" + ], + "regulating markets destroys": [ + "8.18.8" + ], + "related incidents include": [ + "8.19.0" + ], + "related social networks": [ + "8.23.0" + ], + "relationships": [ + "8.14.0" + ], + "relatively distinct subset": [ + "8.22.0" + ], + "relatively enthusiastic consumer": [ + "8.16.7" + ], + "relatively simple operation": [ + "8.4.0" + ], + "relentless": [ + "8.10.5" + ], + "relentless takedowns": [ + "8.10.5" + ], + "religious authorities hesitated": [ + "8.5.0" + ], + "remain": [ + "8.10.8" + ], + "remain parallel universes": [ + "8.27.0" + ], + "remember": [ + "8.16.0" + ], + "remember the nestle": [ + "8.16.0" + ], + "reminds": [ + "8.10.2" + ], + "remote tv": [ + "8.26.0" + ], + "replaced": [ + "8.16.6" + ], + "replicating code segment": [ + "8.19.0" + ], + "replicating systems—": [ + "8.19.0" + ], + "reply": [ + "8.10.6", + "8.25.16" + ], + "reply to joanne": [ + "8.15.0" + ], + "reposting": [ + "8.25.16" + ], + "representation": [ + "8.5.0" + ], + "representing local social": [ + "8.22.0" + ], + "repudiate cultural politics": [ + "8.20.0" + ], + "repurposed data object": [ + "8.12.0" + ], + "require direct action": [ + "8.20.1" + ], + "require global participation": [ + "8.17.0" + ], + "required cable companies": [ + "8.22.0" + ], + "research": [ + "8.2.0" + ], + "research carried": [ + "8.11.0" + ], + "research movement raises": [ + "8.2.0" + ], + "resistance": [ + "8.8.0", + "8.18.8", + "8.21.0" + ], + "resistivity invites reification": [ + "8.8.1" + ], + "response": [ + "8.5.0" + ], + "restless control center": [ + "8.24.0" + ], + "resulting ruminations": [ + "8.20.0" + ], + "resulting tactical media": [ + "8.20.0", + "8.20.0" + ], + "rethink": [ + "8.24.2" + ], + "revolution": [ + "8.4.0" + ], + "revolutionary": [ + "8.18.8" + ], + "revolutionary project": [ + "8.20.1" + ], + "revolutionary reflections": [ + "8.18.8" + ], + "revolutionary tv stations": [ + "8.20.1" + ], + "revolutionary virtue": [ + "8.16.7" + ], + "reward": [ + "8.16.6" + ], + "rhetorical question": [ + "8.8.1" + ], + "rich local culture": [ + "8.22.0" + ], + "rich styles activists": [ + "8.2.0" + ], + "richard": [ + "8.14.0" + ], + "richard barbrook": [ + "8.14.0" + ], + "richard reynolds": [ + "8.10.8" + ], + "richardson": [ + "8.15.0" + ], + "richardson at subsol": [ + "8.15.0" + ], + "righteously slam dunking": [ + "8.24.0" + ], + "rightly castigates": [ + "8.24.0" + ], + "rightly takes pains": [ + "8.24.0" + ], + "rights struggles": [ + "8.3.0" + ], + "rigid command structures": [ + "8.2.0" + ], + "rigid dichotomies": [ + "8.2.0" + ], + "rigid time economy": [ + "8.8.0" + ], + "risks missing precisely": [ + "8.10.0" + ], + "ritualised media model": [ + "8.7.0", + "8.7.0" + ], + "rival conceptual frameworks": [ + "8.17.0" + ], + "roaring media age": [ + "8.1.0" + ], + "role": [ + "8.6.0", + "8.16.7" + ], + "role playing environments": [ + "8.26.0" + ], + "rolling research": [ + "8.2.0" + ], + "romantic": [ + "8.16.4" + ], + "romantic movement": [ + "8.16.4" + ], + "romantics": [ + "8.16.4" + ], + "root": [ + "8.5.1" + ], + "root database ranges": [ + "8.4.0" + ], + "rote": [ + "8.25.5" + ], + "rote hilfe": [ + "8.25.5" + ], + "rousseau": [ + "8.16.7" + ], + "rub": [ + "8.18.5" + ], + "rudimentary visual range": [ + "8.12.0" + ], + "ruling": [ + "8.18.1" + ], + "ruling class": [ + "8.18.1", + "8.18.1" + ], + "ruling class altogether": [ + "8.18.1" + ], + "run actions": [ + "8.8.0" + ], + "run guerrilla activism": [ + "8.20.0" + ], + "running regular cybersalons": [ + "8.14.0" + ], + "running the risk": [ + "8.18.7" + ], + "ruse media": [ + "8.5.1" + ], + "saint": [ + "8.10.5" + ], + "sample site concludes": [ + "8.11.0" + ], + "sane": [ + "8.10.4" + ], + "sao paulo state": [ + "8.21.1" + ], + "satellite amateurs": [ + "8.26.0" + ], + "satellite transmission technology": [ + "8.22.0" + ], + "satellite transmissions": [ + "8.26.0" + ], + "satellite tv amateurs": [ + "8.26.0" + ], + "satellite tv transmitter": [ + "8.26.0" + ], + "satisfying protest mode": [ + "8.18.7" + ], + "saturated world": [ + "8.10.8" + ], + "savvy social": [ + "8.19.0" + ], + "scale": [ + "8.4.0" + ], + "scale civil war": [ + "8.2.0" + ], + "scale countervailing practices": [ + "8.11.0" + ], + "scale police riot": [ + "8.23.0" + ], + "scale social protests": [ + "8.22.0" + ], + "scarce social capital": [ + "8.24.0" + ], + "scarcity": [ + "8.14.0" + ], + "scenic downloading spiral": [ + "8.25.0" + ], + "scheme": [ + "8.14.0" + ], + "schneider": [ + "8.18.1", + "8.18.7" + ], + "schneider and geert": [ + "8.18.7" + ], + "schneider confront": [ + "8.18.2" + ], + "scholarship stores resources": [ + "8.10.1" + ], + "school leftist": [ + "8.8.0" + ], + "science fiction": [ + "8.19.0" + ], + "scientific american": [ + "8.19.0" + ], + "scientific community considered": [ + "8.19.0" + ], + "scientific viewpoint": [ + "8.19.0" + ], + "scientist": [ + "8.18.10" + ], + "scores": [ + "8.18.9" + ], + "scores to settle": [ + "8.18.9" + ], + "scorn": [ + "8.10.9" + ], + "sea": [ + "8.10.5" + ], + "sealed cabin conflicts": [ + "8.15.0" + ], + "search": [ + "8.11.0" + ], + "search algorithms": [ + "8.11.0" + ], + "search engine": [ + "8.11.0", + "8.11.0" + ], + "search engine applies": [ + "8.11.0" + ], + "search engine display": [ + "8.11.0" + ], + "search engine serves": [ + "8.11.0" + ], + "search engine website": [ + "8.11.0" + ], + "search engines": [ + "8.11.0" + ], + "search engines succeeded": [ + "8.11.0" + ], + "seattle independent media": [ + "8.23.0" + ], + "seattle media": [ + "8.23.0" + ], + "seattle media activist": [ + "8.23.0", + "8.23.0" + ], + "secret police managed": [ + "8.16.1", + "8.16.1" + ], + "secretive programming methods": [ + "8.12.0" + ], + "secure computer networks": [ + "8.7.0" + ], + "securing global distribution": [ + "8.20.0" + ], + "security strategies": [ + "8.19.0" + ], + "seeing tactical media": [ + "8.2.0" + ], + "seek": [ + "8.17.0" + ], + "seeking direct confrontation": [ + "8.18.0" + ], + "seemingly anarchical internet": [ + "8.19.0" + ], + "seemingly unstructured mess": [ + "8.26.0" + ], + "self build castles": [ + "8.7.0" + ], + "self creation enjoyed": [ + "8.16.4" + ], + "self deluding sideshow": [ + "8.24.5" + ], + "self evidently true": [ + "8.20.0" + ], + "self organization seriously": [ + "8.27.0" + ], + "selling labour time": [ + "8.14.0" + ], + "semiotic civil disobedience": [ + "8.20.0" + ], + "semiotic guerilla strikes": [ + "8.8.0" + ], + "semiotic guerrilla wars": [ + "8.1.0" + ], + "sender": [ + "8.24.2", + "8.24.4", + "8.26.0" + ], + "sender<>audience dichotomy": [ + "8.26.0" + ], + "sense": [ + "8.8.1", + "8.10.0", + "8.10.6", + "8.18.5" + ], + "sense alexander kluge": [ + "8.10.1", + "8.10.1" + ], + "sero positve ball": [ + "8.2.0" + ], + "seropositive ball": [ + "8.2.0" + ], + "server": [ + "8.4.0" + ], + "settle": [ + "8.18.9" + ], + "sexy": [ + "8.24.3" + ], + "sexy neofascists": [ + "8.24.3" + ], + "sfear von": [ + "8.17.0" + ], + "sfear von clauswitz": [ + "8.17.0", + "8.17.0" + ], + "shaping mass psychology": [ + "8.18.4" + ], + "share information": [ + "8.23.0" + ], + "shared resource pool": [ + "8.26.0" + ], + "shared transnational connections": [ + "8.3.0" + ], + "sharp focus laid": [ + "8.11.0" + ], + "sharp-elbowed political tactics": [ + "8.16.1" + ], + "shattered individuals": [ + "8.26.0" + ], + "sheri herndon": [ + "8.23.0" + ], + "shifting theatrical contexts": [ + "8.17.0" + ], + "ship": [ + "8.10.5" + ], + "shock +": [ + "8.25.0" + ], + "shocked": [ + "8.25.2" + ], + "short": [ + "8.25.0" + ], + "short circuiting": [ + "8.12.0" + ], + "short circuiting mentioned": [ + "8.12.0" + ], + "short essay": [ + "8.25.0" + ], + "short heroic epics": [ + "8.7.0" + ], + "short history": [ + "8.25.0" + ], + "short lived": [ + "8.22.0" + ], + "short range approach": [ + "8.22.0" + ], + "short summer": [ + "8.7.0" + ], + "short term concept": [ + "8.2.0" + ], + "short text": [ + "8.22.0" + ], + "showing": [ + "8.25.16" + ], + "significant technological hurdles": [ + "8.22.0" + ], + "silent invisible networks": [ + "8.24.5" + ], + "silent technical advances": [ + "8.12.0" + ], + "simple polemical message": [ + "8.2.0" + ], + "simply": [ + "8.10.8" + ], + "simply political activists": [ + "8.2.0" + ], + "simulacral economy": [ + "8.12.0" + ], + "simulation": [ + "8.9.0" + ], + "simultaneous environmental disaster": [ + "8.7.0" + ], + "simultaneous micro cycles": [ + "8.8.0" + ], + "simultaneously": [ + "8.16.1" + ], + "simultaneously downplays time": [ + "8.3.0" + ], + "simultaneously incredibly abstract": [ + "8.18.0" + ], + "simultaneously intimidated": [ + "8.16.1" + ], + "singing": [ + "8.10.2", + "8.10.6" + ], + "singing a dispassionate": [ + "8.10.6" + ], + "singing the words": [ + "8.10.2" + ], + "single page": [ + "8.11.0" + ], + "singularizing process": [ + "8.18.8" + ], + "sit at computers": [ + "8.16.6" + ], + "site": [ + "8.0.0", + "8.11.0" + ], + "site launching": [ + "8.23.0" + ], + "site specific art": [ + "8.11.0", + "8.11.0" + ], + "situationists concluded": [ + "8.18.4" + ], + "situationists popularised potlatch": [ + "8.14.0" + ], + "situationists' potlatch": [ + "8.14.0" + ], + "situationists' potlatch metaphor": [ + "8.14.0" + ], + "skinhead": [ + "8.10.6" + ], + "skinhead aggressively": [ + "8.10.6" + ], + "skinhead aggressively singing": [ + "8.10.6" + ], + "skinhead case": [ + "8.10.2" + ], + "skinheads aggressively": [ + "8.10.2" + ], + "skinheads aggressively singing": [ + "8.10.2" + ], + "slandered": [ + "8.16.1" + ], + "slavoj zizek looks": [ + "8.18.0" + ], + "slovenian": [ + "8.10.6" + ], + "slovenian national": [ + "8.10.2" + ], + "slovenian national anthem": [ + "8.10.2", + "8.10.2" + ], + "slovenian skinhead": [ + "8.10.6" + ], + "slovenian skinhead aggressively": [ + "8.10.6" + ], + "slow motion implosion": [ + "8.18.1" + ], + "snelson": [ + "8.18.10", + "8.18.11" + ], + "snip": [ + "8.8.1" + ], + "social": [ + "8.6.0", + "8.8.1", + "8.18.0", + "8.18.8", + "8.20.1", + "8.22.0", + "8.24.5", + "8.26.0" + ], + "social action": [ + "8.1.0" + ], + "social anxieties surrounding": [ + "8.19.0" + ], + "social conflicts": [ + "8.7.0" + ], + "social democracy": [ + "8.18.0" + ], + "social dynamics": [ + "8.26.0" + ], + "social experiments": [ + "8.8.0" + ], + "social forces rendered": [ + "8.10.0" + ], + "social formations": [ + "8.18.0" + ], + "social forum": [ + "8.20.1" + ], + "social forums": [ + "8.18.8" + ], + "social functions": [ + "8.5.0" + ], + "social ideology embedded": [ + "8.5.0" + ], + "social institution": [ + "8.18.8" + ], + "social level": [ + "8.22.0" + ], + "social mobilisation": [ + "8.1.0" + ], + "social movements": [ + "8.2.0", + "8.18.0", + "8.18.7", + "8.19.0", + "8.22.0", + "8.24.3" + ], + "social movements associated": [ + "8.18.8" + ], + "social movements worldwide": [ + "8.18.0" + ], + "social personal level": [ + "8.7.0" + ], + "social relationships": [ + "8.14.0" + ], + "social settlement": [ + "8.24.3" + ], + "social theory": [ + "8.26.0" + ], + "socialised media": [ + "8.26.0" + ], + "socialised media media": [ + "8.26.0" + ], + "socialist realism": [ + "8.16.7" + ], + "socially conscious artists": [ + "8.3.0" + ], + "societies": [ + "8.14.0" + ], + "society": [ + "8.18.10" + ], + "society grow silent": [ + "8.12.0" + ], + "soft virtual domains": [ + "8.4.0" + ], + "software": [ + "8.8.0", + "8.13.0" + ], + "software products": [ + "8.19.0" + ], + "sold": [ + "8.18.10" + ], + "solely reactive position": [ + "8.2.0" + ], + "solidarities": [ + "8.25.2" + ], + "soon gain importance": [ + "8.7.0" + ], + "sound moral reflexes": [ + "8.18.8" + ], + "source codes": [ + "8.12.0" + ], + "source community": [ + "8.23.0" + ], + "source etc": [ + "8.13.0" + ], + "source movement": [ + "8.8.0", + "8.8.1" + ], + "source programming": [ + "8.23.0" + ], + "south": [ + "8.18.2" + ], + "south africa": [ + "8.18.2" + ], + "south korea etc": [ + "8.18.2" + ], + "sovereign": [ + "8.15.0", + "8.26.0" + ], + "sovereign media differ": [ + "8.15.0" + ], + "sovereign media geert": [ + "8.15.0" + ], + "sovereign media inhabit": [ + "8.15.0", + "8.15.0" + ], + "sovereign media insulate": [ + "8.15.0", + "8.26.0" + ], + "sovereign media invite": [ + "8.26.0", + "8.26.0" + ], + "sovereign media lack": [ + "8.15.0", + "8.15.0" + ], + "sovereign media lift": [ + "8.15.0", + "8.15.0" + ], + "sovereign media practice": [ + "8.26.0" + ], + "sovereign media produce": [ + "8.26.0" + ], + "sovereign media refuse": [ + "8.15.0" + ], + "sovereigns remain unnoticed": [ + "8.15.0" + ], + "soviet collapse suggested": [ + "8.20.0" + ], + "soviet empire": [ + "8.20.0" + ], + "soviet empire untenable": [ + "8.20.0" + ], + "soviet nuclear power": [ + "8.19.0" + ], + "soviet system": [ + "8.20.0" + ], + "space": [ + "8.4.0", + "8.5.0", + "8.6.0", + "8.11.0", + "8.12.0", + "8.16.5", + "8.26.0" + ], + "space bunting": [ + "8.12.0" + ], + "space bunting interplay": [ + "8.12.0" + ], + "space legal counsel": [ + "8.4.0" + ], + "space of colonization": [ + "8.16.5" + ], + "space or production": [ + "8.16.5" + ], + "space which colonizes": [ + "8.16.5" + ], + "spaces": [ + "8.0.0", + "8.24.5" + ], + "spaces all day": [ + "8.16.6" + ], + "spanish colonization appear": [ + "8.10.0" + ], + "spatial": [ + "8.3.0" + ], + "spatial categories hardly": [ + "8.12.0" + ], + "spatial extremes enables": [ + "8.3.0" + ], + "spatial splitting directly": [ + "8.11.0" + ], + "speak": [ + "8.8.1", + "8.18.5" + ], + "special effect": [ + "8.18.0" + ], + "specialized organizations": [ + "8.22.0" + ], + "specialized task separate": [ + "8.22.0" + ], + "specific": [ + "8.17.0" + ], + "specific discursive diagram": [ + "8.19.0" + ], + "specific military": [ + "8.19.0" + ], + "specific social structures": [ + "8.8.0" + ], + "specific synergy theme": [ + "8.2.0" + ], + "specific technological": [ + "8.3.0" + ], + "specific theater": [ + "8.17.0" + ], + "specific theatrical context": [ + "8.17.0" + ], + "specific urban framework": [ + "8.20.1" + ], + "specifically amsterdam context": [ + "8.10.0" + ], + "specifically provide certification": [ + "8.10.8" + ], + "spectacle": [ + "8.9.0" + ], + "spectacular media": [ + "8.17.0" + ], + "spectacular media circus": [ + "8.1.0", + "8.10.0" + ], + "speculated upper limit": [ + "8.4.0" + ], + "speech klein": [ + "8.23.0" + ], + "sphere": [ + "8.10.1" + ], + "spheres deliberately blurry": [ + "8.20.0" + ], + "spirit begins": [ + "8.18.2" + ], + "stable": [ + "8.24.3" + ], + "stalder tactical media": [ + "8.22.0" + ], + "stalder wrote.": [ + "8.24.5" + ], + "stale": [ + "8.24.2" + ], + "stale and outworn": [ + "8.24.2" + ], + "stalemate": [ + "8.18.6" + ], + "stalemate conundrum": [ + "8.18.6" + ], + "starbucks-style": [ + "8.16.2" + ], + "started making films": [ + "8.10.6" + ], + "starting moral panic": [ + "8.9.0" + ], + "state": [ + "8.21.1", + "8.25.5" + ], + "state censorship": [ + "8.25.5" + ], + "status": [ + "8.10.4", + "8.10.7", + "8.10.8", + "8.16.6" + ], + "status as imaginative": [ + "8.16.6" + ], + "status quo": [ + "8.10.4", + "8.10.7", + "8.10.8" + ], + "status quo prevailing": [ + "8.6.0" + ], + "stayed with grazilia": [ + "8.20.0" + ], + "sterile sense": [ + "8.10.1" + ], + "stimulating pseudo science": [ + "8.0.0" + ], + "stop paying attention": [ + "8.15.0" + ], + "straight line stretching": [ + "8.10.0" + ], + "strange subcultural behaviour": [ + "8.24.0" + ], + "strange word ‘revolution": [ + "8.10.0" + ], + "strategic": [ + "8.5.0", + "8.17.0" + ], + "strategic media": [ + "8.5.0", + "8.10.0" + ], + "strategising": [ + "8.27.0" + ], + "strategising tactical": [ + "8.27.0" + ], + "strategising tactical media": [ + "8.27.0", + "8.27.0" + ], + "strategy": [ + "8.5.0", + "8.10.0", + "8.17.0" + ], + "strategy exists outside": [ + "8.17.0" + ], + "streaming media": [ + "8.26.0" + ], + "street": [ + "8.18.0" + ], + "street locations": [ + "8.12.0" + ], + "street plus cyberspace": [ + "8.18.0" + ], + "street protests": [ + "8.2.0" + ], + "stress overruling creativity": [ + "8.7.0" + ], + "strict political sense": [ + "8.15.0" + ], + "structure usually reserved": [ + "8.18.7" + ], + "struggle": [ + "8.16.1", + "8.18.3" + ], + "struggles": [ + "8.18.3", + "8.18.9", + "8.25.2" + ], + "stuart hall school": [ + "8.10.1" + ], + "stubbornly persistent questions": [ + "8.24.0" + ], + "stuck": [ + "8.18.7" + ], + "stuck in self-satisfying": [ + "8.18.7" + ], + "study visual arts": [ + "8.20.0" + ], + "style armed insurrection": [ + "8.20.0" + ], + "subject": [ + "8.12.0", + "8.24.4" + ], + "subject centred naturalism": [ + "8.20.0" + ], + "subject positions independently": [ + "8.12.0" + ], + "submission": [ + "8.16.1" + ], + "submission with money": [ + "8.16.1" + ], + "submissive": [ + "8.18.4" + ], + "submissive conditioning": [ + "8.18.4" + ], + "subsequent obsolescence provides": [ + "8.12.0" + ], + "subverting pop culture": [ + "8.16.2" + ], + "succesfuly suggest content": [ + "8.6.0" + ], + "success": [ + "8.16.2" + ], + "successful campaign combined": [ + "8.24.5" + ], + "successful immunization programs": [ + "8.18.0" + ], + "sudden tense vigilance": [ + "8.11.0" + ], + "suggested opposing vectors": [ + "8.13.0" + ], + "sun tzu termed": [ + "8.10.0" + ], + "superiority": [ + "8.24.2" + ], + "superiority to ordinary": [ + "8.24.2" + ], + "superiority to regular": [ + "8.24.2" + ], + "support": [ + "8.4.0" + ], + "support name.space": [ + "8.4.0" + ], + "supporting illegalized migrants": [ + "8.2.0" + ], + "supposedly decentralised structure": [ + "8.11.0" + ], + "supposedly neutral zone": [ + "8.11.0" + ], + "supremely sovereign media": [ + "8.26.0" + ], + "surface mail exchange": [ + "8.26.0" + ], + "surgeons": [ + "8.10.9" + ], + "surgeons and janitors": [ + "8.10.9" + ], + "surgery": [ + "8.10.9" + ], + "surrounding cultural/social matrix": [ + "8.8.1" + ], + "surveillance": [ + "8.24.5" + ], + "surviving imaginary ties": [ + "8.15.0", + "8.26.0" + ], + "sustainable practice": [ + "8.2.0" + ], + "swank retail districts": [ + "8.16.3" + ], + "swiss net art": [ + "8.11.0", + "8.11.0" + ], + "sydney": [ + "8.23.0" + ], + "sydney activist scene": [ + "8.23.0", + "8.23.0" + ], + "sydney media": [ + "8.23.0" + ], + "sydney media activists": [ + "8.23.0" + ], + "symbolic": [ + "8.12.0" + ], + "symbolic limits common": [ + "8.12.0" + ], + "symbolic order": [ + "8.12.0" + ], + "symptom": [ + "8.18.6" + ], + "system": [ + "8.4.0", + "8.13.0", + "8.19.0" + ], + "system destruction requires": [ + "8.19.0" + ], + "systematically ignores aids": [ + "8.19.0" + ], + "systems": [ + "8.3.0", + "8.8.0" + ], + "tactical": [ + "8.0.0", + "8.1.0", + "8.2.0", + "8.5.0", + "8.8.0", + "8.10.0", + "8.10.1", + "8.10.2", + "8.11.0", + "8.17.0", + "8.18.0", + "8.19.0", + "8.20.0", + "8.21.0", + "8.21.1", + "8.22.0", + "8.25.0", + "8.27.0" + ], + "tactical aesthetics": [ + "8.17.0" + ], + "tactical art": [ + "8.17.0" + ], + "tactical cuts straight": [ + "8.2.0" + ], + "tactical dimension": [ + "8.2.0" + ], + "tactical imagination plays": [ + "8.2.0" + ], + "tactical intellectual": [ + "8.10.1", + "8.10.1" + ], + "tactical intellectual practice": [ + "8.10.1", + "8.10.1" + ], + "tactical intervention": [ + "8.3.0" + ], + "tactical interventions": [ + "8.3.0" + ], + "tactical knowledge": [ + "8.10.1" + ], + "tactical means tactical": [ + "8.2.0" + ], + "tactical media": [ + "8.0.0", + "8.1.0", + "8.2.0", + "8.2.0", + "8.4.0", + "8.5.0", + "8.5.1", + "8.7.0", + "8.8.0", + "8.8.0", + "8.9.0", + "8.10.0", + "8.10.1", + "8.10.1", + "8.10.2", + "8.11.0", + "8.13.0", + "8.13.0", + "8.15.0", + "8.15.0", + "8.16.4", + "8.17.0", + "8.17.0", + "8.18.0", + "8.18.4", + "8.18.4", + "8.19.0", + "8.20.0", + "8.20.0", + "8.21.0", + "8.21.1", + "8.22.0", + "8.22.0", + "8.23.0", + "8.23.0", + "8.25.0", + "8.25.0", + "8.27.0", + "8.27.0" + ], + "tactical media activism": [ + "8.18.0", + "8.18.0" + ], + "tactical media art": [ + "8.12.0" + ], + "tactical media backward": [ + "8.8.0" + ], + "tactical media built": [ + "8.21.0", + "8.21.0" + ], + "tactical media concept": [ + "8.22.0", + "8.22.0" + ], + "tactical media create": [ + "8.15.0" + ], + "tactical media doesn": [ + "8.10.1" + ], + "tactical media event": [ + "8.25.0", + "8.25.0" + ], + "tactical media felt": [ + "8.2.0" + ], + "tactical media flourished": [ + "8.22.0", + "8.22.0" + ], + "tactical media framework": [ + "8.8.0", + "8.8.0", + "8.8.1" + ], + "tactical media geared": [ + "8.2.0" + ], + "tactical media grew": [ + "8.10.0" + ], + "tactical media groups": [ + "8.0.0" + ], + "tactical media include": [ + "8.0.0" + ], + "tactical media lab": [ + "8.18.7", + "8.22.0" + ], + "tactical media lie": [ + "8.22.0", + "8.22.0" + ], + "tactical media makes": [ + "8.17.0", + "8.17.0" + ], + "tactical media manifesto": [ + "8.5.0", + "8.5.0" + ], + "tactical media means": [ + "8.19.0" + ], + "tactical media miguel": [ + "8.21.0" + ], + "tactical media mobility": [ + "8.0.0" + ], + "tactical media network": [ + "8.0.0", + "8.0.0", + "8.6.0", + "8.6.0" + ], + "tactical media networks": [ + "8.18.0", + "8.18.0" + ], + "tactical media pioneers": [ + "8.22.0", + "8.22.0" + ], + "tactical media practice": [ + "8.2.0", + "8.2.0" + ], + "tactical media practices": [ + "8.2.0" + ], + "tactical media practitioner": [ + "8.19.0" + ], + "tactical media practitioners": [ + "8.1.0", + "8.1.0", + "8.3.0" + ], + "tactical media present": [ + "8.21.0" + ], + "tactical media projects": [ + "8.8.0", + "8.22.0", + "8.22.0" + ], + "tactical media reminds": [ + "8.10.2", + "8.10.2" + ], + "tactical media representations": [ + "8.20.1" + ], + "tactical media scene": [ + "8.21.0" + ], + "tactical media seminar": [ + "8.2.0", + "8.2.0" + ], + "tactical media simultaneously": [ + "8.10.0" + ], + "tactical media tools": [ + "8.27.0", + "8.27.0" + ], + "tactical media umbrella": [ + "8.23.0" + ], + "tactical media universe": [ + "8.10.0", + "8.10.0" + ], + "tactical media usage": [ + "8.2.0", + "8.2.0" + ], + "tactical media written": [ + "8.11.0" + ], + "tactical medium": [ + "8.5.0" + ], + "tactical mode": [ + "8.11.0" + ], + "tactical net": [ + "8.11.0", + "8.12.0" + ], + "tactical net art": [ + "8.11.0", + "8.11.0", + "8.12.0", + "8.12.0" + ], + "tactical net.art": [ + "8.8.0" + ], + "tactical practitioner": [ + "8.0.0", + "8.2.0" + ], + "tactical problem": [ + "8.5.0" + ], + "tactical problem consists": [ + "8.5.0" + ], + "tactical task": [ + "8.22.0" + ], + "tactical/strategic dichotomy helped": [ + "8.0.0" + ], + "tactics": [ + "8.5.1", + "8.10.0", + "8.11.0", + "8.12.0", + "8.16.1", + "8.16.2", + "8.17.0" + ], + "tactics insinuate themselves": [ + "8.10.0" + ], + "takedowns": [ + "8.10.5" + ], + "taking care": [ + "8.26.0" + ], + "talk": [ + "8.5.1" + ], + "talk delights consumer": [ + "8.16.3" + ], + "talked": [ + "8.21.1" + ], + "targeted": [ + "8.16.0" + ], + "targeted for defeat": [ + "8.16.0" + ], + "tati": [ + "8.25.4" + ], + "tatiana from abya": [ + "8.25.3" + ], + "taz": [ + "8.8.0" + ], + "tea party movement": [ + "8.24.3", + "8.24.5" + ], + "tech culture": [ + "8.16.4" + ], + "tech gift economy": [ + "8.14.0" + ], + "tech savvy trickster": [ + "8.23.0" + ], + "tech utopia": [ + "8.23.0" + ], + "technical limitations": [ + "8.12.0" + ], + "technical media": [ + "8.6.0" + ], + "technical network architecture": [ + "8.7.0" + ], + "technical protocols": [ + "8.11.0" + ], + "technological climate": [ + "8.8.0" + ], + "technological dystopia imagined": [ + "8.11.0" + ], + "technological systems operate": [ + "8.3.0" + ], + "technologically dependent projects": [ + "8.23.0" + ], + "technologies": [ + "8.21.0" + ], + "technologies for creative": [ + "8.25.3" + ], + "technology": [ + "8.18.1" + ], + "technology sydney": [ + "8.24.2" + ], + "technospherical spectrum +/": [ + "8.25.0" + ], + "tedious application procedure": [ + "8.4.0" + ], + "telephone system": [ + "8.19.0" + ], + "tellingly called": [ + "8.18.6" + ], + "tellingly called theory": [ + "8.18.6", + "8.18.6" + ], + "temporary alliances": [ + "8.1.0" + ], + "temporary autonomous zone": [ + "8.19.0" + ], + "temporary consensus zones": [ + "8.1.0" + ], + "term": [ + "8.16.4" + ], + "term passes": [ + "8.5.1" + ], + "term passes backwards": [ + "8.5.1", + "8.5.1" + ], + "term soon found": [ + "8.11.0" + ], + "term strategic visions": [ + "8.27.0" + ], + "term tactical": [ + "8.0.0" + ], + "terms": [ + "8.18.3" + ], + "terms describing modes": [ + "8.17.0" + ], + "terror survival strategies": [ + "8.19.0" + ], + "terrorism": [ + "8.10.0" + ], + "text": [ + "8.6.0", + "8.10.2", + "8.24.4" + ], + "text on tactical": [ + "8.10.2" + ], + "theater": [ + "8.17.0" + ], + "theaters": [ + "8.17.0" + ], + "theoretical construct": [ + "8.18.0" + ], + "theorized": [ + "8.18.6" + ], + "theory": [ + "8.18.9" + ], + "thereby silence individual": [ + "8.3.0" + ], + "thing": [ + "8.12.0" + ], + "things": [ + "8.10.6", + "8.10.8", + "8.12.0", + "8.18.5", + "8.20.1" + ], + "third next5minutes conference": [ + "8.11.0" + ], + "third world debt": [ + "8.2.0" + ], + "thoroughly eclipsed": [ + "8.24.0" + ], + "thoroughly nietzschean tech": [ + "8.24.0" + ], + "threat paradigms": [ + "8.19.0" + ], + "threat paradigms happened": [ + "8.19.0" + ], + "threatening andprovoking media": [ + "8.9.0" + ], + "thx": [ + "8.25.4", + "8.25.16" + ], + "thx for posting": [ + "8.25.16" + ], + "tight linking": [ + "8.2.0" + ], + "tight network stretched": [ + "8.15.0" + ], + "time": [ + "8.1.0", + "8.2.0", + "8.4.0", + "8.6.0", + "8.7.0", + "8.8.1", + "8.10.1", + "8.14.0", + "8.15.0", + "8.18.0", + "8.18.10", + "8.25.3" + ], + "time geert lovink": [ + "8.22.0" + ], + "time goes": [ + "8.3.0" + ], + "time model": [ + "8.6.0" + ], + "time to deliver": [ + "8.10.3" + ], + "time user": [ + "8.25.3" + ], + "times reporter admitted": [ + "8.19.0" + ], + "tish": [ + "8.25.16" + ], + "titan grip": [ + "8.25.5" + ], + "today": [ + "8.8.0", + "8.25.2" + ], + "today struggles": [ + "8.25.2" + ], + "token system advocated": [ + "8.14.0" + ], + "tokens": [ + "8.14.0" + ], + "tool": [ + "8.25.3" + ], + "tools": [ + "8.25.3", + "8.27.0" + ], + "topic": [ + "8.25.2" + ], + "topic at transmediale": [ + "8.25.2" + ], + "topics and local": [ + "8.18.7" + ], + "toplevel": [ + "8.4.0" + ], + "toplevel namespace": [ + "8.4.0", + "8.4.0" + ], + "toplevel namespace public": [ + "8.4.0" + ], + "toplevel via internic": [ + "8.4.0" + ], + "total social fact": [ + "8.24.5" + ], + "totality": [ + "8.5.0" + ], + "totally false information": [ + "8.12.0" + ], + "totally interested": [ + "8.21.1" + ], + "touch": [ + "8.25.16" + ], + "towards internal polarisation": [ + "8.20.0" + ], + "towards pure difference": [ + "8.5.1" + ], + "towards quick interventions": [ + "8.22.0" + ], + "town hall meetings": [ + "8.24.3" + ], + "traditional audience": [ + "8.24.5" + ], + "traditional criteria": [ + "8.26.0" + ], + "traditional intellectual": [ + "8.10.1" + ], + "traditional leftist strategy": [ + "8.8.0" + ], + "traditional media": [ + "8.9.0" + ], + "traditional media theory": [ + "8.26.0" + ], + "traditional meeting": [ + "8.26.0" + ], + "traditional military warfare": [ + "8.19.0" + ], + "traditional political parties": [ + "8.24.5" + ], + "traditional sense refusing": [ + "8.2.0" + ], + "traditional simple counter": [ + "8.9.0" + ], + "traditional web pages": [ + "8.26.0" + ], + "traditionally arrives": [ + "8.18.6" + ], + "tragically stupefied shadow": [ + "8.24.0" + ], + "transformed tactical media": [ + "8.20.0" + ], + "transforming tactical media": [ + "8.20.0" + ], + "transgressive": [ + "8.24.2" + ], + "transgressive media vectors": [ + "8.10.1", + "8.10.1" + ], + "translate traditional leftist": [ + "8.8.0" + ], + "transnational capital flows": [ + "8.10.1" + ], + "transnational media flows": [ + "8.10.1" + ], + "trap page": [ + "8.11.0" + ], + "trapped in space": [ + "8.16.5" + ], + "trash": [ + "8.10.9" + ], + "trend towards interactivity": [ + "8.23.0" + ], + "trendy flaky fashions": [ + "8.20.1" + ], + "triangulation interactive artists": [ + "8.2.0" + ], + "trick": [ + "8.5.1" + ], + "trick media": [ + "8.5.1" + ], + "triumphant middle class": [ + "8.0.0" + ], + "trojan horse": [ + "8.19.0" + ], + "trojan horse containing": [ + "8.19.0" + ], + "trojan horses": [ + "8.19.0" + ], + "truck owning pro": [ + "8.24.0" + ], + "true fulfillment": [ + "8.18.4" + ], + "true hybrids leaving": [ + "8.2.0" + ], + "truely distributed network": [ + "8.8.1" + ], + "truely expecting": [ + "8.8.1" + ], + "truly contemptible figure": [ + "8.24.0" + ], + "truly effective activism": [ + "8.18.4" + ], + "truly global connectivity": [ + "8.18.0" + ], + "truly privatised media": [ + "8.26.0" + ], + "truly taboo knowledge": [ + "8.18.0" + ], + "trump": [ + "8.24.0" + ], + "trump campaign dedicated": [ + "8.24.0" + ], + "trump play book": [ + "8.24.5" + ], + "trust traditional forms": [ + "8.24.5" + ], + "truth": [ + "8.15.0" + ], + "try reading albert": [ + "8.10.9" + ], + "tubes pumping blood": [ + "8.24.0" + ], + "tuesday": [ + "8.10.9" + ], + "tv cameraman crowding": [ + "8.20.1" + ], + "tv channel": [ + "8.22.0" + ], + "tv enabled": [ + "8.22.0" + ], + "tv environment": [ + "8.22.0" + ], + "tweets": [ + "8.24.4" + ], + "tweets mail": [ + "8.24.4" + ], + "type tactical media": [ + "8.25.0" + ], + "uk labour party": [ + "8.24.5" + ], + "ulterior": [ + "8.10.3" + ], + "ulterior motive": [ + "8.10.3" + ], + "ultimate consumption machine": [ + "8.12.0" + ], + "ultimate foucauldian": [ + "8.12.0" + ], + "ultimate reference book": [ + "8.22.0" + ], + "ultimately implies": [ + "8.18.4" + ], + "umbrage at kermit": [ + "8.18.11" + ], + "unbureaucratic military": [ + "8.19.0" + ], + "unconstrained nomadic capital": [ + "8.0.0" + ], + "underdeveloped world": [ + "8.18.1" + ], + "understand": [ + "8.18.5" + ], + "understanding": [ + "8.10.3" + ], + "understanding of joanne": [ + "8.10.3" + ], + "undesirable code hidden": [ + "8.19.0" + ], + "undoubtedly vehiculates zizek": [ + "8.12.0" + ], + "unforgiving blank": [ + "8.16.6" + ], + "unforgiving blank spaces": [ + "8.16.6" + ], + "unfunny": [ + "8.10.9" + ], + "unique overriding identity": [ + "8.1.0" + ], + "unique viral threat": [ + "8.19.0" + ], + "unite communities tomorrow": [ + "8.25.0" + ], + "universal media archive": [ + "8.15.0", + "8.26.0" + ], + "universals suppress difference": [ + "8.3.0" + ], + "universe": [ + "8.15.0" + ], + "university": [ + "8.16.1" + ], + "university press": [ + "8.16.1" + ], + "unix operating system": [ + "8.19.0" + ], + "unprecedented": [ + "8.8.1" + ], + "unregulated autonomous zones": [ + "8.24.5" + ], + "unregulated spaces": [ + "8.24.5" + ], + "unused tools": [ + "8.27.0" + ], + "upcoming opening": [ + "8.0.0" + ], + "upcoming wto protests": [ + "8.23.0" + ], + "update system": [ + "8.4.0" + ], + "useful asset managers": [ + "8.19.0" + ], + "useful media efface": [ + "8.15.0" + ], + "user and educator": [ + "8.25.3" + ], + "user environments": [ + "8.26.0" + ], + "user environments enhance": [ + "8.26.0" + ], + "user generated content": [ + "8.23.0" + ], + "users flocking onto": [ + "8.18.0" + ], + "using virtual space": [ + "8.12.0" + ], + "utopian hopes subside": [ + "8.2.0", + "8.13.0" + ], + "utopian/dystopian fantasy existing": [ + "8.11.0" + ], + "uts cricos": [ + "8.24.2" + ], + "uts cricos provider": [ + "8.24.2" + ], + "valuable": [ + "8.18.3" + ], + "valuable point": [ + "8.18.3" + ], + "vanguard art": [ + "8.20.1", + "8.20.1" + ], + "vast distances": [ + "8.16.3" + ], + "vast land populated": [ + "8.18.11" + ], + "vast paedophile ring": [ + "8.24.0" + ], + "ve deliberately gone": [ + "8.20.1" + ], + "vector": [ + "8.10.1", + "8.18.3" + ], + "vectoral": [ + "8.18.1" + ], + "vectoral class": [ + "8.18.1" + ], + "vectoral military technologies": [ + "8.18.1" + ], + "vectoral reconnects information": [ + "8.18.1" + ], + "vectoral trajectories via": [ + "8.10.1" + ], + "vectors": [ + "8.10.1" + ], + "venture capital": [ + "8.18.0" + ], + "verboten": [ + "8.25.5" + ], + "verify content": [ + "8.23.0" + ], + "version": [ + "8.16.3" + ], + "via rote hilfe": [ + "8.25.5" + ], + "viable conceptual framework": [ + "8.17.0" + ], + "vibrant brazilian tactical": [ + "8.21.0" + ], + "vibrant public domain": [ + "8.13.0" + ], + "video art piece": [ + "8.3.0" + ], + "video technology developed": [ + "8.22.0" + ], + "viewer": [ + "8.12.0" + ], + "viral marketing": [ + "8.19.0" + ], + "viral metaphor": [ + "8.19.0" + ], + "virtual": [ + "8.4.0", + "8.12.0", + "8.18.0", + "8.18.1" + ], + "virtual apl interpreter": [ + "8.19.0" + ], + "virtual domains": [ + "8.4.0", + "8.4.0" + ], + "virtual media lab": [ + "8.26.0" + ], + "virtual sit": [ + "8.19.0" + ], + "virtual world": [ + "8.18.0", + "8.18.1" + ], + "virtual world finds": [ + "8.18.1" + ], + "virtual.": [ + "8.18.5" + ], + "virtual. absolutely": [ + "8.18.5" + ], + "virus": [ + "8.19.0" + ], + "virus author": [ + "8.19.0" + ], + "virus warfare": [ + "8.19.0" + ], + "viruses": [ + "8.19.0" + ], + "visit to brazil": [ + "8.20.0" + ], + "vocation": [ + "8.18.10" + ], + "voice jumps straight": [ + "8.5.1" + ], + "von": [ + "8.25.5" + ], + "von indymedia": [ + "8.25.5" + ], + "von indymedia linksunten": [ + "8.25.5" + ], + "waag": [ + "8.0.0" + ], + "waiting": [ + "8.10.4", + "8.10.7", + "8.10.8" + ], + "walt whitman": [ + "8.10.8" + ], + "walter": [ + "8.16.7" + ], + "walter benjamin": [ + "8.11.0", + "8.16.7", + "8.18.10" + ], + "walter benjamin knew": [ + "8.16.7" + ], + "walter benjamin wrote": [ + "8.16.7", + "8.16.7" + ], + "wanadoo.fr": [ + "8.18.9" + ], + "war": [ + "8.10.0", + "8.10.4", + "8.17.0", + "8.19.0" + ], + "war against terrorism": [ + "8.21.1" + ], + "war frequently involves": [ + "8.3.0" + ], + "war republican": [ + "8.24.0" + ], + "war via photographs": [ + "8.3.0" + ], + "warfare": [ + "8.17.0" + ], + "warfare clauswitzs": [ + "8.17.0" + ], + "warfare clauswitzs tactics": [ + "8.17.0" + ], + "wark": [ + "8.5.1", + "8.18.2" + ], + "wark wrote": [ + "8.18.2" + ], + "wars": [ + "8.10.0" + ], + "washington and davos": [ + "8.16.1" + ], + "washington post": [ + "8.19.0" + ], + "wastun": [ + "8.18.5" + ], + "watching reality tv": [ + "8.3.0" + ], + "weaken global capitalism": [ + "8.7.0" + ], + "web": [ + "8.23.0", + "8.25.2" + ], + "web design led": [ + "8.18.0" + ], + "web flood": [ + "8.25.2" + ], + "web site": [ + "8.0.0" + ], + "web surfing": [ + "8.18.0" + ], + "weber": [ + "8.18.10" + ], + "weev": [ + "8.24.0" + ], + "western": [ + "8.24.0" + ], + "western capitalist societies": [ + "8.9.0" + ], + "western europe": [ + "8.1.0" + ], + "western european": [ + "8.1.0" + ], + "western tactical media": [ + "8.0.0" + ], + "western world": [ + "8.19.0" + ], + "wetware bodies meet": [ + "8.7.0" + ], + "whilst artists": [ + "8.27.0" + ], + "whilst artists produce": [ + "8.27.0" + ], + "white": [ + "8.24.0" + ], + "white male misanthropes": [ + "8.24.0" + ], + "white male techno": [ + "8.3.0" + ], + "white nationalists": [ + "8.24.0" + ], + "white race": [ + "8.24.0" + ], + "white supremacist trolls": [ + "8.24.5" + ], + "white supremacy": [ + "8.24.0" + ], + "wide web": [ + "8.26.0" + ], + "widely diverging theories": [ + "8.11.0" + ], + "wider culture": [ + "8.22.0" + ], + "wider progressive change": [ + "8.24.5" + ], + "willed historical amnesia": [ + "8.3.0" + ], + "wing political fallout": [ + "8.18.0" + ], + "wire coat hangers": [ + "8.20.0" + ], + "wolfenstein allows": [ + "8.12.0" + ], + "wolfenstein source code": [ + "8.12.0" + ], + "women": [ + "8.20.0", + "8.20.1" + ], + "women artists": [ + "8.20.0" + ], + "women on waves": [ + "8.20.0" + ], + "wood": [ + "8.10.5" + ], + "woomera detention centre": [ + "8.18.0" + ], + "words": [ + "8.10.2", + "8.12.0", + "8.18.9" + ], + "words call": [ + "8.10.2" + ], + "words into unforgiving": [ + "8.16.6" + ], + "work": [ + "8.0.0", + "8.6.0", + "8.10.5", + "8.12.0", + "8.16.7", + "8.18.7", + "8.18.9", + "8.27.0" + ], + "work tactical": [ + "8.0.0" + ], + "work tactical media": [ + "8.0.0" + ], + "working": [ + "8.16.4" + ], + "working people": [ + "8.16.3", + "8.16.4" + ], + "workspace": [ + "8.6.0" + ], + "world": [ + "8.3.0", + "8.6.0", + "8.10.4", + "8.10.8", + "8.16.1", + "8.16.2", + "8.16.3", + "8.18.0", + "8.18.1", + "8.18.3", + "8.18.5", + "8.23.0" + ], + "world bank": [ + "8.10.8", + "8.10.8" + ], + "world free": [ + "8.16.3" + ], + "world health organization": [ + "8.19.0" + ], + "world is virtual.": [ + "8.18.5" + ], + "world means embracing": [ + "8.16.1" + ], + "world media": [ + "8.18.0" + ], + "world protest": [ + "8.16.2" + ], + "world protest movement": [ + "8.16.1" + ], + "world social forum": [ + "8.20.1" + ], + "world supposedly": [ + "8.10.8" + ], + "world supposedly governed": [ + "8.10.8", + "8.10.8" + ], + "world trade": [ + "8.19.0" + ], + "world trade agreements": [ + "8.2.0" + ], + "world trade center": [ + "8.19.0" + ], + "world trade organization": [ + "8.10.0", + "8.22.0", + "8.23.0" + ], + "world views": [ + "8.10.1" + ], + "world views constructed": [ + "8.10.1" + ], + "world war": [ + "8.10.4", + "8.19.0" + ], + "world war ii": [ + "8.10.4", + "8.19.0" + ], + "world war iii": [ + "8.10.0", + "8.10.0" + ], + "world wide fame": [ + "8.9.0" + ], + "world wide watch": [ + "8.12.0", + "8.12.0" + ], + "worlds grassroots movements": [ + "8.18.2" + ], + "worm": [ + "8.19.0" + ], + "worse": [ + "8.20.1" + ], + "wow": [ + "8.10.6" + ], + "writes": [ + "8.24.2" + ], + "writes andreas broeckmann": [ + "8.19.0" + ], + "writes ralf burger": [ + "8.19.0" + ], + "wrongly labeled": [ + "8.18.7" + ], + "wrongly labeled anti": [ + "8.18.7" + ], + "wrongly labeled anti-globalisation": [ + "8.18.7" + ], + "wrote": [ + "8.10.7", + "8.10.9", + "8.16.6", + "8.18.9", + "8.24.3", + "8.25.2" + ], + "wrote jon ippolito": [ + "8.19.0" + ], + "wrote professor yisrael": [ + "8.19.0" + ], + "wto ministerial": [ + "8.23.0" + ], + "xyz": [ + "8.9.0" + ], + "year ars": [ + "8.21.0" + ], + "year ars electronica": [ + "8.21.0" + ], + "years": [ + "8.2.0", + "8.13.0", + "8.21.1", + "8.25.0", + "8.25.1" + ], + "years ago": [ + "8.10.6", + "8.21.1" + ], + "yield cash flow": [ + "8.4.0" + ], + "york": [ + "8.19.0" + ], + "york tactical media": [ + "8.18.7" + ], + "york times": [ + "8.19.0" + ], + "young": [ + "8.24.3" + ], + "young sexy": [ + "8.24.3" + ], + "young sexy neofascists": [ + "8.24.3" + ], + "yourself media": [ + "8.20.0" + ], + "yourselfers shut themselves": [ + "8.15.0", + "8.26.0" + ], + "zanny begg www": [ + "8.23.0" + ], + "zapatista experience": [ + "8.18.3" + ], + "zapatista floodnet actions": [ + "8.8.0", + "8.8.0" + ], + "zizek": [ + "8.12.0" + ], + "znet": [ + "8.10.7" + ], + "zones": [ + "8.5.0" + ], + "zur": [ + "8.25.5" + ], + "zur kriminalisierung": [ + "8.25.5" + ], + "zur kriminalisierung von": [ + "8.25.5" + ], + "‘liberal cultural excess": [ + "8.24.0" + ], + "’ve": [ + "8.24.2" + ], + "“near real time": [ + "8.23.0" + ], + "” nicholson goes": [ + "8.23.0" + ] + }, + "selected": { + "activism": [ + "8.2.0", + "8.7.0", + "8.9.0", + "8.13.0", + "8.16.3", + "8.18.9" + ], + "activist": [ + "8.2.0", + "8.16.0", + "8.18.7", + "8.20.0", + "8.20.1", + "8.23.0" + ], + "activists": [ + "8.2.0", + "8.13.0", + "8.16.1", + "8.20.0", + "8.23.0", + "8.27.0" + ], + "aids": [ + "8.2.0", + "8.18.7", + "8.18.8", + "8.18.9", + "8.19.0" + ], + "alt.right": [ + "8.24.5" + ], + "amsterdam": [ + "8.24.3", + "8.25.1", + "8.25.2" + ], + "archives": [ + "8.25.16" + ], + "assange": [ + "8.10.5" + ], + "baby boomers": [ + "8.18.0" + ], + "baudrillard": [ + "8.16.5" + ], + "beuys": [ + "8.16.4" + ], + "broadcast media": [ + "8.22.0", + "8.26.0" + ], + "certeau": [ + "8.10.0", + "8.11.0", + "8.12.0" + ], + "computer virus": [ + "8.19.0" + ], + "computer viruses": [ + "8.19.0" + ], + "critical art ensemble": [ + "8.2.0", + "8.18.0", + "8.19.0", + "8.23.0" + ], + "cultural politics": [ + "8.20.0", + "8.24.4" + ], + "cyberspace": [ + "8.12.0" + ], + "fascism": [ + "8.16.7" + ], + "free software": [ + "8.13.0" + ], + "indy media": [ + "8.15.0", + "8.15.0" + ], + "indymedia": [ + "8.10.0", + "8.23.0", + "8.25.0", + "8.25.2", + "8.25.5" + ], + "intellectual property": [ + "8.18.1" + ], + "internet": [ + "8.3.0", + "8.7.0", + "8.18.0", + "8.19.0", + "8.22.0", + "8.23.0", + "8.26.0" + ], + "ljubljana": [ + "8.10.2" + ], + "martin luther king": [ + "8.2.0", + "8.6.0", + "8.16.1", + "8.16.1" + ], + "marx": [ + "8.16.4", + "8.18.2" + ], + "media activism": [ + "8.2.0", + "8.7.0", + "8.7.0", + "8.18.0", + "8.18.7", + "8.21.0" + ], + "media art": [ + "8.2.0", + "8.18.4" + ], + "meme wars": [ + "8.24.5" + ], + "open source": [ + "8.8.1", + "8.27.0" + ], + "plato": [ + "8.16.7" + ], + "programming language": [ + "8.12.0" + ], + "rhizome": [ + "8.8.0" + ], + "saint exupery": [ + "8.10.5" + ], + "sao paulo": [ + "8.21.1" + ], + "seattle": [ + "8.23.0" + ], + "simulacra": [ + "8.16.5" + ], + "sovereign media": [ + "8.15.0", + "8.26.0" + ], + "text filtering": [ + "8.24.4" + ], + "transmediale": [ + "8.25.2" + ], + "virtual space": [ + "8.11.0", + "8.12.0" + ], + "world wide web": [ + "8.18.0", + "8.18.8" + ], + "zapatista": [ + "8.18.3" + ], + "zapatistas": [ + "8.18.2" + ] + } +} \ No newline at end of file diff --git a/index/9.List_talking_to_List-index.js b/index/9.List_talking_to_List-index.js new file mode 100644 index 0000000..3eaaef3 --- /dev/null +++ b/index/9.List_talking_to_List-index.js @@ -0,0 +1,14346 @@ +{ + "orphan": { + "# anders kjãrulff": [ + "9.13.6" + ], + "# antti jãinen": [ + "9.13.6" + ], + "# bodã balãzs": [ + "9.13.6" + ], + "# clãudia amorim": [ + "9.13.6" + ], + "# cãsare peeren": [ + "9.13.6" + ], + "# joakim hãllstrãm": [ + "9.13.6" + ], + "# johan sãberg": [ + "9.13.6" + ], + "# johan sãderberg": [ + "9.13.6" + ], + "# jonatan sãderstrãm": [ + "9.13.6" + ], + "# julia rã": [ + "9.13.6" + ], + "# marcos garcãâa": [ + "9.13.6" + ], + "# micha cãenas": [ + "9.13.6" + ], + "# micha prinsen": [ + "9.13.6" + ], + "# nina temporãr": [ + "9.13.6" + ], + "# petra heck": [ + "9.13.6" + ], + "# petra lãer": [ + "9.13.6" + ], + "# rebeca mãndez": [ + "9.13.6" + ], + "# renã bohne": [ + "9.13.6" + ], + "# stãphane mourey": [ + "9.13.6" + ], + "# stãphanie vilayphiou": [ + "9.13.6" + ], + "# theo rã": [ + "9.13.6" + ], + "# tilman baumgãel": [ + "9.13.6" + ], + "# tilman baumgãrtel": [ + "9.13.6" + ], + "# tobi mã": [ + "9.13.6" + ], + "# ãzgãr": [ + "9.13.6" + ], + "##### john hopkins": [ + "9.13.6" + ], + "* artificial perception": [ + "9.1.0" + ], + "* bat people": [ + "9.1.0" + ], + "* battered summit": [ + "9.1.0" + ], + "* bombing error": [ + "9.1.0" + ], + "* hip": [ + "9.1.0" + ], + "* oleg kireev": [ + "9.1.0" + ], + "* ominous rumbling": [ + "9.1.0" + ], + "* perry anderson": [ + "9.1.0" + ], + "* tehelka crushed": [ + "9.1.0" + ], + "* wifico2 digest": [ + "9.1.0" + ], + "* zapatate speech": [ + "9.1.0" + ], + "* zapatista speeches": [ + "9.1.0" + ], + "/depesche taeglich ueber": [ + "9.25.1" + ], + "/~syndicate/2001": [ + "9.4.0" + ], + "02:00": [ + "9.8.18" + ], + "02:00 john": [ + "9.8.18" + ], + "02:00 john hopkins": [ + "9.8.18" + ], + "1/2 inch disc": [ + "9.24.0" + ], + "10:38": [ + "9.6.3", + "9.6.7" + ], + "10mb video art": [ + "9.19.2" + ], + "11-28 jun": [ + "9.21.0" + ], + "12:05": [ + "9.8.21" + ], + "20:59": [ + "9.8.18" + ], + "20:59 gmt": [ + "9.8.18" + ], + "21st century mental": [ + "9.8.17" + ], + "3:59": [ + "9.14.18" + ], + "3:59 amsubject": [ + "9.14.18" + ], + "4:35": [ + "9.8.9" + ], + "5:57": [ + "9.6.9" + ], + "70s mail": [ + "9.2.0" + ], + "90s internet activist": [ + "9.8.3" + ], + "9:23": [ + "9.13.2" + ], + " digestion digest": [ + "9.17.0" + ], + " hip hop": [ + "9.1.0" + ], + " immediately positioned": [ + "9.13.0" + ], + " perry anderson": [ + "9.1.0" + ], + "=/= cultural politics": [ + "9.28.0" + ], + "=d2crisis=d3": [ + "9.24.0" + ], + ">dear nettimers": [ + "9.19.0" + ], + ">victims sucking pre": [ + "9.25.1" + ], + "_1_ manifest": [ + "9.3.3" + ], + "_blanket spamming_ activity": [ + "9.3.4" + ], + "aantrekkelijk persoon": [ + "9.29.0" + ], + "abd": [ + "9.6.1" + ], + "abroeck": [ + "9.20.3" + ], + "absolutely decrepit situation": [ + "9.6.13" + ], + "absolutely silent": [ + "9.6.13" + ], + "abu dhabi": [ + "9.14.13" + ], + "abu dhabi relating": [ + "9.14.13", + "9.14.13" + ], + "abuse": [ + "9.6.13" + ], + "abusing the list": [ + "9.16.0" + ], + "academic": [ + "9.6.8", + "9.8.23" + ], + "academic american anthology": [ + "9.24.0" + ], + "academic moving": [ + "9.3.0" + ], + "academic studies": [ + "9.6.6" + ], + "academic/publishing commodification creates": [ + "9.8.16", + "9.8.23" + ], + "accelerationist": [ + "9.8.29" + ], + "accelerationist experiment": [ + "9.8.29" + ], + "accept": [ + "9.8.16" + ], + "access": [ + "9.3.2", + "9.26.0" + ], + "access nettime": [ + "9.8.13" + ], + "accidental dust": [ + "9.6.11" + ], + "accolade": [ + "9.8.19" + ], + "accolade whatsoever": [ + "9.8.19" + ], + "account": [ + "9.8.35" + ], + "account of twenty": [ + "9.13.4" + ], + "ace": [ + "9.8.4" + ], + "ace luftwaffism": [ + "9.8.4" + ], + "achieved": [ + "9.3.5" + ], + "achieved by moderating": [ + "9.3.5" + ], + "achieved the stated": [ + "9.3.5" + ], + "act": [ + "9.14.7" + ], + "act collectively": [ + "9.13.0" + ], + "action on avaaz": [ + "9.8.15" + ], + "actions": [ + "9.3.5", + "9.4.0" + ], + "active": [ + "9.8.25", + "9.14.12", + "9.14.14" + ], + "active critical": [ + "9.8.34" + ], + "active critical net": [ + "9.8.34" + ], + "active for approximately": [ + "9.21.0" + ], + "active in consuming": [ + "9.8.25" + ], + "active long": [ + "9.14.12", + "9.14.14" + ], + "active long ago": [ + "9.14.12", + "9.14.14" + ], + "actively engage ideas": [ + "9.6.13" + ], + "activist attitude": [ + "9.6.9" + ], + "activist attitude happening": [ + "9.6.9" + ], + "activity": [ + "9.3.4" + ], + "acts like reality": [ + "9.8.32" + ], + "actual making": [ + "9.3.0" + ], + "actual nazis": [ + "9.14.1" + ], + "actual responses required": [ + "9.6.13" + ], + "actual situations": [ + "9.6.0" + ], + "actually start moderating": [ + "9.14.1" + ], + "add": [ + "9.8.11", + "9.13.3", + "9.14.6" + ], + "add a note": [ + "9.3.12" + ], + "add my voice": [ + "9.8.11" + ], + "add to brian": [ + "9.13.3" + ], + "adding": [ + "9.14.6" + ], + "addition to mez": [ + "9.5.0" + ], + "additional line": [ + "9.15.0" + ], + "address": [ + "9.8.0" + ], + "addresses the actual": [ + "9.3.0" + ], + "adds": [ + "9.14.12" + ], + "administration": [ + "9.24.0" + ], + "admire": [ + "9.14.10" + ], + "adrian miles": [ + "9.27.0", + "9.27.0" + ], + "advance narrow personal/political": [ + "9.13.0" + ], + "affects list": [ + "9.3.3" + ], + "affects list cohesion": [ + "9.3.3" + ], + "afghanistan geert lovink": [ + "9.1.0" + ], + "age": [ + "9.6.10" + ], + "age of net-critique": [ + "9.13.4" + ], + "aggressive mailing list": [ + "9.3.7" + ], + "ago": [ + "9.3.10", + "9.6.12", + "9.8.0", + "9.14.12", + "9.14.14", + "9.14.15", + "9.20.0" + ], + "agree": [ + "9.3.0", + "9.6.2", + "9.6.3", + "9.6.7", + "9.6.16", + "9.8.12", + "9.14.16" + ], + "agree with armin": [ + "9.3.0", + "9.3.7" + ], + "agree with tomasz": [ + "9.14.5" + ], + "aiding offline developments": [ + "9.19.2" + ], + "aims": [ + "9.3.5" + ], + "air": [ + "9.6.15" + ], + "aka hakim bey": [ + "9.6.5" + ], + "alan": [ + "9.24.0-p.471", + "9.24.0-p.471" + ], + "alan recent": [ + "9.24.0-p.471" + ], + "alan sondheim": [ + "9.24.0-p.471" + ], + "aleksanda domanovic": [ + "9.3.0" + ], + "alex": [ + "9.8.15", + "9.8.21" + ], + "alex foti": [ + "9.8.15", + "9.8.21" + ], + "alex foti hi molly": [ + "9.14.18" + ], + "combined furious bile": [ + "9.13.0" + ], + "comfy": [ + "9.8.19" + ], + "comfy institutionally-sponsored": [ + "9.8.19" + ], + "comfy institutionally-sponsored lives": [ + "9.8.19" + ], + "coming": [ + "9.8.35" + ], + "commands": [ + "9.21.0" + ], + "comment": [ + "9.6.4" + ], + "comments": [ + "9.14.8", + "9.14.12", + "9.24.0" + ], + "comments and adds": [ + "9.14.12" + ], + "commit": [ + "9.8.12", + "9.8.21" + ], + "commit suicide": [ + "9.8.12", + "9.8.21" + ], + "commkit": [ + "9.19.2" + ], + "commodification creates": [ + "9.8.23" + ], + "common": [ + "9.6.8", + "9.6.11", + "9.28.0" + ], + "common purpose": [ + "9.14.12" + ], + "commonplace media industry": [ + "9.24.0" + ], + "communicate": [ + "9.20.2" + ], + "communication": [ + "9.14.9" + ], + "communication aspects": [ + "9.14.19" + ], + "communication complex relies": [ + "9.13.0" + ], + "communication with confused": [ + "9.20.2" + ], + "communications": [ + "9.5.0", + "9.8.10", + "9.8.13" + ], + "communications developments": [ + "9.8.10" + ], + "communications developments listed": [ + "9.8.10", + "9.8.10" + ], + "communities": [ + "9.6.17", + "9.19.2" + ], + "communities of discourse": [ + "9.6.17" + ], + "community": [ + "9.3.3", + "9.5.0", + "9.6.15", + "9.8.5", + "9.8.23", + "9.25.1", + "9.27.0" + ], + "community based systems": [ + "9.13.4" + ], + "community dynamics": [ + "9.8.15" + ], + "community forum": [ + "9.5.0" + ], + "community forum communications": [ + "9.5.0" + ], + "community inke arns": [ + "9.3.7" + ], + "community memory": [ + "9.6.15" + ], + "community of blogs": [ + "9.3.12" + ], + "competitive internet services": [ + "9.24.0" + ], + "compiler nettime": [ + "9.17.0" + ], + "complain": [ + "9.6.16" + ], + "complaint": [ + "9.14.5" + ], + "complaints": [ + "9.19.1" + ], + "complaints about nettime": [ + "9.19.1" + ], + "complete failure": [ + "9.13.0" + ], + "complete mail archive": [ + "9.3.7" + ], + "complete nettime archive+zkp1": [ + "9.24.0" + ], + "completely": [ + "9.4.0", + "9.8.36" + ], + "completely open channel": [ + "9.18.0" + ], + "complex scalable": [ + "9.19.2" + ], + "composition of subscribers": [ + "9.8.2" + ], + "compression": [ + "9.17.1" + ], + "computer nettime": [ + "9.21.0" + ], + "computer nettime runs": [ + "9.21.0", + "9.21.0" + ], + "computer professionals": [ + "9.24.0", + "9.24.0" + ], + "computer-child": [ + "9.14.6" + ], + "comrades": [ + "9.8.22" + ], + "concept brian holmes": [ + "9.1.0" + ], + "concept keith hart": [ + "9.1.0" + ], + "concept mckenzie wark": [ + "9.1.0" + ], + "concern for humanity": [ + "9.6.17" + ], + "concerns": [ + "9.14.0" + ], + "conclude bruce sterling": [ + "9.1.0" + ], + "concrete": [ + "9.6.7" + ], + "concrete ideas": [ + "9.6.3", + "9.6.7" + ], + "concrete proposal": [ + "9.6.7" + ], + "conference": [ + "9.9.1" + ], + "conference zk meeting": [ + "9.6.5" + ], + "confesses": [ + "9.14.3" + ], + "confesses hazards": [ + "9.14.3" + ], + "confirms to stereotype": [ + "9.8.2" + ], + "confused molly hankwitz": [ + "9.8.32" + ], + "confused subscribers": [ + "9.20.2" + ], + "connect": [ + "9.8.15" + ], + "connected peace": [ + "9.3.2" + ], + "connected peace activists": [ + "9.3.2", + "9.3.2" + ], + "connected_ via multiple": [ + "9.3.3" + ], + "connection / disconnection": [ + "9.6.8" + ], + "conservative": [ + "9.14.6" + ], + "conservative or critical": [ + "9.14.6" + ], + "consideration": [ + "9.14.12" + ], + "considered response": [ + "9.8.13" + ], + "consistent": [ + "9.14.2", + "9.14.4" + ], + "consistent bourgeois": [ + "9.14.1", + "9.14.2", + "9.14.4" + ], + "consistent bourgeois misunderstanding": [ + "9.14.1", + "9.14.1", + "9.14.2", + "9.14.2", + "9.14.4", + "9.14.4" + ], + "constantly": [ + "9.14.10" + ], + "constantly thrilled": [ + "9.14.10" + ], + "constituency": [ + "9.8.24" + ], + "constituent": [ + "9.14.6" + ], + "constituent parts": [ + "9.14.6" + ], + "constructed collapsed years": [ + "9.6.12" + ], + "constructing mailing lists": [ + "9.25.1" + ], + "constructive": [ + "9.3.5" + ], + "constructive debate": [ + "9.3.5" + ], + "consuming": [ + "9.8.25" + ], + "consuming the fantastic": [ + "9.8.25" + ], + "contact": [ + "9.27.1" + ], + "contact info": [ + "9.27.1" + ], + "contact info etc": [ + "9.27.1" + ], + "contact points": [ + "9.3.11" + ], + "containment": [ + "9.17.1" + ], + "contaminate ken": [ + "9.6.11" + ], + "contemporary art": [ + "9.9.0" + ], + "content": [ + "9.6.0", + "9.13.3" + ], + "content liberation front": [ + "9.24.0" + ], + "context": [ + "9.14.5", + "9.25.1" + ], + "contextless": [ + "9.14.2", + "9.14.4" + ], + "contexts": [ + "9.8.25" + ], + "continue": [ + "9.21.0" + ], + "continue to send": [ + "9.21.0" + ], + "continued": [ + "9.8.24" + ], + "continued presence": [ + "9.8.24" + ], + "continues": [ + "9.8.8" + ], + "continuous migration accompanied": [ + "9.6.9" + ], + "contribute": [ + "9.14.9", + "9.14.14" + ], + "contributing": [ + "9.8.25" + ], + "contributing sense": [ + "9.8.25" + ], + "control": [ + "9.14.3" + ], + "conversations": [ + "9.8.36", + "9.14.10" + ], + "cool": [ + "9.8.7", + "9.8.12", + "9.14.8" + ], + "cool kids": [ + "9.8.7" + ], + "corner bar": [ + "9.8.17" + ], + "corner bar metaphor": [ + "9.8.17", + "9.8.17" + ], + "cornerstone": [ + "9.6.10" + ], + "correct nettime-l": [ + "9.20.3" + ], + "correct nettime-l address": [ + "9.20.3" + ], + "cost of running": [ + "9.18.0" + ], + "count": [ + "9.8.11" + ], + "counterpoint": [ + "9.8.5" + ], + "course personal exchanges": [ + "9.29.0" + ], + "covered": [ + "9.8.11" + ], + "covering issues": [ + "9.27.0" + ], + "cowering mate": [ + "9.6.12" + ], + "cpaul": [ + "9.20.0", + "9.20.2" + ], + "cpr": [ + "9.7.0" + ], + "cpr gathering": [ + "9.7.0" + ], + "cpsr": [ + "9.24.0" + ], + "cpsr comment follows": [ + "9.24.0", + "9.24.0" + ], + "cramer": [ + "9.24.0-p.471" + ], + "cramer just stopped": [ + "9.24.0-p.471" + ], + "create": [ + "9.5.0", + "9.14.10", + "9.20.2", + "9.20.3" + ], + "create a mailing": [ + "9.20.2", + "9.20.3" + ], + "create and maintain": [ + "9.20.2" + ], + "create things": [ + "9.14.10" + ], + "created automatically": [ + "9.2.0" + ], + "creates a greater": [ + "9.8.23" + ], + "creating alternative": [ + "9.20.3" + ], + "creating alternative channels": [ + "9.20.2", + "9.20.3", + "9.20.3" + ], + "creating multiple options": [ + "9.3.7" + ], + "creepy": [ + "9.8.33", + "9.10.28" + ], + "creepy designater": [ + "9.10.28" + ], + "crime": [ + "9.4.0" + ], + "critical": [ + "9.6.8", + "9.6.11", + "9.7.0", + "9.8.2", + "9.14.6", + "9.24.0" + ], + "critical activity therein": [ + "9.24.0" + ], + "critical approach": [ + "9.14.6" + ], + "critical heft": [ + "9.8.15" + ], + "critical ideas": [ + "9.6.8" + ], + "critical internet": [ + "9.3.6" + ], + "critical internet culture": [ + "9.3.6", + "9.3.6" + ], + "critical net.culture talked": [ + "9.6.2" + ], + "critical political": [ + "9.6.8" + ], + "critical political economy": [ + "9.6.8" + ], + "critical practitioners": [ + "9.7.0" + ], + "critical thinkers": [ + "9.8.2" + ], + "critical view": [ + "9.14.6" + ], + "critical work": [ + "9.6.11" + ], + "critically": [ + "9.14.6" + ], + "criticism": [ + "9.3.13", + "9.6.11", + "9.28.0" + ], + "criticism concerning female": [ + "9.19.0" + ], + "croatia": [ + "9.3.6" + ], + "cross": [ + "9.3.3", + "9.8.13" + ], + "cross poster": [ + "9.3.3" + ], + "cross posting": [ + "9.3.3" + ], + "cross posting cross": [ + "9.3.3" + ], + "crowd": [ + "9.8.2" + ], + "crowd of critical": [ + "9.8.2" + ], + "crucial": [ + "9.13.2" + ], + "crucial intervention": [ + "9.13.2" + ], + "cubitt": [ + "9.8.13" + ], + "cultural": [ + "9.8.0", + "9.13.0", + "9.28.0" + ], + "cultural center": [ + "9.3.7" + ], + "cultural center pyramid": [ + "9.3.7" + ], + "cultural funding dried": [ + "9.13.0" + ], + "cultural novi sad": [ + "9.2.0", + "9.3.7" + ], + "cultural politics": [ + "9.28.0" + ], + "cultural producers": [ + "9.3.7" + ], + "culture": [ + "9.3.7", + "9.6.2", + "9.6.8", + "9.6.9", + "9.8.7", + "9.19.0" + ], + "culture i preferred": [ + "9.8.34" + ], + "curators/writers valérie lamontagne": [ + "9.27.0" + ], + "curie": [ + "9.8.11" + ], + "curie fellow": [ + "9.8.11" + ], + "currency": [ + "9.13.2" + ], + "currency trading": [ + "9.13.2" + ], + "current": [ + "9.20.2" + ], + "current archive goes": [ + "9.13.6" + ], + "current events": [ + "9.27.0" + ], + "current guest instead": [ + "9.27.0" + ], + "current moderators": [ + "9.20.2" + ], + "current moderators don": [ + "9.20.2" + ], + "curtain": [ + "9.8.10" + ], + "cutting edge techie": [ + "9.8.3" + ], + "cynical pessimism": [ + "9.14.19" + ], + "czegledy": [ + "9.8.30" + ], + "daily": [ + "9.8.15", + "9.8.20" + ], + "daily basis": [ + "9.3.7", + "9.8.15" + ], + "daily existence": [ + "9.8.20" + ], + "daily grind": [ + "9.8.20" + ], + "damn": [ + "9.6.16" + ], + "dan": [ + "9.8.35" + ], + "dangerous": [ + "9.8.23" + ], + "dangerous word": [ + "9.8.23" + ], + "dare": [ + "9.6.16" + ], + "dare you attempt": [ + "9.6.16" + ], + "dare you presume": [ + "9.6.16" + ], + "darko": [ + "9.3.10" + ], + "darko actually provided": [ + "9.3.10", + "9.3.10" + ], + "data": [ + "9.3.3", + "9.3.4" + ], + "data methods": [ + "9.3.4" + ], + "data nodes": [ + "9.3.4" + ], + "database design": [ + "9.24.0" + ], + "date": [ + "9.6.4", + "9.10.0", + "9.14.18", + "9.25.0" + ], + "daughter": [ + "9.8.12" + ], + "daughter into believing": [ + "9.8.12" + ], + "david": [ + "9.6.5", + "9.6.10", + "9.6.11", + "9.6.15", + "9.8.5", + "9.8.21", + "9.8.23", + "9.8.33", + "9.13.0", + "9.13.6", + "9.14.19" + ], + "david bennehum": [ + "9.6.5" + ], + "david garcia": [ + "9.6.10", + "9.7.0", + "9.7.0", + "9.8.5", + "9.8.16", + "9.8.21", + "9.13.0" + ], + "david garcia asked": [ + "9.13.0" + ], + "david garcia eloquent": [ + "9.6.10" + ], + "david garcia immediately": [ + "9.8.21" + ], + "david garcia suggested": [ + "9.8.21", + "9.8.21" + ], + "david garcia wrote": [ + "9.7.0", + "9.7.0" + ], + "david garica": [ + "9.8.23" + ], + "day": [ + "9.1.0", + "9.6.12", + "9.13.2", + "9.26.0" + ], + "day left": [ + "9.1.0", + "9.1.0" + ], + "day left don": [ + "9.1.0" + ], + "day left nettime": [ + "9.1.0", + "9.1.0" + ], + "daylight time": [ + "9.10.0" + ], + "days": [ + "9.14.14", + "9.24.0-p.471" + ], + "days ago": [ + "9.8.32" + ], + "days and thinking": [ + "9.14.14" + ], + "days english": [ + "9.3.12" + ], + "de-moderate": [ + "9.6.1" + ], + "de-moderate the list": [ + "9.6.1" + ], + "dead": [ + "9.14.17", + "9.21.0" + ], + "deaf reader": [ + "9.17.0" + ], + "deal": [ + "9.6.13" + ], + "dear": [ + "9.3.11", + "9.6.16", + "9.8.0", + "9.8.17", + "9.8.20", + "9.8.24", + "9.8.32", + "9.8.35", + "9.9.1", + "9.10.0", + "9.13.7", + "9.18.0", + "9.20.2", + "9.22.0", + "9.23.0" + ], + "dear bbc": [ + "9.6.16" + ], + "dear calin": [ + "9.9.1" + ], + "dear cpaul": [ + "9.20.2" + ], + "dear david": [ + "9.6.11" + ], + "dear friends": [ + "9.3.11" + ], + "dear mod": [ + "9.8.20" + ], + "dear mod squad": [ + "9.8.20", + "9.8.20", + "9.19.0", + "9.19.0" + ], + "dear moderators": [ + "9.8.35", + "9.23.0" + ], + "dear nettimers": [ + "9.8.0", + "9.8.3", + "9.8.24", + "9.10.0", + "9.13.4", + "9.13.7", + "9.18.0", + "9.22.0" + ], + "dear ted": [ + "9.8.17", + "9.8.32" + ], + "dearly": [ + "9.8.6" + ], + "death": [ + "9.6.8", + "9.6.9", + "9.6.14", + "9.6.16", + "9.8.34" + ], + "deathspeed": [ + "9.8.29" + ], + "debate": [ + "9.3.5", + "9.6.11", + "9.19.2" + ], + "debate that excludes": [ + "9.3.5" + ], + "debated and developed": [ + "9.13.3" + ], + "debates": [ + "9.14.16" + ], + "debates faded quickly": [ + "9.13.0" + ], + "dec": [ + "9.15.0" + ], + "decade": [ + "9.14.12", + "9.14.14" + ], + "decentralized designs towards": [ + "9.13.0" + ], + "decisive conflicts": [ + "9.13.0" + ], + "decline": [ + "9.2.0" + ], + "dedicated": [ + "9.3.5", + "9.8.10" + ], + "dedicated moderating": [ + "9.8.10" + ], + "dedicated moderating squad": [ + "9.8.10" + ], + "dedicated moderator team": [ + "9.27.0" + ], + "dedicated to constructive": [ + "9.3.5" + ], + "deep": [ + "9.3.6" + ], + "deep ethos": [ + "9.3.7" + ], + "deeper historical analyses": [ + "9.13.0" + ], + "deeper stats available": [ + "9.13.6" + ], + "deeply unpleasant": [ + "9.3.8" + ], + "defeated": [ + "9.6.12" + ], + "deficiences": [ + "9.8.2" + ], + "deficiences of nettime": [ + "9.8.2" + ], + "define": [ + "9.14.0" + ], + "define nettime": [ + "9.14.0" + ], + "defined": [ + "9.8.35", + "9.14.0" + ], + "defining": [ + "9.14.0" + ], + "defining issues": [ + "9.14.0" + ], + "definition": [ + "9.14.5" + ], + "definitions are interesting": [ + "9.14.5" + ], + "definitively _not_ broken": [ + "9.6.10" + ], + "defy": [ + "9.12.0" + ], + "defy the institutions": [ + "9.8.19", + "9.12.0" + ], + "degraded signal": [ + "9.20.3" + ], + "degree": [ + "9.20.1" + ], + "deleuze": [ + "9.8.36" + ], + "deliberate": [ + "9.14.16" + ], + "deliberate effort": [ + "9.14.16" + ], + "delicacy toward people": [ + "9.6.17" + ], + "delivery": [ + "9.2.0" + ], + "delivery software": [ + "9.2.0" + ], + "demand": [ + "9.25.1" + ], + "demise": [ + "9.8.25" + ], + "demographic composition": [ + "9.8.2" + ], + "demon": [ + "9.14.17" + ], + "department": [ + "9.8.13" + ], + "department of media": [ + "9.8.13" + ], + "depression": [ + "9.13.5" + ], + "der": [ + "9.13.6" + ], + "describe": [ + "9.8.2" + ], + "describe are real": [ + "9.8.2" + ], + "describe internal": [ + "9.3.3" + ], + "describe internal turmoil": [ + "9.3.3", + "9.3.3" + ], + "describe traffic": [ + "9.3.7" + ], + "deserve": [ + "9.8.33", + "9.10.28" + ], + "deserve the creepy": [ + "9.8.33", + "9.10.28" + ], + "design": [ + "9.13.4" + ], + "design media": [ + "9.8.17" + ], + "design media arts": [ + "9.8.17" + ], + "design social interfaces": [ + "9.24.0" + ], + "designater": [ + "9.8.33", + "9.10.28" + ], + "desk.nl rebuilds": [ + "9.21.0" + ], + "destroyed": [ + "9.6.15" + ], + "destroyed by endless": [ + "9.6.15" + ], + "destructive": [ + "9.16.0" + ], + "destructive nettime criticism": [ + "9.24.0" + ], + "determinism": [ + "9.13.7" + ], + "developed": [ + "9.8.23", + "9.13.3", + "9.14.8" + ], + "developed through tactical": [ + "9.13.3" + ], + "dhabi relating": [ + "9.14.13" + ], + "dialogue": [ + "9.14.5" + ], + "diana": [ + "9.13.7" + ], + "died": [ + "9.14.16" + ], + "difference": [ + "9.3.3", + "9.3.4" + ], + "difference between shit": [ + "9.8.13" + ], + "difficult to gage": [ + "9.3.11" + ], + "dig nettime": [ + "9.17.0" + ], + "digest": [ + "9.1.0", + "9.24.0-p.471" + ], + "digest nettime": [ + "9.17.0" + ], + "digest started": [ + "9.24.0-p.471" + ], + "digital arts history": [ + "9.3.5" + ], + "digital entertainment": [ + "9.14.5" + ], + "dilemma": [ + "9.20.1" + ], + "dir": [ + "9.6.4" + ], + "direct": [ + "9.3.14", + "9.8.2" + ], + "direct qualitative": [ + "9.8.2" + ], + "direct qualitative feedback": [ + "9.8.2", + "9.8.2" + ], + "direct telnet due": [ + "9.24.0" + ], + "direct this message": [ + "9.3.14" + ], + "direction": [ + "9.24.0-p.471" + ], + "directions": [ + "9.13.1" + ], + "directly": [ + "9.27.1" + ], + "directly echo issues": [ + "9.24.0" + ], + "director": [ + "9.3.8" + ], + "director of anat": [ + "9.27.0" + ], + "dirty tricks": [ + "9.26.0", + "9.26.0" + ], + "disallowing andreas": [ + "9.14.18" + ], + "disappeared": [ + "9.14.16" + ], + "disappeared or died": [ + "9.14.16" + ], + "disconnected": [ + "9.6.17" + ], + "disconnected to issues": [ + "9.6.17" + ], + "discourse": [ + "9.6.0", + "9.6.15", + "9.6.17", + "9.8.23", + "9.14.19", + "9.28.0" + ], + "discourse has developed": [ + "9.8.23" + ], + "discourse.â": [ + "9.8.7" + ], + "discoursive text form": [ + "9.24.0" + ], + "discovered": [ + "9.14.6" + ], + "discovered nettime": [ + "9.14.6" + ], + "discovery whatever": [ + "9.6.11" + ], + "discuss theoretical issues": [ + "9.27.0" + ], + "discussing": [ + "9.27.0" + ], + "discussion": [ + "9.5.0", + "9.8.11", + "9.14.14", + "9.27.0", + "9.29.0" + ], + "discussion threads extended": [ + "9.13.0" + ], + "discussion/community forum communications": [ + "9.5.0" + ], + "discussions": [ + "9.3.12", + "9.6.17", + "9.8.15", + "9.8.30", + "9.14.7" + ], + "discussions are disconnected": [ + "9.6.17" + ], + "discussions faithfully": [ + "9.8.30" + ], + "disk": [ + "9.0.0", + "9.3.10" + ], + "disks": [ + "9.15.0" + ], + "dislike": [ + "9.14.2" + ], + "dispersal": [ + "9.3.4" + ], + "disseminate standard": [ + "9.14.18" + ], + "disseminate standard sexist": [ + "9.14.18" + ], + "distinct unfiltered channel": [ + "9.25.1" + ], + "distribute mail": [ + "9.21.0" + ], + "distributed mailing list": [ + "9.28.0" + ], + "distributing": [ + "9.3.13" + ], + "distribution": [ + "9.24.0-p.471" + ], + "distribution economy": [ + "9.24.0-p.471" + ], + "disturbance": [ + "9.26.0" + ], + "disturbance surprise": [ + "9.26.0" + ], + "diverse than that.": [ + "9.8.2" + ], + "divide digest": [ + "9.1.0" + ], + "dividing ideas": [ + "9.6.0" + ], + "dns": [ + "9.24.0" + ], + "dns =d2reform=d3": [ + "9.24.0" + ], + "dns administration": [ + "9.24.0" + ], + "dns administration process": [ + "9.24.0", + "9.24.0" + ], + "dns issues": [ + "9.24.0", + "9.24.0" + ], + "dns management": [ + "9.24.0" + ], + "dns practices": [ + "9.24.0" + ], + "dns reform": [ + "9.24.0", + "9.24.0" + ], + "dns reform combines": [ + "9.24.0" + ], + "dns reform process": [ + "9.24.0", + "9.24.0" + ], + "dns system": [ + "9.24.0", + "9.24.0" + ], + "doctrinaire": [ + "9.14.3" + ], + "doctrinaire free": [ + "9.14.3" + ], + "doctrinaire free speech": [ + "9.14.3", + "9.14.3" + ], + "doe": [ + "9.8.3" + ], + "doe n't work": [ + "9.8.3" + ], + "does": [ + "9.8.3" + ], + "does n't matter": [ + "9.8.3" + ], + "dog": [ + "9.6.10" + ], + "doma": [ + "9.15.0", + "9.16.0" + ], + "domain": [ + "9.24.0" + ], + "domain name management": [ + "9.24.0" + ], + "domain name registration": [ + "9.24.0" + ], + "domain name system": [ + "9.24.0" + ], + "domain names": [ + "9.24.0" + ], + "domain registration": [ + "9.24.0" + ], + "domain was created": [ + "9.3.0" + ], + "domanovic": [ + "9.3.0" + ], + "dominant euphoria": [ + "9.14.19" + ], + "dominatable by recitation": [ + "9.6.12" + ], + "dominated": [ + "9.14.0" + ], + "dot": [ + "9.8.5" + ], + "double": [ + "9.6.15" + ], + "doubt": [ + "9.6.10" + ], + "doubt call": [ + "9.6.10" + ], + "dprk alan sondheim": [ + "9.1.0" + ], + "draft an entry": [ + "9.13.0" + ], + "drama of leftright": [ + "9.14.7" + ], + "dravska": [ + "9.8.33" + ], + "drift": [ + "9.13.5" + ], + "drive large numbers": [ + "9.19.1" + ], + "dropped": [ + "9.14.15" + ], + "drupal allow voting": [ + "9.19.1" + ], + "due": [ + "9.3.3", + "9.20.1" + ], + "due respect": [ + "9.24.0" + ], + "duo": [ + "9.8.4" + ], + "duo shaheedistic": [ + "9.8.4" + ], + "duo shaheedistic sado": [ + "9.8.4" + ], + "duo shaheedistic sado-masochism": [ + "9.8.4" + ], + "duo-murder": [ + "9.8.4" + ], + "duo-suicide": [ + "9.8.4" + ], + "duo-suicide or duo-murder": [ + "9.8.4" + ], + "dying profession battling": [ + "9.6.12" + ], + "dyne.org": [ + "9.13.1" + ], + "dyne.org can fit": [ + "9.13.1" + ], + "dyslexic": [ + "9.14.11" + ], + "e-mails calling": [ + "9.8.15" + ], + "earhart guthmiller": [ + "9.8.4" + ], + "earlier": [ + "9.3.12" + ], + "earlier on-line forums": [ + "9.8.16" + ], + "earlier period": [ + "9.3.12" + ], + "early": [ + "9.6.2", + "9.13.0" + ], + "early days": [ + "9.3.12" + ], + "early days english": [ + "9.3.12" + ], + "early net.culture": [ + "9.6.2" + ], + "early nettime": [ + "9.6.5" + ], + "earth": [ + "9.13.4" + ], + "earth-system": [ + "9.13.4" + ], + "easiest thing": [ + "9.6.3", + "9.6.7" + ], + "easily searchable": [ + "9.8.23" + ], + "east": [ + "9.6.5", + "9.19.0" + ], + "east coast canada": [ + "9.27.0" + ], + "east european": [ + "9.3.11", + "9.19.0", + "9.19.0" + ], + "east european attitude": [ + "9.19.0" + ], + "east european media": [ + "9.3.11", + "9.3.11" + ], + "east/west europe focus": [ + "9.3.5" + ], + "eastern": [ + "9.9.0" + ], + "eastern daylight time": [ + "9.10.0", + "9.10.0" + ], + "eastern european": [ + "9.9.0" + ], + "eastern european mind": [ + "9.9.0", + "9.9.0" + ], + "eastern hemisphere": [ + "9.14.13" + ], + "eastern underground culture": [ + "9.19.0", + "9.19.0" + ], + "easy": [ + "9.6.12", + "9.20.2", + "9.20.3" + ], + "easy blaming": [ + "9.6.12" + ], + "easy to find": [ + "9.15.0" + ], + "economic grand strategies": [ + "9.13.5" + ], + "economical media hybrid": [ + "9.24.0" + ], + "economy": [ + "9.24.0-p.471", + "9.24.0-p.471" + ], + "edge": [ + "9.8.11" + ], + "edi muka": [ + "9.3.7" + ], + "editing": [ + "9.8.36" + ], + "edition": [ + "9.13.3" + ], + "editor nettime": [ + "9.17.0" + ], + "editors": [ + "9.20.1" + ], + "eduardo navas": [ + "9.20.1" + ], + "edukacija": [ + "9.8.33" + ], + "edukacija dravska": [ + "9.8.33" + ], + "een stout": [ + "9.29.0" + ], + "een stout stukje": [ + "9.29.0", + "9.29.0" + ], + "effect": [ + "9.8.34" + ], + "effect of announcing": [ + "9.8.34" + ], + "effort": [ + "9.8.5", + "9.14.16" + ], + "effort of mods": [ + "9.14.16" + ], + "effort to formulate": [ + "9.14.19" + ], + "efforts": [ + "9.23.0" + ], + "efforts will remain": [ + "9.23.0" + ], + "eg adrian miles": [ + "9.27.0" + ], + "ego driven spin_": [ + "9.3.3" + ], + "egregious": [ + "9.14.10", + "9.14.11" + ], + "egregious typos": [ + "9.14.10", + "9.14.11" + ], + "egypt are good": [ + "9.3.1" + ], + "electronic disturbance": [ + "9.26.0" + ], + "electronic disturbance surprise": [ + "9.26.0" + ], + "electronic surveillance": [ + "9.6.6" + ], + "electronic surveillance apparatus": [ + "9.13.4" + ], + "elegies": [ + "9.8.34" + ], + "elitism": [ + "9.12.0" + ], + "eloquent": [ + "9.6.10", + "9.14.7" + ], + "eloquent mail": [ + "9.6.10" + ], + "eloquent mail today": [ + "9.6.10" + ], + "eloquently": [ + "9.3.13" + ], + "else michael gurstein": [ + "9.1.0" + ], + "email alerts": [ + "9.14.8" + ], + "email based": [ + "9.14.8" + ], + "email based discussion": [ + "9.14.8" + ], + "email communicated thinking": [ + "9.29.0" + ], + "email connectivity": [ + "9.3.2" + ], + "email digest": [ + "9.1.0" + ], + "email from serbia": [ + "9.3.9" + ], + "email interface": [ + "9.8.32" + ], + "email is slower": [ + "9.8.13" + ], + "email list": [ + "9.3.12", + "9.6.2" + ], + "email members": [ + "9.19.2" + ], + "email posted": [ + "9.3.5" + ], + "embarrasing flame war": [ + "9.24.0" + ], + "emergency workers interpreted": [ + "9.13.0" + ], + "emerging central": [ + "9.3.11" + ], + "empirical": [ + "9.6.13" + ], + "empyre": [ + "9.3.5", + "9.6.8", + "9.24.0-p.471", + "9.27.0" + ], + "empyre from time": [ + "9.6.8" + ], + "end": [ + "9.6.8", + "9.6.14", + "9.10.0" + ], + "end forwarded": [ + "9.10.0" + ], + "end forwarded message": [ + "9.10.0" + ], + "ending": [ + "9.15.0" + ], + "endless": [ + "9.6.15" + ], + "endless self meta": [ + "9.6.15" + ], + "endless self meta-discussion": [ + "9.6.15" + ], + "energetic and generous": [ + "9.8.23" + ], + "energy": [ + "9.8.36" + ], + "energy in editing": [ + "9.8.36" + ], + "engage ideas": [ + "9.6.13" + ], + "engage situations": [ + "9.6.0" + ], + "engages deep inter": [ + "9.3.7" + ], + "england": [ + "9.19.2" + ], + "english": [ + "9.3.12" + ], + "enjoy": [ + "9.8.11" + ], + "enlivened networks": [ + "9.14.16" + ], + "enormous": [ + "9.8.10" + ], + "enormous appreciation": [ + "9.8.10" + ], + "enormous treshhold fear": [ + "9.29.0" + ], + "ensured email": [ + "9.3.2" + ], + "ensured email connectivity": [ + "9.3.2" + ], + "entertain": [ + "9.6.16" + ], + "entirely laughable fiction": [ + "9.13.4" + ], + "entrails": [ + "9.6.14", + "9.6.16" + ], + "entrails of nettime": [ + "9.6.14" + ], + "environment": [ + "9.6.13" + ], + "environmentalist who gave": [ + "9.6.17" + ], + "epochal changes": [ + "9.8.0" + ], + "equivalent": [ + "9.14.4" + ], + "era": [ + "9.8.5", + "9.9.1" + ], + "ercept": [ + "9.3.4" + ], + "eric": [ + "9.8.5" + ], + "eric davis": [ + "9.6.5" + ], + "eric kluitenberg": [ + "9.13.0" + ], + "errare humanum est": [ + "9.4.0" + ], + "error message": [ + "9.22.0" + ], + "eskimo.com": [ + "9.8.19", + "9.12.0" + ], + "espionage and electronic": [ + "9.6.6" + ], + "essay regarding": [ + "9.6.11" + ], + "essential organizational tools": [ + "9.13.0" + ], + "essentially": [ + "9.13.5" + ], + "essentially free": [ + "9.13.5" + ], + "essentially free money": [ + "9.13.5", + "9.13.5" + ], + "est speech": [ + "9.14.3" + ], + "establish": [ + "9.8.35" + ], + "establish an account": [ + "9.8.35" + ], + "established": [ + "9.3.5" + ], + "established by melinda": [ + "9.3.5" + ], + "etc dr": [ + "9.1.0" + ], + "ethos": [ + "9.8.5" + ], + "eulogies": [ + "9.8.34" + ], + "eulogies and elegies": [ + "9.8.34" + ], + "eulogy": [ + "9.1.0" + ], + "eulogy digest": [ + "9.1.0" + ], + "europe": [ + "9.3.6", + "9.3.7" + ], + "europe focus": [ + "9.3.5" + ], + "european": [ + "9.9.0" + ], + "european art": [ + "9.19.0" + ], + "european issues theoretical": [ + "9.24.0" + ], + "european media": [ + "9.3.11" + ], + "european mind": [ + "9.9.0" + ], + "european moderators failed": [ + "9.19.0" + ], + "event": [ + "9.6.5", + "9.6.8" + ], + "event planning session": [ + "9.6.5" + ], + "events": [ + "9.6.5", + "9.13.0" + ], + "events unfolding outside": [ + "9.26.0" + ], + "evident netiquette rules": [ + "9.3.7" + ], + "evironmentalists": [ + "9.6.17" + ], + "exact": [ + "9.16.0" + ], + "excellent": [ + "9.3.9", + "9.15.0" + ], + "excellent ongoing health": [ + "9.6.10" + ], + "excellent point": [ + "9.3.9" + ], + "excellent suggestion": [ + "9.15.0" + ], + "exchange": [ + "9.8.30", + "9.14.7" + ], + "exchange alive": [ + "9.8.30" + ], + "exchange and collective": [ + "9.14.0" + ], + "exchanges": [ + "9.7.0" + ], + "exclude alternative views": [ + "9.19.0" + ], + "excluded": [ + "9.19.1" + ], + "excludes": [ + "9.3.5" + ], + "excludes announcements": [ + "9.3.5" + ], + "execute code": [ + "9.8.35" + ], + "exercise": [ + "9.26.0" + ], + "exim": [ + "9.2.0" + ], + "exist": [ + "9.14.0" + ], + "existing": [ + "9.6.13" + ], + "existing academic": [ + "9.6.13" + ], + "existing social": [ + "9.7.0" + ], + "existing social system": [ + "9.6.13" + ], + "exits": [ + "9.8.29" + ], + "exits singing": [ + "9.8.29" + ], + "exorcist": [ + "9.14.17" + ], + "exorcize": [ + "9.14.17" + ], + "exotic": [ + "9.22.0" + ], + "expect based solely": [ + "9.14.0" + ], + "expected chain reaction": [ + "9.26.0" + ], + "experience": [ + "9.10.28", + "9.29.0" + ], + "experience dirty tricks": [ + "9.26.0" + ], + "experiment": [ + "9.4.0", + "9.8.29", + "9.20.0", + "9.20.1" + ], + "experiment with nettime": [ + "9.8.29" + ], + "expertise supposedly existing": [ + "9.6.0" + ], + "explanation": [ + "9.8.31" + ], + "explicitely formulate": [ + "9.3.7" + ], + "explore topics specific": [ + "9.27.0" + ], + "exploring forced adoption": [ + "9.27.0" + ], + "exporting information confucianism": [ + "9.6.6" + ], + "exposed": [ + "9.8.25" + ], + "exposed to thought": [ + "9.8.25" + ], + "expressing serious concerns": [ + "9.14.0" + ], + "expression": [ + "9.6.15", + "9.6.17" + ], + "expressionism ace": [ + "9.8.4" + ], + "expressionism ace luftwaffism": [ + "9.8.4" + ], + "exquisite leatherbound collector": [ + "9.1.0" + ], + "extended": [ + "9.8.24" + ], + "extended constituency": [ + "9.8.24" + ], + "extended periods": [ + "9.8.24" + ], + "extending ruling ideology": [ + "9.6.13" + ], + "extends": [ + "9.8.24" + ], + "extensively": [ + "9.3.1" + ], + "extensively chronicled": [ + "9.3.1" + ], + "extirpation": [ + "9.12.0" + ], + "extract common themes": [ + "9.14.19" + ], + "extreme": [ + "9.17.1" + ], + "extreme informality enabled": [ + "9.13.0" + ], + "extreme interest": [ + "9.17.1" + ], + "extremely extended `stewardship": [ + "9.8.24" + ], + "extremely intensive period": [ + "9.13.0" + ], + "facetime": [ + "9.8.9" + ], + "facing gaia": [ + "9.13.4" + ], + "fact": [ + "9.6.9" + ], + "fact.": [ + "9.8.12" + ], + "facts": [ + "9.6.13" + ], + "fade": [ + "9.16.0" + ], + "failed": [ + "9.19.0" + ], + "failed to remain": [ + "9.19.0" + ], + "failure": [ + "9.20.0", + "9.20.1" + ], + "failures": [ + "9.13.5" + ], + "failures and halt": [ + "9.13.5" + ], + "fair moderation mechanism": [ + "9.28.0" + ], + "faithfully": [ + "9.8.30" + ], + "false": [ + "9.28.0" + ], + "familiars": [ + "9.6.12" + ], + "familiars when rejected": [ + "9.6.12" + ], + "fantastic": [ + "9.8.25" + ], + "fantastic output": [ + "9.8.25" + ], + "farm": [ + "9.8.18" + ], + "fascinating": [ + "9.3.12", + "9.8.36" + ], + "fascinating account": [ + "9.13.4" + ], + "fascinating conversations": [ + "9.8.36" + ], + "fascinating discussions": [ + "9.3.12" + ], + "fashionista party": [ + "9.6.6" + ], + "fashionista party scene": [ + "9.6.6", + "9.6.6" + ], + "fast": [ + "9.14.12" + ], + "fast reaction times": [ + "9.14.12" + ], + "fast-capitalism": [ + "9.8.7" + ], + "fastmedia.net": [ + "9.20.3" + ], + "faubourg poissonniere": [ + "9.8.3" + ], + "fault lines quickly": [ + "9.13.0" + ], + "fear": [ + "9.8.17" + ], + "fear of missing": [ + "9.8.17" + ], + "feb.": [ + "9.18.0" + ], + "fed": [ + "9.8.3" + ], + "feed": [ + "9.6.2", + "9.6.3", + "9.20.3" + ], + "feedback": [ + "9.8.2" + ], + "feeding": [ + "9.14.5" + ], + "feel": [ + "9.6.15", + "9.8.31" + ], + "feel double": [ + "9.6.15" + ], + "feel the love": [ + "9.8.31" + ], + "feels": [ + "9.13.1", + "9.14.17" + ], + "feels a bit": [ + "9.13.4" + ], + "felix": [ + "9.0.0", + "9.6.3", + "9.6.7", + "9.8.3", + "9.8.5", + "9.8.9", + "9.8.11", + "9.8.14", + "9.8.16", + "9.8.17", + "9.8.20", + "9.8.22", + "9.8.24", + "9.8.30", + "9.8.31", + "9.8.32", + "9.8.36", + "9.15.0" + ], + "felix and ted": [ + "9.6.7", + "9.8.3", + "9.8.22", + "9.8.36" + ], + "felix call": [ + "9.8.24" + ], + "felix for keeping": [ + "9.8.30" + ], + "felix for revealing": [ + "9.8.36" + ], + "felix found": [ + "9.8.16" + ], + "felix keeping": [ + "9.8.24" + ], + "felix stalder": [ + "9.0.0", + "9.6.3", + "9.6.4", + "9.6.7", + "9.8.9", + "9.8.14" + ], + "felix stalder writes": [ + "9.6.7", + "9.6.7", + "9.6.10" + ], + "felix stalder wrote": [ + "9.6.3", + "9.6.3", + "9.6.4", + "9.6.4", + "9.6.7", + "9.6.7" + ], + "felix stopped": [ + "9.8.24" + ], + "felix stopped taking": [ + "9.8.24" + ], + "felix,firstly": [ + "9.14.7" + ], + "fellow": [ + "9.8.11", + "9.23.0" + ], + "fellow nettimers": [ + "9.23.0" + ], + "fellow syndicalists joined": [ + "9.3.7" + ], + "female": [ + "9.8.11" + ], + "female scientists": [ + "9.3.0" + ], + "female subscriber": [ + "9.8.11" + ], + "fertile breeding ground": [ + "9.29.0" + ], + "fertile ground": [ + "9.29.0" + ], + "festival": [ + "9.3.0" + ], + "festival sometimes sourced": [ + "9.13.3" + ], + "festival yesterday": [ + "9.3.0" + ], + "festivals of tactical": [ + "9.13.3" + ], + "fetish for nonintervention": [ + "9.14.1" + ], + "fewer": [ + "9.16.0" + ], + "fiction": [ + "9.14.14" + ], + "fiction these days": [ + "9.14.14" + ], + "field": [ + "9.8.19", + "9.12.0" + ], + "figure": [ + "9.8.17" + ], + "figures": [ + "9.20.0", + "9.20.1" + ], + "figures serve": [ + "9.20.0", + "9.20.1" + ], + "file": [ + "9.6.4" + ], + "film": [ + "9.3.0", + "9.8.13" + ], + "film and television": [ + "9.8.13" + ], + "filter": [ + "9.20.1" + ], + "filtered": [ + "9.25.1" + ], + "filtered list": [ + "9.25.1" + ], + "filtered mails appearing": [ + "9.24.0" + ], + "filtering": [ + "9.19.1", + "9.25.1", + "9.28.0" + ], + "filters": [ + "9.6.1" + ], + "final": [ + "9.8.10", + "9.8.29" + ], + "final curtain": [ + "9.8.10" + ], + "final practical note": [ + "9.13.4" + ], + "final swan": [ + "9.8.29" + ], + "final swan song": [ + "9.8.29" + ], + "finally": [ + "9.8.9" + ], + "find": [ + "9.3.10", + "9.8.3", + "9.8.32", + "9.14.5", + "9.14.17", + "9.24.0-p.471" + ], + "find a recent": [ + "9.14.17" + ], + "find it confusing": [ + "9.6.13" + ], + "find this long": [ + "9.8.32" + ], + "fine": [ + "9.25.0" + ], + "fine arts server": [ + "9.27.0" + ], + "fine home": [ + "9.23.0" + ], + "fine minds": [ + "9.14.13" + ], + "fine tuned": [ + "9.8.13" + ], + "finely grained data": [ + "9.13.4" + ], + "fingered family": [ + "9.14.3" + ], + "fingered family members": [ + "9.14.3" + ], + "finish": [ + "9.8.18" + ], + "finish a worm": [ + "9.8.18" + ], + "finished": [ + "9.6.2" + ], + "firehose media": [ + "9.8.5" + ], + "firehose media diet": [ + "9.8.5", + "9.8.5" + ], + "first-hand perspective": [ + "9.13.4" + ], + "fit": [ + "9.13.1" + ], + "five dollars": [ + "9.1.0" + ], + "five minutes events": [ + "9.6.8" + ], + "florian cramer": [ + "9.1.0", + "9.24.0-p.471" + ], + "florian schneider": [ + "9.22.0" + ], + "florida": [ + "9.6.1" + ], + "florida state": [ + "9.6.1" + ], + "florida state university": [ + "9.6.1" + ], + "focus": [ + "9.6.0", + "9.14.15", + "9.14.19" + ], + "focus shared": [ + "9.6.0" + ], + "focus shared action": [ + "9.6.0", + "9.6.0" + ], + "focused": [ + "9.3.4" + ], + "focusing": [ + "9.19.1" + ], + "folks": [ + "9.10.0" + ], + "follow-up list exchanges": [ + "9.7.0" + ], + "follow-ups": [ + "9.1.0" + ], + "following utterly wack": [ + "9.1.0" + ], + "fomo": [ + "9.8.17" + ], + "fool": [ + "9.8.10", + "9.8.12", + "9.8.16", + "9.8.18", + "9.8.34" + ], + "fool born": [ + "9.8.12" + ], + "fool posting": [ + "9.8.18" + ], + "fool prank": [ + "9.8.34" + ], + "fooled": [ + "9.8.12" + ], + "fools joke": [ + "9.8.7" + ], + "fora": [ + "9.14.3" + ], + "fora for annoying": [ + "9.14.3" + ], + "forefront about ten": [ + "9.14.12" + ], + "foreign": [ + "9.13.5" + ], + "foreign banks": [ + "9.13.5" + ], + "forever": [ + "9.8.18", + "9.14.1" + ], + "form based": [ + "9.13.4" + ], + "form i suspect": [ + "9.8.23" + ], + "formal organizational": [ + "9.13.0" + ], + "format": [ + "9.6.4" + ], + "formats of exchange": [ + "9.14.0" + ], + "former mod mail": [ + "9.19.0" + ], + "forms": [ + "9.8.24" + ], + "formulate an international": [ + "9.14.19" + ], + "fortunately nettime": [ + "9.29.0" + ], + "forum": [ + "9.3.3", + "9.5.0", + "9.8.15", + "9.25.0", + "9.27.0" + ], + "forum communications": [ + "9.5.0" + ], + "forward": [ + "9.20.2", + "9.20.3" + ], + "forwarded": [ + "9.10.0", + "9.14.18" + ], + "forwarded message": [ + "9.10.0", + "9.14.18" + ], + "forwarded on behalf": [ + "9.14.18" + ], + "forwarding": [ + "9.14.8" + ], + "fostering": [ + "9.14.15" + ], + "fostering high": [ + "9.14.15" + ], + "fostering high quality": [ + "9.14.15" + ], + "foti": [ + "9.8.15", + "9.8.21" + ], + "foti wrote": [ + "9.8.21" + ], + "foucault and godard": [ + "9.0.0" + ], + "found": [ + "9.8.16", + "9.20.0" + ], + "found adequate": [ + "9.13.0" + ], + "found it difficult": [ + "9.3.11" + ], + "found mainstream resonance": [ + "9.13.0" + ], + "found replies": [ + "9.20.0" + ], + "founder": [ + "9.13.1" + ], + "founding": [ + "9.3.1" + ], + "founding members": [ + "9.3.1" + ], + "founding members inke": [ + "9.3.1" + ], + "framework": [ + "9.12.0" + ], + "framework of oppressive": [ + "9.8.19", + "9.12.0" + ], + "framing them relative": [ + "9.14.16" + ], + "france": [ + "9.8.3" + ], + "francophone": [ + "9.6.8" + ], + "francophone anglophone": [ + "9.6.8" + ], + "francophone voice": [ + "9.6.9" + ], + "frank": [ + "9.14.5" + ], + "frank intended": [ + "9.14.5" + ], + "frank intended put-down": [ + "9.14.5" + ], + "frankfurter schule": [ + "9.19.0" + ], + "frantic life rhythm": [ + "9.3.7" + ], + "free": [ + "9.6.11", + "9.13.5", + "9.14.2", + "9.14.3", + "9.14.4", + "9.25.1" + ], + "free money": [ + "9.13.5" + ], + "free server list": [ + "9.8.22" + ], + "free software communities": [ + "9.13.0" + ], + "free software programs": [ + "9.13.0" + ], + "free speech": [ + "9.14.1", + "9.14.2", + "9.14.3", + "9.14.4" + ], + "free world": [ + "9.6.6" + ], + "free world ambition": [ + "9.6.6" + ], + "freedom": [ + "9.25.1" + ], + "freedom of speech": [ + "9.25.1" + ], + "freefl": [ + "9.6.4" + ], + "freeflux": [ + "9.6.4" + ], + "french": [ + "9.6.8" + ], + "french on empyre": [ + "9.6.8" + ], + "frequently post": [ + "9.8.2" + ], + "freshly": [ + "9.13.5" + ], + "freshly printed": [ + "9.13.5" + ], + "freudenheim": [ + "9.14.4" + ], + "freudenheim wrote": [ + "9.14.4" + ], + "fri": [ + "9.10.0", + "9.14.4" + ], + "fridericianum and rhizome": [ + "9.3.0" + ], + "friend": [ + "9.6.10" + ], + "friends": [ + "9.3.11", + "9.8.22" + ], + "friends and comrades": [ + "9.8.22" + ], + "fuck": [ + "9.8.12" + ], + "fuck hip": [ + "9.1.0" + ], + "fuck hip hop": [ + "9.1.0" + ], + "fuck i agree": [ + "9.8.12" + ], + "fully": [ + "9.14.7" + ], + "fully understand": [ + "9.20.2" + ], + "function": [ + "9.3.3", + "9.3.4" + ], + "functioning idea": [ + "9.6.0" + ], + "fundamental epistemological shifts": [ + "9.13.4" + ], + "funding patterns": [ + "9.13.0" + ], + "funeral": [ + "9.8.34" + ], + "funeral with eulogies": [ + "9.8.34" + ], + "futurity": [ + "9.8.29" + ], + "futurity and warping": [ + "9.8.29" + ], + "fwd": [ + "9.1.0" + ], + "gagged reader": [ + "9.13.6" + ], + "gapsevicius": [ + "9.5.0" + ], + "gapsevicius aka": [ + "9.5.0" + ], + "garcia": [ + "9.6.10", + "9.6.17", + "9.8.5", + "9.8.21", + "9.13.0" + ], + "garcia asked": [ + "9.13.0" + ], + "garcia eloquent": [ + "9.6.10" + ], + "garcia eloquent mail": [ + "9.6.10" + ], + "garcia immediately": [ + "9.8.21" + ], + "garcia immediately recognized": [ + "9.8.21" + ], + "garcia wrote": [ + "9.7.0" + ], + "garde arts share": [ + "9.13.4" + ], + "garica": [ + "9.8.23" + ], + "garrin personal": [ + "9.26.0" + ], + "garrin personal note": [ + "9.26.0" + ], + "gathering": [ + "9.7.0", + "9.14.5" + ], + "gave any signs": [ + "9.6.17" + ], + "geert": [ + "9.0.0", + "9.1.0", + "9.3.6", + "9.3.10", + "9.6.7", + "9.6.9", + "9.6.11", + "9.8.3", + "9.8.22", + "9.9.0", + "9.13.1", + "9.24.0-p.471" + ], + "geert and janos": [ + "9.6.5" + ], + "geert and pit": [ + "9.9.0" + ], + "geert has researched": [ + "9.3.10" + ], + "geert is desperate": [ + "9.8.3" + ], + "geert lovink": [ + "9.0.0", + "9.1.0", + "9.1.0", + "9.3.6", + "9.3.11", + "9.14.13" + ], + "geert lovink remarks": [ + "9.1.0" + ], + "geert provocation": [ + "9.6.9" + ], + "gender switching etc": [ + "9.29.0" + ], + "general relevance": [ + "9.3.11" + ], + "generalist or diverse": [ + "9.8.11" + ], + "generally there renewed": [ + "9.14.0" + ], + "generating substantive contributions": [ + "9.13.0" + ], + "generation nettime moderator": [ + "9.0.0" + ], + "generous space": [ + "9.8.23" + ], + "geological pace": [ + "9.8.13" + ], + "getting broken": [ + "9.4.0" + ], + "getting extremely tired": [ + "9.24.0" + ], + "girl": [ + "9.14.17" + ], + "give": [ + "9.4.0", + "9.8.19" + ], + "give ideas": [ + "9.9.1" + ], + "global": [ + "9.8.2", + "9.13.2", + "9.13.4" + ], + "global volumes": [ + "9.13.2" + ], + "global crowd": [ + "9.8.2" + ], + "global currency markets": [ + "9.13.5" + ], + "global hip": [ + "9.1.0" + ], + "global internet": [ + "9.24.0", + "9.24.0" + ], + "global internet community": [ + "9.24.0" + ], + "global medium": [ + "9.24.0" + ], + "global monetary": [ + "9.13.2" + ], + "global monetary system": [ + "9.13.2", + "9.13.2" + ], + "global net regulations": [ + "9.1.0" + ], + "global organizations": [ + "9.6.11", + "9.6.11" + ], + "global transformations brian": [ + "9.13.4" + ], + "global volumes": [ + "9.13.2" + ], + "globalised socio-technical system": [ + "9.14.19" + ], + "globalizing critical party": [ + "9.6.11" + ], + "gloucester": [ + "9.19.2" + ], + "gmail.com": [ + "9.8.34", + "9.13.2" + ], + "gmt": [ + "9.8.18" + ], + "golden": [ + "9.8.16" + ], + "golden rule": [ + "9.8.16" + ], + "gonna": [ + "9.8.18" + ], + "gonna unsub": [ + "9.8.18" + ], + "good": [ + "9.4.0", + "9.6.10", + "9.8.8", + "9.8.23", + "9.8.32", + "9.13.1", + "9.14.12", + "9.14.14", + "9.16.0" + ], + "good events": [ + "9.6.5" + ], + "good prod": [ + "9.14.12" + ], + "good reason": [ + "9.6.10" + ], + "good sign": [ + "9.14.6" + ], + "good state": [ + "9.6.10" + ], + "good time": [ + "9.16.0" + ], + "google": [ + "9.8.35" + ], + "google loves nettime": [ + "9.6.2" + ], + "gospel chorus reaches": [ + "9.25.0" + ], + "gotcha joke": [ + "9.8.21" + ], + "gotta": [ + "9.8.18" + ], + "gotta go back": [ + "9.8.18" + ], + "gov> soliciting public": [ + "9.24.0" + ], + "government=d5s substantive role": [ + "9.24.0" + ], + "governmental internet administration": [ + "9.24.0" + ], + "governments": [ + "9.13.5" + ], + "grammatical": [ + "9.14.10", + "9.14.11" + ], + "grammatical mistakes": [ + "9.14.10", + "9.14.11" + ], + "gramstad": [ + "9.8.26" + ], + "grand sweeping claims": [ + "9.6.13" + ], + "grant based understanding": [ + "9.24.0" + ], + "granted": [ + "9.3.2" + ], + "great": [ + "9.13.1", + "9.13.3", + "9.13.5", + "9.14.16", + "9.25.0" + ], + "great debates": [ + "9.14.16" + ], + "great depression": [ + "9.13.5" + ], + "great milestone": [ + "9.13.1" + ], + "great net": [ + "9.14.16" + ], + "great net debates": [ + "9.14.16" + ], + "great role": [ + "9.3.2" + ], + "great significance": [ + "9.3.12" + ], + "greater knowledge": [ + "9.6.0" + ], + "greatly": [ + "9.3.13" + ], + "grey email": [ + "9.8.32" + ], + "grey email interface": [ + "9.8.32", + "9.8.32" + ], + "grieving mode": [ + "9.8.20" + ], + "group": [ + "9.6.7", + "9.8.15", + "9.14.5", + "9.14.8", + "9.19.1", + "9.26.0" + ], + "group discussions": [ + "9.8.15" + ], + "group interactivity": [ + "9.19.1" + ], + "groups": [ + "9.14.8" + ], + "grown": [ + "9.14.6" + ], + "gta": [ + "9.6.1" + ], + "guattari": [ + "9.8.36" + ], + "guattari thought": [ + "9.8.36" + ], + "guess": [ + "9.14.7" + ], + "guess lots": [ + "9.14.7" + ], + "guest": [ + "9.27.0" + ], + "guests": [ + "9.27.0" + ], + "guibertc anglo": [ + "9.6.9" + ], + "gurstein": [ + "9.8.3" + ], + "guthmiller": [ + "9.8.4" + ], + "guy": [ + "9.8.12" + ], + "guys.": [ + "9.8.12" + ], + "habits": [ + "9.14.5" + ], + "hackers ensured email": [ + "9.3.2" + ], + "hakim bey": [ + "9.14.19" + ], + "hakim bey conception": [ + "9.14.19" + ], + "half years": [ + "9.27.0" + ], + "halt": [ + "9.13.5" + ], + "halt any drift": [ + "9.13.5" + ], + "hand": [ + "9.6.15", + "9.24.0-p.471" + ], + "hands": [ + "9.25.0" + ], + "hankwitz": [ + "9.14.18" + ], + "happen": [ + "9.24.0-p.471" + ], + "happening": [ + "9.8.24" + ], + "happening in real": [ + "9.6.9" + ], + "happens publicly online": [ + "9.27.0" + ], + "happy": [ + "9.8.10", + "9.8.24", + "9.13.1" + ], + "happy if dyne.org": [ + "9.13.1" + ], + "hard": [ + "9.0.0", + "9.8.12" + ], + "hard and wrong": [ + "9.8.22" + ], + "hard disk": [ + "9.0.0" + ], + "hard disk contains": [ + "9.0.0" + ], + "hard rock answer": [ + "9.6.8" + ], + "hard to understand": [ + "9.14.1" + ], + "hardly adds credit": [ + "9.24.0" + ], + "harger": [ + "9.3.8" + ], + "hate": [ + "9.14.7" + ], + "hazards": [ + "9.14.3" + ], + "hazards of doctrinaire": [ + "9.14.3" + ], + "heaped today": [ + "9.6.12" + ], + "hear guibertc anglo": [ + "9.6.9" + ], + "heartfelt": [ + "9.8.14" + ], + "heartfelt thanks toted": [ + "9.8.14" + ], + "hegemonizing the tech": [ + "9.8.7" + ], + "height": [ + "9.8.5" + ], + "heights": [ + "9.10.0" + ], + "heirarchical data nodes": [ + "9.3.4" + ], + "hemisphere": [ + "9.14.13" + ], + "heroic": [ + "9.8.20" + ], + "heroic labour": [ + "9.8.3" + ], + "heterodox ideology": [ + "9.13.0" + ], + "hi mod squad": [ + "9.8.2" + ], + "hi renée": [ + "9.14.11" + ], + "high": [ + "9.14.15" + ], + "high in terms": [ + "9.18.0" + ], + "high quality": [ + "9.14.15" + ], + "highly philosofical matters": [ + "9.29.0" + ], + "highly structured environment": [ + "9.25.0" + ], + "hip": [ + "9.1.0" + ], + "hip hop": [ + "9.1.0" + ], + "hip hop danny": [ + "9.1.0" + ], + "hip hop digest": [ + "9.1.0" + ], + "hip hop eulogy": [ + "9.1.0" + ], + "hip hop paul": [ + "9.1.0", + "9.1.0" + ], + "hip-hop eulogy digest": [ + "9.1.0" + ], + "historian nettime": [ + "9.17.0" + ], + "historians": [ + "9.3.13" + ], + "historical": [ + "9.3.13", + "9.13.1" + ], + "historical perspective": [ + "9.3.1" + ], + "historical practice": [ + "9.3.13" + ], + "historical refrain freedom": [ + "9.25.1" + ], + "historical text": [ + "9.13.1" + ], + "historical work": [ + "9.3.13" + ], + "histories": [ + "9.3.3", + "9.8.25" + ], + "history and archives": [ + "9.3.14" + ], + "history books tell": [ + "9.6.5" + ], + "hku": [ + "9.8.5" + ], + "holmes": [ + "9.13.2" + ], + "home": [ + "9.21.0", + "9.22.0", + "9.23.0" + ], + "homepage nettime.org": [ + "9.6.8" + ], + "honest": [ + "9.24.0-p.471" + ], + "honor": [ + "9.3.8", + "9.3.10", + "9.8.9" + ], + "honor harger": [ + "9.3.8", + "9.3.9" + ], + "honor to moderate": [ + "9.8.9" + ], + "hood": [ + "9.25.0" + ], + "hop": [ + "9.1.0" + ], + "hop digest": [ + "9.1.0" + ], + "hop digest dr": [ + "9.1.0" + ], + "hop digest paul": [ + "9.1.0" + ], + "hop digest vol.": [ + "9.1.0" + ], + "hop eulogy": [ + "9.1.0" + ], + "hop eulogy digest": [ + "9.1.0", + "9.1.0" + ], + "hop hip digest": [ + "9.1.0" + ], + "hope": [ + "9.8.8", + "9.12.0" + ], + "hope in time": [ + "9.8.19", + "9.12.0" + ], + "hope it continues": [ + "9.8.8" + ], + "hope sean": [ + "9.14.12" + ], + "hopelessly amsterdam centric": [ + "9.8.16" + ], + "hopes": [ + "9.3.14" + ], + "hopkins": [ + "9.8.18", + "9.25.0" + ], + "horizontal communication provided": [ + "9.13.0" + ], + "hosted": [ + "9.6.5" + ], + "hour grew": [ + "9.3.7" + ], + "hrvatska": [ + "9.8.33" + ], + "http": [ + "9.6.2" + ], + "huge infrastructure": [ + "9.13.5" + ], + "huge infrastructure program": [ + "9.13.5", + "9.13.5" + ], + "hugs": [ + "9.14.15" + ], + "hybrid media": [ + "9.24.0" + ], + "hyper": [ + "9.14.7" + ], + "hyper active": [ + "9.14.7" + ], + "hyper active ones": [ + "9.14.7" + ], + "hyper zigzag.personally": [ + "9.14.7" + ], + "iahc": [ + "9.24.0" + ], + "ian dickson www": [ + "9.19.2" + ], + "idea": [ + "9.6.0", + "9.6.2", + "9.6.3", + "9.6.7", + "9.13.1", + "9.14.8", + "9.20.0" + ], + "idea of style": [ + "9.6.17" + ], + "ideas": [ + "9.6.0", + "9.6.3", + "9.6.7", + "9.6.13", + "9.8.23", + "9.8.25", + "9.14.0", + "9.14.8", + "9.19.1", + "9.28.0" + ], + "ideas before publication": [ + "9.8.23" + ], + "ideas beyond ideologies": [ + "9.6.13" + ], + "ideas beyond listicles": [ + "9.8.17" + ], + "ideas bouncing": [ + "9.8.25" + ], + "ideas related": [ + "9.6.13" + ], + "ideas'": [ + "9.6.0" + ], + "identify": [ + "9.26.0" + ], + "identify discordant issues": [ + "9.26.0" + ], + "identify exploitable conditions": [ + "9.26.0" + ], + "identify sympathetic affiliations": [ + "9.26.0" + ], + "identity": [ + "9.7.0" + ], + "identity liberation": [ + "9.7.0" + ], + "identity liberation front": [ + "9.7.0" + ], + "identity somehow negotiated": [ + "9.24.0" + ], + "ideological": [ + "9.14.4" + ], + "ideological monoculture": [ + "9.14.2", + "9.14.4", + "9.14.4" + ], + "ideological positions": [ + "9.6.13" + ], + "ideological underpinnings": [ + "9.14.1" + ], + "ideology": [ + "9.6.13" + ], + "iii": [ + "9.6.1", + "9.13.7" + ], + "ilicon": [ + "9.3.4" + ], + "illustrated diverse models": [ + "9.7.0" + ], + "illustrating political": [ + "9.3.3" + ], + "illustrating political relations": [ + "9.3.3" + ], + "imaginative": [ + "9.13.3" + ], + "imaginative sweep": [ + "9.13.3" + ], + "imagine": [ + "9.14.13" + ], + "imagining networks": [ + "9.14.16" + ], + "imagining networks differently": [ + "9.14.16" + ], + "imho": [ + "9.14.4" + ], + "immaterials'": [ + "9.3.9" + ], + "immediately recognized": [ + "9.8.21" + ], + "immediately stop": [ + "9.25.1" + ], + "impact": [ + "9.8.2" + ], + "impedes comprehension": [ + "9.14.2" + ], + "imperfect *west*": [ + "9.19.0" + ], + "implement": [ + "9.19.2" + ], + "implement nettime": [ + "9.19.2" + ], + "implied ideology": [ + "9.13.0" + ], + "important": [ + "9.3.13", + "9.6.17", + "9.8.24", + "9.13.0", + "9.13.3" + ], + "important additional": [ + "9.13.3" + ], + "important additional room": [ + "9.13.3" + ], + "important expression": [ + "9.6.17" + ], + "important new materialist": [ + "9.3.13" + ], + "important part": [ + "9.6.17" + ], + "important source": [ + "9.3.11" + ], + "important to feel": [ + "9.8.22" + ], + "importatt": [ + "9.3.2" + ], + "importatt to point": [ + "9.3.2" + ], + "impossible": [ + "9.18.0" + ], + "impressed reader": [ + "9.13.6" + ], + "improved": [ + "9.6.3", + "9.6.7" + ], + "improving": [ + "9.3.9" + ], + "improving reality": [ + "9.3.9" + ], + "improving reality conference": [ + "9.3.9", + "9.3.9" + ], + "impulses of elitism": [ + "9.8.19", + "9.12.0" + ], + "incl": [ + "9.20.2" + ], + "include": [ + "9.5.0", + "9.15.0", + "9.19.2" + ], + "include blogs": [ + "9.5.0" + ], + "include yasmin": [ + "9.3.5" + ], + "including": [ + "9.20.3" + ], + "including forward": [ + "9.20.2" + ], + "including internet users/consumers": [ + "9.24.0" + ], + "including personal": [ + "9.6.15" + ], + "including personal issues": [ + "9.6.15" + ], + "inclusive": [ + "9.13.1" + ], + "inclusiveness": [ + "9.14.15" + ], + "increasingly complex relationships": [ + "9.14.19" + ], + "increasingly parochial status": [ + "9.14.0" + ], + "incredible": [ + "9.8.36" + ], + "incredible energy": [ + "9.8.36" + ], + "indirect voice": [ + "9.6.11" + ], + "individual": [ + "9.3.2", + "9.13.1" + ], + "individual posts": [ + "9.3.2" + ], + "individually": [ + "9.6.3", + "9.6.7" + ], + "individuals": [ + "9.14.8" + ], + "ineptly constructed collapsed": [ + "9.6.12" + ], + "infinite ability": [ + "9.13.4" + ], + "info": [ + "9.23.0", + "9.27.1" + ], + "info nettime": [ + "9.29.0" + ], + "info nettime-l": [ + "9.23.0" + ], + "informal": [ + "9.13.3" + ], + "informal collaborations connected": [ + "9.13.3" + ], + "information": [ + "9.25.1" + ], + "information that provided": [ + "9.3.11" + ], + "informed the content": [ + "9.13.3" + ], + "infosharing": [ + "9.3.4" + ], + "infrastructure and labour": [ + "9.23.0" + ], + "inherent": [ + "9.19.1" + ], + "inherent problems": [ + "9.19.1" + ], + "inherently feudalist model": [ + "9.24.0" + ], + "inherently political": [ + "9.28.0" + ], + "initial post": [ + "9.8.21", + "9.14.2" + ], + "injection": [ + "9.13.2" + ], + "inke": [ + "9.3.1", + "9.3.7" + ], + "inke arns": [ + "9.2.0", + "9.3.1", + "9.3.7" + ], + "inke arns started": [ + "9.2.0", + "9.2.0" + ], + "inke joined": [ + "9.3.7" + ], + "inner workings revealed": [ + "9.17.0" + ], + "innovations": [ + "9.7.0" + ], + "insight": [ + "9.8.5", + "9.14.19" + ], + "insightful.the fact": [ + "9.14.6" + ], + "institutionalised": [ + "9.8.19" + ], + "institutionalised censorship": [ + "9.8.19" + ], + "institutionalized are part": [ + "9.6.0" + ], + "institutionally-sponsored": [ + "9.8.19" + ], + "institutionally-sponsored lives": [ + "9.8.19" + ], + "institutions": [ + "9.12.0" + ], + "insults heaped": [ + "9.6.12" + ], + "insults heaped today": [ + "9.6.12" + ], + "insults raised": [ + "9.3.7" + ], + "int he cyber-aether": [ + "9.14.13" + ], + "intellectual company": [ + "9.8.10" + ], + "intellectual fashionista": [ + "9.6.6" + ], + "intellectual fashionista party": [ + "9.6.6" + ], + "intellectual life early": [ + "9.8.17" + ], + "intellectual nor anti": [ + "9.7.0" + ], + "intellectual power structure": [ + "9.20.1" + ], + "intellectual real estate": [ + "9.7.0" + ], + "intellectual touchstone": [ + "9.8.20" + ], + "intelligentsia": [ + "9.6.1" + ], + "intelligentsia filters": [ + "9.6.1" + ], + "intended": [ + "9.14.5", + "9.26.0" + ], + "intended put-down": [ + "9.14.5" + ], + "interactivity besides mailing": [ + "9.19.1" + ], + "interdisciplinary program": [ + "9.6.1" + ], + "interest": [ + "9.6.16", + "9.9.0", + "9.17.1", + "9.20.0", + "9.20.1" + ], + "interest in formats": [ + "9.14.0" + ], + "interesting": [ + "9.3.2", + "9.6.9", + "9.7.0", + "9.8.22", + "9.9.1", + "9.14.5", + "9.19.2", + "9.29.0" + ], + "interesting as logical": [ + "9.6.9" + ], + "interesting debate": [ + "9.19.2" + ], + "interesting making": [ + "9.9.1" + ], + "interesting thread": [ + "9.8.22" + ], + "interesting to recall": [ + "9.3.2" + ], + "interim solution": [ + "9.24.0" + ], + "internal turmoil": [ + "9.3.3" + ], + "international": [ + "9.8.0" + ], + "international city berlin": [ + "9.13.0" + ], + "international communication": [ + "9.13.0" + ], + "international cultural festivals": [ + "9.8.0" + ], + "international government agencies": [ + "9.24.0" + ], + "international judicial bodies": [ + "9.24.0" + ], + "international media arts": [ + "9.27.0" + ], + "international nettime": [ + "9.24.0-p.471" + ], + "international nettime list": [ + "9.24.0-p.471" + ], + "international scene": [ + "9.3.11" + ], + "internet administration": [ + "9.24.0" + ], + "internet community": [ + "9.24.0" + ], + "internet connection": [ + "9.3.0" + ], + "internet culture": [ + "9.3.6" + ], + "internet dns": [ + "9.24.0" + ], + "internet dns system": [ + "9.24.0", + "9.24.0" + ], + "internet domain": [ + "9.24.0" + ], + "internet domain names": [ + "9.24.0" + ], + "internet feels": [ + "9.14.17" + ], + "internet governance": [ + "9.24.0" + ], + "internet list": [ + "9.8.32" + ], + "internet ronda hauben": [ + "9.1.0" + ], + "internet self-governance": [ + "9.24.0" + ], + "internet=d5s": [ + "9.24.0" + ], + "internet=d5s original academic": [ + "9.24.0" + ], + "internet=d5s technical": [ + "9.24.0" + ], + "interpret nettime compilations": [ + "9.28.0" + ], + "interpret spurious signs": [ + "9.8.24" + ], + "interpretation": [ + "9.28.0" + ], + "interpreted": [ + "9.28.0" + ], + "interruption": [ + "9.22.0" + ], + "intertwingled threads": [ + "9.13.0" + ], + "intervention": [ + "9.13.2", + "9.13.4" + ], + "interview": [ + "9.3.10", + "9.6.17" + ], + "interview done long": [ + "9.3.10" + ], + "interview with andrea": [ + "9.6.17" + ], + "interwebs now.i": [ + "9.14.8" + ], + "interwebs now.i run": [ + "9.14.8" + ], + "intimidating": [ + "9.14.10", + "9.14.11" + ], + "intimidating space": [ + "9.14.11" + ], + "intriguing": [ + "9.3.0", + "9.8.30" + ], + "intriguing nettime": [ + "9.8.30" + ], + "intriguing nettime exchange": [ + "9.8.30" + ], + "intriguing new film": [ + "9.3.0" + ], + "introduce": [ + "9.27.1" + ], + "introduce added resulted": [ + "9.26.0" + ], + "introduce the month": [ + "9.27.1" + ], + "introduced": [ + "9.3.12" + ], + "intrusion": [ + "9.8.19", + "9.26.0" + ], + "invisible": [ + "9.8.11", + "9.23.0" + ], + "invite": [ + "9.16.0" + ], + "invited": [ + "9.6.5" + ], + "invited discussants": [ + "9.3.5" + ], + "invited guest speaker": [ + "9.27.0" + ], + "inviting": [ + "9.14.0" + ], + "involves technical decisions": [ + "9.13.0" + ], + "inward-looking": [ + "9.16.0" + ], + "inward-looking meta-debates": [ + "9.16.0" + ], + "iran": [ + "9.3.1" + ], + "iran and egypt": [ + "9.3.1" + ], + "iranian": [ + "9.14.13" + ], + "irc": [ + "9.14.9" + ], + "ironical and pleasant": [ + "9.6.11" + ], + "isis": [ + "9.8.12" + ], + "issue": [ + "9.8.24" + ], + "issues": [ + "9.6.15", + "9.6.17", + "9.8.8", + "9.8.15", + "9.8.24", + "9.14.0", + "9.24.0", + "9.27.0" + ], + "issues concerning current": [ + "9.26.0" + ], + "ito": [ + "9.14.17" + ], + "j.armitage": [ + "9.6.16" + ], + "jam bruce sterling": [ + "9.1.0" + ], + "jan": [ + "9.23.0" + ], + "jan peter larsen": [ + "9.13.6" + ], + "japan money": [ + "9.13.5", + "9.13.5" + ], + "javascript": [ + "9.8.35" + ], + "jerman": [ + "9.3.0" + ], + "jerman blasik": [ + "9.3.0" + ], + "jersey": [ + "9.10.0" + ], + "jersey city": [ + "9.10.0", + "9.13.7" + ], + "jersey city heights": [ + "9.10.0", + "9.10.0", + "9.13.7", + "9.13.7" + ], + "jhopkins": [ + "9.8.18" + ], + "jim": [ + "9.8.4" + ], + "jim jones-assisted": [ + "9.8.4" + ], + "jim jones-assisted shaheedistic": [ + "9.8.4" + ], + "jodis": [ + "9.28.0" + ], + "jodis work": [ + "9.28.0" + ], + "john": [ + "9.6.14", + "9.6.15", + "9.6.16", + "9.8.18", + "9.13.6", + "9.14.6", + "9.14.8", + "9.14.9", + "9.25.0" + ], + "john hopkins": [ + "9.8.18", + "9.25.0" + ], + "john hopkins wrote": [ + "9.13.6" + ], + "john perry": [ + "9.6.5" + ], + "john perry barlow": [ + "9.6.5", + "9.6.5" + ], + "john preston": [ + "9.14.8" + ], + "john preston drift": [ + "9.13.0" + ], + "level": [ + "9.4.0" + ], + "levels": [ + "9.6.3", + "9.6.7" + ], + "liberation front": [ + "9.7.0" + ], + "libertarian fetish": [ + "9.14.1" + ], + "lies dies": [ + "9.8.19" + ], + "life": [ + "9.6.2", + "9.6.9" + ], + "lighthouse": [ + "9.3.8", + "9.3.9" + ], + "limited": [ + "9.14.0" + ], + "lindbergh": [ + "9.8.4" + ], + "line": [ + "9.8.18", + "9.8.21", + "9.15.0" + ], + "line is apt": [ + "9.8.18" + ], + "lion": [ + "9.8.35" + ], + "lion share": [ + "9.8.35" + ], + "list": [ + "9.0.0", + "9.2.0", + "9.3.1", + "9.3.3", + "9.3.4", + "9.3.5", + "9.3.6", + "9.3.7", + "9.3.8", + "9.3.11", + "9.3.12", + "9.3.14", + "9.4.0", + "9.5.0", + "9.6.0", + "9.6.1", + "9.6.2", + "9.6.3", + "9.6.8", + "9.6.9", + "9.6.11", + "9.6.15", + "9.7.0", + "9.8.0", + "9.8.9", + "9.8.10", + "9.8.15", + "9.8.17", + "9.8.18", + "9.8.21", + "9.8.24", + "9.8.32", + "9.8.33", + "9.8.35", + "9.13.0", + "9.13.6", + "9.14.0", + "9.14.2", + "9.14.3", + "9.14.7", + "9.14.8", + "9.14.9", + "9.14.15", + "9.14.16", + "9.14.19", + "9.16.0", + "9.18.0", + "9.19.0", + "9.19.1", + "9.20.1", + "9.20.2", + "9.20.3", + "9.21.0", + "9.22.0", + "9.23.0", + "9.24.0", + "9.24.0-p.471", + "9.25.0", + "9.25.1", + "9.26.0", + "9.27.0", + "9.28.0", + "9.29.0" + ], + "list abusing": [ + "9.18.0" + ], + "list alumni": [ + "9.8.0" + ], + "list direction onlist": [ + "9.24.0-p.471" + ], + "list disruption": [ + "9.3.3" + ], + "list etiquette issues": [ + "9.27.0" + ], + "list exchanges": [ + "9.7.0" + ], + "list flooding": [ + "9.18.0" + ], + "list forum": [ + "9.3.3" + ], + "list from locations": [ + "9.22.0" + ], + "list guests": [ + "9.27.0" + ], + "list history": [ + "9.3.14" + ], + "list host": [ + "9.22.0" + ], + "list inhabitants": [ + "9.8.33" + ], + "list is nettime-bold": [ + "9.20.2" + ], + "list long ago": [ + "9.6.9" + ], + "list members": [ + "9.3.7" + ], + "list metaphysics": [ + "9.25.0", + "9.25.0" + ], + "list nettime": [ + "9.13.6" + ], + "list nor unsubscribe": [ + "9.25.0" + ], + "list of complaints": [ + "9.19.1" + ], + "list pit": [ + "9.25.1" + ], + "list pit schulz": [ + "9.25.1" + ], + "list postings rejected": [ + "9.14.3" + ], + "list real": [ + "9.6.0" + ], + "list remain": [ + "9.14.2" + ], + "list serves": [ + "9.14.5" + ], + "list slowly": [ + "9.14.15" + ], + "list slowly lost": [ + "9.14.15", + "9.14.15", + "9.14.16", + "9.14.18" + ], + "list subscriber": [ + "9.13.0" + ], + "list that receives": [ + "9.20.2" + ], + "list that strives": [ + "9.14.1" + ], + "list topic": [ + "9.27.0" + ], + "list traffic": [ + "9.14.0" + ], + "list was rhizome": [ + "9.3.12" + ], + "list while desk.nl": [ + "9.21.0" + ], + "list withoute": [ + "9.3.9" + ], + "list-serving": [ + "9.21.0" + ], + "list-serving machine": [ + "9.21.0" + ], + "list.i": [ + "9.14.7" + ], + "list.i guess": [ + "9.14.7" + ], + "list.i guess lots": [ + "9.14.7" + ], + "listed in today": [ + "9.8.10" + ], + "listen and learn": [ + "9.8.34" + ], + "lists": [ + "9.3.3", + "9.3.4", + "9.3.5", + "9.3.7", + "9.3.8", + "9.3.12", + "9.5.0", + "9.6.2", + "9.6.3", + "9.6.11", + "9.6.15", + "9.8.15", + "9.8.18", + "9.13.0", + "9.14.12", + "9.14.17", + "9.19.1", + "9.25.1", + "9.27.0" + ], + "lists are dead": [ + "9.14.17" + ], + "lists environment": [ + "9.19.0" + ], + "lists of great": [ + "9.3.12" + ], + "lists populated": [ + "9.8.15" + ], + "lists x.ist": [ + "9.3.3" + ], + "little historical text": [ + "9.13.1" + ], + "little posting form": [ + "9.24.0" + ], + "live": [ + "9.9.1" + ], + "live thousands": [ + "9.9.1" + ], + "lively": [ + "9.8.36" + ], + "lively online communities": [ + "9.3.7" + ], + "lively thoughts": [ + "9.8.36" + ], + "liverpool made": [ + "9.3.0" + ], + "liverpool yesterday": [ + "9.3.0" + ], + "lives": [ + "9.8.9", + "9.8.19" + ], + "living in arabia": [ + "9.14.13" + ], + "living portal": [ + "9.8.33" + ], + "living social entity": [ + "9.8.24" + ], + "ll call fomo": [ + "9.8.17" + ], + "ll post details": [ + "9.13.4" + ], + "locations": [ + "9.22.0" + ], + "log": [ + "9.3.4" + ], + "logical activist": [ + "9.6.9" + ], + "logical activist attitude": [ + "9.6.9" + ], + "london ec2a 3bx": [ + "9.25.0" + ], + "london se14 6nw": [ + "9.8.13" + ], + "long": [ + "9.3.10", + "9.6.14", + "9.6.16", + "9.8.11", + "9.8.13", + "9.8.27", + "9.8.32", + "9.8.35", + "9.13.0", + "9.14.12", + "9.14.14", + "9.16.0" + ], + "long ago": [ + "9.3.10", + "9.14.12", + "9.14.14" + ], + "long as nettime": [ + "9.8.35" + ], + "long email": [ + "9.8.32" + ], + "long time": [ + "9.8.11", + "9.8.18", + "9.8.27" + ], + "long time lurker": [ + "9.8.27" + ], + "longer happen": [ + "9.24.0-p.471" + ], + "loomio": [ + "9.8.15" + ], + "loosely constructed": [ + "9.14.5" + ], + "lose": [ + "9.3.8" + ], + "loss": [ + "9.8.25" + ], + "loss the rhizome": [ + "9.3.1" + ], + "lost": [ + "9.8.22", + "9.14.15" + ], + "lost its focus": [ + "9.14.15" + ], + "lost nowadays": [ + "9.8.22" + ], + "lot has happened": [ + "9.8.0" + ], + "lot of goodwill": [ + "9.14.0" + ], + "lots": [ + "9.14.7" + ], + "loud intrusion": [ + "9.26.0" + ], + "louise": [ + "9.8.22" + ], + "love": [ + "9.8.31" + ], + "lovink": [ + "9.0.0", + "9.1.0", + "9.3.6" + ], + "low filtration channel": [ + "9.25.1" + ], + "low in terms": [ + "9.18.0" + ], + "low-poster": [ + "9.14.3" + ], + "lucrative spying": [ + "9.6.6" + ], + "lucrative spying beyond": [ + "9.6.6" + ], + "luetgert": [ + "9.0.0" + ], + "luftwaffism": [ + "9.8.4" + ], + "lurked": [ + "9.8.8" + ], + "lurkers": [ + "9.14.7", + "9.25.0" + ], + "lurkers anonymous": [ + "9.25.0" + ], + "lurkers write": [ + "9.14.7" + ], + "machine": [ + "9.21.0" + ], + "machine nettime": [ + "9.17.0" + ], + "machines": [ + "9.14.19" + ], + "machine’": [ + "9.14.14" + ], + "machine’ thread": [ + "9.14.14" + ], + "made": [ + "9.3.0", + "9.20.0", + "9.22.0", + "9.23.0" + ], + "magazine": [ + "9.8.5" + ], + "magazine ethos": [ + "9.8.5" + ], + "magnetic identity": [ + "9.7.0" + ], + "magnetic identity liberation": [ + "9.7.0" + ], + "mail": [ + "9.2.0", + "9.6.10", + "9.15.0", + "9.21.0" + ], + "mail accounts jammed": [ + "9.3.7" + ], + "mail delivery": [ + "9.2.0" + ], + "mail delivery software": [ + "9.2.0", + "9.2.0" + ], + "mail today": [ + "9.6.10" + ], + "mail traffic": [ + "9.3.7" + ], + "mailed letter": [ + "9.8.7" + ], + "mailing": [ + "9.3.3", + "9.3.4", + "9.3.7", + "9.3.8", + "9.13.0", + "9.14.9", + "9.14.17", + "9.20.2", + "9.20.3", + "9.25.1" + ], + "mailing list developed": [ + "9.3.7" + ], + "mailing list etiquette": [ + "9.27.0" + ], + "mailing list forum": [ + "9.3.3", + "9.3.3" + ], + "mailing list ring": [ + "9.25.1" + ], + "mailing list sprang": [ + "9.27.0" + ], + "mailing lists live": [ + "9.3.3" + ], + "mailing lists x.ist": [ + "9.3.3" + ], + "mailloux computer professionals": [ + "9.24.0" + ], + "mails against misunderstanding": [ + "9.6.9" + ], + "mails normally don": [ + "9.19.0" + ], + "mailto": [ + "9.8.3", + "9.8.34" + ], + "mainstream media": [ + "9.13.0" + ], + "maintain": [ + "9.20.2" + ], + "maintain this list": [ + "9.20.2" + ], + "maintaining a successful": [ + "9.20.2" + ], + "major": [ + "9.11.0" + ], + "major news providers": [ + "9.13.0" + ], + "major public events": [ + "9.6.5" + ], + "major success": [ + "9.11.0" + ], + "majordomo commands": [ + "9.21.0" + ], + "majordomo software package": [ + "9.13.0" + ], + "majority": [ + "9.14.12" + ], + "make": [ + "9.14.10", + "9.14.11", + "9.18.0", + "9.25.1", + "9.28.0" + ], + "make an online": [ + "9.9.1" + ], + "make egregious": [ + "9.14.10", + "9.14.11" + ], + "make egregious typos": [ + "9.14.10", + "9.14.11" + ], + "makes": [ + "9.14.2" + ], + "makes that misunderstanding": [ + "9.14.2" + ], + "making": [ + "9.6.0", + "9.8.29", + "9.9.1", + "9.10.28", + "9.13.1", + "9.14.11" + ], + "making a reflection": [ + "9.9.1" + ], + "making and programming": [ + "9.14.11" + ], + "male": [ + "9.8.10" + ], + "male dominated structures": [ + "9.29.0" + ], + "male white": [ + "9.8.2" + ], + "man nettime": [ + "9.17.0" + ], + "managing": [ + "9.8.5" + ], + "managing nettime": [ + "9.8.5" + ], + "manifest post activity": [ + "9.3.3" + ], + "manifestation": [ + "9.3.4" + ], + "manifold jim": [ + "9.8.4" + ], + "manifold jim jones": [ + "9.8.4" + ], + "manifold jim jones-assisted": [ + "9.8.4" + ], + "manuel delanda": [ + "9.6.5" + ], + "marie": [ + "9.8.11" + ], + "marie curie": [ + "9.8.11" + ], + "marie curie fellow": [ + "9.8.11", + "9.8.11" + ], + "mark": [ + "9.8.32", + "9.10.0", + "9.13.7" + ], + "mark stahlman": [ + "9.10.0", + "9.13.7" + ], + "mark stahlman jersey": [ + "9.10.0" + ], + "married": [ + "9.14.13" + ], + "married an iranian": [ + "9.14.13" + ], + "marxist leninist organizations": [ + "9.6.11" + ], + "master anglophone": [ + "9.6.8" + ], + "master anglophone languages": [ + "9.6.8" + ], + "material": [ + "9.3.9", + "9.8.33", + "9.14.16", + "9.20.1" + ], + "material infrastructures": [ + "9.3.9" + ], + "material layer": [ + "9.3.9" + ], + "material.net": [ + "9.21.0" + ], + "materialist": [ + "9.3.13" + ], + "materialist point": [ + "9.3.13" + ], + "materiality": [ + "9.3.13" + ], + "matter": [ + "9.24.0-p.471" + ], + "matter latin america": [ + "9.8.24" + ], + "matter of analysis": [ + "9.8.22" + ], + "matters": [ + "9.3.9" + ], + "maximum": [ + "9.14.2" + ], + "maximum clarity": [ + "9.14.2" + ], + "maybe nettime risks": [ + "9.6.0" + ], + "mayor": [ + "9.4.0" + ], + "mayor richer": [ + "9.6.6" + ], + "mckensie wark": [ + "9.6.9" + ], + "mcluhanite technological": [ + "9.13.7" + ], + "mcluhanite technological determinism": [ + "9.13.0", + "9.13.7", + "9.13.7" + ], + "mcphee": [ + "9.0.0" + ], + "meaning": [ + "9.28.0" + ], + "meaninglessness": [ + "9.20.1" + ], + "meant": [ + "9.8.21", + "9.8.25" + ], + "meant drawing fire": [ + "9.26.0" + ], + "mechanisms via": [ + "9.3.3" + ], + "media": [ + "9.0.0", + "9.3.6", + "9.3.7", + "9.3.13", + "9.8.0", + "9.8.13", + "9.8.20", + "9.8.24", + "9.8.32", + "9.8.33", + "9.13.0", + "9.13.3", + "9.13.4", + "9.14.0", + "9.14.9", + "9.14.11", + "9.14.19", + "9.19.2", + "9.24.0", + "9.27.0", + "9.29.0" + ], + "media and art": [ + "9.3.11" + ], + "media and communications": [ + "9.8.13" + ], + "media art curating": [ + "9.3.1" + ], + "media art issues": [ + "9.27.0", + "9.27.0" + ], + "media art practices": [ + "9.27.0", + "9.27.0" + ], + "media arts collective": [ + "9.13.0" + ], + "media arts community": [ + "9.3.6", + "9.3.6" + ], + "media arts field": [ + "9.27.0" + ], + "media arts group": [ + "9.19.2" + ], + "media arts topics": [ + "9.27.0", + "9.27.0" + ], + "media companies": [ + "9.14.0" + ], + "media companies exploit": [ + "9.14.0" + ], + "media connections": [ + "9.13.4" + ], + "media criticism": [ + "9.19.0" + ], + "media culture": [ + "9.3.7" + ], + "media diet": [ + "9.8.5" + ], + "media labs": [ + "9.13.3" + ], + "media start taking": [ + "9.14.12" + ], + "media studies": [ + "9.8.7" + ], + "media studies discourse.â": [ + "9.8.7" + ], + "media who generalize": [ + "9.14.19" + ], + "medium": [ + "9.6.0", + "9.10.0", + "9.14.6", + "9.14.8", + "9.14.9" + ], + "medium and reflecting": [ + "9.14.6" + ], + "medium of communication": [ + "9.14.9" + ], + "meeting called ": [ + "9.6.8" + ], + "meetings": [ + "9.3.7", + "9.13.0" + ], + "melinda": [ + "9.3.5" + ], + "melinda rackham": [ + "9.3.5", + "9.27.0" + ], + "member": [ + "9.14.1" + ], + "member forever": [ + "9.14.1" + ], + "members": [ + "9.3.1", + "9.14.10", + "9.19.2", + "9.29.0" + ], + "members inke": [ + "9.3.1" + ], + "members inke arns": [ + "9.3.1" + ], + "members of trump": [ + "9.14.3" + ], + "memes": [ + "9.8.18" + ], + "memory": [ + "9.6.15" + ], + "mental malady": [ + "9.8.17" + ], + "mention": [ + "9.3.1" + ], + "mentioned": [ + "9.3.10" + ], + "mentioned experiment described": [ + "9.4.0" + ], + "message": [ + "9.2.0", + "9.3.4", + "9.3.14", + "9.6.1", + "9.6.4", + "9.8.0", + "9.8.19", + "9.10.0", + "9.12.0", + "9.14.18", + "9.15.0", + "9.16.0", + "9.26.0" + ], + "message from newmedia": [ + "9.10.0" + ], + "message lengths shorter": [ + "9.13.0" + ], + "message shows": [ + "9.16.0" + ], + "messages": [ + "9.16.0", + "9.21.0" + ], + "met an environmentalist": [ + "9.6.17" + ], + "meta culture": [ + "9.6.8" + ], + "meta discussions": [ + "9.8.16" + ], + "meta threads": [ + "9.14.6" + ], + "meta-debates": [ + "9.16.0" + ], + "meta-discussion": [ + "9.6.15", + "9.8.16" + ], + "meta-discussion rule": [ + "9.8.16" + ], + "metaforum": [ + "9.6.5" + ], + "metaforum event": [ + "9.6.5" + ], + "metaforum iii": [ + "9.6.5", + "9.13.7" + ], + "metaforum series": [ + "9.6.5" + ], + "metamute.com": [ + "9.25.0" + ], + "methronome": [ + "9.13.1" + ], + "meticulously": [ + "9.3.10" + ], + "mez": [ + "9.3.4", + "9.5.0", + "9.24.0-p.471" + ], + "michael": [ + "9.13.6" + ], + "michael arnold mages": [ + "9.27.0", + "9.27.0" + ], + "michael gurstein": [ + "9.8.3" + ], + "michael van": [ + "9.13.6" + ], + "michael van eeden": [ + "9.22.0", + "9.22.0" + ], + "michael van schaik": [ + "9.13.6" + ], + "micro rfid tags": [ + "9.1.0" + ], + "mieg van eden": [ + "9.24.0" + ], + "migrated to spectre": [ + "9.3.8" + ], + "milestone": [ + "9.13.1" + ], + "milestone and feels": [ + "9.13.1" + ], + "milosevic": [ + "9.2.0" + ], + "milosevic regime": [ + "9.2.0" + ], + "milosevic regime throughout": [ + "9.3.7" + ], + "milquetoast as youtube": [ + "9.14.1" + ], + "mind": [ + "9.3.13" + ], + "mind was warped": [ + "9.9.0" + ], + "mindaugas": [ + "9.5.0" + ], + "mindaugas gapsevicius": [ + "9.5.0" + ], + "mindaugas gapsevicius aka": [ + "9.5.0" + ], + "mindless": [ + "9.8.2" + ], + "mindnumbing daily": [ + "9.8.20" + ], + "mindnumbing daily existence": [ + "9.8.20" + ], + "minds through dialogue": [ + "9.14.5" + ], + "mine": [ + "9.9.0" + ], + "mine at kuenstlerhaus": [ + "9.9.0" + ], + "minimal infrastructure depended": [ + "9.13.0" + ], + "minimizing software conflicts": [ + "9.13.0" + ], + "minutes": [ + "9.13.3" + ], + "minutes festivals": [ + "9.13.3" + ], + "mirjana tasic": [ + "9.3.0" + ], + "misogynists": [ + "9.14.1" + ], + "misogynists and white": [ + "9.14.1" + ], + "miss": [ + "9.8.0", + "9.8.6", + "9.8.9", + "9.14.7" + ], + "miss it dearly": [ + "9.8.6" + ], + "missing": [ + "9.8.17" + ], + "mission": [ + "9.8.3" + ], + "mistake silence": [ + "9.8.34" + ], + "mistaken": [ + "9.8.23" + ], + "mistakes": [ + "9.14.10", + "9.14.11" + ], + "misunderstanding": [ + "9.6.9", + "9.14.2", + "9.14.4" + ], + "misunderstanding and mortification": [ + "9.6.9" + ], + "misunderstanding of contextless": [ + "9.14.1", + "9.14.2", + "9.14.4" + ], + "mix": [ + "9.8.8" + ], + "mix of voices": [ + "9.8.8" + ], + "mmerung": [ + "9.8.4" + ], + "mnac": [ + "9.9.0" + ], + "mod": [ + "9.8.2", + "9.8.9", + "9.8.20", + "9.19.0", + "9.20.0" + ], + "mod sqaud": [ + "9.19.0" + ], + "mod squad": [ + "9.8.2", + "9.8.9", + "9.8.20", + "9.19.0", + "9.20.0" + ], + "mod squad wrote": [ + "9.8.9" + ], + "moderate": [ + "9.8.9" + ], + "moderate the list": [ + "9.8.9" + ], + "moderate traffic list": [ + "9.27.0" + ], + "moderated": [ + "9.16.0", + "9.19.2" + ], + "moderated area": [ + "9.19.2" + ], + "moderated include yasmin": [ + "9.3.5" + ], + "moderated mailing": [ + "9.13.6" + ], + "moderated mailing list": [ + "9.13.0", + "9.13.0", + "9.13.6", + "9.22.0", + "9.23.0" + ], + "moderated using": [ + "9.13.0" + ], + "moderating": [ + "9.8.10", + "9.8.20" + ], + "moderating every email": [ + "9.3.5" + ], + "moderating is snippets": [ + "9.8.20" + ], + "moderating squad": [ + "9.8.10" + ], + "moderation identify": [ + "9.26.0" + ], + "moderation process": [ + "9.18.0" + ], + "moderation team": [ + "9.22.0" + ], + "moderation trends": [ + "9.19.1" + ], + "moderation trends points": [ + "9.19.1" + ], + "moderator": [ + "9.0.0" + ], + "moderators have heard": [ + "9.14.2" + ], + "moderators temporarily": [ + "9.0.0" + ], + "moderators thereby removing": [ + "9.26.0" + ], + "mods": [ + "9.14.16", + "9.20.3" + ], + "mods for including": [ + "9.20.3" + ], + "mods to put": [ + "9.14.16" + ], + "modsquad": [ + "9.8.16" + ], + "modsquad david": [ + "9.8.16" + ], + "modsquad david garcia": [ + "9.8.16" + ], + "modsquad painfully": [ + "9.8.16" + ], + "modsquad painfully forensic": [ + "9.8.16" + ], + "molly": [ + "9.14.18", + "9.14.19" + ], + "molly hankwitz": [ + "9.8.32", + "9.14.18" + ], + "molly hankwitz min_word_return_size and current_word != '' and not is_number(current_word): + words.append(current_word) + return words + + +def split_sentences(text): + """ + Utility function to return a list of sentences. + @param text The text that must be split in to sentences. + """ + sentence_delimiters = re.compile(u'[.!?,;:\t\\\\"\\(\\)\\\'\u2019\u2013]|\\s\\-\\s') + sentences = sentence_delimiters.split(text) + return sentences + + +def build_stop_word_regex(stop_word_file_path): + stop_word_list = load_stop_words(stop_word_file_path) + stop_word_regex_list = [] + for word in stop_word_list: + word_regex = r'\b' + word + r'(?![\w-])' # added look ahead for hyphen + stop_word_regex_list.append(word_regex) + stop_word_pattern = re.compile('|'.join(stop_word_regex_list), re.IGNORECASE) + return stop_word_pattern + + +def generate_candidate_keywords(sentence_list, stopword_pattern): + phrase_list = [] + for s in sentence_list: + tmp = re.sub(stopword_pattern, '|', s.strip()) + phrases = tmp.split("|") + for phrase in phrases: + phrase = phrase.strip().lower() + if phrase != "": + phrase_list.append(phrase) + return phrase_list + + +def calculate_word_scores(phraseList): + word_frequency = {} + word_degree = {} + for phrase in phraseList: + word_list = separate_words(phrase, 0) + word_list_length = len(word_list) + word_list_degree = word_list_length - 1 + #if word_list_degree > 3: word_list_degree = 3 #exp. + for word in word_list: + word_frequency.setdefault(word, 0) + word_frequency[word] += 1 + word_degree.setdefault(word, 0) + word_degree[word] += word_list_degree #orig. + #word_degree[word] += 1/(word_list_length*1.0) #exp. + for item in word_frequency: + word_degree[item] = word_degree[item] + word_frequency[item] + + # Calculate Word scores = deg(w)/frew(w) + word_score = {} + for item in word_frequency: + word_score.setdefault(item, 0) + word_score[item] = word_degree[item] / (word_frequency[item] * 1.0) #orig. + #word_score[item] = word_frequency[item]/(word_degree[item] * 1.0) #exp. + return word_score + + +def generate_candidate_keyword_scores(phrase_list, word_score): + keyword_candidates = {} + for phrase in phrase_list: + keyword_candidates.setdefault(phrase, 0) + word_list = separate_words(phrase, 0) + candidate_score = 0 + for word in word_list: + candidate_score += word_score[word] + keyword_candidates[phrase] = candidate_score + return keyword_candidates + + +class Rake(object): + def __init__(self, stop_words_path): + self.stop_words_path = stop_words_path + self.__stop_words_pattern = build_stop_word_regex(stop_words_path) + + def run(self, text): + sentence_list = split_sentences(text) + + phrase_list = generate_candidate_keywords(sentence_list, self.__stop_words_pattern) + + word_scores = calculate_word_scores(phrase_list) + + keyword_candidates = generate_candidate_keyword_scores(phrase_list, word_scores) + + sorted_keywords = sorted(keyword_candidates.items(), key=lambda x: x[1], reverse=True) + return sorted_keywords + + +# if test: +# text = "Compatibility of systems of linear constraints over the set of natural numbers. Criteria of compatibility of a system of linear Diophantine equations, strict inequations, and nonstrict inequations are considered. Upper bounds for components of a minimal set of solutions and algorithms of construction of minimal generating sets of solutions for all types of systems are given. These criteria and the corresponding algorithms for constructing a minimal supporting set of solutions can be used in solving all the considered types of systems and systems of mixed types." + +# # Split text into sentences +# sentenceList = split_sentences(text) +# #stoppath = "FoxStoplist.txt" #Fox stoplist contains "numbers", so it will not find "natural numbers" like in Table 1.1 +# stoppath = "SmartStoplist.txt" #SMART stoplist misses some of the lower-scoring keywords in Figure 1.5, which means that the top 1/3 cuts off one of the 4.0 score words in Table 1.1 +# stopwordpattern = build_stop_word_regex(stoppath) + +# # generate candidate keywords +# phraseList = generate_candidate_keywords(sentenceList, stopwordpattern) + +# # calculate individual word scores +# wordscores = calculate_word_scores(phraseList) + +# # generate candidate keyword scores +# keywordcandidates = generate_candidate_keyword_scores(phraseList, wordscores) +# if debug: print keywordcandidates + +# sortedKeywords = sorted(keywordcandidates.iteritems(), key=operator.itemgetter(1), reverse=True) +# if debug: print sortedKeywords + +# totalKeywords = len(sortedKeywords) +# if debug: print totalKeywords +# print sortedKeywords[0:(totalKeywords / 3)] + +# rake = Rake("SmartStoplist.txt") +# keywords = rake.run(text) +# print keywords diff --git a/keywords/rake.py b/keywords/rake.py new file mode 100644 index 0000000..c398c05 --- /dev/null +++ b/keywords/rake.py @@ -0,0 +1,301 @@ +# Implementation of RAKE - Rapid Automatic Keyword Extraction algorithm +# as described in: +# Rose, S., D. Engel, N. Cramer, and W. Cowley (2010). +# Automatic keyword extraction from individual documents. +# In M. W. Berry and J. Kogan (Eds.), Text Mining: Applications and Theory.unknown: John Wiley and Sons, Ltd. +# +# NOTE: The original code (from https://github.com/aneesha/RAKE) +# has been extended by a_medelyan (zelandiya) +# with a set of heuristics to decide whether a phrase is an acceptable candidate +# as well as the ability to set frequency and phrase length parameters +# important when dealing with longer documents +# +# NOTE 2: The code published by a_medelyan (https://github.com/zelandiya/RAKE-tutorial) +# has been additionally extended by Marco Pegoraro to implement the adjoined candidate +# feature described in section 1.2.3 of the original paper. Note that this creates the +# need to modify the metric for the candidate score, because the adjoined candidates +# have a very high score (because of the nature of the original score metric) + +from __future__ import absolute_import +from __future__ import print_function +import re +import operator +# import six +# from six.moves import range +from collections import Counter + +debug = False +test = False + + +def is_number(s): + try: + float(s) if '.' in s else int(s) + return True + except ValueError: + return False + + +def load_stop_words(stop_word_file): + """ + Utility function to load stop words from a file and return as a list of words + @param stop_word_file Path and file name of a file containing stop words. + @return list A list of stop words. + """ + stop_words = [] + for line in open(stop_word_file): + if line.strip()[0:1] != "#": + for word in line.split(): # in case more than one per line + stop_words.append(word) + return stop_words + + +def separate_words(text, min_word_return_size): + """ + Utility function to return a list of all words that are have a length greater than a specified number of characters. + @param text The text that must be split in to words. + @param min_word_return_size The minimum no of characters a word must have to be included. + """ + splitter = re.compile('[^a-zA-Z0-9_\\+\\-/]') + words = [] + for single_word in splitter.split(text): + current_word = single_word.strip().lower() + # leave numbers in phrase, but don't count as words, since they tend to invalidate scores of their phrases + if len(current_word) > min_word_return_size and current_word != '' and not is_number(current_word): + words.append(current_word) + return words + + +def split_sentences(text): + """ + Utility function to return a list of sentences. + @param text The text that must be split in to sentences. + """ + sentence_delimiters = re.compile(u'[\\[\\]\n.!?,;:\t\\-\\"\\(\\)\\\'\u2019\u2013]') + sentences = sentence_delimiters.split(text) + return sentences + + +def build_stop_word_regex(stop_word_list): + stop_word_regex_list = [] + for word in stop_word_list: + word_regex = '\\b' + word + '\\b' + stop_word_regex_list.append(word_regex) + stop_word_pattern = re.compile('|'.join(stop_word_regex_list), re.IGNORECASE) + return stop_word_pattern + + +# +# Function that extracts the adjoined candidates from a list of sentences and filters them by frequency +# +def extract_adjoined_candidates(sentence_list, stoplist, min_keywords, max_keywords, min_freq): + adjoined_candidates = [] + for s in sentence_list: + # Extracts the candidates from each single sentence and adds them to the list + adjoined_candidates += adjoined_candidates_from_sentence(s, stoplist, min_keywords, max_keywords) + # Filters the candidates and returns them + return filter_adjoined_candidates(adjoined_candidates, min_freq) + + +# return adjoined_candidates + +# +# Function that extracts the adjoined candidates from a single sentence +# +def adjoined_candidates_from_sentence(s, stoplist, min_keywords, max_keywords): + # Initializes the candidate list to empty + candidates = [] + # Splits the sentence to get a list of lowercase words + sl = s.lower().split() + # For each possible length of the adjoined candidate + for num_keywords in range(min_keywords, max_keywords + 1): + # Until the third-last word + for i in range(0, len(sl) - num_keywords): + # Position i marks the first word of the candidate. Proceeds only if it's not a stopword + if sl[i] not in stoplist: + candidate = sl[i] + # Initializes j (the pointer to the next word) to 1 + j = 1 + # Initializes the word counter. This counts the non-stopwords words in the candidate + keyword_counter = 1 + contains_stopword = False + # Until the word count reaches the maximum number of keywords or the end is reached + while keyword_counter < num_keywords and i + j < len(sl): + # Adds the next word to the candidate + candidate = candidate + ' ' + sl[i + j] + # If it's not a stopword, increase the word counter. If it is, turn on the flag + if sl[i + j] not in stoplist: + keyword_counter += 1 + else: + contains_stopword = True + # Next position + j += 1 + # Adds the candidate to the list only if: + # 1) it contains at least a stopword (if it doesn't it's already been considered) + # AND + # 2) the last word is not a stopword + # AND + # 3) the adjoined candidate keyphrase contains exactly the correct number of keywords (to avoid doubles) + if contains_stopword and candidate.split()[-1] not in stoplist and keyword_counter == num_keywords: + candidates.append(candidate) + return candidates + + +# +# Function that filters the adjoined candidates to keep only those that appears with a certain frequency +# +def filter_adjoined_candidates(candidates, min_freq): + # Creates a dictionary where the key is the candidate and the value is the frequency of the candidate + candidates_freq = Counter(candidates) + filtered_candidates = [] + # Uses the dictionary to filter the candidates + for candidate in candidates: + freq = candidates_freq[candidate] + if freq >= min_freq: + filtered_candidates.append(candidate) + return filtered_candidates + + +def generate_candidate_keywords(sentence_list, stopword_pattern, stop_word_list, min_char_length=1, max_words_length=5, + min_words_length_adj=1, max_words_length_adj=1, min_phrase_freq_adj=2): + phrase_list = [] + for s in sentence_list: + tmp = re.sub(stopword_pattern, '|', s.strip()) + phrases = tmp.split("|") + for phrase in phrases: + phrase = phrase.strip().lower() + if phrase != "" and is_acceptable(phrase, min_char_length, max_words_length): + phrase_list.append(phrase) + phrase_list += extract_adjoined_candidates(sentence_list, stop_word_list, min_words_length_adj, + max_words_length_adj, min_phrase_freq_adj) + return phrase_list + + +def is_acceptable(phrase, min_char_length, max_words_length): + # a phrase must have a min length in characters + if len(phrase) < min_char_length: + return 0 + + # a phrase must have a max number of words + words = phrase.split() + if len(words) > max_words_length: + return 0 + + digits = 0 + alpha = 0 + for i in range(0, len(phrase)): + if phrase[i].isdigit(): + digits += 1 + elif phrase[i].isalpha(): + alpha += 1 + + # a phrase must have at least one alpha character + if alpha == 0: + return 0 + + # a phrase must have more alpha than digits characters + if digits > alpha: + return 0 + return 1 + + +def calculate_word_scores(phraseList): + word_frequency = {} + word_degree = {} + for phrase in phraseList: + word_list = separate_words(phrase, 0) + word_list_length = len(word_list) + word_list_degree = word_list_length - 1 + # if word_list_degree > 3: word_list_degree = 3 #exp. + for word in word_list: + word_frequency.setdefault(word, 0) + word_frequency[word] += 1 + word_degree.setdefault(word, 0) + word_degree[word] += word_list_degree # orig. + # word_degree[word] += 1/(word_list_length*1.0) #exp. + for item in word_frequency: + word_degree[item] = word_degree[item] + word_frequency[item] + + # Calculate Word scores = deg(w)/frew(w) + word_score = {} + for item in word_frequency: + word_score.setdefault(item, 0) + word_score[item] = word_degree[item] / (word_frequency[item] * 1.0) # orig. + # word_score[item] = word_frequency[item]/(word_degree[item] * 1.0) #exp. + return word_score + + +def generate_candidate_keyword_scores(phrase_list, word_score, min_keyword_frequency=1): + keyword_candidates = {} + for phrase in phrase_list: + if min_keyword_frequency > 1: + if phrase_list.count(phrase) < min_keyword_frequency: + continue + keyword_candidates.setdefault(phrase, 0) + word_list = separate_words(phrase, 0) + candidate_score = 0 + for word in word_list: + candidate_score += word_score[word] + keyword_candidates[phrase] = candidate_score + return keyword_candidates + + +class Rake(object): + def __init__(self, stop_words_path, min_char_length=1, max_words_length=5, min_keyword_frequency=1, + min_words_length_adj=1, max_words_length_adj=1, min_phrase_freq_adj=2): + self.__stop_words_path = stop_words_path + self.__stop_words_list = load_stop_words(stop_words_path) + self.__min_char_length = min_char_length + self.__max_words_length = max_words_length + self.__min_keyword_frequency = min_keyword_frequency + self.__min_words_length_adj = min_words_length_adj + self.__max_words_length_adj = max_words_length_adj + self.__min_phrase_freq_adj = min_phrase_freq_adj + + def run(self, text): + sentence_list = split_sentences(text) + + stop_words_pattern = build_stop_word_regex(self.__stop_words_list) + + phrase_list = generate_candidate_keywords(sentence_list, stop_words_pattern, self.__stop_words_list, + self.__min_char_length, self.__max_words_length, + self.__min_words_length_adj, self.__max_words_length_adj, + self.__min_phrase_freq_adj) + + word_scores = calculate_word_scores(phrase_list) + + keyword_candidates = generate_candidate_keyword_scores(phrase_list, word_scores, self.__min_keyword_frequency) + + sorted_keywords = sorted(keyword_candidates.items(), key=lambda x: x[1], reverse=True) + return sorted_keywords + + +# if test and __name__ == '__main__': +# text = "Compatibility of systems of linear constraints over the set of natural numbers. Criteria of compatibility of a system of linear Diophantine equations, strict inequations, and nonstrict inequations are considered. Upper bounds for components of a minimal set of solutions and algorithms of construction of minimal generating sets of solutions for all types of systems are given. These criteria and the corresponding algorithms for constructing a minimal supporting set of solutions can be used in solving all the considered types of systems and systems of mixed types." + +# # Split text into sentences +# sentenceList = split_sentences(text) +# # stoppath = "FoxStoplist.txt" #Fox stoplist contains "numbers", so it will not find "natural numbers" like in Table 1.1 +# stoppath = "data/stoplists/SmartStoplist.txt" # SMART stoplist misses some of the lower-scoring keywords in Figure 1.5, which means that the top 1/3 cuts off one of the 4.0 score words in Table 1.1 +# stopwordpattern = build_stop_word_regex(stoppath) + +# # generate candidate keywords +# phraseList = generate_candidate_keywords(sentenceList, stopwordpattern, load_stop_words(stoppath)) + +# # calculate individual word scores +# wordscores = calculate_word_scores(phraseList) + +# # generate candidate keyword scores +# keywordcandidates = generate_candidate_keyword_scores(phraseList, wordscores) +# if debug: print(keywordcandidates) + +# sortedKeywords = sorted(six.iteritems(keywordcandidates), key=operator.itemgetter(1), reverse=True) +# if debug: print(sortedKeywords) + +# totalKeywords = len(sortedKeywords) +# if debug: print(totalKeywords) +# print(sortedKeywords[0:(totalKeywords // 3)]) + +# rake = Rake("data/stoplists/SmartStoplist.txt") +# keywords = rake.run(text) +# print(keywords) diff --git a/www/routes.py b/www/routes.py index 5ee750c..672a8c4 100644 --- a/www/routes.py +++ b/www/routes.py @@ -3,6 +3,7 @@ from www import app import json, logging, os, glob from lxml import etree as et import config +from collections import OrderedDict def list_all(d, ext): @@ -12,6 +13,112 @@ def list_all(d, ext): return [os.path.basename(f) for f in glob.glob(os.path.join(d, "*." + ext))] +@app.route('/') +def top(): + return render_template("index.html") + +''' + INDEX +''' + +def read_index(d, fn): + fp = os.path.join(d, fn) + if not os.path.isfile(fp): + return None + + with open(fp) as f: + index_data = json.load(f, object_pairs_hook=OrderedDict) + + return index_data + +# def add_selected_kw_index(d, fn, kw): +# fp = os.path.join(d, fn) +# if not os.path.isfile(fp): +# return False + +# with open(fp) as f: +# index_data = json.load(f) + +# if kw not in index_data['orphan']: +# return False + +# v = index_data['orphan'].pop(kw) +# if kw not in index_data['selected']: +# index_data['selected'][kw] = [] + +# index_data['selected'][kw] += v + +# with open(fp, 'w') as fout: +# json.dump(index_data, fout, indent=4, sort_keys=True, ensure_ascii=False) + +# return True + + +def modify_selected_kw_index(d, fn, kw, action="add"): + fp = os.path.join(d, fn) + if not os.path.isfile(fp): + return False + + with open(fp) as f: + index_data = json.load(f) + + if action == 'add': + in_dic = index_data['selected'] + out_dic = index_data['orphan'] + elif action == 'delete': + out_dic = index_data['selected'] + in_dic = index_data['orphan'] + else: + return False + + if kw not in out_dic: + return False + + v = out_dic.pop(kw) + if kw not in in_dic: + in_dic[kw] = [] + + in_dic[kw] += v + + with open(fp, 'w') as fout: + json.dump(index_data, fout, indent=4, sort_keys=True, ensure_ascii=False) + + return True + + +@app.route('/index', methods = ['GET']) +def index(): + if request.method == 'GET': + li = list_all(config.index['path'], 'js') + li = sorted(li, key=lambda x: int(x.split('.')[0])) + return render_template("list_files_all.html", title="INDEX [all]", prefix="/index/", files=li) + +@app.route('/index/', methods = ['GET', 'POST']) +def indexfn(fn): + if request.method == 'GET': + data = read_index(config.index['path'], fn) + if data is not None: + return render_template("indx.html", fn=fn, selected=data['selected'], orphan=data['orphan']) + else: + return "File: " + fn + "does not exist." + elif request.method == 'POST': + data = request.form + a = data.get('action') + if a == "add": + logging.info("POST ADD " + fn + " -- " + data.get('kw') + " ++ " + data.get('list')) + if modify_selected_kw_index(config.index['path'], fn, data.get('kw')): + return "ok" + elif a == "delete": + logging.info("POST DELETE " + fn + " -- " + data.get('kw') + " ++ " + data.get('list')) + if modify_selected_kw_index(config.index['path'], fn, data.get('kw'), action="delete"): + return "ok" + return "-" + + +''' + XML +''' + def read_xml(d, fn): fp = os.path.join(d, fn) if not os.path.isfile(fp): @@ -97,17 +204,12 @@ def delete_nbr_xml(d, fn, nbr, date): tr.write(fp) return True - -@app.route('/') -def index(): - return render_template("index.html") - -@app.route('/xml', methods = ['GET', 'POST']) +@app.route('/xml', methods = ['GET']) def xml(): if request.method == 'GET': li = list_all(config.xml['path'], 'xml') li = sorted(li, key=lambda x: int(x.split('.')[0])) - return render_template("xml_all.html", files=li) + return render_template("list_files_all.html", title="XML [all]", prefix="/xml/", files=li) @app.route('/xml/', methods = ['GET', 'POST']) def xmlfn(fn): @@ -129,6 +231,3 @@ def xmlfn(fn): if delete_nbr_xml(config.xml['path'], fn, data.get('nbr'), data.get('date')): return "ok" return "-" - - - diff --git a/www/static/indx.js b/www/static/indx.js new file mode 100644 index 0000000..704c774 --- /dev/null +++ b/www/static/indx.js @@ -0,0 +1,10 @@ +$(document).ready(function(){ + $('.add, .delete').click(function(e) { + var li = $(this).parent("li"); + $.post('/index/' + li.data("file"), {'action': $(this).attr('class'), 'kw': li.data("kw"), 'list': li.data("list")}, function(d) { + if(d === 'ok') { + location.reload(); + } + }); + }); +}); \ No newline at end of file diff --git a/www/templates/indx.html b/www/templates/indx.html new file mode 100644 index 0000000..1e63fb2 --- /dev/null +++ b/www/templates/indx.html @@ -0,0 +1,28 @@ + + + + {{fn}} + + + + +

{{fn}}

+
+

Selected

+
    + {% for kw, s in selected.items() %} +
  • {{kw}} {% for ss in s %} - {{ss}} {% endfor %}
  • + {% endfor %} +
+
+
+
+

Orphans

+
    + {% for kw, s in orphan.items() %} +
  • {{kw}} {% for ss in s %} - {{ss}} {% endfor %}
  • + {% endfor %} +
+
+ + \ No newline at end of file diff --git a/www/templates/xml_all.html b/www/templates/list_files_all.html similarity index 58% rename from www/templates/xml_all.html rename to www/templates/list_files_all.html index 4fa09d7..e967c9b 100644 --- a/www/templates/xml_all.html +++ b/www/templates/list_files_all.html @@ -1,14 +1,14 @@ - XML [all] + {{title}} -

XML [all]

+

{{title}}

    {% for f in files %} -
  • {{f}}
  • +
  • {{f}}
  • {% endfor %}
diff --git a/xml/9.List_talking_to List.xml b/xml/9.List_talking_to_List.xml similarity index 100% rename from xml/9.List_talking_to List.xml rename to xml/9.List_talking_to_List.xml